2017-07-05 17:59:53 +08:00
|
|
|
|
'use strict';
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _promise = require('babel-runtime/core-js/promise');
|
|
|
|
|
|
|
|
|
|
var _promise2 = _interopRequireDefault(_promise);
|
|
|
|
|
|
2017-07-05 17:59:53 +08:00
|
|
|
|
var _regenerator = require('babel-runtime/regenerator');
|
|
|
|
|
|
|
|
|
|
var _regenerator2 = _interopRequireDefault(_regenerator);
|
|
|
|
|
|
|
|
|
|
var _asyncToGenerator2 = require('babel-runtime/helpers/asyncToGenerator');
|
|
|
|
|
|
|
|
|
|
var _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2);
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
|
|
|
|
|
|
|
|
|
|
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
|
|
|
|
|
|
|
|
|
|
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
|
|
|
|
|
|
|
|
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
|
|
|
|
|
|
|
|
var _createClass2 = require('babel-runtime/helpers/createClass');
|
|
|
|
|
|
|
|
|
|
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
|
|
|
|
|
|
|
|
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
|
|
|
|
|
|
|
|
|
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
|
|
|
|
|
|
|
|
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
|
|
|
|
|
|
|
|
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
|
|
|
|
2017-07-05 17:59:53 +08:00
|
|
|
|
var _user = require('../models/user.js');
|
|
|
|
|
|
|
|
|
|
var _user2 = _interopRequireDefault(_user);
|
|
|
|
|
|
|
|
|
|
var _yapi = require('../yapi.js');
|
|
|
|
|
|
|
|
|
|
var _yapi2 = _interopRequireDefault(_yapi);
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
var _base = require('./base.js');
|
|
|
|
|
|
|
|
|
|
var _base2 = _interopRequireDefault(_base);
|
|
|
|
|
|
2017-07-10 11:11:35 +08:00
|
|
|
|
var _mongoose = require('mongoose');
|
|
|
|
|
|
|
|
|
|
var _mongoose2 = _interopRequireDefault(_mongoose);
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _request2 = require('request');
|
|
|
|
|
|
|
|
|
|
var _request3 = _interopRequireDefault(_request2);
|
|
|
|
|
|
2017-07-05 17:59:53 +08:00
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
2017-07-10 20:51:04 +08:00
|
|
|
|
var jwt = require('jsonwebtoken');
|
2017-07-07 12:04:14 +08:00
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
var userController = function (_baseController) {
|
|
|
|
|
(0, _inherits3.default)(userController, _baseController);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
function userController(ctx) {
|
|
|
|
|
(0, _classCallCheck3.default)(this, userController);
|
2017-07-14 16:41:14 +08:00
|
|
|
|
|
|
|
|
|
var _this = (0, _possibleConstructorReturn3.default)(this, (userController.__proto__ || (0, _getPrototypeOf2.default)(userController)).call(this, ctx));
|
|
|
|
|
|
|
|
|
|
_this.Model = _yapi2.default.getInst(_user2.default);
|
|
|
|
|
return _this;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
2017-07-10 11:11:35 +08:00
|
|
|
|
/**
|
2017-07-11 18:22:20 +08:00
|
|
|
|
* 用户登录接口
|
2017-07-10 11:11:35 +08:00
|
|
|
|
* @interface /user/login
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
2017-07-11 18:22:20 +08:00
|
|
|
|
* @param {String} email email名称,不能为空
|
2017-07-10 11:11:35 +08:00
|
|
|
|
* @param {String} password 密码,不能为空
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/user/login.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
(0, _createClass3.default)(userController, [{
|
|
|
|
|
key: 'login',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee(ctx) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var userInst, email, password, result;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee$(_context) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context.prev = _context.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
//登录
|
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default); //创建user实体
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
email = ctx.request.body.email;
|
2017-07-10 11:11:35 +08:00
|
|
|
|
password = ctx.request.body.password;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
if (email) {
|
|
|
|
|
_context.next = 5;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
return _context.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 400, 'email不能为空'));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 5:
|
2017-07-10 20:51:04 +08:00
|
|
|
|
if (password) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context.next = 7;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 400, '密码不能为空'));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 7:
|
|
|
|
|
_context.next = 9;
|
|
|
|
|
return userInst.findByEmail(email);
|
2017-07-10 20:51:04 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 9:
|
|
|
|
|
result = _context.sent;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
if (result) {
|
|
|
|
|
_context.next = 14;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 404, '该用户不存在'));
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 14:
|
|
|
|
|
if (!(_yapi2.default.commons.generatePassword(password, result.passsalt) === result.password)) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context.next = 19;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
this.setLoginCookie(result._id, result.passsalt);
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
return _context.abrupt('return', ctx.body = _yapi2.default.commons.resReturn({
|
2017-07-13 16:13:47 +08:00
|
|
|
|
username: result.username,
|
2017-07-11 18:22:20 +08:00
|
|
|
|
uid: result._id,
|
|
|
|
|
email: result.email,
|
|
|
|
|
add_time: result.add_time,
|
|
|
|
|
up_time: result.up_time
|
|
|
|
|
|
|
|
|
|
}, 0, 'logout success...'));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 19:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 405, '密码错误'));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 20:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
|
|
|
|
return _context.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function login(_x) {
|
|
|
|
|
return _ref.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return login;
|
|
|
|
|
}()
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 退出登录接口
|
|
|
|
|
* @interface /user/logout
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/user/logout.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}, {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
key: 'logout',
|
2017-07-06 20:55:02 +08:00
|
|
|
|
value: function () {
|
|
|
|
|
var _ref2 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee2(ctx) {
|
|
|
|
|
return _regenerator2.default.wrap(function _callee2$(_context2) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context2.prev = _context2.next) {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 0:
|
|
|
|
|
ctx.cookies.set('_yapi_token', null);
|
|
|
|
|
ctx.cookies.set('_yapi_uid', null);
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn('ok');
|
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context2.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee2, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function logout(_x2) {
|
|
|
|
|
return _ref2.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return logout;
|
|
|
|
|
}()
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
/**
|
|
|
|
|
* 第三方登录需要提供一个request方法和 token字段,暂时只支持qunar第三方
|
|
|
|
|
* @return {email: String, username: String}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
key: 'thirdQunarLogin',
|
|
|
|
|
value: function thirdQunarLogin() {
|
|
|
|
|
return {
|
|
|
|
|
request: function request(token) {
|
|
|
|
|
return new _promise2.default(function (resolve, reject) {
|
|
|
|
|
(0, _request3.default)('http://qsso.corp.qunar.com/api/verifytoken.php?token=' + token, function (error, response, body) {
|
|
|
|
|
if (!error && response.statusCode == 200) {
|
|
|
|
|
var result = JSON.parse(body);
|
|
|
|
|
if (result && result.ret === true) {
|
|
|
|
|
var ret = {
|
|
|
|
|
email: result.userId + '@qunar.com',
|
|
|
|
|
username: result.data.userInfo.name
|
|
|
|
|
};
|
|
|
|
|
resolve(ret);
|
|
|
|
|
} else {
|
|
|
|
|
reject(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
reject(error);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
tokenField: 'token'
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
key: 'loginByToken',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref3 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee3(ctx) {
|
|
|
|
|
var config, token, ret, login;
|
|
|
|
|
return _regenerator2.default.wrap(function _callee3$(_context3) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context3.prev = _context3.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
config = this.thirdQunarLogin();
|
|
|
|
|
token = ctx.request.body[config.tokenField] || ctx.request.query[config.tokenField];
|
|
|
|
|
_context3.prev = 2;
|
|
|
|
|
_context3.next = 5;
|
|
|
|
|
return config.request(token);
|
|
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
|
ret = _context3.sent;
|
|
|
|
|
_context3.next = 8;
|
|
|
|
|
return this.handleThirdLogin(ret.email, ret.username);
|
|
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
|
login = _context3.sent;
|
|
|
|
|
|
|
|
|
|
if (login === true) {
|
|
|
|
|
_yapi2.default.commons.log('login success');
|
|
|
|
|
ctx.redirect('/');
|
|
|
|
|
}
|
|
|
|
|
_context3.next = 16;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 12:
|
|
|
|
|
_context3.prev = 12;
|
|
|
|
|
_context3.t0 = _context3['catch'](2);
|
|
|
|
|
|
|
|
|
|
_yapi2.default.commons.log(_context3.t0.message, 'error');
|
|
|
|
|
ctx.redirect('/');
|
|
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context3.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee3, this, [[2, 12]]);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function loginByToken(_x3) {
|
|
|
|
|
return _ref3.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return loginByToken;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
|
|
|
|
key: 'handleThirdLogin',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref4 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee4(email, username) {
|
|
|
|
|
var user, data, passsalt, userInst;
|
|
|
|
|
return _regenerator2.default.wrap(function _callee4$(_context4) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context4.prev = _context4.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
user = void 0, data = void 0, passsalt = void 0;
|
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
|
|
|
|
_context4.prev = 2;
|
|
|
|
|
_context4.next = 5;
|
|
|
|
|
return userInst.findByEmail(email);
|
|
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
|
user = _context4.sent;
|
|
|
|
|
|
|
|
|
|
if (!(!user || !user._id)) {
|
|
|
|
|
_context4.next = 12;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
passsalt = _yapi2.default.commons.randStr();
|
|
|
|
|
data = {
|
|
|
|
|
username: username,
|
|
|
|
|
password: _yapi2.default.commons.generatePassword(passsalt, passsalt),
|
|
|
|
|
email: email,
|
|
|
|
|
passsalt: passsalt,
|
|
|
|
|
role: 'member',
|
|
|
|
|
add_time: _yapi2.default.commons.time(),
|
|
|
|
|
up_time: _yapi2.default.commons.time()
|
|
|
|
|
};
|
|
|
|
|
_context4.next = 11;
|
|
|
|
|
return userInst.save(data);
|
|
|
|
|
|
|
|
|
|
case 11:
|
|
|
|
|
user = _context4.sent;
|
|
|
|
|
|
|
|
|
|
case 12:
|
|
|
|
|
|
|
|
|
|
this.setLoginCookie(user._id, user.passsalt);
|
|
|
|
|
return _context4.abrupt('return', true);
|
|
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
|
_context4.prev = 16;
|
|
|
|
|
_context4.t0 = _context4['catch'](2);
|
|
|
|
|
|
|
|
|
|
console.error(_context4.t0.message);
|
|
|
|
|
return _context4.abrupt('return', false);
|
|
|
|
|
|
|
|
|
|
case 20:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context4.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee4, this, [[2, 16]]);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function handleThirdLogin(_x4, _x5) {
|
|
|
|
|
return _ref4.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return handleThirdLogin;
|
|
|
|
|
}()
|
2017-07-13 16:13:47 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改用户密码
|
2017-07-14 17:37:26 +08:00
|
|
|
|
* @interface /user/change_password
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category user
|
|
|
|
|
* @param {Number} uid 用户ID
|
|
|
|
|
* @param {Number} [old_password] 旧密码, 非admin用户必须传
|
|
|
|
|
* @param {Number} password 新密码
|
|
|
|
|
* @return {Object}
|
|
|
|
|
* @example ./api/user/change_password
|
2017-07-13 16:13:47 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'changePassword',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref5 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee5(ctx) {
|
2017-07-14 17:37:26 +08:00
|
|
|
|
var params, userInst, user, passsalt, data, result;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee5$(_context5) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context5.prev = _context5.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
params = ctx.request.body;
|
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
|
|
|
|
|
|
|
|
|
if (!(this.getRole() !== 'admin' && params.uid != this.getUid())) {
|
2017-07-14 17:37:26 +08:00
|
|
|
|
_context5.next = 5;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-14 17:37:26 +08:00
|
|
|
|
console.log(this.getRole(), this.getUid());
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context5.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, '没有权限'));
|
|
|
|
|
|
2017-07-14 17:37:26 +08:00
|
|
|
|
case 5:
|
|
|
|
|
if (!(this.getRole() !== 'admin')) {
|
|
|
|
|
_context5.next = 13;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (params.old_password) {
|
|
|
|
|
_context5.next = 8;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context5.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 400, '旧密码不能为空'));
|
|
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
|
_context5.next = 10;
|
|
|
|
|
return userInst.findById(params.uid);
|
|
|
|
|
|
|
|
|
|
case 10:
|
|
|
|
|
user = _context5.sent;
|
|
|
|
|
|
|
|
|
|
if (!(_yapi2.default.commons.generatePassword(params.old_password, user.passsalt) !== user.password)) {
|
|
|
|
|
_context5.next = 13;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context5.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, '旧密码错误'));
|
|
|
|
|
|
|
|
|
|
case 13:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
passsalt = _yapi2.default.commons.randStr();
|
|
|
|
|
data = {
|
|
|
|
|
up_time: _yapi2.default.commons.time(),
|
2017-07-14 17:37:26 +08:00
|
|
|
|
password: _yapi2.default.commons.generatePassword(params.password, passsalt),
|
2017-07-12 17:01:27 +08:00
|
|
|
|
passsalt: passsalt
|
|
|
|
|
};
|
2017-07-14 17:37:26 +08:00
|
|
|
|
_context5.prev = 15;
|
|
|
|
|
_context5.next = 18;
|
|
|
|
|
return userInst.update(params.uid, data);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
|
2017-07-14 17:37:26 +08:00
|
|
|
|
case 18:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
result = _context5.sent;
|
|
|
|
|
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(result);
|
2017-07-14 17:37:26 +08:00
|
|
|
|
_context5.next = 25;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2017-07-14 17:37:26 +08:00
|
|
|
|
case 22:
|
|
|
|
|
_context5.prev = 22;
|
|
|
|
|
_context5.t0 = _context5['catch'](15);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(null, 401, _context5.t0.message);
|
|
|
|
|
|
2017-07-14 17:37:26 +08:00
|
|
|
|
case 25:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 'end':
|
|
|
|
|
return _context5.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-14 17:37:26 +08:00
|
|
|
|
}, _callee5, this, [[15, 22]]);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function changePassword(_x6) {
|
|
|
|
|
return _ref5.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return changePassword;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
|
|
|
|
key: 'forgetPassword',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref6 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee6(ctx) {
|
|
|
|
|
return _regenerator2.default.wrap(function _callee6$(_context6) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context6.prev = _context6.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context6.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee6, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function forgetPassword(_x7) {
|
|
|
|
|
return _ref6.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return forgetPassword;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
|
|
|
|
key: 'resetPassword',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref7 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee7(ctx) {
|
|
|
|
|
return _regenerator2.default.wrap(function _callee7$(_context7) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context7.prev = _context7.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context7.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee7, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function resetPassword(_x8) {
|
|
|
|
|
return _ref7.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resetPassword;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
|
|
|
|
key: 'setLoginCookie',
|
|
|
|
|
value: function setLoginCookie(uid, passsalt) {
|
|
|
|
|
var token = jwt.sign({ uid: uid }, passsalt, { expiresIn: '7 days' });
|
|
|
|
|
this.ctx.cookies.set('_yapi_token', token, {
|
|
|
|
|
expires: _yapi2.default.commons.expireDate(7),
|
|
|
|
|
httpOnly: true
|
|
|
|
|
});
|
|
|
|
|
this.ctx.cookies.set('_yapi_uid', uid, {
|
|
|
|
|
expires: _yapi2.default.commons.expireDate(7),
|
|
|
|
|
httpOnly: true
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 18:22:20 +08:00
|
|
|
|
/**
|
|
|
|
|
* 用户注册接口
|
|
|
|
|
* @interface /user/reg
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {String} email email名称,不能为空
|
|
|
|
|
* @param {String} password 密码,不能为空
|
|
|
|
|
* @param {String} [username] 用户名
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/user/login.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'reg',
|
|
|
|
|
value: function () {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _ref8 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee8(ctx) {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
var userInst, params, checkRepeat, passsalt, data, user;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee8$(_context8) {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
while (1) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
switch (_context8.prev = _context8.next) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 0:
|
|
|
|
|
//注册
|
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
|
|
|
|
params = ctx.request.body; //获取请求的参数,检查是否存在用户名和密码
|
|
|
|
|
|
2017-07-10 20:51:04 +08:00
|
|
|
|
if (params.email) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context8.next = 4;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context8.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 400, '邮箱不能为空'));
|
2017-07-10 20:51:04 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 4:
|
|
|
|
|
if (params.password) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context8.next = 6;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context8.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 400, '密码不能为空'));
|
2017-07-10 20:51:04 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 6:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context8.next = 8;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
return userInst.checkRepeat(params.email);
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 8:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
checkRepeat = _context8.sent;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
|
|
|
|
|
if (!(checkRepeat > 0)) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context8.next = 11;
|
2017-07-10 20:51:04 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context8.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 401, '该email已经注册'));
|
2017-07-10 20:51:04 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 11:
|
|
|
|
|
passsalt = _yapi2.default.commons.randStr();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
data = {
|
|
|
|
|
username: params.username,
|
2017-07-11 12:12:43 +08:00
|
|
|
|
password: _yapi2.default.commons.generatePassword(params.password, passsalt), //加密
|
2017-07-06 20:55:02 +08:00
|
|
|
|
email: params.email,
|
2017-07-11 12:12:43 +08:00
|
|
|
|
passsalt: passsalt,
|
2017-07-11 16:50:17 +08:00
|
|
|
|
role: 'member',
|
2017-07-06 20:55:02 +08:00
|
|
|
|
add_time: _yapi2.default.commons.time(),
|
|
|
|
|
up_time: _yapi2.default.commons.time()
|
|
|
|
|
};
|
2017-07-12 20:47:20 +08:00
|
|
|
|
|
|
|
|
|
if (!data.username) {
|
|
|
|
|
data.username = data.email.substr(0, data.email.indexOf('@'));
|
|
|
|
|
}
|
|
|
|
|
_context8.prev = 14;
|
|
|
|
|
_context8.next = 17;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
return userInst.save(data);
|
|
|
|
|
|
2017-07-12 20:47:20 +08:00
|
|
|
|
case 17:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
user = _context8.sent;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
this.setLoginCookie(user._id, user.passsalt);
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn({
|
|
|
|
|
uid: user._id,
|
|
|
|
|
email: user.email,
|
2017-07-12 20:47:20 +08:00
|
|
|
|
username: user.username,
|
2017-07-11 18:22:20 +08:00
|
|
|
|
add_time: user.add_time,
|
|
|
|
|
up_time: user.up_time,
|
|
|
|
|
role: 'member'
|
|
|
|
|
});
|
2017-07-11 16:50:17 +08:00
|
|
|
|
_yapi2.default.commons.sendMail({
|
|
|
|
|
to: params.email,
|
|
|
|
|
contents: '\u6B22\u8FCE\u6CE8\u518C\uFF0C\u60A8\u7684\u8D26\u53F7 ' + params.email + ' \u5DF2\u7ECF\u6CE8\u518C\u6210\u529F'
|
|
|
|
|
});
|
2017-07-12 20:47:20 +08:00
|
|
|
|
_context8.next = 26;
|
2017-07-05 17:59:53 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2017-07-12 20:47:20 +08:00
|
|
|
|
case 23:
|
|
|
|
|
_context8.prev = 23;
|
|
|
|
|
_context8.t0 = _context8['catch'](14);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(null, 401, _context8.t0.message);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-12 20:47:20 +08:00
|
|
|
|
case 26:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context8.stop();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-12 20:47:20 +08:00
|
|
|
|
}, _callee8, this, [[14, 23]]);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
function reg(_x9) {
|
|
|
|
|
return _ref8.apply(this, arguments);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reg;
|
|
|
|
|
}()
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取用户列表
|
|
|
|
|
* @interface /user/list
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'list',
|
|
|
|
|
value: function () {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _ref9 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee9(ctx) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
var userInst, user;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee9$(_context9) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
while (1) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
switch (_context9.prev = _context9.next) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 0:
|
2017-07-11 18:22:20 +08:00
|
|
|
|
if (!(this.getRole() !== 'admin')) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context9.next = 2;
|
2017-07-11 18:22:20 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context9.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, '没有权限'));
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
case 2:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context9.prev = 3;
|
|
|
|
|
_context9.next = 6;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
return userInst.list();
|
|
|
|
|
|
2017-07-11 18:22:20 +08:00
|
|
|
|
case 6:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
user = _context9.sent;
|
|
|
|
|
return _context9.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(user));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 18:22:20 +08:00
|
|
|
|
case 10:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context9.prev = 10;
|
|
|
|
|
_context9.t0 = _context9['catch'](3);
|
|
|
|
|
return _context9.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, _context9.t0.message));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 18:22:20 +08:00
|
|
|
|
case 13:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context9.stop();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}, _callee9, this, [[3, 10]]);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
function list(_x10) {
|
|
|
|
|
return _ref9.apply(this, arguments);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
}()
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2017-07-12 17:01:27 +08:00
|
|
|
|
* 获取用户个人信息
|
|
|
|
|
* @interface /user/find
|
2017-07-11 18:22:20 +08:00
|
|
|
|
* @method GET
|
|
|
|
|
* @param id 用户uid
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}, {
|
2017-07-07 12:04:14 +08:00
|
|
|
|
key: 'findById',
|
2017-07-06 20:55:02 +08:00
|
|
|
|
value: function () {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _ref10 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee10(ctx) {
|
2017-07-14 17:37:26 +08:00
|
|
|
|
var userInst, id, result;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee10$(_context10) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
while (1) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
switch (_context10.prev = _context10.next) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 0:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context10.prev = 0;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
2017-07-14 17:37:26 +08:00
|
|
|
|
id = ctx.request.body.id;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context10.next = 5;
|
2017-07-14 17:37:26 +08:00
|
|
|
|
return userInst.findById(id);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
|
|
|
|
case 5:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
result = _context10.sent;
|
|
|
|
|
return _context10.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(result));
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 9:
|
|
|
|
|
_context10.prev = 9;
|
|
|
|
|
_context10.t0 = _context10['catch'](0);
|
|
|
|
|
return _context10.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, _context10.t0.message));
|
2017-07-11 16:50:17 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 12:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context10.stop();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}, _callee10, this, [[0, 9]]);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
function findById(_x11) {
|
|
|
|
|
return _ref10.apply(this, arguments);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-07 12:04:14 +08:00
|
|
|
|
return findById;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}()
|
2017-07-11 18:22:20 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2017-07-12 17:01:27 +08:00
|
|
|
|
* 删除用户,只有admin用户才有此权限
|
2017-07-11 18:22:20 +08:00
|
|
|
|
* @interface /user/del
|
|
|
|
|
* @method POST
|
|
|
|
|
* @param id 用户uid
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'del',
|
|
|
|
|
value: function () {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _ref11 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee11(ctx) {
|
2017-07-14 17:37:26 +08:00
|
|
|
|
var userInst, id, result;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee11$(_context11) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
while (1) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
switch (_context11.prev = _context11.next) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 0:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context11.prev = 0;
|
2017-07-11 16:50:17 +08:00
|
|
|
|
|
|
|
|
|
if (!(this.getRole() !== 'admin')) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context11.next = 3;
|
2017-07-11 16:50:17 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context11.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 402, 'Without permission.'));
|
2017-07-11 16:50:17 +08:00
|
|
|
|
|
|
|
|
|
case 3:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
2017-07-14 17:37:26 +08:00
|
|
|
|
id = ctx.request.body.id;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context11.next = 7;
|
2017-07-14 17:37:26 +08:00
|
|
|
|
return userInst.del(id);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 7:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
result = _context11.sent;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(result);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context11.next = 14;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
break;
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 11:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context11.prev = 11;
|
|
|
|
|
_context11.t0 = _context11['catch'](0);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(null, 402, _context11.t0.message);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 14:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context11.stop();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
2017-07-05 17:59:53 +08:00
|
|
|
|
}
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}, _callee11, this, [[0, 11]]);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
function del(_x12) {
|
|
|
|
|
return _ref11.apply(this, arguments);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return del;
|
|
|
|
|
}()
|
2017-07-12 17:01:27 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新用户个人信息
|
|
|
|
|
* @interface /user/update
|
|
|
|
|
* @method POST
|
|
|
|
|
* @param username String
|
|
|
|
|
* @param email String
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'update',
|
|
|
|
|
value: function () {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var _ref12 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee12(ctx) {
|
2017-07-14 17:37:26 +08:00
|
|
|
|
var userInst, id, data, checkRepeat, result;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee12$(_context12) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
while (1) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
switch (_context12.prev = _context12.next) {
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 0:
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context12.prev = 0;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default);
|
2017-07-14 17:37:26 +08:00
|
|
|
|
id = this.getUid();
|
2017-07-12 17:01:27 +08:00
|
|
|
|
data = {
|
|
|
|
|
up_time: _yapi2.default.commons.time()
|
|
|
|
|
};
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
|
|
|
|
ctx.request.body.username && (data.username = ctx.request.body.username);
|
|
|
|
|
ctx.request.body.email && (data.email = ctx.request.body.email);
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
if (!data.email) {
|
|
|
|
|
_context12.next = 12;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_context12.next = 9;
|
|
|
|
|
return userInst.checkRepeat(data.email);
|
|
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
|
checkRepeat = _context12.sent;
|
|
|
|
|
|
|
|
|
|
if (!(checkRepeat > 0)) {
|
|
|
|
|
_context12.next = 12;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context12.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 401, '该email已经注册'));
|
|
|
|
|
|
|
|
|
|
case 12:
|
|
|
|
|
_context12.next = 14;
|
2017-07-14 17:37:26 +08:00
|
|
|
|
return userInst.update(id, data);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
|
|
|
|
|
case 14:
|
|
|
|
|
result = _context12.sent;
|
2017-07-06 20:55:02 +08:00
|
|
|
|
|
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(result);
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context12.next = 21;
|
2017-07-05 17:59:53 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 18:
|
|
|
|
|
_context12.prev = 18;
|
|
|
|
|
_context12.t0 = _context12['catch'](0);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
ctx.body = _yapi2.default.commons.resReturn(null, 402, _context12.t0.message);
|
2017-07-05 17:59:53 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 21:
|
2017-07-06 20:55:02 +08:00
|
|
|
|
case 'end':
|
2017-07-12 17:01:27 +08:00
|
|
|
|
return _context12.stop();
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
2017-07-05 17:59:53 +08:00
|
|
|
|
}
|
2017-07-12 17:01:27 +08:00
|
|
|
|
}, _callee12, this, [[0, 18]]);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
function update(_x13) {
|
|
|
|
|
return _ref12.apply(this, arguments);
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return update;
|
|
|
|
|
}()
|
2017-07-14 16:41:14 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 模糊搜索用户名或者email
|
|
|
|
|
* @interface /user/search
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category user
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {String} q
|
|
|
|
|
* @return {Object}
|
2017-07-14 17:00:30 +08:00
|
|
|
|
* @example ./api/user/search.json
|
2017-07-14 16:41:14 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
key: 'search',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref13 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee13(ctx) {
|
|
|
|
|
var q, queryList;
|
|
|
|
|
return _regenerator2.default.wrap(function _callee13$(_context13) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context13.prev = _context13.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
q = ctx.request.query.q;
|
|
|
|
|
|
|
|
|
|
if (q) {
|
|
|
|
|
_context13.next = 3;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context13.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(void 0, 400, 'No keyword.'));
|
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
if (_yapi2.default.commons.validateSearchKeyword(q)) {
|
|
|
|
|
_context13.next = 5;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context13.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(void 0, 400, 'Bad query.'));
|
|
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
|
_context13.next = 7;
|
|
|
|
|
return this.Model.search(q);
|
|
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
|
queryList = _context13.sent;
|
|
|
|
|
return _context13.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(queryList, 200, 'ok'));
|
|
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context13.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee13, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function search(_x14) {
|
|
|
|
|
return _ref13.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return search;
|
|
|
|
|
}()
|
2017-07-06 20:55:02 +08:00
|
|
|
|
}]);
|
|
|
|
|
return userController;
|
|
|
|
|
}(_base2.default);
|
|
|
|
|
|
|
|
|
|
module.exports = userController;
|