mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
99 lines
2.4 KiB
JavaScript
99 lines
2.4 KiB
JavaScript
import yapi from '../yapi.js';
|
|
import baseModel from './base.js';
|
|
|
|
class interfaceModel extends baseModel {
|
|
getName() {
|
|
return 'interface';
|
|
}
|
|
|
|
getSchema() {
|
|
return {
|
|
title: { type: String, required: true },
|
|
uid: { type: Number, required: true },
|
|
path: { type: String, required: true },
|
|
method: { type: String, required: true },
|
|
project_id: { type: Number, required: true },
|
|
desc: String,
|
|
add_time: Number,
|
|
up_time: Number,
|
|
req_query:[{
|
|
name: String, value: String, desc: String, required: Boolean
|
|
}],
|
|
req_headers: [{
|
|
name: String, value: String, desc: String, required: Boolean
|
|
}],
|
|
req_params_type: {
|
|
type: String,
|
|
enum: ['form', 'json', 'text', 'xml']
|
|
},
|
|
req_params_form: [{
|
|
name: String, value: String, value_type: { type: String, enum: ['text', 'file'] }, desc: String, required: Boolean
|
|
}],
|
|
req_params_other: String,
|
|
res_body_type: {
|
|
type: String,
|
|
enum: ['json', 'text', 'xml']
|
|
},
|
|
res_body: String
|
|
};
|
|
}
|
|
|
|
save(data) {
|
|
let m = new this.model(data);
|
|
return m.save();
|
|
}
|
|
|
|
get(id) {
|
|
return this.model.findOne({
|
|
_id: id
|
|
})
|
|
.exec();
|
|
}
|
|
|
|
getByPath(project_id, path, method) {
|
|
return this.model.find({
|
|
project_id: project_id,
|
|
path: path,
|
|
method: method
|
|
})
|
|
.exec();
|
|
}
|
|
|
|
checkRepeat(id, path, method) {
|
|
return this.model.count({
|
|
project_id: id,
|
|
path: path,
|
|
method: method
|
|
});
|
|
}
|
|
|
|
countByProjectId(id) {
|
|
return this.model.count({
|
|
project_id: id
|
|
});
|
|
}
|
|
|
|
list(project_id) {
|
|
return this.model.find({
|
|
project_id: project_id
|
|
})
|
|
.sort({ _id: -1 })
|
|
.exec();
|
|
}
|
|
|
|
del(id) {
|
|
return this.model.deleteOne({
|
|
_id: id
|
|
});
|
|
}
|
|
|
|
up(id, data) {
|
|
data.up_time = yapi.commons.time();
|
|
return this.model.update({
|
|
_id: id
|
|
}, data, { runValidators: true });
|
|
}
|
|
}
|
|
|
|
module.exports = interfaceModel;
|