2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-01-21 06:14:55 +02:00
|
|
|
import type { UserProfilesRepository, UsersRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-03-09 07:27:16 +02:00
|
|
|
import { ApiError } from '../error.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 00:19:19 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['account'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-07-16 00:19:19 +03:00
|
|
|
|
2018-07-16 21:57:34 +03:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'MeDetailed',
|
2019-04-23 16:35:26 +03:00
|
|
|
},
|
2023-03-09 07:27:16 +02:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
userIsDeleted: {
|
|
|
|
message: 'User is deleted.',
|
|
|
|
code: 'USER_IS_DELETED',
|
|
|
|
id: 'e5b3b9f0-2b8f-4b9f-9c1f-8c5c1b2e1b1a',
|
|
|
|
kind: 'permission',
|
|
|
|
},
|
|
|
|
}
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-07-16 00:19:19 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2020-03-28 11:07:41 +02:00
|
|
|
|
2023-01-21 06:14:55 +02:00
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, user, token) => {
|
|
|
|
const isSecure = token == null;
|
|
|
|
|
2023-01-21 06:14:55 +02:00
|
|
|
const now = new Date();
|
|
|
|
const today = `${now.getFullYear()}/${now.getMonth() + 1}/${now.getDate()}`;
|
|
|
|
|
|
|
|
// 渡ってきている user はキャッシュされていて古い可能性があるので改めて取得
|
2023-03-09 07:27:16 +02:00
|
|
|
const userProfile = await this.userProfilesRepository.findOne({
|
2023-01-21 06:14:55 +02:00
|
|
|
where: {
|
|
|
|
userId: user.id,
|
|
|
|
},
|
|
|
|
relations: ['user'],
|
|
|
|
});
|
|
|
|
|
2023-03-09 07:27:16 +02:00
|
|
|
if (userProfile == null) {
|
|
|
|
throw new ApiError(meta.errors.userIsDeleted);
|
|
|
|
}
|
|
|
|
|
2023-01-21 06:14:55 +02:00
|
|
|
if (!userProfile.loggedInDates.includes(today)) {
|
|
|
|
this.userProfilesRepository.update({ userId: user.id }, {
|
|
|
|
loggedInDates: [...userProfile.loggedInDates, today],
|
|
|
|
});
|
|
|
|
userProfile.loggedInDates = [...userProfile.loggedInDates, today];
|
|
|
|
}
|
|
|
|
|
|
|
|
return await this.userEntityService.pack<true, true>(userProfile.user!, userProfile.user!, {
|
2022-09-17 21:27:08 +03:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure,
|
2023-01-21 06:14:55 +02:00
|
|
|
userProfile,
|
2022-09-17 21:27:08 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|