2016-02-27 10:51:12 -05:00
|
|
|
// global_config.js
|
|
|
|
|
|
|
|
|
|
var Parse = require('parse/node').Parse;
|
|
|
|
|
|
|
|
|
|
import PromiseRouter from '../PromiseRouter';
|
2016-03-01 20:30:29 -08:00
|
|
|
import * as middleware from "../middlewares";
|
2016-02-27 10:51:12 -05:00
|
|
|
|
|
|
|
|
export class GlobalConfigRouter extends PromiseRouter {
|
|
|
|
|
getGlobalConfig(req) {
|
|
|
|
|
return req.config.database.rawCollection('_GlobalConfig')
|
|
|
|
|
.then(coll => coll.findOne({'_id': 1}))
|
|
|
|
|
.then(globalConfig => ({response: { params: globalConfig.params }}))
|
|
|
|
|
.catch(() => ({
|
|
|
|
|
status: 404,
|
|
|
|
|
response: {
|
|
|
|
|
code: Parse.Error.INVALID_KEY_NAME,
|
|
|
|
|
error: 'config does not exist',
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
updateGlobalConfig(req) {
|
|
|
|
|
return req.config.database.rawCollection('_GlobalConfig')
|
|
|
|
|
.then(coll => coll.findOneAndUpdate({ _id: 1 }, { $set: req.body }))
|
|
|
|
|
.then(response => {
|
|
|
|
|
return { response: { result: true } }
|
|
|
|
|
})
|
|
|
|
|
.catch(() => ({
|
|
|
|
|
status: 404,
|
|
|
|
|
response: {
|
|
|
|
|
code: Parse.Error.INVALID_KEY_NAME,
|
|
|
|
|
error: 'config cannot be updated',
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mountRoutes() {
|
|
|
|
|
this.route('GET', '/config', req => { return this.getGlobalConfig(req) });
|
2016-03-01 20:30:29 -08:00
|
|
|
this.route('PUT', '/config', middleware.promiseEnforceMasterKeyAccess, req => { return this.updateGlobalConfig(req) });
|
2016-02-27 10:51:12 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default GlobalConfigRouter;
|