2017-07-05 17:47:51 +08:00
|
|
|
|
'use strict';
|
|
|
|
|
|
2017-07-10 11:56: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-05 17:47:51 +08:00
|
|
|
|
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
|
|
|
|
|
|
|
|
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
|
|
|
|
|
|
|
|
var _createClass2 = require('babel-runtime/helpers/createClass');
|
|
|
|
|
|
|
|
|
|
var _createClass3 = _interopRequireDefault(_createClass2);
|
|
|
|
|
|
|
|
|
|
var _yapi = require('../yapi.js');
|
|
|
|
|
|
|
|
|
|
var _yapi2 = _interopRequireDefault(_yapi);
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
var _project = require('../models/project.js');
|
|
|
|
|
|
|
|
|
|
var _project2 = _interopRequireDefault(_project);
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var _user = require('../models/user.js');
|
2017-07-05 17:47:51 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var _user2 = _interopRequireDefault(_user);
|
2017-07-10 11:11:35 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
2017-07-05 17:47:51 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var jwt = require('jsonwebtoken');
|
2017-07-10 11:11:35 +08:00
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var baseController = function () {
|
|
|
|
|
function baseController(ctx) {
|
2017-07-10 11:11:35 +08:00
|
|
|
|
(0, _classCallCheck3.default)(this, baseController);
|
2017-07-11 16:50:17 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
this.ctx = ctx;
|
2017-07-11 16:50:17 +08:00
|
|
|
|
//网站上线后,role对象key是不能修改的,value可以修改
|
|
|
|
|
this.roles = {
|
|
|
|
|
admin: 'Admin',
|
|
|
|
|
member: '网站会员'
|
|
|
|
|
};
|
2017-07-05 17:47:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(0, _createClass3.default)(baseController, [{
|
2017-07-11 12:12:43 +08:00
|
|
|
|
key: 'init',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee(ctx) {
|
2017-07-12 17:01:27 +08:00
|
|
|
|
var ignoreRouter;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee$(_context) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context.prev = _context.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.$user = null;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
ignoreRouter = ['/user/login_by_token', '/user/login', '/user/reg', '/user/status', '/user/logout'];
|
2017-07-11 12:12:43 +08:00
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
if (!(ignoreRouter.indexOf(ctx.path) > -1)) {
|
|
|
|
|
_context.next = 6;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$auth = true;
|
2017-07-12 17:01:27 +08:00
|
|
|
|
_context.next = 8;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 6:
|
|
|
|
|
_context.next = 8;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return this.checkLogin(ctx);
|
|
|
|
|
|
2017-07-12 17:01:27 +08:00
|
|
|
|
case 8:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 'end':
|
|
|
|
|
return _context.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function init(_x) {
|
|
|
|
|
return _ref.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return init;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
2017-07-05 17:47:51 +08:00
|
|
|
|
key: 'getUid',
|
2017-07-27 14:58:32 +08:00
|
|
|
|
value: function getUid() {
|
2017-07-25 10:22:45 +08:00
|
|
|
|
return parseInt(this.$uid, 10);
|
2017-07-05 17:47:51 +08:00
|
|
|
|
}
|
2017-07-11 12:12:43 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'checkLogin',
|
|
|
|
|
value: function () {
|
|
|
|
|
var _ref2 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee2(ctx) {
|
|
|
|
|
var token, uid, userInst, result, decoded;
|
|
|
|
|
return _regenerator2.default.wrap(function _callee2$(_context2) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context2.prev = _context2.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
token = ctx.cookies.get('_yapi_token');
|
|
|
|
|
uid = ctx.cookies.get('_yapi_uid');
|
|
|
|
|
_context2.prev = 2;
|
|
|
|
|
|
|
|
|
|
if (!(!token || !uid)) {
|
|
|
|
|
_context2.next = 5;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context2.abrupt('return', false);
|
|
|
|
|
|
|
|
|
|
case 5:
|
|
|
|
|
userInst = _yapi2.default.getInst(_user2.default); //创建user实体
|
|
|
|
|
|
|
|
|
|
_context2.next = 8;
|
|
|
|
|
return userInst.findById(uid);
|
|
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
|
result = _context2.sent;
|
|
|
|
|
decoded = jwt.verify(token, result.passsalt);
|
|
|
|
|
|
|
|
|
|
if (!(decoded.uid == uid)) {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
_context2.next = 15;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$uid = uid;
|
|
|
|
|
this.$auth = true;
|
|
|
|
|
this.$user = result;
|
|
|
|
|
return _context2.abrupt('return', true);
|
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 15:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context2.abrupt('return', false);
|
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 18:
|
|
|
|
|
_context2.prev = 18;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context2.t0 = _context2['catch'](2);
|
|
|
|
|
return _context2.abrupt('return', false);
|
|
|
|
|
|
2017-07-11 16:50:17 +08:00
|
|
|
|
case 21:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
case 'end':
|
|
|
|
|
return _context2.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-11 16:50:17 +08:00
|
|
|
|
}, _callee2, this, [[2, 18]]);
|
2017-07-11 12:12:43 +08:00
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function checkLogin(_x2) {
|
|
|
|
|
return _ref2.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return checkLogin;
|
|
|
|
|
}()
|
2017-07-05 17:47:51 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'getLoginStatus',
|
2017-07-11 12:12:43 +08:00
|
|
|
|
value: function () {
|
|
|
|
|
var _ref3 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee3(ctx) {
|
|
|
|
|
return _regenerator2.default.wrap(function _callee3$(_context3) {
|
|
|
|
|
while (1) {
|
|
|
|
|
switch (_context3.prev = _context3.next) {
|
|
|
|
|
case 0:
|
|
|
|
|
_context3.next = 2;
|
|
|
|
|
return this.checkLogin(ctx);
|
|
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
|
_context3.t0 = _context3.sent;
|
|
|
|
|
|
|
|
|
|
if (!(_context3.t0 === true)) {
|
|
|
|
|
_context3.next = 5;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _context3.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(_yapi2.default.commons.fieldSelect(this.$user, ['_id', 'username', 'email', 'up_time', 'add_time'])));
|
|
|
|
|
|
|
|
|
|
case 5:
|
2017-07-11 16:50:17 +08:00
|
|
|
|
return _context3.abrupt('return', ctx.body = _yapi2.default.commons.resReturn(null, 300, 'Please login.'));
|
2017-07-11 12:12:43 +08:00
|
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
|
case 'end':
|
|
|
|
|
return _context3.stop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, _callee3, this);
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
function getLoginStatus(_x3) {
|
|
|
|
|
return _ref3.apply(this, arguments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return getLoginStatus;
|
|
|
|
|
}()
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'getRole',
|
|
|
|
|
value: function getRole() {
|
2017-07-11 16:50:17 +08:00
|
|
|
|
return this.$user.role;
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}, {
|
|
|
|
|
key: 'jungeProjectAuth',
|
|
|
|
|
value: function () {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var _ref4 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee4(id) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
var model, result;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee4$(_context4) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
while (1) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
switch (_context4.prev = _context4.next) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
case 0:
|
|
|
|
|
model = _yapi2.default.getInst(_project2.default);
|
|
|
|
|
|
|
|
|
|
if (!(this.getRole() === 'admin')) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context4.next = 3;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context4.abrupt('return', true);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
if (id) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context4.next = 5;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context4.abrupt('return', false);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 5:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context4.next = 7;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
return model.get(id);
|
|
|
|
|
|
|
|
|
|
case 7:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
result = _context4.sent;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
if (!(result.uid === this.getUid())) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context4.next = 10;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context4.abrupt('return', true);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 10:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context4.abrupt('return', false);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 11:
|
|
|
|
|
case 'end':
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context4.stop();
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-11 12:12:43 +08:00
|
|
|
|
}, _callee4, this);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
function jungeProjectAuth(_x4) {
|
|
|
|
|
return _ref4.apply(this, arguments);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return jungeProjectAuth;
|
|
|
|
|
}()
|
|
|
|
|
}, {
|
|
|
|
|
key: 'jungeMemberAuth',
|
|
|
|
|
value: function () {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
var _ref5 = (0, _asyncToGenerator3.default)(_regenerator2.default.mark(function _callee5(id, member_uid) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
var model, result;
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _regenerator2.default.wrap(function _callee5$(_context5) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
while (1) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
switch (_context5.prev = _context5.next) {
|
2017-07-10 11:56:53 +08:00
|
|
|
|
case 0:
|
|
|
|
|
model = _yapi2.default.getInst(_project2.default);
|
|
|
|
|
|
|
|
|
|
if (!(this.getRole() === 'admin')) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context5.next = 3;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context5.abrupt('return', true);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
if (!(!id || !member_uid)) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context5.next = 5;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context5.abrupt('return', false);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 5:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context5.next = 7;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
return model.checkMemberRepeat(id, member_uid);
|
|
|
|
|
|
|
|
|
|
case 7:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
result = _context5.sent;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
if (!(result > 0)) {
|
2017-07-11 12:12:43 +08:00
|
|
|
|
_context5.next = 10;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context5.abrupt('return', true);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 10:
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context5.abrupt('return', false);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
|
|
|
|
|
case 11:
|
|
|
|
|
case 'end':
|
2017-07-11 12:12:43 +08:00
|
|
|
|
return _context5.stop();
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-11 12:12:43 +08:00
|
|
|
|
}, _callee5, this);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}));
|
|
|
|
|
|
2017-07-11 12:12:43 +08:00
|
|
|
|
function jungeMemberAuth(_x5, _x6) {
|
|
|
|
|
return _ref5.apply(this, arguments);
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return jungeMemberAuth;
|
|
|
|
|
}()
|
2017-07-05 17:47:51 +08:00
|
|
|
|
}]);
|
|
|
|
|
return baseController;
|
|
|
|
|
}();
|
|
|
|
|
|
|
|
|
|
module.exports = baseController;
|