Files
clash-proxy/src/services/cmds.ts

179 lines
4.4 KiB
TypeScript
Raw Normal View History

2021-12-25 22:33:29 +08:00
import { invoke } from "@tauri-apps/api/tauri";
2022-08-06 02:35:11 +08:00
import Notice from "@/components/base/base-notice";
2021-12-25 22:33:29 +08:00
2022-09-05 20:30:39 +08:00
export async function getClashLogs() {
const regex = /time="(.+?)"\s+level=(.+?)\s+msg="(.+?)"/;
const newRegex = /(.+?)\s+(.+?)\s+(.+)/;
const logs = await invoke<string[]>("get_clash_logs");
return logs
.map((log) => {
const result = log.match(regex);
if (result) {
const [_, time, type, payload] = result;
return { time, type, payload };
}
const result2 = log.match(newRegex);
if (result2) {
const [_, time, type, payload] = result2;
return { time, type, payload };
}
return null;
})
.filter(Boolean) as ApiType.LogItem[];
}
2022-01-05 02:00:59 +08:00
export async function getProfiles() {
2022-01-07 23:29:20 +08:00
return invoke<CmdType.ProfilesConfig>("get_profiles");
2021-12-25 22:33:29 +08:00
}
2022-03-06 14:59:25 +08:00
export async function enhanceProfiles() {
return invoke<void>("enhance_profiles");
}
export async function createProfile(
item: Partial<CmdType.ProfileItem>,
fileData?: string | null
) {
return invoke<void>("create_profile", { item, fileData });
2022-02-07 17:26:05 +08:00
}
2022-03-01 08:58:47 +08:00
export async function viewProfile(index: string) {
2022-01-19 23:58:34 +08:00
return invoke<void>("view_profile", { index });
2022-01-17 02:16:17 +08:00
}
2022-03-27 00:58:17 +08:00
export async function readProfileFile(index: string) {
return invoke<string>("read_profile_file", { index });
}
export async function saveProfileFile(index: string, fileData: string) {
return invoke<void>("save_profile_file", { index, fileData });
}
2021-12-25 22:33:29 +08:00
export async function importProfile(url: string) {
return invoke<void>("import_profile", {
url,
option: { with_proxy: true },
});
2021-12-25 22:33:29 +08:00
}
export async function updateProfile(
index: string,
option?: CmdType.ProfileOption
) {
return invoke<void>("update_profile", { index, option });
2021-12-25 22:33:29 +08:00
}
2022-03-01 08:58:47 +08:00
export async function deleteProfile(index: string) {
2022-01-05 02:00:59 +08:00
return invoke<void>("delete_profile", { index });
2021-12-25 22:33:29 +08:00
}
2022-01-05 02:00:59 +08:00
export async function patchProfile(
2022-03-01 08:58:47 +08:00
index: string,
2022-03-07 01:41:42 +08:00
profile: Partial<CmdType.ProfileItem>
2022-01-05 02:00:59 +08:00
) {
return invoke<void>("patch_profile", { index, profile });
2021-12-25 22:33:29 +08:00
}
2022-03-01 08:58:47 +08:00
export async function selectProfile(index: string) {
2022-01-05 02:00:59 +08:00
return invoke<void>("select_profile", { index });
}
2022-03-06 14:59:25 +08:00
export async function changeProfileChain(chain?: string[]) {
return invoke<void>("change_profile_chain", { chain });
2022-01-05 02:00:59 +08:00
}
export async function changeProfileValid(valid?: string[]) {
return invoke<void>("change_profile_valid", { valid });
}
2022-01-05 02:00:59 +08:00
export async function getClashInfo() {
return invoke<CmdType.ClashInfo | null>("get_clash_info");
}
2022-08-12 03:20:55 +08:00
export async function getRuntimeConfig() {
return invoke<any | null>("get_runtime_config");
}
export async function getRuntimeYaml() {
return invoke<string | null>("get_runtime_yaml");
}
export async function getRuntimeExists() {
return invoke<string[]>("get_runtime_exists");
}
export async function getRuntimeLogs() {
return invoke<Record<string, [string, string][]>>("get_runtime_logs");
2022-07-25 01:20:13 +08:00
}
2022-01-05 02:00:59 +08:00
export async function patchClashConfig(payload: Partial<ApiType.ConfigData>) {
return invoke<void>("patch_clash_config", { payload });
2021-12-25 22:33:29 +08:00
}
export async function getVergeConfig() {
return invoke<CmdType.VergeConfig>("get_verge_config");
}
export async function patchVergeConfig(payload: CmdType.VergeConfig) {
return invoke<void>("patch_verge_config", { payload });
}
2022-01-12 02:54:50 +08:00
export async function getSystemProxy() {
2022-09-07 01:51:43 +08:00
return invoke<{
enable: boolean;
server: string;
bypass: string;
}>("get_sys_proxy");
2022-01-12 02:54:50 +08:00
}
2022-02-16 03:21:34 +08:00
2022-05-17 01:59:49 +08:00
export async function changeClashCore(clashCore: string) {
return invoke<any>("change_clash_core", { clashCore });
}
2022-03-06 14:59:25 +08:00
export async function restartSidecar() {
return invoke<void>("restart_sidecar");
}
2022-11-14 01:26:33 +08:00
// export async function killSidecar() {
// return invoke<any>("kill_sidecar");
// }
2022-02-17 02:10:25 +08:00
2022-02-16 03:21:34 +08:00
export async function openAppDir() {
2022-03-12 23:58:20 +08:00
return invoke<void>("open_app_dir").catch((err) =>
Notice.error(err?.message || err.toString(), 1500)
);
2022-02-16 03:21:34 +08:00
}
export async function openLogsDir() {
2022-03-12 23:58:20 +08:00
return invoke<void>("open_logs_dir").catch((err) =>
Notice.error(err?.message || err.toString(), 1500)
);
2022-02-16 03:21:34 +08:00
}
2022-04-24 21:03:47 +08:00
2022-08-06 21:56:54 +08:00
export async function openWebUrl(url: string) {
return invoke<void>("open_web_url", { url });
}
2022-04-24 21:03:47 +08:00
/// service mode
export async function checkService() {
2022-04-25 16:12:04 +08:00
try {
const result = await invoke<any>("check_service");
if (result?.code === 0) return "active";
if (result?.code === 400) return "installed";
return "unknown";
} catch (err: any) {
return "uninstall";
}
2022-04-24 21:03:47 +08:00
}
export async function installService() {
return invoke<void>("install_service");
}
export async function uninstallService() {
return invoke<void>("uninstall_service");
}