2017-07-05 16:17:58 +08:00
|
|
|
|
import projectModel from '../models/project.js'
|
|
|
|
|
import yapi from '../yapi.js'
|
2017-07-06 19:21:54 +08:00
|
|
|
|
import baseController from './base.js'
|
|
|
|
|
|
|
|
|
|
class projectController extends baseController {
|
|
|
|
|
|
|
|
|
|
constructor(ctx){
|
|
|
|
|
super(ctx)
|
|
|
|
|
this.Model = yapi.getInst(projectModel);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
/**
|
|
|
|
|
* 添加项目
|
|
|
|
|
* @interface /project/add_member
|
|
|
|
|
* @method POST
|
|
|
|
|
* @category project
|
|
|
|
|
* @foldnumber 10
|
|
|
|
|
* @param {Number} id 项目id,不能为空
|
|
|
|
|
* @param {member_uid} uid 项目成员uid,不能为空
|
|
|
|
|
* @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
|
|
|
|
/**
|
|
|
|
|
* 添加项目
|
|
|
|
|
* @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-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不能为空');
|
|
|
|
|
}
|
|
|
|
|
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-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/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] 项目描述
|
|
|
|
|
* @param {String} [env] JSON字符串,例如{"local": "http://www.api.com"}
|
|
|
|
|
* @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-06 19:21:54 +08:00
|
|
|
|
|
|
|
|
|
module.exports = projectController;
|