2017-07-14 17:00:30 +08:00
|
|
|
|
import projectModel from '../models/project.js'
|
2017-07-05 16:17:58 +08:00
|
|
|
|
import yapi from '../yapi.js'
|
2017-07-06 19:21:54 +08:00
|
|
|
|
import baseController from './base.js'
|
2017-07-10 20:02:44 +08:00
|
|
|
|
import interfaceModel from '../models/interface.js'
|
2017-07-14 17:37:26 +08:00
|
|
|
|
import userModel from '../models/user.js'
|
2017-07-14 16:41:14 +08:00
|
|
|
|
import groupModel from '../models/group'
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
class projectController extends baseController {
|
|
|
|
|
|
|
|
|
|
constructor(ctx){
|
|
|
|
|
super(ctx)
|
|
|
|
|
this.Model = yapi.getInst(projectModel);
|
2017-07-14 16:41:14 +08:00
|
|
|
|
this.groupModel = yapi.getInst(groupModel);
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
|
|
|
|
* 添加项目分组
|
|
|
|
|
* @interface /project/add
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {String} name 项目名称,不能为空
|
|
|
|
|
* @param {String} basepath 项目基本路径,不能为空
|
|
|
|
|
* @param {String} prd_host 项目线上域名,不能为空。可通过配置的域名访问到mock数据
|
|
|
|
|
* @param {Number} group_id 项目分组id,不能为空
|
|
|
|
|
* @param {String} [desc] 项目描述
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/add.json
|
|
|
|
|
*/
|
2017-07-05 16:17:58 +08:00
|
|
|
|
async add(ctx) {
|
|
|
|
|
let params = ctx.request.body;
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
if(!params.group_id){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目分组id不能为空');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!params.name){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目名不能为空');
|
2017-07-05 16:17:58 +08:00
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
let checkRepeat = await this.Model.checkNameRepeat(params.name);
|
2017-07-05 16:17:58 +08:00
|
|
|
|
if(checkRepeat > 0){
|
2017-07-06 19:21:54 +08:00
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 401, '已存在的项目名');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!params.basepath){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目basepath不能为空');
|
2017-07-05 16:17:58 +08:00
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
if(!params.prd_host){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目domain不能为空');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let checkRepeatDomain = await this.Model.checkDomainRepeat(params.prd_host, params.basepath);
|
|
|
|
|
if(checkRepeatDomain > 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 401, '已存在domain和basepath');
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-05 16:17:58 +08:00
|
|
|
|
let data = {
|
2017-07-06 19:21:54 +08:00
|
|
|
|
name: params.name,
|
|
|
|
|
desc: params.desc,
|
|
|
|
|
prd_host: params.prd_host,
|
|
|
|
|
basepath: params.basepath,
|
|
|
|
|
members: [this.getUid()],
|
|
|
|
|
uid: this.getUid(),
|
|
|
|
|
group_id: params.group_id,
|
2017-07-05 16:17:58 +08:00
|
|
|
|
add_time: yapi.commons.time(),
|
|
|
|
|
up_time: yapi.commons.time()
|
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
2017-07-05 16:17:58 +08:00
|
|
|
|
try{
|
2017-07-06 19:21:54 +08:00
|
|
|
|
let result = await this.Model.save(data);
|
2017-07-05 16:17:58 +08:00
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
|
|
|
}catch(e){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
2017-07-14 18:08:05 +08:00
|
|
|
|
* 添加项目成员
|
2017-07-10 11:56:53 +08:00
|
|
|
|
* @interface /project/add_member
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
2017-07-14 16:41:14 +08:00
|
|
|
|
* @param {String} member_uid 项目成员uid,不能为空
|
2017-07-10 11:56:53 +08:00
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/add_member.json
|
|
|
|
|
*/
|
2017-07-06 19:21:54 +08:00
|
|
|
|
async addMember(ctx){
|
|
|
|
|
let params = ctx.request.body;
|
|
|
|
|
if(!params.member_uid){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目成员uid不能为空');
|
|
|
|
|
}
|
|
|
|
|
if(!params.id){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目id不能为空');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var check = await this.Model.checkMemberRepeat(params.id, params.member_uid);
|
|
|
|
|
if(check > 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目成员已存在');
|
|
|
|
|
}
|
|
|
|
|
try{
|
|
|
|
|
let result = await this.Model.addMember(params.id, params.member_uid);
|
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
|
|
|
}catch(e){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
2017-07-14 18:08:05 +08:00
|
|
|
|
* 删除项目成员
|
2017-07-10 11:56:53 +08:00
|
|
|
|
* @interface /project/del_member
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @param {member_uid} uid 项目成员uid,不能为空
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/del_member.json
|
|
|
|
|
*/
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
async delMember(ctx){
|
|
|
|
|
let params = ctx.request.body;
|
|
|
|
|
if(!params.member_uid){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目成员uid不能为空');
|
|
|
|
|
}
|
|
|
|
|
if(!params.id){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目id不能为空');
|
|
|
|
|
}
|
|
|
|
|
var check = await this.Model.checkMemberRepeat(params.id, params.member_uid);
|
|
|
|
|
if(check === 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目成员不存在');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
let result = await this.Model.delMember(params.id, params.member_uid);
|
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
|
|
|
}catch(e){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-14 17:37:26 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取项目成员列表
|
2017-07-14 18:08:05 +08:00
|
|
|
|
* @interface /project/get_member_list.json
|
2017-07-14 17:37:26 +08:00
|
|
|
|
* @method GET
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @return {Object}
|
|
|
|
|
* @example ./api/project/get_member_list.json
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
async getMemberList(ctx) {
|
|
|
|
|
let params = ctx.request.query;
|
|
|
|
|
if(!params.id) {
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目id不能为空');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
let project = await this.Model.get(params.id);
|
|
|
|
|
let userInst = yapi.getInst(userModel);
|
|
|
|
|
let result = [];
|
|
|
|
|
|
|
|
|
|
for(let i of project.members) {
|
|
|
|
|
let user = await userInst.findById(i);
|
|
|
|
|
result.push(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
|
|
|
} catch(e) {
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
|
|
|
|
* 添加项目
|
|
|
|
|
* @interface /project/get
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/get.json
|
|
|
|
|
*/
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
async get(ctx){
|
|
|
|
|
let params = ctx.request.query;
|
|
|
|
|
if(!params.id){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目id不能为空');
|
|
|
|
|
}
|
|
|
|
|
try{
|
|
|
|
|
let result = await this.Model.get(params.id);
|
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
|
|
|
}catch(e){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-05 16:17:58 +08:00
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取项目列表
|
|
|
|
|
* @interface /project/list
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} group_id 项目group_id,不能为空
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/list.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-05 16:17:58 +08:00
|
|
|
|
async list(ctx) {
|
2017-07-06 20:53:26 +08:00
|
|
|
|
let group_id = ctx.request.query.group_id;
|
|
|
|
|
if(!group_id){
|
2017-07-06 19:21:54 +08:00
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目分组id不能为空');
|
|
|
|
|
}
|
2017-07-05 16:17:58 +08:00
|
|
|
|
try{
|
2017-07-06 20:53:26 +08:00
|
|
|
|
let result = await this.Model.list(group_id);
|
2017-07-05 16:17:58 +08:00
|
|
|
|
ctx.body = yapi.commons.resReturn(result)
|
|
|
|
|
}catch(err){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}
|
2017-07-05 16:17:58 +08:00
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
|
|
|
|
* 删除项目
|
|
|
|
|
* @interface /project/del
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/del.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-05 16:17:58 +08:00
|
|
|
|
async del(ctx){
|
|
|
|
|
try{
|
|
|
|
|
let id = ctx.request.body.id;
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(!id){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目id不能为空');
|
|
|
|
|
}
|
2017-07-10 20:02:44 +08:00
|
|
|
|
let interfaceInst = yapi.getInst(interfaceModel);
|
|
|
|
|
let count = await interfaceInst.countByProjectId(id);
|
|
|
|
|
if(count > 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '请先删除该项目下所有接口');
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(await this.jungeProjectAuth(id) !== true){
|
2017-07-06 19:21:54 +08:00
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 405, '没有权限');
|
|
|
|
|
}
|
|
|
|
|
let result = await this.Model.del(id);
|
2017-07-10 20:02:44 +08:00
|
|
|
|
ctx.body = yapi.commons.resReturn(result);
|
2017-07-05 16:17:58 +08:00
|
|
|
|
}catch(err){
|
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
}
|
2017-07-05 16:17:58 +08:00
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
/**
|
|
|
|
|
* 编辑项目
|
|
|
|
|
* @interface /project/up
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @param {String} name 项目名称,不能为空
|
|
|
|
|
* @param {String} basepath 项目基本路径,不能为空
|
|
|
|
|
* @param {String} prd_host 项目线上域名,不能为空。可通过配置的域名访问到mock数据
|
|
|
|
|
* @param {String} [desc] 项目描述
|
2017-07-10 20:02:44 +08:00
|
|
|
|
* @param {Array} [env] 项目环境配置
|
|
|
|
|
* @param {String} [env[].name] 环境名称
|
|
|
|
|
* @param {String} [env[].host] 环境域名
|
2017-07-10 11:56:53 +08:00
|
|
|
|
* @returns {Object}
|
|
|
|
|
* @example ./api/project/up.json
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-05 16:17:58 +08:00
|
|
|
|
async up(ctx){
|
2017-07-06 19:21:54 +08:00
|
|
|
|
try{
|
2017-07-05 16:17:58 +08:00
|
|
|
|
let id = ctx.request.body.id;
|
2017-07-06 20:53:26 +08:00
|
|
|
|
let params = ctx.request.body;
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(await this.jungeMemberAuth(id, this.getUid()) !== true){
|
2017-07-06 19:21:54 +08:00
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 405, '没有权限');
|
|
|
|
|
}
|
2017-07-06 20:53:26 +08:00
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(params.name){
|
|
|
|
|
let checkRepeat = await this.Model.checkNameRepeat(params.name);
|
|
|
|
|
if(checkRepeat > 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 401, '已存在的项目名');
|
|
|
|
|
}
|
2017-07-06 20:53:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(params.basepath && params.prd_host){
|
|
|
|
|
let checkRepeatDomain = await this.Model.checkDomainRepeat(params.prd_host, params.basepath);
|
|
|
|
|
if(checkRepeatDomain > 0){
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(null, 401, '已存在domain和basepath');
|
|
|
|
|
}
|
2017-07-06 20:53:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
let data= {
|
|
|
|
|
uid: this.getUid(),
|
|
|
|
|
up_time: yapi.commons.time()
|
2017-07-06 20:53:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(params.name) data.name = params.name;
|
|
|
|
|
if(params.desc) data.desc = params.desc;
|
|
|
|
|
if(params.prd_host && params.basepath){
|
|
|
|
|
data.prd_host = params.prd_host;
|
|
|
|
|
data.basepath = params.basepath;
|
2017-07-06 20:53:26 +08:00
|
|
|
|
}
|
2017-07-10 11:56:53 +08:00
|
|
|
|
if(params.env) data.env = params.env;
|
2017-07-06 20:53:26 +08:00
|
|
|
|
|
2017-07-06 19:21:54 +08:00
|
|
|
|
let result = await this.Model.up(id, data);
|
2017-07-05 16:17:58 +08:00
|
|
|
|
ctx.body = yapi.commons.resReturn(result)
|
2017-07-10 11:56:53 +08:00
|
|
|
|
}catch(e){
|
2017-07-05 16:17:58 +08:00
|
|
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-14 16:41:14 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 模糊搜索项目名称或者组名称
|
|
|
|
|
* @interface /project/search
|
|
|
|
|
* @method GET
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {String} q
|
|
|
|
|
* @return {Object}
|
2017-07-14 17:00:30 +08:00
|
|
|
|
* @example ./api/project/search.json
|
2017-07-14 16:41:14 +08:00
|
|
|
|
*/
|
|
|
|
|
async search(ctx) {
|
|
|
|
|
const { q } = ctx.request.query;
|
|
|
|
|
|
|
|
|
|
if (!q) {
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(void 0, 400, 'No keyword.')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!yapi.commons.validateSearchKeyword(q)) {
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(void 0, 400, 'Bad query.')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let queryList = {
|
|
|
|
|
project: await this.Model.search(q),
|
|
|
|
|
group: await this.groupModel.search(q)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ctx.body = yapi.commons.resReturn(queryList, 200, 'ok')
|
|
|
|
|
}
|
2017-07-05 16:17:58 +08:00
|
|
|
|
}
|
2017-07-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
module.exports = projectController;
|