refactor: add api Flush fake-ip

This commit is contained in:
JeelsBoobz 2023-09-13 09:35:25 +07:00
parent fd1153709e
commit 3cabaf7a3e
4 changed files with 16 additions and 0 deletions

View File

@ -45,6 +45,15 @@ export const upgradeBackendAPI = async () => {
setUpgradingBackend(false)
}
export const flushFakeIP = async () => {
const request = useRequest()
setUpgradingBackend(true)
try {
await request.post('cache/fakeip/flush')
} catch {}
setUpgradingBackend(false)
}
export const restartBackendAPI = async () => {
const request = useRequest()
setRestartingBackend(true)

View File

@ -50,6 +50,7 @@ export default {
renderInTwoColumns: 'Render in two columns',
updateGEODatabases: 'Update GEO Databases',
restartCore: 'Restart Core',
flushFakeIP: 'Flush fake-ip',
upgradeCore: 'Upgrade Core',
proxiesSorting: 'Proxies Sorting',
orderNatural: 'Original order in config file',

View File

@ -50,6 +50,7 @@ export default {
renderInTwoColumns: '双列渲染',
updateGEODatabases: '更新 GEO 数据库文件',
restartCore: '重启核心',
flushFakeIP: '清空 FakeIP',
upgradeCore: '更新核心',
proxiesSorting: '节点排序',
orderNatural: '原配置文件中的排序',

View File

@ -15,6 +15,7 @@ import {
fetchBackendConfigAPI,
fetchBackendVersionAPI,
restartBackendAPI,
flushFakeIP,
restartingBackend,
updateBackendConfigAPI,
updateGEODatabasesAPI,
@ -217,6 +218,10 @@ const ConfigForm = () => {
{t('upgradeCore')}
</Button>
<Button loading={upgradingBackend()} onClick={flushFakeIP}>
{t('flushFakeIP')}
</Button>
<Button loading={restartingBackend()} onClick={restartBackendAPI}>
{t('restartCore')}
</Button>