mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 06:33:43 +08:00
71 lines
2.2 KiB
Dart
71 lines
2.2 KiB
Dart
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_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<AppVersionData> getAppVersion() async {
|
|
return AppVersionData.fromJson(
|
|
await getRepoJson("sc_doctor", "version.json"));
|
|
}
|
|
|
|
static Future<AppPlacardData> getAppPlacard() async {
|
|
return AppPlacardData.fromJson(
|
|
await getRepoJson("sc_doctor", "placard.json"));
|
|
}
|
|
|
|
static Future<List<CountdownFestivalItemData>>
|
|
getFestivalCountdownList() async {
|
|
List<CountdownFestivalItemData> 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<Map<String, dynamic>> getAppReleaseDataByVersionName(
|
|
String version) async {
|
|
final r = await RSHttp.getText(
|
|
"${URLConf.gitlabApiPath}repos/SCToolBox/Release/releases/tags/$version");
|
|
return json.decode(r);
|
|
}
|
|
|
|
static Future<List<ScLocalizationData>> getScLocalizationData(
|
|
String lang) async {
|
|
final data = json.decode(await getRepoData("localizations", "$lang.json"));
|
|
List<ScLocalizationData> l = [];
|
|
if (data is List) {
|
|
for (var element in data) {
|
|
l.add(ScLocalizationData.fromJson(element));
|
|
}
|
|
}
|
|
return l;
|
|
}
|
|
|
|
static Future<List> getScServerStatus() async {
|
|
final r = await RSHttp.getText(
|
|
"https://status.robertsspaceindustries.com/index.json");
|
|
final map = json.decode(r);
|
|
return map["systems"];
|
|
}
|
|
|
|
static Future<Map<String, dynamic>> getRepoJson(
|
|
String dir, String name) async {
|
|
final data = await getRepoData(dir, name);
|
|
return json.decode(data);
|
|
}
|
|
|
|
static Future<String> getRepoData(String dir, String name) async {
|
|
final r = await RSHttp.getText("${URLConf.apiRepoPath}/$dir/$name");
|
|
return r;
|
|
}
|
|
}
|