misc_pterodactyl-panel/resources/assets/scripts/api/server/files/getFileContents.ts
2019-06-01 14:24:00 -07:00

20 lines
681 B
TypeScript

import http from "@/api/http";
import {AxiosError} from "axios";
export default (server: string, file: string): Promise<string> => {
return new Promise((resolve, reject) => {
http.get(`/api/client/servers/${server}/files/contents`, {
params: { file },
responseType: 'text',
transformResponse: res => res,
})
.then(response => resolve(response.data || ''))
.catch((error: AxiosError) => {
if (error.response && error.response.data) {
error.response.data = JSON.parse(error.response.data);
}
reject(error);
});
});
}