mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
ab75d4085e
* refactor: add schemas to user admin controller * refactor: remove unused SessionService * refactor: fix search query type confusion * refactor: add schemas to user controller (#1693) * refactor: add schemas to user controller * refactor: fix getAllUserSplashes method name * refactor: name and email should not be required on create * refactor: only some user fields may be updated * refactor: should not require any fields on user update (#1730) * refactor: send 400 instead of 500 on missing username and email * refactor: should not require any fields for user update * refactor: note that earlier versions required name or email * refactor: merge roleDescriptionSchema and roleSchema
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { Logger } from '../logger';
|
|
import { IUnleashStores } from '../types/stores';
|
|
import { IUnleashConfig } from '../types/option';
|
|
import User from '../types/user';
|
|
import {
|
|
IUserSplash,
|
|
IUserSplashStore,
|
|
} from '../types/stores/user-splash-store';
|
|
|
|
export default class UserSplashService {
|
|
private userSplashStore: IUserSplashStore;
|
|
|
|
private logger: Logger;
|
|
|
|
constructor(
|
|
{ userSplashStore }: Pick<IUnleashStores, 'userSplashStore'>,
|
|
{ getLogger }: Pick<IUnleashConfig, 'getLogger'>,
|
|
) {
|
|
this.userSplashStore = userSplashStore;
|
|
this.logger = getLogger('services/user-splash-service.js');
|
|
}
|
|
|
|
async getAllUserSplashes(user: User): Promise<Record<string, boolean>> {
|
|
if (user.isAPI) {
|
|
return {};
|
|
}
|
|
try {
|
|
return (
|
|
await this.userSplashStore.getAllUserSplashes(user.id)
|
|
).reduce(
|
|
(splashObject, splash) => ({
|
|
...splashObject,
|
|
[splash.splashId]: splash.seen,
|
|
}),
|
|
{},
|
|
);
|
|
} catch (err) {
|
|
this.logger.error(err);
|
|
return {};
|
|
}
|
|
}
|
|
|
|
async getSplash(user_id: number, splash_id: string): Promise<IUserSplash> {
|
|
return this.userSplashStore.getSplash(user_id, splash_id);
|
|
}
|
|
|
|
async updateSplash(splash: IUserSplash): Promise<IUserSplash> {
|
|
return this.userSplashStore.updateSplash(splash);
|
|
}
|
|
}
|
|
|
|
module.exports = UserSplashService;
|