49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { UserProfilesRepository } from '@/models/_.js';
|
|
import type { MiUser } from '@/models/User.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { NotificationService } from '@/core/NotificationService.js';
|
|
import { ACHIEVEMENT_TYPES } from '@/models/UserProfile.js';
|
|
|
|
@Injectable()
|
|
export class AchievementService {
|
|
constructor(
|
|
@Inject(DI.userProfilesRepository)
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
private notificationService: NotificationService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async create(
|
|
userId: MiUser['id'],
|
|
type: typeof ACHIEVEMENT_TYPES[number],
|
|
): Promise<void> {
|
|
if (!ACHIEVEMENT_TYPES.includes(type)) return;
|
|
|
|
const date = Date.now();
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: userId });
|
|
|
|
if (profile.achievements.some(a => a.name === type)) return;
|
|
|
|
await this.userProfilesRepository.update(userId, {
|
|
achievements: [...profile.achievements, {
|
|
name: type,
|
|
unlockedAt: date,
|
|
}],
|
|
});
|
|
|
|
this.notificationService.createNotification(userId, 'achievementEarned', {
|
|
achievement: type,
|
|
});
|
|
}
|
|
}
|