2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { AppsRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { AppEntityService } from '@/core/entities/AppEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { ApiError } from '../../error.js';
|
2018-11-01 19:32:24 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['app'],
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchApp: {
|
|
|
|
message: 'No such app.',
|
|
|
|
code: 'NO_SUCH_APP',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'dce83913-2dc6-4093-8a7b-71dbb11718a3',
|
|
|
|
},
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
ref: 'App',
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
appId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['appId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.appsRepository)
|
|
|
|
private appsRepository: AppsRepository,
|
|
|
|
|
|
|
|
private appEntityService: AppEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, user, token) => {
|
|
|
|
const isSecure = user != null && token == null;
|
|
|
|
|
|
|
|
// Lookup app
|
|
|
|
const ap = await this.appsRepository.findOneBy({ id: ps.appId });
|
|
|
|
|
|
|
|
if (ap == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchApp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await this.appEntityService.pack(ap, user, {
|
|
|
|
detail: true,
|
|
|
|
includeSecret: isSecure && (ap.userId === user!.id),
|
|
|
|
});
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|