iceshrimp-legacy/src/server/api/endpoints/app/show.ts

34 lines
811 B
TypeScript
Raw Normal View History

2018-11-01 19:32:24 +01:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-06-18 02:54:53 +02:00
import App, { pack, IApp } from '../../../../models/app';
import { ILocalUser } from '../../../../models/user';
2018-11-01 19:32:24 +01:00
import getParams from '../../get-params';
export const meta = {
params: {
appId: {
validator: $.type(ID),
transform: transform
},
}
};
2016-12-28 23:49:51 +01:00
2018-07-05 19:58:29 +02:00
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
2018-11-01 19:32:24 +01:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2018-11-01 19:32:24 +01:00
const isSecure = user != null && app == null;
2016-12-28 23:49:51 +01:00
// Lookup app
2018-11-01 19:32:24 +01:00
const ap = await App.findOne({ _id: ps.appId });
2016-12-28 23:49:51 +01:00
if (ap === null) {
2016-12-28 23:49:51 +01:00
return rej('app not found');
}
// Send response
res(await pack(ap, user, {
2018-11-01 01:19:22 +01:00
detail: true,
includeSecret: isSecure && ap.userId.equals(user._id)
2016-12-28 23:49:51 +01:00
}));
});