2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Apps } from '@/models/index';
|
2018-11-01 20:32:24 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['app'],
|
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
params: {
|
|
|
|
appId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
2019-04-23 16:35:26 +03:00
|
|
|
res: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'App',
|
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
noSuchApp: {
|
|
|
|
message: 'No such app.',
|
|
|
|
code: 'NO_SUCH_APP',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'dce83913-2dc6-4093-8a7b-71dbb11718a3',
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'App',
|
|
|
|
},
|
2018-11-01 20:32:24 +02:00
|
|
|
};
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-03-28 11:07:41 +02:00
|
|
|
export default define(meta, async (ps, user, token) => {
|
2020-09-28 15:27:05 +03:00
|
|
|
const isSecure = user != null && token == null;
|
2020-03-28 11:07:41 +02:00
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// Lookup app
|
2019-04-07 15:50:36 +03:00
|
|
|
const ap = await Apps.findOne(ps.appId);
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (ap == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchApp);
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Apps.pack(ap, user, {
|
2018-11-01 02:19:22 +02:00
|
|
|
detail: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
includeSecret: isSecure && (ap.userId === user!.id),
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
|
|
|
});
|