[API] Better appdata get/set endpoints (BREAKING)
This commit is contained in:
parent
afc06f255a
commit
31550ce1d9
|
@ -1,6 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Module dependencies
|
* Module dependencies
|
||||||
*/
|
*/
|
||||||
|
import $ from 'cafy';
|
||||||
import Appdata from '../../../models/appdata';
|
import Appdata from '../../../models/appdata';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,10 +15,8 @@ import Appdata from '../../../models/appdata';
|
||||||
*/
|
*/
|
||||||
module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) => {
|
module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) => {
|
||||||
// Get 'key' parameter
|
// Get 'key' parameter
|
||||||
let key = params.key;
|
const [key = null, keyError] = $(params.key).optional.nullable.string().match(/[a-z_]+/).$;
|
||||||
if (key === undefined) {
|
if (keyError) return rej('invalid key param');
|
||||||
key = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isSecure) {
|
if (isSecure) {
|
||||||
if (!user.data) {
|
if (!user.data) {
|
||||||
|
@ -38,7 +37,9 @@ module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) =
|
||||||
const appdata = await Appdata.findOne({
|
const appdata = await Appdata.findOne({
|
||||||
app_id: app._id,
|
app_id: app._id,
|
||||||
user_id: user._id
|
user_id: user._id
|
||||||
}, select);
|
}, {
|
||||||
|
fields: select
|
||||||
|
});
|
||||||
|
|
||||||
if (appdata) {
|
if (appdata) {
|
||||||
res(appdata.data);
|
res(appdata.data);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Module dependencies
|
* Module dependencies
|
||||||
*/
|
*/
|
||||||
|
import $ from 'cafy';
|
||||||
import Appdata from '../../../models/appdata';
|
import Appdata from '../../../models/appdata';
|
||||||
import User from '../../../models/user';
|
import User from '../../../models/user';
|
||||||
import serialize from '../../../serializers/user';
|
import serialize from '../../../serializers/user';
|
||||||
|
@ -16,17 +17,37 @@ import event from '../../../event';
|
||||||
* @return {Promise<any>}
|
* @return {Promise<any>}
|
||||||
*/
|
*/
|
||||||
module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) => {
|
module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) => {
|
||||||
const data = params.data;
|
// Get 'set' parameter
|
||||||
if (data == null) {
|
const [set, setError] = $(params.set).optional.object()
|
||||||
return rej('data is required');
|
.pipe(obj => {
|
||||||
|
return Object.entries(obj).some(kv => {
|
||||||
|
const k = kv[0];
|
||||||
|
const v = kv[1];
|
||||||
|
return $(k).string().match(/[a-z_]+/).isNg() && $(v).string().isNg();
|
||||||
|
});
|
||||||
|
}).$;
|
||||||
|
if (setError) return rej('invalid set param');
|
||||||
|
|
||||||
|
// Get 'key' parameter
|
||||||
|
const [key, keyError] = $(params.key).optional.string().match(/[a-z_]+/).$;
|
||||||
|
if (keyError) return rej('invalid key param');
|
||||||
|
|
||||||
|
// Get 'value' parameter
|
||||||
|
const [value, valueError] = $(params.value).optional.string().$;
|
||||||
|
if (valueError) return rej('invalid value param');
|
||||||
|
|
||||||
|
let data = {};
|
||||||
|
if (set) {
|
||||||
|
data = set;
|
||||||
|
} else {
|
||||||
|
data[key] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isSecure) {
|
if (isSecure) {
|
||||||
const _user = await User.findOneAndUpdate(user._id, {
|
const _user = await User.findOneAndUpdate(user._id, {
|
||||||
$set: {
|
$set: { data }
|
||||||
data: Object.assign(user.data || {}, JSON.parse(data))
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
res(204);
|
res(204);
|
||||||
|
|
||||||
// Publish i updated event
|
// Publish i updated event
|
||||||
|
@ -35,10 +56,6 @@ module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) =
|
||||||
includeSecrets: true
|
includeSecrets: true
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
const appdata = await Appdata.findOne({
|
|
||||||
app_id: app._id,
|
|
||||||
user_id: user._id
|
|
||||||
});
|
|
||||||
await Appdata.update({
|
await Appdata.update({
|
||||||
app_id: app._id,
|
app_id: app._id,
|
||||||
user_id: user._id
|
user_id: user._id
|
||||||
|
@ -46,12 +63,11 @@ module.exports = (params, user, app, isSecure) => new Promise(async (res, rej) =
|
||||||
app_id: app._id,
|
app_id: app._id,
|
||||||
user_id: user._id
|
user_id: user._id
|
||||||
}, {
|
}, {
|
||||||
$set: {
|
$set: { data }
|
||||||
data: Object.assign((appdata || {}).data || {}, JSON.parse(data))
|
|
||||||
}
|
|
||||||
}), {
|
}), {
|
||||||
upsert: true
|
upsert: true
|
||||||
});
|
});
|
||||||
|
|
||||||
res(204);
|
res(204);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue