194 lines
5.3 KiB
TypeScript
194 lines
5.3 KiB
TypeScript
import axios, { AxiosInstance } from "axios";
|
|
import { getClashInfo } from "./cmds";
|
|
|
|
let axiosIns: AxiosInstance = null!;
|
|
let server = "";
|
|
let secret = "";
|
|
|
|
/// initialize some information
|
|
/// enable force update axiosIns
|
|
export async function getAxios(force: boolean = false) {
|
|
if (axiosIns && !force) return axiosIns;
|
|
|
|
try {
|
|
const info = await getClashInfo();
|
|
|
|
if (info?.server) {
|
|
server = info.server;
|
|
|
|
// compatible width `external-controller`
|
|
if (server.startsWith(":")) server = `127.0.0.1${server}`;
|
|
else if (/^\d+$/.test(server)) server = `127.0.0.1:${server}`;
|
|
}
|
|
if (info?.secret) secret = info?.secret;
|
|
} catch {}
|
|
|
|
axiosIns = axios.create({
|
|
baseURL: `http://${server}`,
|
|
headers: secret ? { Authorization: `Bearer ${secret}` } : {},
|
|
});
|
|
axiosIns.interceptors.response.use((r) => r.data);
|
|
return axiosIns;
|
|
}
|
|
|
|
/// get information
|
|
export async function getInformation() {
|
|
if (server) return { server, secret };
|
|
const info = await getClashInfo();
|
|
return info!;
|
|
}
|
|
|
|
/// Get Version
|
|
export async function getVersion() {
|
|
const instance = await getAxios();
|
|
return instance.get("/version") as Promise<{
|
|
premium: boolean;
|
|
meta?: boolean;
|
|
version: string;
|
|
}>;
|
|
}
|
|
|
|
/// Get current base configs
|
|
export async function getClashConfig() {
|
|
const instance = await getAxios();
|
|
return instance.get("/configs") as Promise<IConfigData>;
|
|
}
|
|
|
|
/// Update current configs
|
|
export async function updateConfigs(config: Partial<IConfigData>) {
|
|
const instance = await getAxios();
|
|
return instance.patch("/configs", config);
|
|
}
|
|
|
|
/// Get current rules
|
|
export async function getRules() {
|
|
const instance = await getAxios();
|
|
const response = await instance.get<any, any>("/rules");
|
|
return response?.rules as IRuleItem[];
|
|
}
|
|
|
|
/// Get Proxy delay
|
|
export async function getProxyDelay(
|
|
name: string,
|
|
url?: string
|
|
): Promise<{ delay: number }> {
|
|
const params = {
|
|
timeout: 3000,
|
|
url: url || "http://www.gstatic.com/generate_204",
|
|
};
|
|
|
|
const instance = await getAxios();
|
|
return instance.get(`/proxies/${encodeURIComponent(name)}/delay`, { params });
|
|
}
|
|
|
|
/// Update the Proxy Choose
|
|
export async function updateProxy(group: string, proxy: string) {
|
|
const instance = await getAxios();
|
|
return instance.put(`/proxies/${encodeURIComponent(group)}`, { name: proxy });
|
|
}
|
|
|
|
// get proxy
|
|
async function getProxiesInner() {
|
|
const instance = await getAxios();
|
|
const response = await instance.get<any, any>("/proxies");
|
|
return (response?.proxies || {}) as Record<string, IProxyItem>;
|
|
}
|
|
|
|
/// Get the Proxy information
|
|
export async function getProxies() {
|
|
const [proxyRecord, providerRecord] = await Promise.all([
|
|
getProxiesInner(),
|
|
getProviders(),
|
|
]);
|
|
|
|
// provider name map
|
|
const providerMap = Object.fromEntries(
|
|
Object.entries(providerRecord).flatMap(([provider, item]) =>
|
|
item.proxies.map((p) => [p.name, { ...p, provider }])
|
|
)
|
|
);
|
|
|
|
// compatible with proxy-providers
|
|
const generateItem = (name: string) => {
|
|
if (proxyRecord[name]) return proxyRecord[name];
|
|
if (providerMap[name]) return providerMap[name];
|
|
return { name, type: "unknown", udp: false, history: [] };
|
|
};
|
|
|
|
const { GLOBAL: global, DIRECT: direct, REJECT: reject } = proxyRecord;
|
|
|
|
let groups: IProxyGroupItem[] = [];
|
|
|
|
if (global?.all) {
|
|
groups = global.all
|
|
.filter((name) => proxyRecord[name]?.all)
|
|
.map((name) => proxyRecord[name])
|
|
.map((each) => ({
|
|
...each,
|
|
all: each.all!.map((item) => generateItem(item)),
|
|
}));
|
|
} else {
|
|
groups = Object.values(proxyRecord)
|
|
.filter((each) => each.name !== "GLOBAL" && each.all)
|
|
.map((each) => ({
|
|
...each,
|
|
all: each.all!.map((item) => generateItem(item)),
|
|
}))
|
|
.sort((a, b) => b.name.localeCompare(a.name));
|
|
}
|
|
|
|
const proxies = [direct, reject].concat(
|
|
Object.values(proxyRecord).filter(
|
|
(p) => !p.all?.length && p.name !== "DIRECT" && p.name !== "REJECT"
|
|
)
|
|
);
|
|
|
|
const _global: IProxyGroupItem = {
|
|
...global,
|
|
all: global?.all?.map((item) => generateItem(item)) || [],
|
|
};
|
|
|
|
return { global: _global, direct, groups, records: proxyRecord, proxies };
|
|
}
|
|
|
|
// get proxy providers
|
|
export async function getProviders() {
|
|
const instance = await getAxios();
|
|
const response = await instance.get<any, any>("/providers/proxies");
|
|
|
|
const providers = (response.providers || {}) as Record<string, IProviderItem>;
|
|
|
|
return Object.fromEntries(
|
|
Object.entries(providers).filter(([key, item]) => {
|
|
const type = item.vehicleType.toLowerCase();
|
|
return type === "http" || type === "file";
|
|
})
|
|
);
|
|
}
|
|
|
|
// proxy providers health check
|
|
export async function providerHealthCheck(name: string) {
|
|
const instance = await getAxios();
|
|
return instance.get(
|
|
`/providers/proxies/${encodeURIComponent(name)}/healthcheck`
|
|
);
|
|
}
|
|
|
|
export async function getConnections() {
|
|
const instance = await getAxios();
|
|
const result = await instance.get("/connections");
|
|
return result as any as IConnections;
|
|
}
|
|
|
|
// Close specific connection
|
|
export async function deleteConnection(id: string) {
|
|
const instance = await getAxios();
|
|
await instance.delete<any, any>(`/connections/${encodeURIComponent(id)}`);
|
|
}
|
|
|
|
// Close all connections
|
|
export async function closeAllConnections() {
|
|
const instance = await getAxios();
|
|
await instance.delete<any, any>(`/connections`);
|
|
}
|