2017-03-20 22:08:49 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A set of functions called "actions" for `ContentManager`
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
models: async(ctx) => {
|
|
|
|
ctx.body = strapi.models;
|
|
|
|
},
|
|
|
|
|
|
|
|
find: async(ctx) => {
|
|
|
|
const model = ctx.params.model;
|
2017-05-04 19:05:41 +02:00
|
|
|
const primaryKey = strapi.models[model].primaryKey;
|
2017-03-20 22:08:49 +01:00
|
|
|
|
2017-04-11 11:34:59 +02:00
|
|
|
const {
|
|
|
|
limit = 10,
|
|
|
|
skip = 0,
|
2017-05-04 19:05:41 +02:00
|
|
|
sort = primaryKey
|
2017-04-11 11:34:59 +02:00
|
|
|
} = ctx.request.query;
|
|
|
|
|
2017-03-20 22:08:49 +01:00
|
|
|
const entries = await User
|
2017-04-11 11:34:59 +02:00
|
|
|
.find()
|
2017-05-03 17:10:23 +02:00
|
|
|
.limit(Number(limit))
|
2017-04-11 13:44:47 +02:00
|
|
|
.sort(sort)
|
2017-05-03 17:10:23 +02:00
|
|
|
.skip(Number(skip));
|
2017-03-20 22:08:49 +01:00
|
|
|
|
|
|
|
ctx.body = entries;
|
|
|
|
},
|
|
|
|
|
2017-04-11 11:34:59 +02:00
|
|
|
count: async(ctx) => {
|
|
|
|
const model = ctx.params.model;
|
|
|
|
|
|
|
|
const count = await User
|
|
|
|
.count();
|
|
|
|
|
|
|
|
ctx.body = {
|
|
|
|
count: Number(count)
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-03-20 22:08:49 +01:00
|
|
|
findOne: async(ctx) => {
|
|
|
|
const model = ctx.params.model;
|
2017-05-04 19:05:41 +02:00
|
|
|
const primaryKey = strapi.models[model].primaryKey;
|
|
|
|
const params = {};
|
|
|
|
params[primaryKey] = ctx.params.id;
|
2017-03-20 22:08:49 +01:00
|
|
|
|
2017-05-04 19:05:41 +02:00
|
|
|
const entry = await User
|
|
|
|
.findOne(params);
|
2017-03-20 22:08:49 +01:00
|
|
|
|
2017-05-04 19:05:41 +02:00
|
|
|
ctx.body = entry;
|
2017-04-21 17:19:41 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
update: async(ctx) => {
|
2017-05-04 19:05:41 +02:00
|
|
|
const model = ctx.params.model;
|
|
|
|
const primaryKey = strapi.models[model].primaryKey;
|
|
|
|
const params = {};
|
|
|
|
params[primaryKey] = ctx.params.id;
|
|
|
|
|
2017-04-21 17:19:41 +02:00
|
|
|
const entryUpdated = await User
|
2017-05-04 19:05:41 +02:00
|
|
|
.update(params, ctx.request.body);
|
2017-04-21 17:19:41 +02:00
|
|
|
|
2017-04-21 17:52:18 +02:00
|
|
|
ctx.body = entryUpdated;
|
|
|
|
},
|
|
|
|
|
|
|
|
delete: async(ctx) => {
|
2017-05-04 19:05:41 +02:00
|
|
|
const model = ctx.params.model;
|
|
|
|
const primaryKey = strapi.models[model].primaryKey;
|
|
|
|
const params = {};
|
|
|
|
params[primaryKey] = ctx.params.id;
|
|
|
|
|
2017-04-21 17:52:18 +02:00
|
|
|
const entryDeleted = await User
|
2017-05-04 19:05:41 +02:00
|
|
|
.remove(params);
|
2017-04-21 17:52:18 +02:00
|
|
|
|
|
|
|
ctx.body = entryDeleted;
|
2017-03-20 22:08:49 +01:00
|
|
|
}
|
|
|
|
};
|