123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- 'use strict';
- /**
- * 项目账号数据模型
- *
- * @author CaiAoLin
- * @date 2017/11/16
- * @version
- */
- // 加密类
- const crypto = require('crypto');
- const SSO = require('../lib/sso');
- module.exports = app => {
- class ProjectAccount extends app.BaseService {
- /**
- * 构造函数
- *
- * @param {Object} ctx - egg全局变量
- * @return {void}
- */
- constructor(ctx) {
- super(ctx);
- this.tableName = 'project_account';
- }
- /**
- * 数据验证规则
- *
- * @param {String} scene - 场景
- * @return {Object} - 返回数据
- */
- rule(scene) {
- let rule = {};
- switch (scene) {
- case 'login':
- rule = {
- account: { type: 'string', required: true, min: 2 },
- project_password: { type: 'string', required: true, min: 4 },
- project: { type: 'string', required: true, min: 13 },
- };
- break;
- case 'ssoLogin':
- rule = {
- username: { type: 'string', required: true, min: 2 },
- password: { type: 'string', required: true, min: 4 },
- };
- default:
- break;
- }
- return rule;
- }
- /**
- * 账号登录
- *
- * @param {Object} data - 表单post数据
- * @param {Number} loginType - 登录类型 1 | 2
- * @return {Boolean} - 返回登录结果
- */
- async accountLogin(data, loginType) {
- let result = false;
- try {
- // 验证数据
- const scene = loginType === 1 ? 'ssoLogin' : 'login';
- const rule = this.rule(scene);
- this.ctx.validate(rule, data);
- let accountData = {};
- if (loginType === 2) {
- // 查找项目数据
- const projectData = await this.ctx.service.project.getProjectByCode(data.project.toString());
- if (projectData === null) {
- throw '不存在项目数据';
- }
- // 查找对应数据
- accountData = await this.db.get(this.tableName, {
- account: data.account,
- project_id: projectData.id,
- });
- if (accountData === null) {
- throw '不存在对应用户数据';
- }
- // 判断密码
- if (accountData.is_admin === 1) {
- // 管理员则用sso通道判断
- const sso = new SSO(this.ctx);
- result = await sso.loginValid(data.account, data.project_password.toString());
- } else {
- // 加密密码
- const encryptPassword = crypto.createHmac('sha1', data.account).update(data.project_password)
- .digest().toString('base64');
- result = encryptPassword === accountData.password;
- }
- } else {
- // sso登录(演示版)
- const sso = new SSO(this.ctx);
- result = await sso.loginValid(data.username, data.password.toString());
- accountData.account = data.username;
- accountData.id = sso.accountID;
- console.log(accountData);
- }
- // 如果成功则更新登录时间
- if (result) {
- const currentTime = new Date().getTime() / 1000;
- if (loginType === 2) {
- const updateData = {
- last_login: currentTime,
- };
- await this.update(updateData, { id: accountData.id });
- }
- // 加密token
- const sessionToken = crypto.createHmac('sha1', currentTime + '').update(accountData.account)
- .digest().toString('base64');
- // 存入session
- this.ctx.session.sessionUser = {
- account: accountData.account,
- accountId: accountData.id,
- loginTime: currentTime,
- sessionToken,
- loginType,
- };
- }
- } catch (error) {
- console.log(error);
- result = false;
- }
- return result;
- }
- }
- return ProjectAccount;
- };
|