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

73 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2017-03-08 19:50:09 +01:00
import $ from 'cafy';
2018-02-02 02:31:17 +01:00
import App, { pack } from '../../models/app';
2016-12-28 23:49:51 +01:00
2017-01-06 08:16:53 +01:00
/**
* @swagger
* /app/show:
* post:
* summary: Show an application's information
* description: Require app_id or name_id
* parameters:
* -
* name: app_id
* description: Application ID
* in: formData
* type: string
* -
* name: name_id
* description: Application unique name
* in: formData
* type: string
2017-03-01 09:37:01 +01:00
*
2017-01-06 08:16:53 +01:00
* responses:
* 200:
* description: Success
* schema:
* $ref: "#/definitions/Application"
2017-03-01 09:37:01 +01:00
*
2017-01-06 08:16:53 +01:00
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 23:49:51 +01:00
/**
* Show an app
*
2017-03-01 09:37:01 +01:00
* @param {any} params
* @param {any} user
* @param {any} _
* @param {any} isSecure
* @return {Promise<any>}
2016-12-28 23:49:51 +01:00
*/
2017-03-03 20:28:38 +01:00
module.exports = (params, user, _, isSecure) => new Promise(async (res, rej) => {
2016-12-28 23:49:51 +01:00
// Get 'app_id' parameter
2017-03-08 19:50:09 +01:00
const [appId, appIdErr] = $(params.app_id).optional.id().$;
2017-03-03 11:48:00 +01:00
if (appIdErr) return rej('invalid app_id param');
2016-12-28 23:49:51 +01:00
// Get 'name_id' parameter
2017-03-08 19:50:09 +01:00
const [nameId, nameIdErr] = $(params.name_id).optional.string().$;
2017-03-03 11:48:00 +01:00
if (nameIdErr) return rej('invalid name_id param');
2016-12-28 23:49:51 +01:00
2017-03-03 12:28:42 +01:00
if (appId === undefined && nameId === undefined) {
2016-12-28 23:49:51 +01:00
return rej('app_id or name_id is required');
}
// Lookup app
2017-03-03 12:28:42 +01:00
const app = appId !== undefined
2017-03-03 11:48:00 +01:00
? await App.findOne({ _id: appId })
2016-12-28 23:49:51 +01:00
: await App.findOne({ name_id_lower: nameId.toLowerCase() });
if (app === null) {
return rej('app not found');
}
// Send response
2018-02-02 00:21:30 +01:00
res(await pack(app, user, {
2016-12-28 23:49:51 +01:00
includeSecret: isSecure && app.user_id.equals(user._id)
}));
});