Code coverage report for wechat-enterprise/lib/api_department.js

Statements: 100% (39 / 39)      Branches: 81.25% (13 / 16)      Functions: 100% (8 / 8)      Lines: 100% (39 / 39)      Ignored: none     

All files » wechat-enterprise/lib/ » api_department.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 2021 1 1 1                                                             1 2           1   2 2     2 1 1   1     2                                                                 1 3           1   3 3     3 2 1   2 1   2 1     1     3                                                     1 1           1   1 1 1                                                                         1 1           1   1 1    
var urllib = require('urllib');
var util = require('./util');
var wrapper = util.wrapper;
var postJSON = util.postJSON;
 
/**
 * 创建部门
 * 详细请看:http://qydev.weixin.qq.com/wiki/index.php?title=管理部门
 *
 * Examples:
 * ```
 * api.createDepartment(name, opts, callback);
 * ```
 * Opts:
 * - `parentid`, 父部门id,根部门id为1
 * - `order`,在父部门中的次序。从1开始,数字越大排序越靠后
 *
 * Callback:
 *
 * - `err`, 调用失败时得到的异常
 * - `result`, 调用正常时得到的对象
 *
 * Result:
 * ```
 * {
 *  "errcode": 0,
 *  "errmsg": "created",
 *  "id": 2
 * }
 * ```
 * @param {String} name 部门名字
 * @param {Object} opts 选项
 * @param {Function} callback 回调函数
 */
exports.createDepartment = function (name, opts, callback) {
  this.preRequest(this._createDepartment, arguments);
};
 
/*!
 * 创建部门的未封装版本
 */
exports._createDepartment = function (name, opts, callback) {
  // https://qyapi.weixin.qq.com/cgi-bin/department/create?access_token=ACCESS_TOKEN
  var url = this.prefix + 'department/create?access_token=' + this.token.accessToken;
  var data = {
    name: name
  };
  if (typeof opts === 'object') {
    data.parentid = Number(opts.parentid) || 1;
    data.order = Number(opts.order) || 1;
  } else {
    data.parentid = Number(opts);
  }
 
  urllib.request(url, postJSON(data), wrapper(callback));
};
 
/**
 * 更新部门
 *
 * Examples:
 * ```
 * var opts = {name: 'new name', parentid: 1, order: 5};
 * api.updateDepartment(id, opts, callback);
 * ```
 *
 * Opts:
 * - `name`, 新的部门名字。可选
 * - `parentid`, 父部门id,根部门id为1。可选
 * - `order`,在父部门中的次序。从1开始,数字越大排序越靠后。可选,默认为1
 *
 * Callback:
 *
 * - `err`, 调用失败时得到的异常
 * - `result`, 调用正常时得到的对象
 *
 * Result:
 * ```
 * {
 *  "errcode": 0,
 *  "errmsg": "updated"
 * }
 * ```
 * @param {Number} id 部门ID
 * @param {Object} opts 选项
 * @param {Function} callback 回调函数
 */
exports.updateDepartment = function (id, opts, callback) {
  this.preRequest(this._updateDepartment, arguments);
};
 
/*!
 * 更新部门的未封装版本
 */
exports._updateDepartment = function (id, opts, callback) {
  // https://qyapi.weixin.qq.com/cgi-bin/department/update?access_token=ACCESS_TOKEN
  var url = this.prefix + 'department/update?access_token=' + this.token.accessToken;
  var data = {
    id: Number(id)
  };
  if (typeof opts === 'object') {
    if (opts.name) {
      data.name = opts.name;
    }
    if (opts.parentid) {
      data.parentid = Number(opts.parentid);
    }
    if (opts.order) {
      data.order = Number(opts.order) || 1;
    }
  } else {
    data.name = opts;
  }
 
  urllib.request(url, postJSON(data), wrapper(callback));
};
 
/**
 * 删除部门
 *
 * Examples:
 * ```
 * api.deleteDepartment(id, callback);
 * api.deleteDepartment([id1, id2], callback);
 * ```
 *
 * Callback:
 *
 * - `err`, 调用失败时得到的异常
 * - `result`, 调用正常时得到的对象
 *
 * Result:
 * ```
 * {
 *  "errcode": 0,
 *  "errmsg": "deleted"
 * }
 * ```
 * @param {Number/Array} id 部门ID
 * @param {Function} callback 回调函数
 */
exports.deleteDepartment = function (id, callback) {
  this.preRequest(this._deleteDepartment, arguments);
};
 
/*!
 * 删除部门的未封装版本
 */
exports._deleteDepartment = function (id, callback) {
  // https://qyapi.weixin.qq.com/cgi-bin/department/delete?access_token=ACCESS_TOKEN&id=1&id=2
  var url = this.prefix + 'department/delete?access_token=' + this.token.accessToken;
  var opts = {dataType: 'json', data: {id: id}};
  urllib.request(url, opts, wrapper(callback));
};
 
/**
 * 查看所有部门
 *
 * Examples:
 * ```
 * api.getDepartments(callback);
 * ```
 *
 * Callback:
 *
 * - `err`, 调用失败时得到的异常
 * - `result`, 调用正常时得到的对象
 *
 * Result:
 * ```
 * {
 *  "errcode": 0,
 *  "errmsg": "ok",
 *  "department": [
 *    {
 *      "id": 1,
 *      "name": "广州研发中心",
 *      "parentid": 0
 *    },
 *    {
 *      "id": 2
 *      "name": "邮箱产品部",
 *      "parentid": 1
 *    }
 *  ]
 * }
 * ```
 * @param {Function} callback 回调函数
 */
exports.getDepartments = function (callback) {
  this.preRequest(this._getDepartments, arguments);
};
 
/*!
 * 获取部门列表的未封装版本
 */
exports._getDepartments = function (callback) {
  // https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token=ACCESS_TOKEN
  var url = this.prefix + 'department/list?access_token=' + this.token.accessToken;
  urllib.request(url, {dataType: 'json'}, wrapper(callback));
};