summaryrefslogtreecommitdiff
path: root/src/api/endpoints/i/appdata/get.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 08:56:07 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 08:56:07 +0900
commitdc45055f2ffcea2369f12d104999746220b22c90 (patch)
treed3ec8f4a03076fe804c906cd60656e197f3010f2 /src/api/endpoints/i/appdata/get.ts
parentwip (diff)
downloadmisskey-dc45055f2ffcea2369f12d104999746220b22c90.tar.gz
misskey-dc45055f2ffcea2369f12d104999746220b22c90.tar.bz2
misskey-dc45055f2ffcea2369f12d104999746220b22c90.zip
wip
Diffstat (limited to 'src/api/endpoints/i/appdata/get.ts')
-rw-r--r--src/api/endpoints/i/appdata/get.ts53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/api/endpoints/i/appdata/get.ts b/src/api/endpoints/i/appdata/get.ts
new file mode 100644
index 0000000000..7f1bdf0713
--- /dev/null
+++ b/src/api/endpoints/i/appdata/get.ts
@@ -0,0 +1,53 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import Appdata from '../../../models/appdata';
+
+/**
+ * Get app data
+ *
+ * @param {any} params
+ * @param {any} user
+ * @param {any} app
+ * @param {Boolean} isSecure
+ * @return {Promise<any>}
+ */
+module.exports = (params, user, app, isSecure) =>
+ new Promise(async (res, rej) =>
+{
+ // Get 'key' parameter
+ let key = params.key;
+ if (key === undefined) {
+ key = null;
+ }
+
+ if (isSecure) {
+ if (!user.data) {
+ return res();
+ }
+ if (key !== null) {
+ const data = {};
+ data[key] = user.data[key];
+ res(data);
+ } else {
+ res(user.data);
+ }
+ } else {
+ const select = {};
+ if (key !== null) {
+ select['data.' + key] = true;
+ }
+ const appdata = await Appdata.findOne({
+ app_id: app._id,
+ user_id: user._id
+ }, select);
+
+ if (appdata) {
+ res(appdata.data);
+ } else {
+ res();
+ }
+ }
+});