import IManga from './interfaces/IManga'; import { getData } from '../App'; export class Manga { static async GetAllManga(): Promise { let manga: IManga[] = []; console.debug("Getting all Manga"); return getData("http://127.0.0.1:6531/v2/Mangas") .then((json) => { console.debug("Got all Manga"); return (json as IManga[]); }); } static async SearchManga(name: string): Promise { console.debug(`Getting Manga ${name} from all Connectors`); return await getData(`http://127.0.0.1:6531/v2/Manga/Search?title=${name}`) .then((json) => { console.debug(`Got Manga ${name}`); return (json as IManga[]); }); } static async GetMangaById(internalId: string): Promise { console.debug(`Getting Manga ${internalId}`); return await getData(`http://127.0.0.1:6531/v2/Manga/${internalId}`) .then((json) => { console.debug(`Got Manga ${internalId}`); return (json as IManga); }); } static async GetMangaByIds(internalIds: string[]): Promise { console.debug(`Getting Mangas ${internalIds.join(",")}`); return await getData(`http://127.0.0.1:6531/v2/Manga?internalIds=${internalIds.join(",")}`) .then((json) => { console.debug(`Got Manga ${internalIds.join(",")}`); return (json as IManga[]); }); } static async GetMangaCoverUrl(internalId: string): Promise { console.debug(`Getting Manga Cover-Url ${internalId}`); return await getData(`http://127.0.0.1:6531/v2/Manga/${internalId}/Cover`) .then((json) => { console.debug(`Got Cover-Url of Manga ${internalId}`); return (json.toString()); }); } }