2018-07-07 13:19:00 +03:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-06-18 03:54:53 +03:00
|
|
|
import App, { pack, IApp } from '../../../../models/app';
|
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show an app
|
|
|
|
*/
|
2018-07-05 20:58:29 +03:00
|
|
|
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
|
2018-04-11 11:40:01 +03:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2018-03-29 08:48:47 +03:00
|
|
|
// Get 'appId' parameter
|
2018-07-05 17:36:07 +03:00
|
|
|
const [appId, appIdErr] = $.type(ID).optional.get(params.appId);
|
2018-03-29 08:48:47 +03:00
|
|
|
if (appIdErr) return rej('invalid appId param');
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-03-29 08:48:47 +03:00
|
|
|
// Get 'nameId' parameter
|
2018-07-05 17:36:07 +03:00
|
|
|
const [nameId, nameIdErr] = $.str.optional.get(params.nameId);
|
2018-03-29 08:48:47 +03:00
|
|
|
if (nameIdErr) return rej('invalid nameId param');
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2017-03-03 13:28:42 +02:00
|
|
|
if (appId === undefined && nameId === undefined) {
|
2018-03-29 08:48:47 +03:00
|
|
|
return rej('appId or nameId is required');
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup app
|
2018-04-11 11:40:01 +03:00
|
|
|
const ap = appId !== undefined
|
2017-03-03 12:48:00 +02:00
|
|
|
? await App.findOne({ _id: appId })
|
2018-03-29 08:48:47 +03:00
|
|
|
: await App.findOne({ nameIdLower: nameId.toLowerCase() });
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-04-11 11:40:01 +03:00
|
|
|
if (ap === null) {
|
2016-12-29 00:49:51 +02:00
|
|
|
return rej('app not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send response
|
2018-04-11 11:40:01 +03:00
|
|
|
res(await pack(ap, user, {
|
|
|
|
includeSecret: isSecure && ap.userId.equals(user._id)
|
2016-12-29 00:49:51 +02:00
|
|
|
}));
|
|
|
|
});
|