123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- 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`);
- }
|