Some checks failed
continuous-integration/drone/push Build is failing
- Switch to TypeORM's DataSource API, rather than using the now deprecated ormconfig.json - This will fix stage deployment not knowing how to deploy the database migrations #297 > **NOTE:** This change requires the deployment scripts to be updated, please update them on the server before merging Co-authored-by: Ethan Lane <ethan@vylpes.com> Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/vylbot-app/pulls/299
45 lines
No EOL
1.1 KiB
TypeScript
45 lines
No EOL
1.1 KiB
TypeScript
import { Column, Entity, ManyToOne } from "typeorm";
|
|
import BaseEntity from "../../contracts/BaseEntity"
|
|
import Server from "./Server";
|
|
import AppDataSource from "../dataSources/appDataSource";
|
|
|
|
@Entity()
|
|
export default class Role extends BaseEntity {
|
|
constructor(roleId: string) {
|
|
super();
|
|
|
|
this.RoleId = roleId;
|
|
}
|
|
|
|
@Column()
|
|
RoleId: string;
|
|
|
|
@ManyToOne(() => Server, x => x.Roles)
|
|
Server: Server;
|
|
|
|
public SetServer(server: Server) {
|
|
this.Server = server;
|
|
}
|
|
|
|
public static async FetchOneByRoleId(roleId: string, relations?: string[]): Promise<Role | null> {
|
|
const repository = AppDataSource.getRepository(Role);
|
|
|
|
const single = await repository.findOne({ where: { RoleId: roleId }, relations: relations || []});
|
|
|
|
return single;
|
|
}
|
|
|
|
public static async FetchAllByServerId(serverId: string): Promise<Role[]> {
|
|
const repository = AppDataSource.getRepository(Server);
|
|
|
|
const all = await repository.findOne({ where: { Id: serverId }, relations: [
|
|
"Roles",
|
|
] });
|
|
|
|
if (!all) {
|
|
return [];
|
|
}
|
|
|
|
return all.Roles;
|
|
}
|
|
} |