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