Merge branch 'feature/11-new_classes' of git.odit.services:lfk/backend into feature/11-new_classes

# Conflicts:
#	src/models/User.ts
This commit is contained in:
Nicolai Ort 2020-12-02 19:45:30 +01:00
commit 6464033a58
2 changed files with 131 additions and 113 deletions

View File

@ -2,6 +2,7 @@ import { Entity, Column, OneToMany, ManyToOne, PrimaryGeneratedColumn, Generated
import { IsBoolean, IsEmail, IsInt, IsNotEmpty, IsOptional, IsString, isUUID, } from "class-validator"; import { IsBoolean, IsEmail, IsInt, IsNotEmpty, IsOptional, IsString, isUUID, } from "class-validator";
import { UserGroup } from './UserGroup'; import { UserGroup } from './UserGroup';
import { Permission } from './Permission'; import { Permission } from './Permission';
import { UserAction } from './UserAction';
/** /**
* Defines a admin user. * Defines a admin user.
@ -96,14 +97,27 @@ export class User {
@IsString() @IsString()
profilepic: string; profilepic: string;
/**
* actions
*/
@OneToMany(() => UserAction, action => action.user)
actions: UserAction
/** /**
* calculate all permissions * calculate all permissions
*/ */
public get calc_permissions(): Permission[] { public get calc_permissions(): Permission[] {
let final_permissions = this.groups.forEach((permission) => { let final_permissions = []
console.log(permission); this.groups.forEach((permission) => {
if (!final_permissions.includes(permission)) {
final_permissions.push(permission)
}
}) })
// TODO: add user permissions on top of group permissions + return this.permissions.forEach((permission) => {
return [] if (!final_permissions.includes(permission)) {
final_permissions.push(permission)
}
})
return final_permissions
} }
} }

View File

@ -1,10 +1,11 @@
import { PrimaryGeneratedColumn, Column, OneToMany, Entity } from "typeorm"; import { PrimaryGeneratedColumn, Column, OneToMany, Entity, ManyToOne } from "typeorm";
import { import {
IsInt, IsInt,
IsNotEmpty, IsNotEmpty,
IsOptional, IsOptional,
IsString, IsString,
} from "class-validator"; } from "class-validator";
import { User } from './User';
/** /**
* Defines the UserAction interface. * Defines the UserAction interface.
@ -19,8 +20,11 @@ export class UserAction {
@IsInt() @IsInt()
id: number; id: number;
// TODO: /**
// user: relation * user
*/
@ManyToOne(() => User, user => user.actions)
user: User
/** /**
* The actions's target (e.g. Track#2) * The actions's target (e.g. Track#2)