mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-24 05:53:46 +08:00
114 lines
3.6 KiB
Dart
114 lines
3.6 KiB
Dart
import 'package:starcitizen_doctor/api/api.dart';
|
|
import 'package:starcitizen_doctor/common/io/doh_client.dart';
|
|
import 'package:starcitizen_doctor/common/io/rs_http.dart';
|
|
import 'package:starcitizen_doctor/common/rust/http_package.dart';
|
|
import 'package:starcitizen_doctor/common/utils/log.dart';
|
|
|
|
class URLConf {
|
|
/// HOME API
|
|
static String gitApiHome = "https://git.scbox.xkeyc.cn";
|
|
static String rssApiHome = "https://rss.scbox.xkeyc.cn";
|
|
static const String analyticsApiHome = "https://scbox.org";
|
|
|
|
static bool isUrlCheckPass = false;
|
|
|
|
/// URLS
|
|
static String get giteaAttachmentsUrl => "$gitApiHome/SCToolBox/Release";
|
|
|
|
static String get gitlabLocalizationUrl =>
|
|
"$gitApiHome/SCToolBox/LocalizationData";
|
|
|
|
static String get gitApiRSILauncherEnhanceUrl =>
|
|
"$gitApiHome/SCToolBox/RSILauncherEnhance";
|
|
|
|
static String get apiRepoPath => "$gitApiHome/SCToolBox/api/raw/branch/main";
|
|
|
|
static String get gitlabApiPath => "$gitApiHome/api/v1/";
|
|
|
|
static String get webTranslateHomeUrl =>
|
|
"$gitApiHome/SCToolBox/ScWeb_Chinese_Translate/raw/branch/main/json/locales";
|
|
|
|
static String get rssVideoUrl =>
|
|
"$rssApiHome/bilibili/user/channel/27976358/290653";
|
|
|
|
static String get rssTextUrl2 =>
|
|
"$rssApiHome/baidu/tieba/user/%E7%81%AC%E7%81%ACG%E7%81%AC%E7%81%AC&";
|
|
|
|
static const String googleTranslateApiUrl =
|
|
"https://translate-g-proxy.xkeyc.com";
|
|
|
|
static const feedbackUrl = "https://support.citizenwiki.cn/all";
|
|
static const feedbackFAQUrl = "https://support.citizenwiki.cn/t/sc-toolbox";
|
|
|
|
static String get devReleaseUrl => "$gitApiHome/SCToolBox/Release/releases";
|
|
|
|
static Future<bool> checkHost() async {
|
|
// 使用 DNS 获取可用列表
|
|
final gitApiList = _genFinalList(await dnsLookupTxt("git.dns.scbox.org"));
|
|
dPrint("DNS gitApiList ==== $gitApiList");
|
|
final fasterGit = await getFasterUrl(gitApiList);
|
|
dPrint("gitApiList.Faster ==== $fasterGit");
|
|
if (fasterGit != null) {
|
|
gitApiHome = fasterGit;
|
|
}
|
|
final rssApiList = _genFinalList(await dnsLookupTxt("rss.dns.scbox.org"));
|
|
final fasterRss = await getFasterUrl(rssApiList);
|
|
dPrint("DNS rssApiList ==== $rssApiList");
|
|
dPrint("rssApiList.Faster ==== $fasterRss");
|
|
if (fasterRss != null) {
|
|
rssApiHome = fasterRss;
|
|
}
|
|
isUrlCheckPass = fasterGit != null && fasterRss != null;
|
|
return isUrlCheckPass;
|
|
}
|
|
|
|
static Future<List<String>> dnsLookupTxt(String host) async {
|
|
if (await Api.isUseInternalDNS()) {
|
|
dPrint("[URLConf] use internal DNS LookupTxt $host");
|
|
return RSHttp.dnsLookupTxt(host);
|
|
}
|
|
dPrint("[URLConf] use DOH LookupTxt $host");
|
|
return (await DohClient.resolveTXT(host)) ?? [];
|
|
}
|
|
|
|
static Future<String?> getFasterUrl(List<String> urls) async {
|
|
String firstUrl = "";
|
|
int callLen = 0;
|
|
|
|
void onCall(RustHttpResponse? response, String url) {
|
|
callLen++;
|
|
if (response != null && response.statusCode == 200 && firstUrl.isEmpty) {
|
|
firstUrl = url;
|
|
}
|
|
}
|
|
|
|
for (var value in urls) {
|
|
RSHttp.head(value).then((resp) => onCall(resp, value), onError: (err) {
|
|
callLen++;
|
|
dPrint("RSHttp.head error $err");
|
|
});
|
|
}
|
|
|
|
while (true) {
|
|
await Future.delayed(const Duration(milliseconds: 16));
|
|
if (firstUrl.isNotEmpty) {
|
|
return firstUrl;
|
|
}
|
|
if (callLen == urls.length && firstUrl.isEmpty) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|
|
static List<String> _genFinalList(List<String> sList) {
|
|
List<String> list = [];
|
|
for (var ll in sList) {
|
|
final ssList = ll.split(",");
|
|
for (var value in ssList) {
|
|
list.add(value);
|
|
}
|
|
}
|
|
return list;
|
|
}
|
|
}
|