mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
251 lines
6.3 KiB
TypeScript
251 lines
6.3 KiB
TypeScript
import axios, { AxiosResponse } from 'axios';
|
|
import {
|
|
Alias,
|
|
DatabaseModel,
|
|
OntimeRundown,
|
|
OSCSettings,
|
|
OscSubscription,
|
|
ProjectData,
|
|
Settings,
|
|
UserFields,
|
|
ViewSettings,
|
|
} from 'ontime-types';
|
|
import { ExcelImportMap } from 'ontime-utils';
|
|
|
|
import { apiRepoLatest } from '../../externals';
|
|
import { InfoType } from '../models/Info';
|
|
import fileDownload from '../utils/fileDownload';
|
|
|
|
import { ontimeURL } from './apiConstants';
|
|
|
|
/**
|
|
* @description HTTP request to retrieve application settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function getSettings(): Promise<Settings> {
|
|
const res = await axios.get(`${ontimeURL}/settings`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate application settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function postSettings(data: Settings) {
|
|
return axios.post(`${ontimeURL}/settings`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to retrieve application info
|
|
* @return {Promise}
|
|
*/
|
|
export async function getInfo(): Promise<InfoType> {
|
|
const res = await axios.get(`${ontimeURL}/info`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to retrieve view settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function getView(): Promise<ViewSettings> {
|
|
const res = await axios.get(`${ontimeURL}/views`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate view settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function postViewSettings(data: ViewSettings) {
|
|
return axios.post(`${ontimeURL}/views`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to retrieve aliases
|
|
* @return {Promise}
|
|
*/
|
|
export async function getAliases(): Promise<Alias[]> {
|
|
const res = await axios.get(`${ontimeURL}/aliases`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate aliases
|
|
* @return {Promise}
|
|
*/
|
|
export async function postAliases(data: Alias[]) {
|
|
return axios.post(`${ontimeURL}/aliases`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to retrieve user fields
|
|
* @return {Promise}
|
|
*/
|
|
export async function getUserFields(): Promise<UserFields> {
|
|
const res = await axios.get(`${ontimeURL}/userfields`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate user fields
|
|
* @return {Promise}
|
|
*/
|
|
export async function postUserFields(data: UserFields) {
|
|
return axios.post(`${ontimeURL}/userfields`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to retrieve osc settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function getOSC(): Promise<OSCSettings> {
|
|
const res = await axios.get(`${ontimeURL}/osc`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate osc settings
|
|
* @return {Promise}
|
|
*/
|
|
export async function postOSC(data: OSCSettings) {
|
|
return axios.post(`${ontimeURL}/osc`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to mutate osc subscriptions
|
|
* @return {Promise}
|
|
*/
|
|
export async function postOscSubscriptions(data: OscSubscription) {
|
|
return axios.post(`${ontimeURL}/osc-subscriptions`, data);
|
|
}
|
|
|
|
/**
|
|
* @description HTTP request to download db in CSV format
|
|
*/
|
|
export const downloadCSV = () => {
|
|
return fileDownload(ontimeURL, { name: 'rundown', type: 'csv' }, { type: 'text/csv;charset=utf-8;' });
|
|
};
|
|
|
|
/**
|
|
* @description HTTP request to download db in JSON format
|
|
*/
|
|
export const downloadRundown = () => {
|
|
return fileDownload(ontimeURL, { name: 'rundown', type: 'json' }, { type: 'application/json;charset=utf-8;' });
|
|
};
|
|
|
|
// TODO: should this be extracted to shared code?
|
|
export type ProjectFileImportOptions = {
|
|
onlyRundown: boolean;
|
|
};
|
|
|
|
/**
|
|
* @description HTTP request to upload events db
|
|
* @return {Promise}
|
|
*/
|
|
export const uploadProjectFile = async (
|
|
file: File,
|
|
setProgress: (value: number) => void,
|
|
options?: Partial<ProjectFileImportOptions>,
|
|
) => {
|
|
const formData = new FormData();
|
|
formData.append('userFile', file);
|
|
|
|
const onlyRundown = Boolean(options?.onlyRundown);
|
|
|
|
await axios
|
|
.post(`${ontimeURL}/db?onlyRundown=${onlyRundown}`, formData, {
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
},
|
|
onUploadProgress: (progressEvent) => {
|
|
const complete = progressEvent?.total ? Math.round((progressEvent.loaded * 100) / progressEvent.total) : 0;
|
|
setProgress(complete);
|
|
},
|
|
})
|
|
.then((response) => response.data.id);
|
|
};
|
|
|
|
/**
|
|
* @description Make patch changes to the objects in the db
|
|
* @return {Promise}
|
|
*/
|
|
export async function patchData(patchDb: Partial<DatabaseModel>) {
|
|
const response = await axios.patch(`${ontimeURL}/db`, patchDb);
|
|
return response;
|
|
}
|
|
|
|
type PostPreviewExcelResponse = {
|
|
rundown: OntimeRundown;
|
|
project: ProjectData;
|
|
userFields: UserFields;
|
|
};
|
|
|
|
/**
|
|
* @description Make patch changes to the objects in the db
|
|
* @return {Promise} - returns parsed rundown and userfields
|
|
*/
|
|
export async function postPreviewExcel(file: File, setProgress: (value: number) => void, options?: ExcelImportMap) {
|
|
const formData = new FormData();
|
|
formData.append('userFile', file);
|
|
formData.append('options', JSON.stringify(options));
|
|
|
|
const response: AxiosResponse<PostPreviewExcelResponse> = await axios.post(
|
|
`${ontimeURL}/preview-spreadsheet`,
|
|
formData,
|
|
{
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
},
|
|
onUploadProgress: (progressEvent) => {
|
|
const complete = progressEvent?.total ? Math.round((progressEvent.loaded * 100) / progressEvent.total) : 0;
|
|
setProgress(complete);
|
|
},
|
|
},
|
|
);
|
|
|
|
return response;
|
|
}
|
|
|
|
export type HasUpdate = {
|
|
url: string;
|
|
version: string;
|
|
};
|
|
|
|
/**
|
|
* @description HTTP request to get the latest version and url from github
|
|
* @return {Promise}
|
|
*/
|
|
export async function getLatestVersion(): Promise<HasUpdate> {
|
|
const res = await axios.get(`${apiRepoLatest}`);
|
|
return {
|
|
url: res.data.html_url as string,
|
|
version: res.data.tag_name as string,
|
|
};
|
|
}
|
|
|
|
export async function postNew(initialData: Partial<ProjectData>) {
|
|
return axios.post(`${ontimeURL}/new`, initialData);
|
|
}
|
|
|
|
/**
|
|
* @description sheet Client File
|
|
* @return {Promise}
|
|
*/
|
|
export const uploadSheetClientFile = async (
|
|
file: File
|
|
) => {
|
|
const formData = new FormData();
|
|
formData.append('userFile', file);
|
|
|
|
await axios
|
|
.post(`${ontimeURL}/sheet-clientsecrect`, formData, {
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
},
|
|
onUploadProgress: (progressEvent) => {
|
|
const complete = progressEvent?.total ? Math.round((progressEvent.loaded * 100) / progressEvent.total) : 0;
|
|
},
|
|
})
|
|
.then((response) => response.data.id);
|
|
}; |