4ac88dce10
* refactored `core/frontend/apps` to destructure common imports * refactored `core/frontend/services/{apps, redirects, routing}` to destructure common imports * refactored `core/frontend/services/settings` to destructure common imports * refactored remaining `core/frontend/services` to destructure common imports * refactored `core/server/adapters` to destructure common imports * refactored `core/server/data/{db, exporter, schema, validation}` to destructure common imports * refactored `core/server/data/importer` to destructure common imports * refactored `core/server/models/{base, plugins, relations}` to destructure common imports * refactored remaining `core/server/models` to destructure common imports * refactored `core/server/api/canary/utils/serializers/output` to destructure common imports * refactored remaining `core/server/api/canary/utils` to destructure common imports * refactored remaining `core/server/api/canary` to destructure common imports * refactored `core/server/api/shared` to destructure common imports * refactored `core/server/api/v2/utils` to destructure common imports * refactored remaining `core/server/api/v2` to destructure common imports * refactored `core/frontend/meta` to destructure common imports * fixed some tests referencing `common.errors` instead of `@tryghost/errors` - Not all of them need to be updated; only updating the ones that are causing failures * fixed errors import being shadowed by local scope
181 lines
4.9 KiB
JavaScript
181 lines
4.9 KiB
JavaScript
const path = require('path');
|
|
const Promise = require('bluebird');
|
|
const {i18n} = require('../../lib/common');
|
|
const errors = require('@tryghost/errors');
|
|
const dbBackup = require('../../data/db/backup');
|
|
const models = require('../../models');
|
|
const permissionsService = require('../../services/permissions');
|
|
const ALLOWED_INCLUDES = ['count.posts', 'permissions', 'roles', 'roles.permissions'];
|
|
const UNSAFE_ATTRS = ['status', 'roles'];
|
|
|
|
module.exports = {
|
|
docName: 'users',
|
|
|
|
browse: {
|
|
options: [
|
|
'include',
|
|
'filter',
|
|
'fields',
|
|
'limit',
|
|
'order',
|
|
'page',
|
|
'debug'
|
|
],
|
|
validation: {
|
|
options: {
|
|
include: {
|
|
values: ALLOWED_INCLUDES
|
|
}
|
|
}
|
|
},
|
|
permissions: true,
|
|
query(frame) {
|
|
return models.User.findPage(frame.options);
|
|
}
|
|
},
|
|
|
|
read: {
|
|
options: [
|
|
'include',
|
|
'filter',
|
|
'fields',
|
|
'debug'
|
|
],
|
|
data: [
|
|
'id',
|
|
'slug',
|
|
'email',
|
|
'role'
|
|
],
|
|
validation: {
|
|
options: {
|
|
include: {
|
|
values: ALLOWED_INCLUDES
|
|
}
|
|
}
|
|
},
|
|
permissions: true,
|
|
query(frame) {
|
|
return models.User.findOne(frame.data, frame.options)
|
|
.then((model) => {
|
|
if (!model) {
|
|
return Promise.reject(new errors.NotFoundError({
|
|
message: i18n.t('errors.api.users.userNotFound')
|
|
}));
|
|
}
|
|
|
|
return model;
|
|
});
|
|
}
|
|
},
|
|
|
|
edit: {
|
|
headers: {},
|
|
options: [
|
|
'id',
|
|
'include'
|
|
],
|
|
validation: {
|
|
options: {
|
|
include: {
|
|
values: ALLOWED_INCLUDES
|
|
},
|
|
id: {
|
|
required: true
|
|
}
|
|
}
|
|
},
|
|
permissions: {
|
|
unsafeAttrs: UNSAFE_ATTRS
|
|
},
|
|
query(frame) {
|
|
return models.User.edit(frame.data.users[0], frame.options)
|
|
.then((model) => {
|
|
if (!model) {
|
|
return Promise.reject(new errors.NotFoundError({
|
|
message: i18n.t('errors.api.users.userNotFound')
|
|
}));
|
|
}
|
|
|
|
if (model.wasChanged()) {
|
|
this.headers.cacheInvalidate = true;
|
|
} else {
|
|
this.headers.cacheInvalidate = false;
|
|
}
|
|
|
|
return model;
|
|
});
|
|
}
|
|
},
|
|
|
|
destroy: {
|
|
headers: {
|
|
cacheInvalidate: true
|
|
},
|
|
options: [
|
|
'id'
|
|
],
|
|
validation: {
|
|
options: {
|
|
id: {
|
|
required: true
|
|
}
|
|
}
|
|
},
|
|
permissions: true,
|
|
async query(frame) {
|
|
const backupPath = await dbBackup.backup();
|
|
const parsedFileName = path.parse(backupPath);
|
|
const filename = `${parsedFileName.name}${parsedFileName.ext}`;
|
|
|
|
return models.Base.transaction((t) => {
|
|
frame.options.transacting = t;
|
|
|
|
return models.Post.destroyByAuthor(frame.options)
|
|
.then(() => {
|
|
return models.User.destroy(Object.assign({status: 'all'}, frame.options));
|
|
})
|
|
.then(() => filename);
|
|
}).catch((err) => {
|
|
return Promise.reject(new errors.NoPermissionError({
|
|
err: err
|
|
}));
|
|
});
|
|
}
|
|
},
|
|
|
|
changePassword: {
|
|
validation: {
|
|
docName: 'password',
|
|
data: {
|
|
newPassword: {required: true},
|
|
ne2Password: {required: true},
|
|
user_id: {required: true}
|
|
}
|
|
},
|
|
permissions: {
|
|
docName: 'user',
|
|
method: 'edit',
|
|
identifier(frame) {
|
|
return frame.data.password[0].user_id;
|
|
}
|
|
},
|
|
query(frame) {
|
|
frame.options.skipSessionID = frame.original.session.id;
|
|
return models.User.changePassword(frame.data.password[0], frame.options);
|
|
}
|
|
},
|
|
|
|
transferOwnership: {
|
|
permissions(frame) {
|
|
return models.Role.findOne({name: 'Owner'})
|
|
.then((ownerRole) => {
|
|
return permissionsService.canThis(frame.options.context).assign.role(ownerRole);
|
|
});
|
|
},
|
|
query(frame) {
|
|
return models.User.transferOwnership(frame.data.owner[0], frame.options);
|
|
}
|
|
}
|
|
};
|