mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
182 lines
6.1 KiB
JavaScript
182 lines
6.1 KiB
JavaScript
import projectModel from '../models/project.js'
|
|
import yapi from '../yapi.js'
|
|
import baseController from './base.js'
|
|
|
|
class projectController extends baseController {
|
|
|
|
constructor(ctx){
|
|
super(ctx)
|
|
this.Model = yapi.getInst(projectModel);
|
|
}
|
|
|
|
async jungeProjectAuth(id){
|
|
if(this.getRole() === 'admin') return true;
|
|
if(!id) return false;
|
|
let result = await this.Model.get(params.id);
|
|
if(result.uid === this.getUid()){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
async jungeMemberAuth(id, member_uid){
|
|
if(this.getRole() === 'admin') return true;
|
|
if(!id || !member_uid) return false;
|
|
let result = await this.Model.checkMemberRepeat(params.id, member_uid);
|
|
if(result > 0){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
async add(ctx) {
|
|
let params = ctx.request.body;
|
|
|
|
if(!params.group_id){
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目分组id不能为空');
|
|
}
|
|
|
|
if(!params.name){
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目名不能为空');
|
|
}
|
|
|
|
let checkRepeat = await this.Model.checkNameRepeat(params.name);
|
|
if(checkRepeat > 0){
|
|
return ctx.body = yapi.commons.resReturn(null, 401, '已存在的项目名');
|
|
}
|
|
|
|
if(!params.basepath){
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目basepath不能为空');
|
|
}
|
|
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');
|
|
}
|
|
|
|
let data = {
|
|
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,
|
|
add_time: yapi.commons.time(),
|
|
up_time: yapi.commons.time()
|
|
}
|
|
|
|
try{
|
|
let result = await this.Model.save(data);
|
|
ctx.body = yapi.commons.resReturn(result);
|
|
}catch(e){
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
}
|
|
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
|
|
async list(ctx) {
|
|
if(!ctx.request.query.group_id){
|
|
return ctx.body = yapi.commons.resReturn(null, 400, '项目分组id不能为空');
|
|
}
|
|
try{
|
|
let result = await this.Model.list();
|
|
ctx.body = yapi.commons.resReturn(result)
|
|
}catch(err){
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
}
|
|
}
|
|
|
|
async del(ctx){
|
|
try{
|
|
let id = ctx.request.body.id;
|
|
if(this.jungeProjectAuth(id) !== true){
|
|
return ctx.body = yapi.commons.resReturn(null, 405, '没有权限');
|
|
}
|
|
let result = await this.Model.del(id);
|
|
ctx.body = yapi.commons.resReturn(result)
|
|
}catch(err){
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
}
|
|
}
|
|
|
|
async up(ctx){
|
|
try{
|
|
let id = ctx.request.body.id;
|
|
if(this.jungeMemberAuth(id, this.getUid()) !== true){
|
|
return ctx.body = yapi.commons.resReturn(null, 405, '没有权限');
|
|
}
|
|
let data = {};
|
|
ctx.request.body.project_name && (data.project_name = ctx.request.body.project_name)
|
|
ctx.request.body.project_desc && (data.project_desc = ctx.request.body.project_desc)
|
|
if(Object.keys(data).length ===0){
|
|
ctx.body = yapi.commons.resReturn(null, 404, '分组名和分组描述都为空');
|
|
}
|
|
let result = await this.Model.up(id, data);
|
|
ctx.body = yapi.commons.resReturn(result)
|
|
}catch(err){
|
|
ctx.body = yapi.commons.resReturn(null, 402, e.message)
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = projectController; |