2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { AuthSessionsRepository } from '@/models/index.js';
|
|
|
|
import { AuthSessionEntityService } from '@/core/entities/AuthSessionEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { ApiError } from '../../../error.js';
|
2018-11-02 03:49:08 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['auth'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2018-11-02 03:49:08 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
noSuchSession: {
|
|
|
|
message: 'No such session.',
|
|
|
|
code: 'NO_SUCH_SESSION',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'bd72c97d-eba7-4adb-a467-f171b8847250',
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
format: 'id',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
app: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'App',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
token: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
token: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['token'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.authSessionsRepository)
|
|
|
|
private authSessionsRepository: AuthSessionsRepository,
|
|
|
|
|
|
|
|
private authSessionEntityService: AuthSessionEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
// Lookup session
|
|
|
|
const session = await this.authSessionsRepository.findOneBy({
|
|
|
|
token: ps.token,
|
|
|
|
});
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (session == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchSession);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await this.authSessionEntityService.pack(session, me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|