mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
import { Access } from '@ghostfolio/common/interfaces';
|
|
import type { RequestWithUser } from '@ghostfolio/common/types';
|
|
import { Controller, Get, Inject, UseGuards } from '@nestjs/common';
|
|
import { REQUEST } from '@nestjs/core';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
|
|
import { AccessService } from './access.service';
|
|
|
|
@Controller('access')
|
|
export class AccessController {
|
|
public constructor(
|
|
private readonly accessService: AccessService,
|
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
|
) {}
|
|
|
|
@Get()
|
|
@UseGuards(AuthGuard('jwt'))
|
|
public async getAllAccesses(): Promise<Access[]> {
|
|
const accessesWithGranteeUser = await this.accessService.accesses({
|
|
include: {
|
|
GranteeUser: true
|
|
},
|
|
where: { userId: this.request.user.id }
|
|
});
|
|
|
|
return accessesWithGranteeUser.map((access) => {
|
|
if (access.GranteeUser) {
|
|
return {
|
|
granteeAlias: access.GranteeUser?.alias,
|
|
id: access.id,
|
|
type: 'RESTRICTED_VIEW'
|
|
};
|
|
}
|
|
|
|
return {
|
|
granteeAlias: 'Public',
|
|
id: access.id,
|
|
type: 'PUBLIC'
|
|
};
|
|
});
|
|
}
|
|
}
|
|
|