import axios, { AxiosError } from "axios"; import state from "./state"; import { AlbumInfo, Track } from "../interfaces"; const getAlbumTracks = async (album: string, artist: string) => { let data = { info: {}, tracks: [], }; await axios .post(state.settings.uri + "/album/tracks", { album: album, artist: artist, }) .then((res) => { data.info = res.data.info; data.tracks = res.data.songs; }) .catch((err: AxiosError) => { console.error(err); }); return data; }; const getAlbumArtists = async (album:string, artist:string) => { let artists = []; await axios .post(state.settings.uri + "/album/artists", { album: album, artist: artist, }) .then((res) => { artists = res.data.artists; }) .catch((err: AxiosError) => { console.error(err); }); return artists; }; const getAlbumBio = async (album: string, albumartist: string) => { let bio = null; await axios .post(state.settings.uri + "/album/bio", { album: album, albumartist: albumartist, }) .then((res) => { bio = res.data.bio; }) .catch((err: AxiosError) => { if (err.response.status === 404) { bio = null; } }); return bio; }; export { getAlbumTracks, getAlbumArtists, getAlbumBio };