misc_pterodactyl-panel/resources/scripts/api/admin/eggs/getEgg.ts

98 lines
3.1 KiB
TypeScript
Raw Normal View History

2021-09-15 17:09:54 +00:00
import { Nest } from '@/api/admin/nests/getNests';
import { rawDataToServer, Server } from '@/api/admin/servers/getServers';
import http, { FractalResponseData, FractalResponseList } from '@/api/http';
export interface EggVariable {
id: number;
eggId: number;
name: string;
description: string;
envVariable: string;
defaultValue: string;
userViewable: boolean;
userEditable: boolean;
rules: string;
createdAt: Date;
updatedAt: Date;
}
2021-10-03 20:23:06 +00:00
export const rawDataToEggVariable = ({ attributes }: FractalResponseData): EggVariable => ({
2021-09-15 17:09:54 +00:00
id: attributes.id,
eggId: attributes.egg_id,
name: attributes.name,
description: attributes.description,
envVariable: attributes.env_variable,
defaultValue: attributes.default_value,
userViewable: attributes.user_viewable,
userEditable: attributes.user_editable,
rules: attributes.rules,
createdAt: new Date(attributes.created_at),
updatedAt: new Date(attributes.updated_at),
});
2021-01-01 00:27:16 +00:00
export interface Egg {
id: number;
uuid: string;
nestId: number;
2021-01-01 00:27:16 +00:00
author: string;
name: string;
description: string | null;
features: string[] | null;
dockerImages: string[];
2021-09-17 21:40:17 +00:00
configFiles: Record<string, any> | null;
configStartup: Record<string, any> | null;
2021-01-01 00:27:16 +00:00
configStop: string | null;
configFrom: number | null;
startup: string;
scriptContainer: string;
copyScriptFrom: number | null;
scriptEntry: string;
scriptIsPrivileged: boolean;
scriptInstall: string | null;
createdAt: Date;
updatedAt: Date;
2021-09-15 17:09:54 +00:00
relations: {
nest?: Nest;
servers?: Server[];
variables?: EggVariable[];
};
2021-01-01 00:27:16 +00:00
}
export const rawDataToEgg = ({ attributes }: FractalResponseData): Egg => ({
id: attributes.id,
uuid: attributes.uuid,
nestId: attributes.nest_id,
author: attributes.author,
name: attributes.name,
description: attributes.description,
features: attributes.features,
dockerImages: attributes.docker_images,
2021-09-17 20:33:38 +00:00
configFiles: attributes.config?.files,
configStartup: attributes.config?.startup,
configStop: attributes.config?.stop,
configFrom: attributes.config?.extends,
startup: attributes.startup,
copyScriptFrom: attributes.copy_script_from,
scriptContainer: attributes.script?.container,
scriptEntry: attributes.script?.entry,
scriptIsPrivileged: attributes.script?.privileged,
scriptInstall: attributes.script?.install,
createdAt: new Date(attributes.created_at),
updatedAt: new Date(attributes.updated_at),
2021-09-15 17:09:54 +00:00
relations: {
nest: undefined,
servers: ((attributes.relationships?.servers as FractalResponseList | undefined)?.data || []).map(rawDataToServer),
variables: ((attributes.relationships?.variables as FractalResponseList | undefined)?.data || []).map(rawDataToEggVariable),
},
});
2021-09-15 17:09:54 +00:00
export default (id: number, include: string[] = []): Promise<Egg> => {
2021-01-01 00:27:16 +00:00
return new Promise((resolve, reject) => {
2021-09-15 17:09:54 +00:00
http.get(`/api/application/eggs/${id}`, { params: { include: include.join(',') } })
.then(({ data }) => resolve(rawDataToEgg(data)))
2021-01-01 00:27:16 +00:00
.catch(reject);
});
};