mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
374 lines
11 KiB
TypeScript
374 lines
11 KiB
TypeScript
import axios, { AxiosInstance } from 'axios'
|
|
import { getAppConfig, getControledMihomoConfig } from '../config'
|
|
import { mainWindow } from '..'
|
|
import WebSocket from 'ws'
|
|
import { tray } from '../resolve/tray'
|
|
import { calcTraffic } from '../utils/calc'
|
|
import { getRuntimeConfig } from './factory'
|
|
import { floatingWindow } from '../resolve/floatingWindow'
|
|
|
|
let axiosIns: AxiosInstance = null!
|
|
let mihomoTrafficWs: WebSocket | null = null
|
|
let trafficRetry = 10
|
|
let mihomoMemoryWs: WebSocket | null = null
|
|
let memoryRetry = 10
|
|
let mihomoLogsWs: WebSocket | null = null
|
|
let logsRetry = 10
|
|
let mihomoConnectionsWs: WebSocket | null = null
|
|
let connectionsRetry = 10
|
|
|
|
export const getAxios = async (force: boolean = false): Promise<AxiosInstance> => {
|
|
const {
|
|
'external-controller-pipe': mihomoPipe = '\\\\.\\pipe\\MihomoParty\\mihomo',
|
|
'external-controller-unix': mihomoUnix = '/tmp/mihomo-party.sock'
|
|
} = await getControledMihomoConfig()
|
|
if (axiosIns && !force) return axiosIns
|
|
|
|
axiosIns = axios.create({
|
|
baseURL: `http://localhost`,
|
|
socketPath: process.platform === 'win32' ? mihomoPipe : mihomoUnix,
|
|
timeout: 15000
|
|
})
|
|
|
|
axiosIns.interceptors.response.use(
|
|
(response) => {
|
|
return response.data
|
|
},
|
|
(error) => {
|
|
if (error.response && error.response.data) {
|
|
return Promise.reject(error.response.data)
|
|
}
|
|
return Promise.reject(error)
|
|
}
|
|
)
|
|
return axiosIns
|
|
}
|
|
|
|
export async function mihomoVersion(): Promise<IMihomoVersion> {
|
|
const instance = await getAxios()
|
|
return await instance.get('/version')
|
|
}
|
|
|
|
export const patchMihomoConfig = async (patch: Partial<IMihomoConfig>): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.patch('/configs', patch)
|
|
}
|
|
|
|
export const mihomoCloseConnection = async (id: string): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.delete(`/connections/${encodeURIComponent(id)}`)
|
|
}
|
|
|
|
export const mihomoCloseAllConnections = async (): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.delete('/connections')
|
|
}
|
|
|
|
export const mihomoRules = async (): Promise<IMihomoRulesInfo> => {
|
|
const instance = await getAxios()
|
|
return await instance.get('/rules')
|
|
}
|
|
|
|
export const mihomoProxies = async (): Promise<IMihomoProxies> => {
|
|
const instance = await getAxios()
|
|
const proxies = (await instance.get('/proxies')) as IMihomoProxies
|
|
if (!proxies.proxies['GLOBAL']) {
|
|
throw new Error('GLOBAL proxy not found')
|
|
}
|
|
return proxies
|
|
}
|
|
|
|
export const mihomoGroups = async (): Promise<IMihomoMixedGroup[]> => {
|
|
const proxies = await mihomoProxies()
|
|
const runtime = await getRuntimeConfig()
|
|
const groups: IMihomoMixedGroup[] = []
|
|
runtime?.['proxy-groups']?.forEach((group: { name: string; url?: string }) => {
|
|
const { name, url } = group
|
|
if (proxies.proxies[name] && 'all' in proxies.proxies[name] && !proxies.proxies[name].hidden) {
|
|
const newGroup = proxies.proxies[name]
|
|
newGroup.testUrl = url
|
|
const newAll = newGroup.all.map((name) => proxies.proxies[name])
|
|
groups.push({ ...newGroup, all: newAll })
|
|
}
|
|
})
|
|
if (!groups.find((group) => group.name === 'GLOBAL')) {
|
|
const newGlobal = proxies.proxies['GLOBAL'] as IMihomoGroup
|
|
if (!newGlobal.hidden) {
|
|
const newAll = newGlobal.all.map((name) => proxies.proxies[name])
|
|
groups.push({ ...newGlobal, all: newAll })
|
|
}
|
|
}
|
|
return groups
|
|
}
|
|
|
|
export const mihomoProxyProviders = async (): Promise<IMihomoProxyProviders> => {
|
|
const instance = await getAxios()
|
|
return await instance.get('/providers/proxies')
|
|
}
|
|
|
|
export const mihomoUpdateProxyProviders = async (name: string): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.put(`/providers/proxies/${encodeURIComponent(name)}`)
|
|
}
|
|
|
|
export const mihomoRuleProviders = async (): Promise<IMihomoRuleProviders> => {
|
|
const instance = await getAxios()
|
|
return await instance.get('/providers/rules')
|
|
}
|
|
|
|
export const mihomoUpdateRuleProviders = async (name: string): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.put(`/providers/rules/${encodeURIComponent(name)}`)
|
|
}
|
|
|
|
export const mihomoChangeProxy = async (group: string, proxy: string): Promise<IMihomoProxy> => {
|
|
const instance = await getAxios()
|
|
return await instance.put(`/proxies/${encodeURIComponent(group)}`, { name: proxy })
|
|
}
|
|
|
|
export const mihomoUnfixedProxy = async (group: string): Promise<IMihomoProxy> => {
|
|
const instance = await getAxios()
|
|
return await instance.delete(`/proxies/${encodeURIComponent(group)}`)
|
|
}
|
|
|
|
export const mihomoUpgradeGeo = async (): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.post('/configs/geo')
|
|
}
|
|
|
|
export const mihomoProxyDelay = async (proxy: string, url?: string): Promise<IMihomoDelay> => {
|
|
const appConfig = await getAppConfig()
|
|
const { delayTestUrl, delayTestTimeout } = appConfig
|
|
const instance = await getAxios()
|
|
return await instance.get(`/proxies/${encodeURIComponent(proxy)}/delay`, {
|
|
params: {
|
|
url: url || delayTestUrl || 'https://www.gstatic.com/generate_204',
|
|
timeout: delayTestTimeout || 5000
|
|
}
|
|
})
|
|
}
|
|
|
|
export const mihomoGroupDelay = async (group: string, url?: string): Promise<IMihomoGroupDelay> => {
|
|
const appConfig = await getAppConfig()
|
|
const { delayTestUrl, delayTestTimeout } = appConfig
|
|
const instance = await getAxios()
|
|
return await instance.get(`/group/${encodeURIComponent(group)}/delay`, {
|
|
params: {
|
|
url: url || delayTestUrl || 'https://www.gstatic.com/generate_204',
|
|
timeout: delayTestTimeout || 5000
|
|
}
|
|
})
|
|
}
|
|
|
|
export const mihomoUpgrade = async (): Promise<void> => {
|
|
const instance = await getAxios()
|
|
return await instance.post('/upgrade')
|
|
}
|
|
|
|
export const startMihomoTraffic = async (): Promise<void> => {
|
|
await mihomoTraffic()
|
|
}
|
|
|
|
export const stopMihomoTraffic = (): void => {
|
|
if (mihomoTrafficWs) {
|
|
mihomoTrafficWs.removeAllListeners()
|
|
if (mihomoTrafficWs.readyState === WebSocket.OPEN) {
|
|
mihomoTrafficWs.close()
|
|
}
|
|
mihomoTrafficWs = null
|
|
}
|
|
}
|
|
|
|
const mihomoTraffic = async (): Promise<void> => {
|
|
const {
|
|
'external-controller-pipe': mihomoPipe = '\\\\.\\pipe\\MihomoParty\\mihomo',
|
|
'external-controller-unix': mihomoUnix = '/tmp/mihomo-party.sock'
|
|
} = await getControledMihomoConfig()
|
|
|
|
mihomoTrafficWs = new WebSocket(
|
|
`ws+unix:${process.platform === 'win32' ? mihomoPipe : mihomoUnix}:/traffic`
|
|
)
|
|
|
|
mihomoTrafficWs.onmessage = async (e): Promise<void> => {
|
|
const data = e.data as string
|
|
const json = JSON.parse(data) as IMihomoTrafficInfo
|
|
trafficRetry = 10
|
|
try {
|
|
mainWindow?.webContents.send('mihomoTraffic', json)
|
|
if (process.platform !== 'linux') {
|
|
tray?.setToolTip(
|
|
'↑' +
|
|
`${calcTraffic(json.up)}/s`.padStart(9) +
|
|
'\n↓' +
|
|
`${calcTraffic(json.down)}/s`.padStart(9)
|
|
)
|
|
}
|
|
floatingWindow?.webContents.send('mihomoTraffic', json)
|
|
} catch {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
mihomoTrafficWs.onclose = (): void => {
|
|
if (trafficRetry) {
|
|
trafficRetry--
|
|
mihomoTraffic()
|
|
}
|
|
}
|
|
|
|
mihomoTrafficWs.onerror = (): void => {
|
|
if (mihomoTrafficWs) {
|
|
mihomoTrafficWs.close()
|
|
mihomoTrafficWs = null
|
|
}
|
|
}
|
|
}
|
|
|
|
export const startMihomoMemory = async (): Promise<void> => {
|
|
await mihomoMemory()
|
|
}
|
|
|
|
export const stopMihomoMemory = (): void => {
|
|
if (mihomoMemoryWs) {
|
|
mihomoMemoryWs.removeAllListeners()
|
|
if (mihomoMemoryWs.readyState === WebSocket.OPEN) {
|
|
mihomoMemoryWs.close()
|
|
}
|
|
mihomoMemoryWs = null
|
|
}
|
|
}
|
|
|
|
const mihomoMemory = async (): Promise<void> => {
|
|
const {
|
|
'external-controller-pipe': mihomoPipe = '\\\\.\\pipe\\MihomoParty\\mihomo',
|
|
'external-controller-unix': mihomoUnix = '/tmp/mihomo-party.sock'
|
|
} = await getControledMihomoConfig()
|
|
|
|
mihomoMemoryWs = new WebSocket(
|
|
`ws+unix:${process.platform === 'win32' ? mihomoPipe : mihomoUnix}:/memory`
|
|
)
|
|
|
|
mihomoMemoryWs.onmessage = (e): void => {
|
|
const data = e.data as string
|
|
memoryRetry = 10
|
|
try {
|
|
mainWindow?.webContents.send('mihomoMemory', JSON.parse(data) as IMihomoMemoryInfo)
|
|
} catch {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
mihomoMemoryWs.onclose = (): void => {
|
|
if (memoryRetry) {
|
|
memoryRetry--
|
|
mihomoMemory()
|
|
}
|
|
}
|
|
|
|
mihomoMemoryWs.onerror = (): void => {
|
|
if (mihomoMemoryWs) {
|
|
mihomoMemoryWs.close()
|
|
mihomoMemoryWs = null
|
|
}
|
|
}
|
|
}
|
|
|
|
export const startMihomoLogs = async (): Promise<void> => {
|
|
await mihomoLogs()
|
|
}
|
|
|
|
export const stopMihomoLogs = (): void => {
|
|
if (mihomoLogsWs) {
|
|
mihomoLogsWs.removeAllListeners()
|
|
if (mihomoLogsWs.readyState === WebSocket.OPEN) {
|
|
mihomoLogsWs.close()
|
|
}
|
|
mihomoLogsWs = null
|
|
}
|
|
}
|
|
|
|
const mihomoLogs = async (): Promise<void> => {
|
|
const {
|
|
'external-controller-pipe': mihomoPipe = '\\\\.\\pipe\\MihomoParty\\mihomo',
|
|
'external-controller-unix': mihomoUnix = '/tmp/mihomo-party.sock',
|
|
'log-level': logLevel = 'info'
|
|
} = await getControledMihomoConfig()
|
|
|
|
mihomoLogsWs = new WebSocket(
|
|
`ws+unix:${process.platform === 'win32' ? mihomoPipe : mihomoUnix}:/logs?level=${logLevel}`
|
|
)
|
|
|
|
mihomoLogsWs.onmessage = (e): void => {
|
|
const data = e.data as string
|
|
logsRetry = 10
|
|
try {
|
|
mainWindow?.webContents.send('mihomoLogs', JSON.parse(data) as IMihomoLogInfo)
|
|
} catch {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
mihomoLogsWs.onclose = (): void => {
|
|
if (logsRetry) {
|
|
logsRetry--
|
|
mihomoLogs()
|
|
}
|
|
}
|
|
|
|
mihomoLogsWs.onerror = (): void => {
|
|
if (mihomoLogsWs) {
|
|
mihomoLogsWs.close()
|
|
mihomoLogsWs = null
|
|
}
|
|
}
|
|
}
|
|
|
|
export const startMihomoConnections = async (): Promise<void> => {
|
|
await mihomoConnections()
|
|
}
|
|
|
|
export const stopMihomoConnections = (): void => {
|
|
if (mihomoConnectionsWs) {
|
|
mihomoConnectionsWs.removeAllListeners()
|
|
if (mihomoConnectionsWs.readyState === WebSocket.OPEN) {
|
|
mihomoConnectionsWs.close()
|
|
}
|
|
mihomoConnectionsWs = null
|
|
}
|
|
}
|
|
|
|
const mihomoConnections = async (): Promise<void> => {
|
|
const {
|
|
'external-controller-pipe': mihomoPipe = '\\\\.\\pipe\\MihomoParty\\mihomo',
|
|
'external-controller-unix': mihomoUnix = '/tmp/mihomo-party.sock'
|
|
} = await getControledMihomoConfig()
|
|
|
|
mihomoConnectionsWs = new WebSocket(
|
|
`ws+unix:${process.platform === 'win32' ? mihomoPipe : mihomoUnix}:/connections`
|
|
)
|
|
|
|
mihomoConnectionsWs.onmessage = (e): void => {
|
|
const data = e.data as string
|
|
connectionsRetry = 10
|
|
try {
|
|
mainWindow?.webContents.send('mihomoConnections', JSON.parse(data) as IMihomoConnectionsInfo)
|
|
} catch {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
mihomoConnectionsWs.onclose = (): void => {
|
|
if (connectionsRetry) {
|
|
connectionsRetry--
|
|
mihomoConnections()
|
|
}
|
|
}
|
|
|
|
mihomoConnectionsWs.onerror = (): void => {
|
|
if (mihomoConnectionsWs) {
|
|
mihomoConnectionsWs.close()
|
|
mihomoConnectionsWs = null
|
|
}
|
|
}
|
|
}
|