import 'dart:convert'; import 'package:starcitizen_doctor/common/conf/url_conf.dart'; import 'package:starcitizen_doctor/common/io/rs_http.dart'; import 'package:starcitizen_doctor/data/app_placard_data.dart'; import 'package:starcitizen_doctor/data/app_torrent_data.dart'; import 'package:starcitizen_doctor/data/app_version_data.dart'; import 'package:starcitizen_doctor/data/countdown_festival_item_data.dart'; import 'package:starcitizen_doctor/data/sc_localization_data.dart'; class Api { static Future getAppVersion() async { return AppVersionData.fromJson( await getRepoJson("sc_doctor", "version.json")); } static Future getAppPlacard() async { return AppPlacardData.fromJson( await getRepoJson("sc_doctor", "placard.json")); } static Future> getFestivalCountdownList() async { List l = []; final r = json.decode(await getRepoData("sc_doctor", "countdown.json")); if (r is List) { for (var element in r) { l.add(CountdownFestivalItemData.fromJson(element)); } } l.sort((a, b) => (a.time ?? 0) - (b.time ?? 0)); return l; } static Future> getAppReleaseDataByVersionName( String version) async { final r = await RSHttp.getText( "${URLConf.gitlabApiPath}repos/SCToolBox/Release/releases/tags/$version"); return json.decode(r); } static Future> getScLocalizationData( String lang) async { final data = json.decode(await getRepoData("localizations", "$lang.json")); List l = []; if (data is List) { for (var element in data) { l.add(ScLocalizationData.fromJson(element)); } } return l; } static Future> getAppTorrentDataList() async { final data = await getRepoData("sc_doctor", "torrent.json"); final dataJson = json.decode(data); List l = []; if (dataJson is List) { for (var value in dataJson) { l.add(AppTorrentData.fromJson(value)); } } return l; } static Future getTorrentTrackerList() async { final data = await getRepoData("sc_doctor", "tracker.list"); return data; } static Future getScServerStatus() async { final r = await RSHttp.getText( "https:///web-proxy.scbox.xkeyc.cn/rsi_status/index.json"); final map = json.decode(r); return map["systems"]; } static Future> getRepoJson( String dir, String name) async { final data = await getRepoData(dir, name); return json.decode(data); } static Future getRepoData(String dir, String name) async { final r = await RSHttp.getText("${URLConf.apiRepoPath}/$dir/$name"); return r; } }