Compare commits
63 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f679d1e6d8 | ||
|
|
f2aa8851ae | ||
|
|
ec2890cab2 | ||
|
|
ca946c1b06 | ||
|
|
3bc3172723 | ||
|
|
82be4cc45f | ||
|
|
2c3f4ae8a8 | ||
|
|
891977408e | ||
|
|
5292f34e8d | ||
|
|
1c54db6bf3 | ||
|
|
a4b5f4abdb | ||
|
|
aa4ffbe4fb | ||
|
|
3d25298639 | ||
|
|
1765576d09 | ||
|
|
2dd45062f1 | ||
|
|
c6407984ac | ||
|
|
53af86238e | ||
|
|
b20d9edec2 | ||
|
|
5c3a0c576d | ||
|
|
6dcb466fd3 | ||
|
|
acbcec358b | ||
|
|
a923549ddf | ||
|
|
07bd21580b | ||
|
|
57ceb64a5e | ||
|
|
713e83d9d8 | ||
|
|
5e3b0e4929 | ||
|
|
0389b6eb29 | ||
|
|
8f22cbf746 | ||
|
|
1fcc412770 | ||
|
|
afa1b4f424 | ||
|
|
fa67940ec9 | ||
|
|
90bb670442 | ||
|
|
05abf2d56d | ||
|
|
658727dd79 | ||
|
|
f7abf6446c | ||
|
|
5ab4dd0cbd | ||
|
|
35f7279fcb | ||
|
|
86572cc960 | ||
|
|
ee22709d49 | ||
|
|
0a2ad63f38 | ||
|
|
2ec12c9363 | ||
|
|
a3c2dc786c | ||
|
|
7acf9c6db3 | ||
|
|
8074547fb4 | ||
|
|
8a01e04871 | ||
|
|
7ddcdd9828 | ||
|
|
d89ed076fd | ||
|
|
f4c3b06cd5 | ||
|
|
c65746709d | ||
|
|
d2d9bdab02 | ||
|
|
d0f8444b6d | ||
|
|
fccabfbe27 | ||
|
|
e9bb97c6ce | ||
|
|
068fe14d89 | ||
|
|
43c397007c | ||
|
|
5e801d5f5e | ||
|
|
52d61b15fd | ||
|
|
fea3c14608 | ||
|
|
84be01a38a | ||
|
|
93da242148 | ||
|
|
bb7e44da30 | ||
|
|
01f1b2d72f | ||
|
|
3074b1299e |
36
.github/workflows/build.yml
vendored
@@ -15,12 +15,38 @@ jobs:
|
|||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
- platform: windows
|
- platform: windows
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
|
arch: amd64
|
||||||
- platform: linux
|
- platform: linux
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
|
arch: amd64
|
||||||
- platform: macos
|
- platform: macos
|
||||||
os: macos-13
|
os: macos-13
|
||||||
|
arch: amd64
|
||||||
|
- platform: macos
|
||||||
|
os: macos-latest
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup Mingw64
|
||||||
|
if: startsWith(matrix.platform,'windows')
|
||||||
|
uses: msys2/setup-msys2@v2
|
||||||
|
with:
|
||||||
|
msystem: mingw64
|
||||||
|
install: mingw-w64-x86_64-gcc
|
||||||
|
update: true
|
||||||
|
|
||||||
|
|
||||||
|
- name: Set Mingw64 Env
|
||||||
|
if: startsWith(matrix.platform,'windows')
|
||||||
|
run: |
|
||||||
|
echo "${{ runner.temp }}\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Check Matrix
|
||||||
|
run: |
|
||||||
|
echo "Running on ${{ matrix.os }}"
|
||||||
|
echo "Arch: ${{ runner.arch }}"
|
||||||
|
gcc --version
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@@ -46,10 +72,10 @@ jobs:
|
|||||||
if: startsWith(matrix.platform,'android')
|
if: startsWith(matrix.platform,'android')
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.KEYSTORE }}" | base64 --decode > android/app/keystore.jks
|
echo "${{ secrets.KEYSTORE }}" | base64 --decode > android/app/keystore.jks
|
||||||
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> android/local.properties
|
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> android/local.properties
|
||||||
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> android/local.properties
|
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> android/local.properties
|
||||||
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/local.properties
|
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/local.properties
|
||||||
|
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
@@ -69,19 +95,19 @@ jobs:
|
|||||||
run: flutter pub get
|
run: flutter pub get
|
||||||
|
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: dart setup.dart ${{ matrix.platform }} ${{ matrix.arch && format('--arch {0}', matrix.arch) }}
|
||||||
dart setup.dart ${{ matrix.platform }}
|
|
||||||
|
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: artifact-${{ matrix.platform }}
|
name: artifact-${{ matrix.platform }}${{ matrix.arch && format('-{0}', matrix.arch) }}
|
||||||
path: ./dist
|
path: ./dist
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
||||||
|
|
||||||
upload-release:
|
upload-release:
|
||||||
|
if: ${{ !contains(github.ref, '+') }}
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
needs: [ build ]
|
needs: [ build ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
2
.gitignore
vendored
@@ -31,6 +31,7 @@ migrate_working_dir/
|
|||||||
.pub-cache/
|
.pub-cache/
|
||||||
.pub/
|
.pub/
|
||||||
/build/
|
/build/
|
||||||
|
/dist/
|
||||||
|
|
||||||
# Symbolication related
|
# Symbolication related
|
||||||
app.*.symbols
|
app.*.symbols
|
||||||
@@ -44,6 +45,7 @@ app.*.map.json
|
|||||||
/android/app/release
|
/android/app/release
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#libclash
|
#libclash
|
||||||
/libclash/
|
/libclash/
|
||||||
|
|
||||||
|
|||||||
2
.gitmodules
vendored
@@ -5,4 +5,4 @@
|
|||||||
[submodule "plugins/flutter_distributor"]
|
[submodule "plugins/flutter_distributor"]
|
||||||
path = plugins/flutter_distributor
|
path = plugins/flutter_distributor
|
||||||
url = git@github.com:chen08209/flutter_distributor.git
|
url = git@github.com:chen08209/flutter_distributor.git
|
||||||
branch = main
|
branch = FlClash
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<uses-feature
|
|
||||||
android:name="android.software.leanback"
|
|
||||||
android:required="false" />
|
|
||||||
<uses-feature
|
<uses-feature
|
||||||
android:name="android.hardware.touchscreen"
|
android:name="android.hardware.touchscreen"
|
||||||
android:required="false" />
|
android:required="false" />
|
||||||
@@ -17,14 +14,19 @@
|
|||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"
|
||||||
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission"/>
|
tools:ignore="SystemPermissionTypo" />
|
||||||
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
||||||
|
tools:ignore="QueryAllPackagesPermission" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:networkSecurityConfig="@xml/network_security_config"
|
android:networkSecurityConfig="@xml/network_security_config"
|
||||||
android:label="FlClash">
|
android:extractNativeLibs="true"
|
||||||
|
android:enableOnBackInvokedCallback="true"
|
||||||
|
android:label="FlClash"
|
||||||
|
tools:targetApi="tiramisu">
|
||||||
<activity
|
<activity
|
||||||
android:name="com.follow.clash.MainActivity"
|
android:name="com.follow.clash.MainActivity"
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
@@ -73,7 +75,8 @@
|
|||||||
<service
|
<service
|
||||||
android:name=".services.FlClashTileService"
|
android:name=".services.FlClashTileService"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:icon="@drawable/tile_icon"
|
android:icon="@drawable/ic_stat_name"
|
||||||
|
android:foregroundServiceType="specialUse"
|
||||||
android:label="FlClash"
|
android:label="FlClash"
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 11 KiB |
@@ -1,9 +1,16 @@
|
|||||||
package com.follow.clash
|
package com.follow.clash
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.util.Log
|
||||||
import androidx.lifecycle.MutableLiveData
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import com.follow.clash.plugins.AppPlugin
|
||||||
|
import com.follow.clash.plugins.ProxyPlugin
|
||||||
import com.follow.clash.plugins.TilePlugin
|
import com.follow.clash.plugins.TilePlugin
|
||||||
|
import io.flutter.FlutterInjector
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
import java.util.Date
|
import io.flutter.embedding.engine.dart.DartExecutor
|
||||||
|
import java.util.concurrent.locks.ReentrantLock
|
||||||
|
import kotlin.concurrent.withLock
|
||||||
|
|
||||||
enum class RunState {
|
enum class RunState {
|
||||||
START,
|
START,
|
||||||
@@ -11,13 +18,48 @@ enum class RunState {
|
|||||||
STOP
|
STOP
|
||||||
}
|
}
|
||||||
|
|
||||||
class GlobalState {
|
|
||||||
companion object {
|
object GlobalState {
|
||||||
val runState: MutableLiveData<RunState> = MutableLiveData<RunState>(RunState.STOP)
|
|
||||||
var runTime: Date? = null
|
private val lock = ReentrantLock()
|
||||||
var flutterEngine: FlutterEngine? = null
|
|
||||||
fun getCurrentTilePlugin(): TilePlugin? =
|
val runState: MutableLiveData<RunState> = MutableLiveData<RunState>(RunState.STOP)
|
||||||
flutterEngine?.plugins?.get(TilePlugin::class.java) as TilePlugin?
|
var flutterEngine: FlutterEngine? = null
|
||||||
|
private var serviceEngine: FlutterEngine? = null
|
||||||
|
|
||||||
|
fun getCurrentAppPlugin(): AppPlugin? {
|
||||||
|
val currentEngine = if (flutterEngine != null) flutterEngine else serviceEngine
|
||||||
|
return currentEngine?.plugins?.get(AppPlugin::class.java) as AppPlugin?
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getCurrentTitlePlugin(): TilePlugin? {
|
||||||
|
val currentEngine = if (flutterEngine != null) flutterEngine else serviceEngine
|
||||||
|
return currentEngine?.plugins?.get(TilePlugin::class.java) as TilePlugin?
|
||||||
|
}
|
||||||
|
|
||||||
|
fun destroyServiceEngine() {
|
||||||
|
serviceEngine?.destroy()
|
||||||
|
serviceEngine = null
|
||||||
|
}
|
||||||
|
|
||||||
|
fun initServiceEngine(context: Context) {
|
||||||
|
if (serviceEngine != null) return
|
||||||
|
lock.withLock {
|
||||||
|
destroyServiceEngine()
|
||||||
|
serviceEngine = FlutterEngine(context)
|
||||||
|
serviceEngine?.plugins?.add(ProxyPlugin())
|
||||||
|
serviceEngine?.plugins?.add(AppPlugin())
|
||||||
|
serviceEngine?.plugins?.add(TilePlugin())
|
||||||
|
val vpnService = DartExecutor.DartEntrypoint(
|
||||||
|
FlutterInjector.instance().flutterLoader().findAppBundlePath(),
|
||||||
|
"vpnService"
|
||||||
|
)
|
||||||
|
serviceEngine?.dartExecutor?.executeDartEntrypoint(
|
||||||
|
vpnService,
|
||||||
|
)
|
||||||
|
|
||||||
|
Log.e("FlClashVpnService", "initServiceEngine ===>")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import io.flutter.embedding.engine.FlutterEngine
|
|||||||
class MainActivity : FlutterActivity() {
|
class MainActivity : FlutterActivity() {
|
||||||
|
|
||||||
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
||||||
GlobalState.flutterEngine?.destroy()
|
|
||||||
super.configureFlutterEngine(flutterEngine)
|
super.configureFlutterEngine(flutterEngine)
|
||||||
flutterEngine.plugins.add(AppPlugin())
|
flutterEngine.plugins.add(AppPlugin())
|
||||||
flutterEngine.plugins.add(ProxyPlugin())
|
flutterEngine.plugins.add(ProxyPlugin())
|
||||||
|
|||||||
@@ -1,17 +1,18 @@
|
|||||||
package com.follow.clash.extensions
|
package com.follow.clash.extensions
|
||||||
|
|
||||||
import java.net.InetSocketAddress
|
|
||||||
|
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import android.graphics.drawable.Drawable
|
import android.graphics.drawable.Drawable
|
||||||
import android.system.OsConstants.IPPROTO_TCP
|
import android.system.OsConstants.IPPROTO_TCP
|
||||||
import android.system.OsConstants.IPPROTO_UDP
|
import android.system.OsConstants.IPPROTO_UDP
|
||||||
import android.util.Base64
|
import android.util.Base64
|
||||||
|
import java.net.URL
|
||||||
import androidx.core.graphics.drawable.toBitmap
|
import androidx.core.graphics.drawable.toBitmap
|
||||||
import com.follow.clash.models.Metadata
|
import com.follow.clash.models.Metadata
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import java.io.ByteArrayOutputStream
|
import java.io.ByteArrayOutputStream
|
||||||
|
import java.net.InetAddress
|
||||||
|
import java.net.InetSocketAddress
|
||||||
|
|
||||||
|
|
||||||
suspend fun Drawable.getBase64(): String {
|
suspend fun Drawable.getBase64(): String {
|
||||||
@@ -29,3 +30,8 @@ fun Metadata.getProtocol(): Int? {
|
|||||||
if (network.startsWith("udp")) return IPPROTO_UDP
|
if (network.startsWith("udp")) return IPPROTO_UDP
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun String.getInetSocketAddress(): InetSocketAddress {
|
||||||
|
val url = URL("https://$this")
|
||||||
|
return InetSocketAddress(InetAddress.getByName(url.host), url.port)
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,11 +1,15 @@
|
|||||||
package com.follow.clash.models
|
package com.follow.clash.models
|
||||||
|
|
||||||
|
data class Process(
|
||||||
|
val id: Int,
|
||||||
|
val metadata: Metadata,
|
||||||
|
)
|
||||||
|
|
||||||
data class Metadata(
|
data class Metadata(
|
||||||
val network: String,
|
val network: String,
|
||||||
val sourceIP: String,
|
val sourceIP: String,
|
||||||
val sourcePort: Int,
|
val sourcePort: Int,
|
||||||
val destinationIP: String,
|
val destinationIP: String,
|
||||||
val destinationPort: Int,
|
val destinationPort: Int,
|
||||||
val remoteDestination: String,
|
|
||||||
val host: String
|
val host: String
|
||||||
)
|
)
|
||||||
@@ -10,3 +10,9 @@ data class AccessControl(
|
|||||||
val acceptList: List<String>,
|
val acceptList: List<String>,
|
||||||
val rejectList: List<String>,
|
val rejectList: List<String>,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
data class Props(
|
||||||
|
val accessControl: AccessControl?,
|
||||||
|
val allowBypass: Boolean?,
|
||||||
|
val systemProxy: Boolean?,
|
||||||
|
)
|
||||||
@@ -2,24 +2,27 @@ package com.follow.clash.plugins
|
|||||||
|
|
||||||
import android.Manifest
|
import android.Manifest
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
|
import android.app.ActivityManager
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.pm.ApplicationInfo
|
import android.content.pm.ApplicationInfo
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
import android.net.ConnectivityManager
|
import android.net.ConnectivityManager
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.annotation.RequiresApi
|
import androidx.core.content.ContextCompat.getSystemService
|
||||||
import androidx.core.content.getSystemService
|
import androidx.core.content.getSystemService
|
||||||
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.extensions.getBase64
|
import com.follow.clash.extensions.getBase64
|
||||||
import com.follow.clash.extensions.getProtocol
|
import com.follow.clash.extensions.getProtocol
|
||||||
import com.follow.clash.models.Metadata
|
|
||||||
import com.follow.clash.models.Package
|
import com.follow.clash.models.Package
|
||||||
|
import com.follow.clash.models.Process
|
||||||
import com.google.gson.Gson
|
import com.google.gson.Gson
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
||||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
||||||
import io.flutter.plugin.common.MethodCall
|
import io.flutter.plugin.common.MethodCall
|
||||||
import io.flutter.plugin.common.MethodChannel
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import io.flutter.plugin.common.MethodChannel.Result
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.cancel
|
import kotlinx.coroutines.cancel
|
||||||
@@ -27,6 +30,7 @@ import kotlinx.coroutines.launch
|
|||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import java.net.InetSocketAddress
|
import java.net.InetSocketAddress
|
||||||
|
|
||||||
|
|
||||||
class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
||||||
|
|
||||||
private var activity: Activity? = null
|
private var activity: Activity? = null
|
||||||
@@ -44,31 +48,41 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
private val iconMap = mutableMapOf<String, String?>()
|
private val iconMap = mutableMapOf<String, String?>()
|
||||||
|
|
||||||
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
scope = CoroutineScope(Dispatchers.Default)
|
||||||
context = flutterPluginBinding.applicationContext;
|
context = flutterPluginBinding.applicationContext;
|
||||||
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "app")
|
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "app")
|
||||||
channel.setMethodCallHandler(this)
|
channel.setMethodCallHandler(this)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
|
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
channel.setMethodCallHandler(null)
|
channel.setMethodCallHandler(null)
|
||||||
|
scope.cancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun tip(message: String?) {
|
private fun tip(message: String?) {
|
||||||
if (toast != null) {
|
if(GlobalState.flutterEngine == null){
|
||||||
toast!!.cancel()
|
if (toast != null) {
|
||||||
|
toast!!.cancel()
|
||||||
|
}
|
||||||
|
toast = Toast.makeText(context, message, Toast.LENGTH_SHORT)
|
||||||
|
toast!!.show()
|
||||||
}
|
}
|
||||||
toast = Toast.makeText(context, message, Toast.LENGTH_SHORT)
|
|
||||||
toast!!.show()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.Q)
|
override fun onMethodCall(call: MethodCall, result: Result) {
|
||||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
|
||||||
when (call.method) {
|
when (call.method) {
|
||||||
"moveTaskToBack" -> {
|
"moveTaskToBack" -> {
|
||||||
activity?.moveTaskToBack(true)
|
activity?.moveTaskToBack(true)
|
||||||
result.success(true);
|
result.success(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
"updateExcludeFromRecents" -> {
|
||||||
|
val value = call.argument<Boolean>("value")
|
||||||
|
updateExcludeFromRecents(value)
|
||||||
|
result.success(true);
|
||||||
|
}
|
||||||
|
|
||||||
"getPackages" -> {
|
"getPackages" -> {
|
||||||
scope.launch {
|
scope.launch {
|
||||||
result.success(getPackages())
|
result.success(getPackages())
|
||||||
@@ -78,21 +92,34 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
"getPackageIcon" -> {
|
"getPackageIcon" -> {
|
||||||
scope.launch {
|
scope.launch {
|
||||||
val packageName = call.argument<String>("packageName")
|
val packageName = call.argument<String>("packageName")
|
||||||
if (packageName != null) {
|
if (packageName == null) {
|
||||||
result.success(getPackageIcon(packageName))
|
|
||||||
} else {
|
|
||||||
result.success(null)
|
result.success(null)
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
val packageIcon = getPackageIcon(packageName)
|
||||||
|
packageIcon.let {
|
||||||
|
if (it != null) {
|
||||||
|
result.success(it)
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
if (iconMap["default"] == null) {
|
||||||
|
iconMap["default"] =
|
||||||
|
context?.packageManager?.defaultActivityIcon?.getBase64()
|
||||||
|
}
|
||||||
|
result.success(iconMap["default"])
|
||||||
|
return@launch
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"getPackageName" -> {
|
"resolverProcess" -> {
|
||||||
val data = call.argument<String>("data")
|
val data = call.argument<String>("data")
|
||||||
val metadata =
|
val process =
|
||||||
if (data != null) Gson().fromJson(
|
if (data != null) Gson().fromJson(
|
||||||
data,
|
data,
|
||||||
Metadata::class.java
|
Process::class.java
|
||||||
) else null
|
) else null
|
||||||
|
val metadata = process?.metadata
|
||||||
val protocol = metadata?.getProtocol()
|
val protocol = metadata?.getProtocol()
|
||||||
if (protocol == null) {
|
if (protocol == null) {
|
||||||
result.success(null)
|
result.success(null)
|
||||||
@@ -100,17 +127,27 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
}
|
}
|
||||||
scope.launch {
|
scope.launch {
|
||||||
withContext(Dispatchers.Default) {
|
withContext(Dispatchers.Default) {
|
||||||
if (context == null) result.success(null)
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
|
||||||
val source = InetSocketAddress(metadata.sourceIP, metadata.sourcePort)
|
result.success(null)
|
||||||
val target = InetSocketAddress(
|
return@withContext
|
||||||
metadata.host.ifEmpty { metadata.destinationIP },
|
}
|
||||||
metadata.destinationPort
|
if (context == null) {
|
||||||
)
|
result.success(null)
|
||||||
|
return@withContext
|
||||||
|
}
|
||||||
if (connectivity == null) {
|
if (connectivity == null) {
|
||||||
connectivity = context!!.getSystemService<ConnectivityManager>()
|
connectivity = context!!.getSystemService<ConnectivityManager>()
|
||||||
}
|
}
|
||||||
val uid =
|
val src = InetSocketAddress(metadata.sourceIP, metadata.sourcePort)
|
||||||
connectivity?.getConnectionOwnerUid(protocol, source, target)
|
val dst = InetSocketAddress(
|
||||||
|
metadata.destinationIP.ifEmpty { metadata.host },
|
||||||
|
metadata.destinationPort
|
||||||
|
)
|
||||||
|
val uid = try {
|
||||||
|
connectivity?.getConnectionOwnerUid(protocol, src, dst)
|
||||||
|
} catch (_: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
if (uid == null || uid == -1) {
|
if (uid == null || uid == -1) {
|
||||||
result.success(null)
|
result.success(null)
|
||||||
return@withContext
|
return@withContext
|
||||||
@@ -125,7 +162,6 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
val message = call.argument<String>("message")
|
val message = call.argument<String>("message")
|
||||||
tip(message)
|
tip(message)
|
||||||
result.success(true)
|
result.success(true)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
@@ -134,16 +170,39 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun updateExcludeFromRecents(value: Boolean?) {
|
||||||
|
if (context == null) return
|
||||||
|
val am = getSystemService(context!!, ActivityManager::class.java)
|
||||||
|
val task = am?.appTasks?.firstOrNull {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
|
it.taskInfo.taskId == activity?.taskId
|
||||||
|
} else {
|
||||||
|
it.taskInfo.id == activity?.taskId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
when (value) {
|
||||||
|
true -> task?.setExcludeFromRecents(value)
|
||||||
|
false -> task?.setExcludeFromRecents(value)
|
||||||
|
null -> task?.setExcludeFromRecents(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private suspend fun getPackageIcon(packageName: String): String? {
|
private suspend fun getPackageIcon(packageName: String): String? {
|
||||||
val packageManager = context?.packageManager
|
val packageManager = context?.packageManager
|
||||||
if (iconMap[packageName] == null) {
|
if (iconMap[packageName] == null) {
|
||||||
iconMap[packageName] = packageManager?.getApplicationIcon(packageName)?.getBase64()
|
iconMap[packageName] = try {
|
||||||
|
packageManager?.getApplicationIcon(packageName)?.getBase64()
|
||||||
|
} catch (_: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return iconMap[packageName]
|
return iconMap[packageName]
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getPackages(): String {
|
private suspend fun getPackages(): String {
|
||||||
return withContext(Dispatchers.Default){
|
return withContext(Dispatchers.Default) {
|
||||||
val packageManager = context?.packageManager
|
val packageManager = context?.packageManager
|
||||||
val packages: List<Package>? =
|
val packages: List<Package>? =
|
||||||
packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter {
|
packageManager?.getInstalledPackages(PackageManager.GET_META_DATA)?.filter {
|
||||||
@@ -162,13 +221,16 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun requestGc() {
|
||||||
|
channel.invokeMethod("gc", null)
|
||||||
|
}
|
||||||
|
|
||||||
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
||||||
activity = binding.activity;
|
activity = binding.activity;
|
||||||
scope = CoroutineScope(Dispatchers.Default)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDetachedFromActivityForConfigChanges() {
|
override fun onDetachedFromActivityForConfigChanges() {
|
||||||
activity = null;
|
activity = null
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
||||||
@@ -177,7 +239,6 @@ class AppPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware
|
|||||||
|
|
||||||
override fun onDetachedFromActivity() {
|
override fun onDetachedFromActivity() {
|
||||||
channel.invokeMethod("exit", null)
|
channel.invokeMethod("exit", null)
|
||||||
scope.cancel()
|
activity = null
|
||||||
activity = null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package com.follow.clash.plugins
|
package com.follow.clash.plugins
|
||||||
|
|
||||||
import android.Manifest
|
import android.Manifest
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.content.ComponentName
|
import android.content.ComponentName
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
@@ -9,14 +8,14 @@ import android.content.Intent
|
|||||||
import android.content.ServiceConnection
|
import android.content.ServiceConnection
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
import android.net.VpnService
|
import android.net.VpnService
|
||||||
import android.os.Build.VERSION
|
import android.os.Build
|
||||||
import android.os.Build.VERSION_CODES
|
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
|
import android.util.Log
|
||||||
import androidx.core.app.ActivityCompat
|
import androidx.core.app.ActivityCompat
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import com.follow.clash.GlobalState
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.RunState
|
import com.follow.clash.RunState
|
||||||
import com.follow.clash.models.AccessControl
|
import com.follow.clash.models.Props
|
||||||
import com.follow.clash.services.FlClashVpnService
|
import com.follow.clash.services.FlClashVpnService
|
||||||
import com.google.gson.Gson
|
import com.google.gson.Gson
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
@@ -25,37 +24,36 @@ import io.flutter.embedding.engine.plugins.activity.ActivityAware
|
|||||||
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
import io.flutter.embedding.engine.plugins.activity.ActivityPluginBinding
|
||||||
import io.flutter.plugin.common.MethodCall
|
import io.flutter.plugin.common.MethodCall
|
||||||
import io.flutter.plugin.common.MethodChannel
|
import io.flutter.plugin.common.MethodChannel
|
||||||
import java.util.Date
|
|
||||||
|
|
||||||
|
|
||||||
class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAware {
|
||||||
|
|
||||||
|
private lateinit var flutterMethodChannel: MethodChannel
|
||||||
|
|
||||||
val VPN_PERMISSION_REQUEST_CODE = 1001
|
val VPN_PERMISSION_REQUEST_CODE = 1001
|
||||||
val NOTIFICATION_PERMISSION_REQUEST_CODE = 1002
|
val NOTIFICATION_PERMISSION_REQUEST_CODE = 1002
|
||||||
|
|
||||||
private lateinit var flutterMethodChannel: MethodChannel
|
|
||||||
|
|
||||||
private var activity: Activity? = null
|
private var activity: Activity? = null
|
||||||
private var context: Context? = null
|
private var context: Context? = null
|
||||||
private var flClashVpnService: FlClashVpnService? = null
|
private var flClashVpnService: FlClashVpnService? = null
|
||||||
private var isBound = false
|
private var port: Int = 7890
|
||||||
private var port: Int? = null
|
private var props: Props? = null
|
||||||
private var accessControl: AccessControl? = null
|
private var isBlockNotification: Boolean = false
|
||||||
private lateinit var title: String
|
private var isStart: Boolean = false
|
||||||
private lateinit var content: String
|
|
||||||
|
|
||||||
private val connection = object : ServiceConnection {
|
private val connection = object : ServiceConnection {
|
||||||
override fun onServiceConnected(className: ComponentName, service: IBinder) {
|
override fun onServiceConnected(className: ComponentName, service: IBinder) {
|
||||||
val binder = service as FlClashVpnService.LocalBinder
|
val binder = service as FlClashVpnService.LocalBinder
|
||||||
flClashVpnService = binder.getService()
|
flClashVpnService = binder.getService()
|
||||||
port?.let { startVpn(it) }
|
if (isStart) {
|
||||||
isBound = true
|
startVpn()
|
||||||
|
} else {
|
||||||
|
flClashVpnService?.initServiceEngine()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onServiceDisconnected(arg0: ComponentName) {
|
override fun onServiceDisconnected(arg: ComponentName) {
|
||||||
flClashVpnService = null
|
flClashVpnService = null
|
||||||
isBound = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -70,21 +68,29 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) = when (call.method) {
|
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) = when (call.method) {
|
||||||
"StartProxy" -> {
|
"initService" -> {
|
||||||
port = call.argument<Int>("port")
|
isStart = false
|
||||||
val args = call.argument<String>("args")
|
initService()
|
||||||
accessControl =
|
requestNotificationsPermission()
|
||||||
if (args != null) Gson().fromJson(args, AccessControl::class.java) else null
|
|
||||||
handleStartVpn()
|
|
||||||
result.success(true)
|
result.success(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
"StopProxy" -> {
|
"startProxy" -> {
|
||||||
|
isStart = true
|
||||||
|
port = call.argument<Int>("port")!!
|
||||||
|
val args = call.argument<String>("args")
|
||||||
|
props =
|
||||||
|
if (args != null) Gson().fromJson(args, Props::class.java) else null
|
||||||
|
startVpn()
|
||||||
|
result.success(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
"stopProxy" -> {
|
||||||
stopVpn()
|
stopVpn()
|
||||||
result.success(true)
|
result.success(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
"SetProtect" -> {
|
"setProtect" -> {
|
||||||
val fd = call.argument<Int>("fd")
|
val fd = call.argument<Int>("fd")
|
||||||
if (fd != null) {
|
if (fd != null) {
|
||||||
flClashVpnService?.protect(fd)
|
flClashVpnService?.protect(fd)
|
||||||
@@ -94,14 +100,10 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"GetRunTimeStamp" -> {
|
|
||||||
result.success(GlobalState.runTime?.time)
|
|
||||||
}
|
|
||||||
|
|
||||||
"startForeground" -> {
|
"startForeground" -> {
|
||||||
title = call.argument<String>("title") as String
|
val title = call.argument<String>("title") as String
|
||||||
content = call.argument<String>("content") as String
|
val content = call.argument<String>("content") as String
|
||||||
requestNotificationsPermission()
|
startForeground(title, content)
|
||||||
result.success(true)
|
result.success(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -110,65 +112,47 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleStartVpn() {
|
private fun initService() {
|
||||||
val intent = VpnService.prepare(context)
|
val intent = VpnService.prepare(context)
|
||||||
if (intent != null) {
|
if (intent != null) {
|
||||||
activity?.startActivityForResult(intent, VPN_PERMISSION_REQUEST_CODE)
|
activity?.startActivityForResult(intent, VPN_PERMISSION_REQUEST_CODE)
|
||||||
} else {
|
} else {
|
||||||
bindService()
|
if (flClashVpnService != null) {
|
||||||
|
flClashVpnService!!.initServiceEngine()
|
||||||
|
} else {
|
||||||
|
bindService()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startVpn(port: Int) {
|
private fun startVpn() {
|
||||||
if (GlobalState.runState.value == RunState.START) return;
|
if (flClashVpnService == null) {
|
||||||
flClashVpnService?.start(port, accessControl)
|
bindService()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (GlobalState.runState.value == RunState.START) return
|
||||||
GlobalState.runState.value = RunState.START
|
GlobalState.runState.value = RunState.START
|
||||||
GlobalState.runTime = Date()
|
val intent = VpnService.prepare(context)
|
||||||
startAfter()
|
if (intent != null) {
|
||||||
|
stopVpn()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
val fd = flClashVpnService?.start(port, props)
|
||||||
|
flutterMethodChannel.invokeMethod("started", fd)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun stopVpn() {
|
private fun stopVpn() {
|
||||||
if (GlobalState.runState.value == RunState.STOP) return
|
if (GlobalState.runState.value == RunState.STOP) return
|
||||||
|
GlobalState.runState.value = RunState.STOP
|
||||||
flClashVpnService?.stop()
|
flClashVpnService?.stop()
|
||||||
unbindService()
|
GlobalState.destroyServiceEngine()
|
||||||
GlobalState.runState.value = RunState.STOP;
|
|
||||||
GlobalState.runTime = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("ForegroundServiceType")
|
private fun startForeground(title: String, content: String) {
|
||||||
private fun startForeground() {
|
|
||||||
if (GlobalState.runState.value != RunState.START) return
|
if (GlobalState.runState.value != RunState.START) return
|
||||||
flClashVpnService?.startForeground(title, content)
|
flClashVpnService?.startForeground(title, content)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun requestNotificationsPermission() {
|
|
||||||
if (VERSION.SDK_INT >= VERSION_CODES.TIRAMISU) {
|
|
||||||
val permission = context?.let {
|
|
||||||
ContextCompat.checkSelfPermission(
|
|
||||||
it,
|
|
||||||
Manifest.permission.POST_NOTIFICATIONS
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (permission == PackageManager.PERMISSION_GRANTED) {
|
|
||||||
startForeground()
|
|
||||||
} else {
|
|
||||||
activity?.let {
|
|
||||||
ActivityCompat.requestPermissions(
|
|
||||||
it,
|
|
||||||
arrayOf(Manifest.permission.POST_NOTIFICATIONS),
|
|
||||||
NOTIFICATION_PERMISSION_REQUEST_CODE
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
startForeground()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun startAfter() {
|
|
||||||
flutterMethodChannel.invokeMethod("startAfter", flClashVpnService?.fd)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
||||||
activity = binding.activity
|
activity = binding.activity
|
||||||
binding.addActivityResultListener(::onActivityResult)
|
binding.addActivityResultListener(::onActivityResult)
|
||||||
@@ -183,7 +167,7 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
stopVpn()
|
stopVpn()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onRequestPermissionsResultListener(
|
private fun onRequestPermissionsResultListener(
|
||||||
@@ -192,16 +176,33 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
grantResults: IntArray
|
grantResults: IntArray
|
||||||
): Boolean {
|
): Boolean {
|
||||||
if (requestCode == NOTIFICATION_PERMISSION_REQUEST_CODE) {
|
if (requestCode == NOTIFICATION_PERMISSION_REQUEST_CODE) {
|
||||||
if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
isBlockNotification = true
|
||||||
startForeground()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun requestNotificationsPermission() {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
|
val permission = context?.let {
|
||||||
|
ContextCompat.checkSelfPermission(
|
||||||
|
it,
|
||||||
|
Manifest.permission.POST_NOTIFICATIONS
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (permission != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
if (isBlockNotification) return
|
||||||
|
if (activity == null) return
|
||||||
|
ActivityCompat.requestPermissions(
|
||||||
|
activity!!,
|
||||||
|
arrayOf(Manifest.permission.POST_NOTIFICATIONS),
|
||||||
|
NOTIFICATION_PERMISSION_REQUEST_CODE
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onDetachedFromActivityForConfigChanges() {
|
override fun onDetachedFromActivityForConfigChanges() {
|
||||||
activity = null;
|
activity = null
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
override fun onReattachedToActivityForConfigChanges(binding: ActivityPluginBinding) {
|
||||||
@@ -209,7 +210,6 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onDetachedFromActivity() {
|
override fun onDetachedFromActivity() {
|
||||||
stopVpn()
|
|
||||||
activity = null
|
activity = null
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -217,11 +217,4 @@ class ProxyPlugin : FlutterPlugin, MethodChannel.MethodCallHandler, ActivityAwar
|
|||||||
val intent = Intent(context, FlClashVpnService::class.java)
|
val intent = Intent(context, FlClashVpnService::class.java)
|
||||||
context?.bindService(intent, connection, Context.BIND_AUTO_CREATE)
|
context?.bindService(intent, connection, Context.BIND_AUTO_CREATE)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun unbindService() {
|
|
||||||
if (isBound) {
|
|
||||||
context?.unbindService(connection)
|
|
||||||
isBound = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
package com.follow.clash.plugins
|
package com.follow.clash.plugins
|
||||||
|
|
||||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
package com.follow.clash.services
|
package com.follow.clash.services
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
|
import android.os.IBinder
|
||||||
import android.service.quicksettings.Tile
|
import android.service.quicksettings.Tile
|
||||||
import android.service.quicksettings.TileService
|
import android.service.quicksettings.TileService
|
||||||
import androidx.annotation.RequiresApi
|
import androidx.annotation.RequiresApi
|
||||||
@@ -11,12 +11,6 @@ import androidx.lifecycle.Observer
|
|||||||
import com.follow.clash.GlobalState
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.RunState
|
import com.follow.clash.RunState
|
||||||
import com.follow.clash.TempActivity
|
import com.follow.clash.TempActivity
|
||||||
import com.follow.clash.plugins.AppPlugin
|
|
||||||
import com.follow.clash.plugins.ProxyPlugin
|
|
||||||
import com.follow.clash.plugins.TilePlugin
|
|
||||||
import io.flutter.FlutterInjector
|
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
|
||||||
import io.flutter.embedding.engine.dart.DartExecutor
|
|
||||||
|
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.N)
|
@RequiresApi(Build.VERSION_CODES.N)
|
||||||
@@ -43,54 +37,45 @@ class FlClashTileService : TileService() {
|
|||||||
GlobalState.runState.observeForever(observer)
|
GlobalState.runState.observeForever(observer)
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("StartActivityAndCollapseDeprecated")
|
|
||||||
private fun activityTransfer() {
|
private fun activityTransfer() {
|
||||||
val intent = Intent(this, TempActivity::class.java)
|
val intent = Intent(this, TempActivity::class.java)
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_MULTIPLE_TASK)
|
||||||
if (Build.VERSION.SDK_INT >= 34) {
|
val pendingIntent = if (Build.VERSION.SDK_INT >= 31) {
|
||||||
val pendingIntent = PendingIntent.getActivity(
|
PendingIntent.getActivity(
|
||||||
this,
|
this,
|
||||||
0,
|
0,
|
||||||
intent,
|
intent,
|
||||||
PendingIntent.FLAG_IMMUTABLE
|
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
||||||
startActivityAndCollapse(pendingIntent)
|
startActivityAndCollapse(pendingIntent)
|
||||||
} else {
|
} else {
|
||||||
startActivityAndCollapse(intent)
|
startActivityAndCollapse(intent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private var flutterEngine: FlutterEngine? = null;
|
|
||||||
|
|
||||||
private fun initFlutterEngine() {
|
|
||||||
flutterEngine = FlutterEngine(this)
|
|
||||||
flutterEngine?.plugins?.add(ProxyPlugin())
|
|
||||||
flutterEngine?.plugins?.add(TilePlugin())
|
|
||||||
flutterEngine?.plugins?.add(AppPlugin())
|
|
||||||
GlobalState.flutterEngine = flutterEngine
|
|
||||||
if (flutterEngine?.dartExecutor?.isExecutingDart != true) {
|
|
||||||
val vpnService = DartExecutor.DartEntrypoint(
|
|
||||||
FlutterInjector.instance().flutterLoader().findAppBundlePath(),
|
|
||||||
"vpnService"
|
|
||||||
)
|
|
||||||
flutterEngine?.dartExecutor?.executeDartEntrypoint(vpnService)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onClick() {
|
override fun onClick() {
|
||||||
super.onClick()
|
super.onClick()
|
||||||
activityTransfer()
|
activityTransfer()
|
||||||
val currentTilePlugin = GlobalState.getCurrentTilePlugin()
|
|
||||||
if (GlobalState.runState.value == RunState.STOP) {
|
if (GlobalState.runState.value == RunState.STOP) {
|
||||||
GlobalState.runState.value = RunState.PENDING
|
GlobalState.runState.value = RunState.PENDING
|
||||||
if(currentTilePlugin == null){
|
val titlePlugin = GlobalState.getCurrentTitlePlugin()
|
||||||
initFlutterEngine()
|
if (titlePlugin != null) {
|
||||||
}else{
|
titlePlugin.handleStart()
|
||||||
currentTilePlugin.handleStart()
|
} else {
|
||||||
|
GlobalState.initServiceEngine(applicationContext)
|
||||||
}
|
}
|
||||||
} else if(GlobalState.runState.value == RunState.START){
|
} else if (GlobalState.runState.value == RunState.START) {
|
||||||
GlobalState.runState.value = RunState.PENDING
|
GlobalState.runState.value = RunState.PENDING
|
||||||
currentTilePlugin?.handleStop()
|
GlobalState.getCurrentTitlePlugin()?.handleStop()
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
package com.follow.clash.services
|
package com.follow.clash.services
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
import android.app.Notification.FOREGROUND_SERVICE_IMMEDIATE
|
||||||
import android.app.NotificationChannel
|
import android.app.NotificationChannel
|
||||||
import android.app.NotificationManager
|
import android.app.NotificationManager
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
import android.app.Service
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
|
import android.content.pm.ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE
|
||||||
import android.net.ProxyInfo
|
import android.net.ProxyInfo
|
||||||
@@ -12,20 +11,23 @@ import android.net.VpnService
|
|||||||
import android.os.Binder
|
import android.os.Binder
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
|
import android.os.Parcel
|
||||||
|
import android.os.RemoteException
|
||||||
|
import android.util.Log
|
||||||
import androidx.core.app.NotificationCompat
|
import androidx.core.app.NotificationCompat
|
||||||
import androidx.core.graphics.drawable.IconCompat
|
|
||||||
import com.follow.clash.GlobalState
|
import com.follow.clash.GlobalState
|
||||||
import com.follow.clash.MainActivity
|
import com.follow.clash.MainActivity
|
||||||
import com.follow.clash.models.AccessControl
|
import com.follow.clash.R
|
||||||
import com.follow.clash.models.AccessControlMode
|
import com.follow.clash.models.AccessControlMode
|
||||||
|
import com.follow.clash.models.Props
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
|
||||||
class FlClashVpnService : VpnService() {
|
class FlClashVpnService : VpnService() {
|
||||||
|
|
||||||
|
|
||||||
private val CHANNEL = "FlClash"
|
private val CHANNEL = "FlClash"
|
||||||
|
|
||||||
var fd: Int? = null
|
|
||||||
private val notificationId: Int = 1
|
private val notificationId: Int = 1
|
||||||
|
|
||||||
private val passList = listOf(
|
private val passList = listOf(
|
||||||
@@ -48,16 +50,17 @@ class FlClashVpnService : VpnService() {
|
|||||||
"192.168.*"
|
"192.168.*"
|
||||||
)
|
)
|
||||||
|
|
||||||
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
override fun onCreate() {
|
||||||
return START_STICKY
|
super.onCreate()
|
||||||
|
initServiceEngine()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun start(port: Int, accessControl: AccessControl?) {
|
fun start(port: Int, props: Props?): Int? {
|
||||||
fd = with(Builder()) {
|
return with(Builder()) {
|
||||||
addAddress("172.16.0.1", 30)
|
addAddress("172.16.0.1", 30)
|
||||||
setMtu(9000)
|
setMtu(9000)
|
||||||
addRoute("0.0.0.0", 0)
|
addRoute("0.0.0.0", 0)
|
||||||
if (accessControl != null) {
|
props?.accessControl?.let { accessControl ->
|
||||||
when (accessControl.mode) {
|
when (accessControl.mode) {
|
||||||
AccessControlMode.acceptSelected -> {
|
AccessControlMode.acceptSelected -> {
|
||||||
(accessControl.acceptList + packageName).forEach {
|
(accessControl.acceptList + packageName).forEach {
|
||||||
@@ -78,8 +81,10 @@ class FlClashVpnService : VpnService() {
|
|||||||
if (Build.VERSION.SDK_INT >= 29) {
|
if (Build.VERSION.SDK_INT >= 29) {
|
||||||
setMetered(false)
|
setMetered(false)
|
||||||
}
|
}
|
||||||
allowBypass()
|
if (props?.allowBypass == true) {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
allowBypass()
|
||||||
|
}
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q && props?.systemProxy == true) {
|
||||||
setHttpProxy(
|
setHttpProxy(
|
||||||
ProxyInfo.buildDirectProxy(
|
ProxyInfo.buildDirectProxy(
|
||||||
"127.0.0.1",
|
"127.0.0.1",
|
||||||
@@ -97,55 +102,71 @@ class FlClashVpnService : VpnService() {
|
|||||||
stopForeground()
|
stopForeground()
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("ForegroundServiceType", "WrongConstant")
|
private val notificationBuilder: NotificationCompat.Builder by lazy {
|
||||||
|
val intent = Intent(this, MainActivity::class.java)
|
||||||
|
|
||||||
|
val pendingIntent = if (Build.VERSION.SDK_INT >= 31) {
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
with(NotificationCompat.Builder(this, CHANNEL)) {
|
||||||
|
setSmallIcon(R.drawable.ic_stat_name)
|
||||||
|
setContentTitle("FlClash")
|
||||||
|
setContentIntent(pendingIntent)
|
||||||
|
setCategory(NotificationCompat.CATEGORY_SERVICE)
|
||||||
|
priority = NotificationCompat.PRIORITY_MIN
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
|
foregroundServiceBehavior = FOREGROUND_SERVICE_IMMEDIATE
|
||||||
|
}
|
||||||
|
setOngoing(true)
|
||||||
|
setShowWhen(false)
|
||||||
|
setOnlyAlertOnce(true)
|
||||||
|
setAutoCancel(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun initServiceEngine() {
|
||||||
|
GlobalState.initServiceEngine(applicationContext)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onTrimMemory(level: Int) {
|
||||||
|
super.onTrimMemory(level)
|
||||||
|
GlobalState.getCurrentAppPlugin()?.requestGc()
|
||||||
|
}
|
||||||
|
|
||||||
fun startForeground(title: String, content: String) {
|
fun startForeground(title: String, content: String) {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
val channel =
|
|
||||||
NotificationChannel(CHANNEL, "FlClash", NotificationManager.IMPORTANCE_LOW)
|
|
||||||
val manager = getSystemService(NotificationManager::class.java)
|
val manager = getSystemService(NotificationManager::class.java)
|
||||||
manager.createNotificationChannel(channel)
|
var channel = manager?.getNotificationChannel(CHANNEL)
|
||||||
|
if (channel == null) {
|
||||||
val intent = Intent(this, MainActivity::class.java)
|
channel =
|
||||||
|
NotificationChannel(CHANNEL, "FlClash", NotificationManager.IMPORTANCE_LOW)
|
||||||
val pendingIntent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
manager?.createNotificationChannel(channel)
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
PendingIntent.getActivity(
|
|
||||||
this,
|
|
||||||
0,
|
|
||||||
intent,
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
val icon = IconCompat.createWithResource(this, this.applicationInfo.icon)
|
|
||||||
|
|
||||||
val notification = with(NotificationCompat.Builder(this, CHANNEL)) {
|
|
||||||
setSmallIcon(icon)
|
|
||||||
setContentTitle(title)
|
|
||||||
setContentText(content)
|
|
||||||
foregroundServiceBehavior = NotificationCompat.FOREGROUND_SERVICE_IMMEDIATE
|
|
||||||
setContentIntent(pendingIntent)
|
|
||||||
setOngoing(true)
|
|
||||||
setShowWhen(false)
|
|
||||||
build()
|
|
||||||
}
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
||||||
startForeground(notificationId, notification, FOREGROUND_SERVICE_TYPE_SPECIAL_USE)
|
|
||||||
} else {
|
|
||||||
startForeground(notificationId, notification)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
val notification =
|
||||||
|
notificationBuilder.setContentTitle(title).setContentText(content).build()
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
|
startForeground(notificationId, notification, FOREGROUND_SERVICE_TYPE_SPECIAL_USE)
|
||||||
|
} else {
|
||||||
|
startForeground(notificationId, notification)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun stopForeground() {
|
private fun stopForeground() {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
stopForeground(Service.STOP_FOREGROUND_REMOVE)
|
stopForeground(STOP_FOREGROUND_REMOVE)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -153,14 +174,28 @@ class FlClashVpnService : VpnService() {
|
|||||||
|
|
||||||
inner class LocalBinder : Binder() {
|
inner class LocalBinder : Binder() {
|
||||||
fun getService(): FlClashVpnService = this@FlClashVpnService
|
fun getService(): FlClashVpnService = this@FlClashVpnService
|
||||||
|
|
||||||
|
override fun onTransact(code: Int, data: Parcel, reply: Parcel?, flags: Int): Boolean {
|
||||||
|
try {
|
||||||
|
val isSuccess = super.onTransact(code, data, reply, flags)
|
||||||
|
if (!isSuccess) {
|
||||||
|
CoroutineScope(Dispatchers.Main).launch {
|
||||||
|
GlobalState.getCurrentTitlePlugin()?.handleStop()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isSuccess
|
||||||
|
} catch (e: RemoteException) {
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
override fun onBind(intent: Intent): IBinder {
|
override fun onBind(intent: Intent): IBinder {
|
||||||
return binder
|
return binder
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onUnbind(intent: Intent?): Boolean {
|
override fun onUnbind(intent: Intent?): Boolean {
|
||||||
GlobalState.getCurrentTilePlugin()?.handleStop();
|
|
||||||
return super.onUnbind(intent)
|
return super.onUnbind(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="240"
|
||||||
|
android:viewportHeight="240"
|
||||||
|
android:tint="#FFFFFF">
|
||||||
|
<group android:scaleX="2.0264318"
|
||||||
|
android:scaleY="2.0264318"
|
||||||
|
android:translateX="-123.17181"
|
||||||
|
android:translateY="-123.17181">
|
||||||
|
<group android:scaleX="0.61"
|
||||||
|
android:scaleY="0.61"
|
||||||
|
android:translateX="46.8"
|
||||||
|
android:translateY="46.8">
|
||||||
|
<path
|
||||||
|
android:pathData="M67.67,115.76L144.04,39.39A18,18 0,0 1,169.5 39.39L169.5,39.39A18,18 0,0 1,169.5 64.85L93.13,141.21A18,18 0,0 1,67.67 141.21L67.67,141.21A18,18 0,0 1,67.67 115.76z"
|
||||||
|
android:fillColor="#6666FF"/>
|
||||||
|
<path
|
||||||
|
android:pathData="M98.79,146.87L136.97,108.69A18,18 72.93,0 1,162.43 108.69L162.43,108.69A18,18 72.93,0 1,162.43 134.14L124.24,172.33A18,18 76.87,0 1,98.79 172.33L98.79,172.33A18,18 76.87,0 1,98.79 146.87z"
|
||||||
|
android:fillColor="#326CBF"/>
|
||||||
|
<path
|
||||||
|
android:pathData="M129.9,177.98L129.9,177.98A18,18 107.07,0 1,155.36 177.98L155.36,177.98A18,18 107.07,0 1,155.36 203.44L155.36,203.44A18,18 107.07,0 1,129.9 203.44L129.9,203.44A18,18 107.07,0 1,129.9 177.98z"
|
||||||
|
android:fillColor="#56afee"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</vector>
|
||||||
BIN
android/app/src/main/res/drawable-hdpi/ic_stat_name.png
Normal file
|
After Width: | Height: | Size: 532 B |
BIN
android/app/src/main/res/drawable-mdpi/ic_stat_name.png
Normal file
|
After Width: | Height: | Size: 311 B |
BIN
android/app/src/main/res/drawable-xhdpi/ic_stat_name.png
Normal file
|
After Width: | Height: | Size: 671 B |
BIN
android/app/src/main/res/drawable-xxhdpi/ic_stat_name.png
Normal file
|
After Width: | Height: | Size: 932 B |
25
android/app/src/main/res/drawable/ic_launcher_foreground.xml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="240"
|
||||||
|
android:viewportHeight="240">
|
||||||
|
<group android:scaleX="0.90244895"
|
||||||
|
android:scaleY="0.90244895"
|
||||||
|
android:translateX="12.708843"
|
||||||
|
android:translateY="10.703402">
|
||||||
|
<group android:scaleX="0.61"
|
||||||
|
android:scaleY="0.61"
|
||||||
|
android:translateX="46.8"
|
||||||
|
android:translateY="46.8">
|
||||||
|
<path
|
||||||
|
android:pathData="M67.67,115.76L144.04,39.39A18,18 0,0 1,169.5 39.39L169.5,39.39A18,18 0,0 1,169.5 64.85L93.13,141.21A18,18 0,0 1,67.67 141.21L67.67,141.21A18,18 0,0 1,67.67 115.76z"
|
||||||
|
android:fillColor="#6666FF"/>
|
||||||
|
<path
|
||||||
|
android:pathData="M98.79,146.87L136.97,108.69A18,18 72.93,0 1,162.43 108.69L162.43,108.69A18,18 72.93,0 1,162.43 134.14L124.24,172.33A18,18 76.87,0 1,98.79 172.33L98.79,172.33A18,18 76.87,0 1,98.79 146.87z"
|
||||||
|
android:fillColor="#326CBF"/>
|
||||||
|
<path
|
||||||
|
android:pathData="M129.9,177.98L129.9,177.98A18,18 107.07,0 1,155.36 177.98L155.36,177.98A18,18 107.07,0 1,155.36 203.44L155.36,203.44A18,18 107.07,0 1,129.9 203.44L129.9,203.44A18,18 107.07,0 1,129.9 177.98z"
|
||||||
|
android:fillColor="#56afee"/>
|
||||||
|
</group>
|
||||||
|
</group>
|
||||||
|
</vector>
|
||||||
|
Before Width: | Height: | Size: 105 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@color/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||||
<monochrome android:drawable="@mipmap/ic_launcher_foreground" />
|
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@color/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||||
<monochrome android:drawable="@mipmap/ic_launcher_foreground" />
|
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 812 B |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 7.1 KiB |
@@ -6,7 +6,7 @@
|
|||||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
<item name="android:windowSplashScreenBackground" tools:targetApi="s">#121212</item>
|
<item name="android:windowSplashScreenBackground" tools:targetApi="s">#121212</item>
|
||||||
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@mipmap/ic_launcher_foreground</item>
|
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@drawable/ic_launcher_foreground</item>
|
||||||
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -4,7 +4,6 @@
|
|||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@mipmap/ic_launcher_foreground</item>
|
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
|
||||||
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
|
||||||
<item name="android:windowSplashScreenBackground" tools:targetApi="s">@color/ic_launcher_background</item>
|
<item name="android:windowSplashScreenBackground" tools:targetApi="s">@color/ic_launcher_background</item>
|
||||||
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@mipmap/ic_launcher_foreground</item>
|
<item name="android:windowSplashScreenAnimatedIcon" tools:targetApi="s">@drawable/ic_launcher_foreground</item>
|
||||||
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<color name="ic_launcher_background">#EFEFEF</color>
|
<color name="ic_launcher_background">#FAFAFA</color>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -4,7 +4,6 @@
|
|||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@mipmap/ic_launcher_foreground</item>
|
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
This theme determines the color of the Android Window while your
|
This theme determines the color of the Android Window while your
|
||||||
|
|||||||
@@ -7,4 +7,8 @@
|
|||||||
<certificates src="user" />
|
<certificates src="user" />
|
||||||
</trust-anchors>
|
</trust-anchors>
|
||||||
</base-config>
|
</base-config>
|
||||||
|
<domain-config cleartextTrafficPermitted="true">
|
||||||
|
<domain includeSubdomains="true">localhost</domain>
|
||||||
|
<domain includeSubdomains="true">127.0.0.1</domain>
|
||||||
|
</domain-config>
|
||||||
</network-security-config>
|
</network-security-config>
|
||||||
BIN
assets/data/ASN.mmdb
Normal file
BIN
assets/data/GeoIP.dat
Normal file
31589
assets/data/GeoSite.dat
Normal file
140
core/common.go
@@ -2,19 +2,20 @@ package main
|
|||||||
|
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
|
"github.com/metacubex/mihomo/adapter"
|
||||||
"github.com/metacubex/mihomo/adapter/inbound"
|
"github.com/metacubex/mihomo/adapter/inbound"
|
||||||
|
"github.com/metacubex/mihomo/adapter/outboundgroup"
|
||||||
ap "github.com/metacubex/mihomo/adapter/provider"
|
ap "github.com/metacubex/mihomo/adapter/provider"
|
||||||
"github.com/metacubex/mihomo/component/dialer"
|
"github.com/metacubex/mihomo/component/dialer"
|
||||||
"github.com/metacubex/mihomo/component/process"
|
|
||||||
"github.com/metacubex/mihomo/component/resolver"
|
"github.com/metacubex/mihomo/component/resolver"
|
||||||
"github.com/metacubex/mihomo/config"
|
"github.com/metacubex/mihomo/config"
|
||||||
"github.com/metacubex/mihomo/constant/provider"
|
"github.com/metacubex/mihomo/constant"
|
||||||
"github.com/metacubex/mihomo/dns"
|
"github.com/metacubex/mihomo/hub"
|
||||||
"github.com/metacubex/mihomo/hub/executor"
|
"github.com/metacubex/mihomo/hub/executor"
|
||||||
|
"github.com/metacubex/mihomo/hub/route"
|
||||||
"github.com/metacubex/mihomo/listener"
|
"github.com/metacubex/mihomo/listener"
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
"github.com/metacubex/mihomo/tunnel"
|
"github.com/metacubex/mihomo/tunnel"
|
||||||
"math"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -22,6 +23,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type healthCheckSchema struct {
|
type healthCheckSchema struct {
|
||||||
@@ -59,11 +61,17 @@ type ruleProviderSchema struct {
|
|||||||
Interval int `provider:"interval,omitempty"`
|
Interval int `provider:"interval,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ConfigExtendedParams struct {
|
||||||
|
IsPatch bool `json:"is-patch"`
|
||||||
|
IsCompatible bool `json:"is-compatible"`
|
||||||
|
SelectedMap map[string]string `json:"selected-map"`
|
||||||
|
TestURL *string `json:"test-url"`
|
||||||
|
}
|
||||||
|
|
||||||
type GenerateConfigParams struct {
|
type GenerateConfigParams struct {
|
||||||
ProfilePath *string `json:"profile-path"`
|
ProfilePath *string `json:"profile-path"`
|
||||||
Config *config.RawConfig `json:"config" `
|
Config config.RawConfig `json:"config" `
|
||||||
IsPatch *bool `json:"is-patch"`
|
Params ConfigExtendedParams `json:"params"`
|
||||||
IsCompatible *bool `json:"is-compatible"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChangeProxyParams struct {
|
type ChangeProxyParams struct {
|
||||||
@@ -76,23 +84,18 @@ type TestDelayParams struct {
|
|||||||
Timeout int64 `json:"timeout"`
|
Timeout int64 `json:"timeout"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Delay struct {
|
type ProcessMapItem struct {
|
||||||
Name string `json:"name"`
|
Id int64 `json:"id"`
|
||||||
Value int32 `json:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Process struct {
|
|
||||||
Uid uint32 `json:"uid"`
|
|
||||||
Network string `json:"network"`
|
|
||||||
Source string `json:"source"`
|
|
||||||
Target string `json:"target"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Now struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Value string `json:"value"`
|
Value string `json:"value"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ExternalProvider struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
VehicleType string `json:"vehicle-type"`
|
||||||
|
UpdateAt time.Time `json:"update-at"`
|
||||||
|
}
|
||||||
|
|
||||||
func restartExecutable(execPath string) {
|
func restartExecutable(execPath string) {
|
||||||
var err error
|
var err error
|
||||||
executor.Shutdown()
|
executor.Shutdown()
|
||||||
@@ -160,9 +163,9 @@ func getRawConfigWithPath(path *string) *config.RawConfig {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func decorationConfig(profilePath *string, cfg config.RawConfig, compatible bool) *config.RawConfig {
|
func decorationConfig(profilePath *string, cfg config.RawConfig) *config.RawConfig {
|
||||||
prof := getRawConfigWithPath(profilePath)
|
prof := getRawConfigWithPath(profilePath)
|
||||||
overwriteConfig(prof, cfg, compatible)
|
overwriteConfig(prof, cfg)
|
||||||
return prof
|
return prof
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -312,49 +315,58 @@ func generateProxyGroupAndRule(proxyGroup *[]map[string]any, rule *[]string) {
|
|||||||
*rule = computedRule
|
*rule = computedRule
|
||||||
}
|
}
|
||||||
|
|
||||||
func overwriteConfig(targetConfig *config.RawConfig, patchConfig config.RawConfig, compatible bool) {
|
func overwriteConfig(targetConfig *config.RawConfig, patchConfig config.RawConfig) {
|
||||||
targetConfig.ExternalController = ""
|
targetConfig.ExternalController = patchConfig.ExternalController
|
||||||
targetConfig.ExternalUI = ""
|
targetConfig.ExternalUI = ""
|
||||||
targetConfig.Interface = ""
|
targetConfig.Interface = ""
|
||||||
targetConfig.ExternalUIURL = ""
|
targetConfig.ExternalUIURL = ""
|
||||||
//targetConfig.IPv6 = patchConfig.IPv6
|
targetConfig.TCPConcurrent = patchConfig.TCPConcurrent
|
||||||
|
targetConfig.UnifiedDelay = patchConfig.UnifiedDelay
|
||||||
|
//targetConfig.GeodataMode = false
|
||||||
|
targetConfig.IPv6 = patchConfig.IPv6
|
||||||
targetConfig.LogLevel = patchConfig.LogLevel
|
targetConfig.LogLevel = patchConfig.LogLevel
|
||||||
targetConfig.FindProcessMode = process.FindProcessAlways
|
targetConfig.Port = 0
|
||||||
targetConfig.AllowLan = patchConfig.AllowLan
|
targetConfig.SocksPort = 0
|
||||||
targetConfig.MixedPort = patchConfig.MixedPort
|
targetConfig.MixedPort = patchConfig.MixedPort
|
||||||
|
targetConfig.FindProcessMode = patchConfig.FindProcessMode
|
||||||
|
targetConfig.AllowLan = patchConfig.AllowLan
|
||||||
targetConfig.Mode = patchConfig.Mode
|
targetConfig.Mode = patchConfig.Mode
|
||||||
targetConfig.Tun.Enable = patchConfig.Tun.Enable
|
targetConfig.Tun.Enable = patchConfig.Tun.Enable
|
||||||
targetConfig.Tun.Device = patchConfig.Tun.Device
|
targetConfig.Tun.Device = patchConfig.Tun.Device
|
||||||
targetConfig.Tun.DNSHijack = patchConfig.Tun.DNSHijack
|
targetConfig.Tun.DNSHijack = patchConfig.Tun.DNSHijack
|
||||||
targetConfig.Tun.Stack = patchConfig.Tun.Stack
|
targetConfig.Tun.Stack = patchConfig.Tun.Stack
|
||||||
targetConfig.GeodataLoader = "standard"
|
targetConfig.GeodataLoader = patchConfig.GeodataLoader
|
||||||
targetConfig.Profile.StoreSelected = false
|
targetConfig.Profile.StoreSelected = false
|
||||||
|
targetConfig.GeoXUrl = patchConfig.GeoXUrl
|
||||||
|
targetConfig.GlobalUA = patchConfig.GlobalUA
|
||||||
if targetConfig.DNS.Enable == false {
|
if targetConfig.DNS.Enable == false {
|
||||||
targetConfig.DNS = patchConfig.DNS
|
targetConfig.DNS = patchConfig.DNS
|
||||||
}
|
}
|
||||||
if runtime.GOOS == "android" {
|
//if runtime.GOOS == "android" {
|
||||||
targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, "dhcp://"+dns.SystemDNSPlaceholder)
|
// targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, "dhcp://"+dns.SystemDNSPlaceholder)
|
||||||
} else if runtime.GOOS == "windows" {
|
//} else if runtime.GOOS == "windows" {
|
||||||
targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, dns.SystemDNSPlaceholder)
|
// targetConfig.DNS.NameServer = append(targetConfig.DNS.NameServer, dns.SystemDNSPlaceholder)
|
||||||
}
|
//}
|
||||||
if compatible == false {
|
if configParams.IsCompatible == false {
|
||||||
targetConfig.ProxyProvider = make(map[string]map[string]any)
|
targetConfig.ProxyProvider = make(map[string]map[string]any)
|
||||||
targetConfig.RuleProvider = make(map[string]map[string]any)
|
targetConfig.RuleProvider = make(map[string]map[string]any)
|
||||||
generateProxyGroupAndRule(&targetConfig.ProxyGroup, &targetConfig.Rule)
|
generateProxyGroupAndRule(&targetConfig.ProxyGroup, &targetConfig.Rule)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func patchConfig(general *config.General) {
|
func patchConfig(general *config.General) {
|
||||||
log.Infoln("[Apply] patch")
|
log.Infoln("[Apply] patch")
|
||||||
|
route.ReStartServer(general.ExternalController)
|
||||||
listener.SetAllowLan(general.AllowLan)
|
listener.SetAllowLan(general.AllowLan)
|
||||||
inbound.SetSkipAuthPrefixes(general.SkipAuthPrefixes)
|
inbound.SetSkipAuthPrefixes(general.SkipAuthPrefixes)
|
||||||
inbound.SetAllowedIPs(general.LanAllowedIPs)
|
inbound.SetAllowedIPs(general.LanAllowedIPs)
|
||||||
inbound.SetDisAllowedIPs(general.LanDisAllowedIPs)
|
inbound.SetDisAllowedIPs(general.LanDisAllowedIPs)
|
||||||
listener.SetBindAddress(general.BindAddress)
|
listener.SetBindAddress(general.BindAddress)
|
||||||
tunnel.SetSniffing(general.Sniffing)
|
tunnel.SetSniffing(general.Sniffing)
|
||||||
|
tunnel.SetFindProcessMode(general.FindProcessMode)
|
||||||
dialer.SetTcpConcurrent(general.TCPConcurrent)
|
dialer.SetTcpConcurrent(general.TCPConcurrent)
|
||||||
dialer.DefaultInterface.Store(general.Interface)
|
dialer.DefaultInterface.Store(general.Interface)
|
||||||
|
adapter.UnifiedDelay.Store(general.UnifiedDelay)
|
||||||
listener.ReCreateHTTP(general.Port, tunnel.Tunnel)
|
listener.ReCreateHTTP(general.Port, tunnel.Tunnel)
|
||||||
listener.ReCreateSocks(general.SocksPort, tunnel.Tunnel)
|
listener.ReCreateSocks(general.SocksPort, tunnel.Tunnel)
|
||||||
listener.ReCreateRedir(general.RedirPort, tunnel.Tunnel)
|
listener.ReCreateRedir(general.RedirPort, tunnel.Tunnel)
|
||||||
@@ -367,40 +379,52 @@ func patchConfig(general *config.General) {
|
|||||||
listener.ReCreateTuic(general.TuicServer, tunnel.Tunnel)
|
listener.ReCreateTuic(general.TuicServer, tunnel.Tunnel)
|
||||||
tunnel.SetMode(general.Mode)
|
tunnel.SetMode(general.Mode)
|
||||||
log.SetLevel(general.LogLevel)
|
log.SetLevel(general.LogLevel)
|
||||||
|
|
||||||
resolver.DisableIPv6 = !general.IPv6
|
resolver.DisableIPv6 = !general.IPv6
|
||||||
}
|
}
|
||||||
|
|
||||||
const concurrentCount = math.MaxInt
|
func patchSelectGroup() {
|
||||||
|
mapping := configParams.SelectedMap
|
||||||
func hcCompatibleProvider(proxyProviders map[string]provider.ProxyProvider) {
|
if mapping == nil {
|
||||||
wg := sync.WaitGroup{}
|
return
|
||||||
ch := make(chan struct{}, concurrentCount)
|
}
|
||||||
for _, proxyProvider := range proxyProviders {
|
for name, proxy := range tunnel.ProxiesWithProviders() {
|
||||||
proxyProvider := proxyProvider
|
outbound, ok := proxy.(*adapter.Proxy)
|
||||||
if proxyProvider.VehicleType() == provider.Compatible {
|
if !ok {
|
||||||
log.Infoln("Start initial Compatible provider %s", proxyProvider.Name())
|
continue
|
||||||
wg.Add(1)
|
|
||||||
ch <- struct{}{}
|
|
||||||
go func() {
|
|
||||||
defer func() { <-ch; wg.Done() }()
|
|
||||||
if err := proxyProvider.Initial(); err != nil {
|
|
||||||
log.Errorln("initial Compatible provider %s error: %v", proxyProvider.Name(), err)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
selector, ok := outbound.ProxyAdapter.(outboundgroup.SelectAble)
|
||||||
|
if !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
selected, exist := mapping[name]
|
||||||
|
if !exist {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
selector.ForceSet(selected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func applyConfig(isPatch bool) {
|
var applyLock sync.Mutex
|
||||||
|
|
||||||
|
func applyConfig() {
|
||||||
|
applyLock.Lock()
|
||||||
|
defer applyLock.Unlock()
|
||||||
cfg, err := config.ParseRawConfig(currentConfig)
|
cfg, err := config.ParseRawConfig(currentConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cfg, _ = config.ParseRawConfig(config.DefaultRawConfig())
|
cfg, _ = config.ParseRawConfig(config.DefaultRawConfig())
|
||||||
}
|
}
|
||||||
if isPatch {
|
if configParams.TestURL != nil {
|
||||||
|
constant.DefaultTestURL = *configParams.TestURL
|
||||||
|
}
|
||||||
|
if configParams.IsPatch {
|
||||||
patchConfig(cfg.General)
|
patchConfig(cfg.General)
|
||||||
} else {
|
} else {
|
||||||
executor.ApplyConfig(cfg, true)
|
runtime.GC()
|
||||||
healthcheck()
|
hub.UltraApplyConfig(cfg, true)
|
||||||
|
patchSelectGroup()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package dart_bridge
|
package dart_bridge
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
#include <stdlib.h>
|
||||||
#include "stdint.h"
|
#include "stdint.h"
|
||||||
#include "include/dart_api_dl.h"
|
#include "include/dart_api_dl.h"
|
||||||
#include "include/dart_api_dl.c"
|
#include "include/dart_api_dl.c"
|
||||||
@@ -24,14 +25,16 @@ func InitDartApi(api unsafe.Pointer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendToPort(port int64, msg string) {
|
func SendToPort(port int64, msg string) bool {
|
||||||
var obj C.Dart_CObject
|
var obj C.Dart_CObject
|
||||||
obj._type = C.Dart_CObject_kString
|
obj._type = C.Dart_CObject_kString
|
||||||
msgString := C.CString(msg)
|
msgString := C.CString(msg)
|
||||||
|
defer C.free(unsafe.Pointer(msgString))
|
||||||
ptr := unsafe.Pointer(&obj.value[0])
|
ptr := unsafe.Pointer(&obj.value[0])
|
||||||
*(**C.char)(ptr) = msgString
|
*(**C.char)(ptr) = msgString
|
||||||
isSuccess := C.GoDart_PostCObject(C.Dart_Port_DL(port), &obj)
|
isSuccess := C.GoDart_PostCObject(C.Dart_Port_DL(port), &obj)
|
||||||
if !isSuccess {
|
if !isSuccess {
|
||||||
fmt.Println("ERROR: post to port ", port, " failed", msg)
|
return false
|
||||||
}
|
}
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
package dart_bridge
|
|
||||||
|
|
||||||
import "encoding/json"
|
|
||||||
|
|
||||||
var Port *int64
|
|
||||||
|
|
||||||
type MessageType string
|
|
||||||
|
|
||||||
const (
|
|
||||||
Log MessageType = "log"
|
|
||||||
Tun MessageType = "tun"
|
|
||||||
Delay MessageType = "delay"
|
|
||||||
Now MessageType = "now"
|
|
||||||
Process MessageType = "process"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Message struct {
|
|
||||||
Type MessageType `json:"type"`
|
|
||||||
Data interface{} `json:"data"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (message *Message) Json() string {
|
|
||||||
data, _ := json.Marshal(message)
|
|
||||||
return string(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
func SendMessage(message Message) {
|
|
||||||
SendToPort(*Port, message.Json())
|
|
||||||
}
|
|
||||||
57
core/go.mod
@@ -7,8 +7,8 @@ replace github.com/metacubex/mihomo => ./Clash.Meta
|
|||||||
require (
|
require (
|
||||||
github.com/Kr328/tun2socket v0.0.0-20220414050025-d07c78d06d34
|
github.com/Kr328/tun2socket v0.0.0-20220414050025-d07c78d06d34
|
||||||
github.com/metacubex/mihomo v1.17.1
|
github.com/metacubex/mihomo v1.17.1
|
||||||
github.com/miekg/dns v1.1.59
|
github.com/miekg/dns v1.1.61
|
||||||
golang.org/x/net v0.24.0
|
golang.org/x/net v0.26.0
|
||||||
golang.org/x/sync v0.7.0
|
golang.org/x/sync v0.7.0
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -17,11 +17,12 @@ require (
|
|||||||
github.com/RyuaNerin/go-krypto v1.2.4 // indirect
|
github.com/RyuaNerin/go-krypto v1.2.4 // indirect
|
||||||
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 // indirect
|
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 // indirect
|
||||||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
|
||||||
|
github.com/ajg/form v1.5.1 // indirect
|
||||||
github.com/andybalholm/brotli v1.0.6 // indirect
|
github.com/andybalholm/brotli v1.0.6 // indirect
|
||||||
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
||||||
github.com/buger/jsonparser v1.1.1 // indirect
|
github.com/buger/jsonparser v1.1.1 // indirect
|
||||||
github.com/cilium/ebpf v0.12.3 // indirect
|
github.com/cilium/ebpf v0.12.3 // indirect
|
||||||
github.com/cloudflare/circl v1.3.6 // indirect
|
github.com/cloudflare/circl v1.3.7 // indirect
|
||||||
github.com/coreos/go-iptables v0.7.0 // indirect
|
github.com/coreos/go-iptables v0.7.0 // indirect
|
||||||
github.com/dlclark/regexp2 v1.11.0 // indirect
|
github.com/dlclark/regexp2 v1.11.0 // indirect
|
||||||
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 // indirect
|
github.com/ericlagergren/aegis v0.0.0-20230312195928-b4ce538b56f9 // indirect
|
||||||
@@ -30,20 +31,23 @@ require (
|
|||||||
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 // indirect
|
github.com/ericlagergren/subtle v0.0.0-20220507045147-890d697da010 // indirect
|
||||||
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
||||||
github.com/gaukas/godicttls v0.0.4 // indirect
|
github.com/gaukas/godicttls v0.0.4 // indirect
|
||||||
|
github.com/go-chi/chi/v5 v5.0.14 // indirect
|
||||||
|
github.com/go-chi/cors v1.2.1 // indirect
|
||||||
|
github.com/go-chi/render v1.0.3 // indirect
|
||||||
github.com/go-ole/go-ole v1.3.0 // indirect
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
||||||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
||||||
github.com/gobwas/httphead v0.1.0 // indirect
|
github.com/gobwas/httphead v0.1.0 // indirect
|
||||||
github.com/gobwas/pool v0.2.1 // indirect
|
github.com/gobwas/pool v0.2.1 // indirect
|
||||||
github.com/gobwas/ws v1.3.2 // indirect
|
github.com/gobwas/ws v1.4.0 // indirect
|
||||||
github.com/gofrs/uuid/v5 v5.1.0 // indirect
|
github.com/gofrs/uuid/v5 v5.2.0 // indirect
|
||||||
github.com/google/btree v1.1.2 // indirect
|
github.com/google/btree v1.1.2 // indirect
|
||||||
github.com/google/go-cmp v0.6.0 // indirect
|
github.com/google/go-cmp v0.6.0 // indirect
|
||||||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
||||||
github.com/hashicorp/yamux v0.1.1 // indirect
|
github.com/hashicorp/yamux v0.1.1 // indirect
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49 // indirect
|
github.com/insomniacslk/dhcp v0.0.0-20240529192340-51bc6136a0a6 // indirect
|
||||||
github.com/josharian/native v1.1.0 // indirect
|
github.com/josharian/native v1.1.0 // indirect
|
||||||
github.com/klauspost/compress v1.17.4 // indirect
|
github.com/klauspost/compress v1.17.4 // indirect
|
||||||
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
|
||||||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
||||||
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
|
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 // indirect
|
||||||
github.com/mailru/easyjson v0.7.7 // indirect
|
github.com/mailru/easyjson v0.7.7 // indirect
|
||||||
@@ -51,14 +55,16 @@ require (
|
|||||||
github.com/mdlayher/socket v0.4.1 // indirect
|
github.com/mdlayher/socket v0.4.1 // indirect
|
||||||
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 // indirect
|
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 // indirect
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec // indirect
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec // indirect
|
||||||
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98 // indirect
|
github.com/metacubex/quic-go v0.45.1-0.20240610004319-163fee60637e // indirect
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d // indirect
|
github.com/metacubex/randv2 v0.2.0 // indirect
|
||||||
|
github.com/metacubex/sing-quic v0.0.0-20240518034124-7696d3f7da72 // indirect
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.6 // indirect
|
github.com/metacubex/sing-shadowsocks v0.2.6 // indirect
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.0 // indirect
|
github.com/metacubex/sing-shadowsocks2 v0.2.0 // indirect
|
||||||
github.com/metacubex/sing-tun v0.2.6 // indirect
|
github.com/metacubex/sing-tun v0.2.7-0.20240627012306-9d1f5fc0b45e // indirect
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f // indirect
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f // indirect
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63 // indirect
|
github.com/metacubex/sing-wireguard v0.0.0-20240618022557-a6efaa37127a // indirect
|
||||||
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 // indirect
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 // indirect
|
||||||
|
github.com/metacubex/utls v1.6.6 // indirect
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0 // indirect
|
github.com/mroth/weightedrand/v2 v2.1.0 // indirect
|
||||||
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 // indirect
|
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 // indirect
|
||||||
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
|
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
|
||||||
@@ -66,19 +72,19 @@ require (
|
|||||||
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
|
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
|
||||||
github.com/pierrec/lz4/v4 v4.1.14 // indirect
|
github.com/pierrec/lz4/v4 v4.1.14 // indirect
|
||||||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.1.0 // indirect
|
github.com/puzpuzpuz/xsync/v3 v3.2.0 // indirect
|
||||||
github.com/quic-go/qpack v0.4.0 // indirect
|
github.com/quic-go/qpack v0.4.0 // indirect
|
||||||
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
|
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
|
||||||
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a // indirect
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a // indirect
|
||||||
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 // indirect
|
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a // indirect
|
||||||
github.com/sagernet/sing v0.3.8 // indirect
|
github.com/sagernet/nftables v0.3.0-beta.4 // indirect
|
||||||
|
github.com/sagernet/sing v0.5.0-alpha.10 // indirect
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 // indirect
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 // indirect
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4 // indirect
|
github.com/sagernet/sing-shadowtls v0.1.4 // indirect
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 // indirect
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 // indirect
|
||||||
github.com/sagernet/utls v1.5.4 // indirect
|
|
||||||
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e // indirect
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e // indirect
|
||||||
github.com/samber/lo v1.39.0 // indirect
|
github.com/samber/lo v1.39.0 // indirect
|
||||||
github.com/shirou/gopsutil/v3 v3.24.3 // indirect
|
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
|
||||||
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
||||||
github.com/sina-ghaderi/poly1305 v0.0.0-20220724002748-c5926b03988b // indirect
|
github.com/sina-ghaderi/poly1305 v0.0.0-20220724002748-c5926b03988b // indirect
|
||||||
github.com/sina-ghaderi/rabaead v0.0.0-20220730151906-ab6e06b96e8c // indirect
|
github.com/sina-ghaderi/rabaead v0.0.0-20220730151906-ab6e06b96e8c // indirect
|
||||||
@@ -87,21 +93,20 @@ require (
|
|||||||
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
||||||
github.com/tklauser/numcpus v0.6.1 // indirect
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
||||||
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
|
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
|
||||||
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
|
github.com/vishvananda/netns v0.0.4 // indirect
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
||||||
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
||||||
github.com/zhangyunhao116/fastrand v0.4.0 // indirect
|
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
|
||||||
go.uber.org/mock v0.4.0 // indirect
|
go.uber.org/mock v0.4.0 // indirect
|
||||||
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
|
||||||
golang.org/x/crypto v0.22.0 // indirect
|
golang.org/x/crypto v0.24.0 // indirect
|
||||||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
|
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
|
||||||
golang.org/x/mod v0.17.0 // indirect
|
golang.org/x/mod v0.18.0 // indirect
|
||||||
golang.org/x/sys v0.19.0 // indirect
|
golang.org/x/sys v0.21.0 // indirect
|
||||||
golang.org/x/text v0.14.0 // indirect
|
golang.org/x/text v0.16.0 // indirect
|
||||||
golang.org/x/time v0.5.0 // indirect
|
golang.org/x/time v0.5.0 // indirect
|
||||||
golang.org/x/tools v0.20.0 // indirect
|
golang.org/x/tools v0.22.0 // indirect
|
||||||
google.golang.org/protobuf v1.33.0 // indirect
|
google.golang.org/protobuf v1.34.2 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
lukechampine.com/blake3 v1.2.2 // indirect
|
lukechampine.com/blake3 v1.3.0 // indirect
|
||||||
)
|
)
|
||||||
|
|||||||
129
core/go.sum
@@ -9,6 +9,8 @@ github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344 h1:cDVUiFo+npB0ZASqnw4
|
|||||||
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344/go.mod h1:9pIqrY6SXNL8vjRQE5Hd/OL5GyK/9MrGUWs87z/eFfk=
|
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344/go.mod h1:9pIqrY6SXNL8vjRQE5Hd/OL5GyK/9MrGUWs87z/eFfk=
|
||||||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY=
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY=
|
||||||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSiWQsof+nXEI9bUVUyV6F53Fp89EuCh2EAA=
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSiWQsof+nXEI9bUVUyV6F53Fp89EuCh2EAA=
|
||||||
|
github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=
|
||||||
|
github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY=
|
||||||
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
|
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
|
||||||
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
|
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
|
||||||
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
|
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
|
||||||
@@ -21,8 +23,8 @@ github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5P
|
|||||||
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
|
||||||
github.com/cilium/ebpf v0.12.3 h1:8ht6F9MquybnY97at+VDZb3eQQr8ev79RueWeVaEcG4=
|
github.com/cilium/ebpf v0.12.3 h1:8ht6F9MquybnY97at+VDZb3eQQr8ev79RueWeVaEcG4=
|
||||||
github.com/cilium/ebpf v0.12.3/go.mod h1:TctK1ivibvI3znr66ljgi4hqOT8EYQjz1KWBfb1UVgM=
|
github.com/cilium/ebpf v0.12.3/go.mod h1:TctK1ivibvI3znr66ljgi4hqOT8EYQjz1KWBfb1UVgM=
|
||||||
github.com/cloudflare/circl v1.3.6 h1:/xbKIqSHbZXHwkhbrhrt2YOHIwYJlXH94E3tI/gDlUg=
|
github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU=
|
||||||
github.com/cloudflare/circl v1.3.6/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
|
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
|
||||||
github.com/coreos/go-iptables v0.7.0 h1:XWM3V+MPRr5/q51NuWSgU0fqMad64Zyxs8ZUoMsamr8=
|
github.com/coreos/go-iptables v0.7.0 h1:XWM3V+MPRr5/q51NuWSgU0fqMad64Zyxs8ZUoMsamr8=
|
||||||
github.com/coreos/go-iptables v0.7.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q=
|
github.com/coreos/go-iptables v0.7.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
@@ -46,6 +48,12 @@ github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nos
|
|||||||
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
|
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
|
||||||
github.com/gaukas/godicttls v0.0.4 h1:NlRaXb3J6hAnTmWdsEKb9bcSBD6BvcIjdGdeb0zfXbk=
|
github.com/gaukas/godicttls v0.0.4 h1:NlRaXb3J6hAnTmWdsEKb9bcSBD6BvcIjdGdeb0zfXbk=
|
||||||
github.com/gaukas/godicttls v0.0.4/go.mod h1:l6EenT4TLWgTdwslVb4sEMOCf7Bv0JAK67deKr9/NCI=
|
github.com/gaukas/godicttls v0.0.4/go.mod h1:l6EenT4TLWgTdwslVb4sEMOCf7Bv0JAK67deKr9/NCI=
|
||||||
|
github.com/go-chi/chi/v5 v5.0.14 h1:PyEwo2Vudraa0x/Wl6eDRRW2NXBvekgfxyydcM0WGE0=
|
||||||
|
github.com/go-chi/chi/v5 v5.0.14/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
|
||||||
|
github.com/go-chi/cors v1.2.1 h1:xEC8UT3Rlp2QuWNEr4Fs/c2EAGVKBwy/1vHx3bppil4=
|
||||||
|
github.com/go-chi/cors v1.2.1/go.mod h1:sSbTewc+6wYHBBCW7ytsFSn836hqM7JxpglAy2Vzc58=
|
||||||
|
github.com/go-chi/render v1.0.3 h1:AsXqd2a1/INaIfUSKq3G5uA8weYx20FOsM7uSoCyyt4=
|
||||||
|
github.com/go-chi/render v1.0.3/go.mod h1:/gr3hVkmYR0YlEy3LxCuVRFzEu9Ruok+gFqbIofjao0=
|
||||||
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
|
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=
|
||||||
github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
|
github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
|
||||||
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
||||||
@@ -57,17 +65,16 @@ github.com/gobwas/httphead v0.1.0 h1:exrUm0f4YX0L7EBwZHuCF4GDp8aJfVeBrlLQrs6NqWU
|
|||||||
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
|
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
|
||||||
github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og=
|
github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og=
|
||||||
github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
|
github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
|
||||||
github.com/gobwas/ws v1.3.2 h1:zlnbNHxumkRvfPWgfXu8RBwyNR1x8wh9cf5PTOCqs9Q=
|
github.com/gobwas/ws v1.4.0 h1:CTaoG1tojrh4ucGPcoJFiAQUAsEWekEWvLy7GsVNqGs=
|
||||||
github.com/gobwas/ws v1.3.2/go.mod h1:hRKAFb8wOxFROYNsT1bqfWnhX+b5MFeJM9r2ZSwg/KY=
|
github.com/gobwas/ws v1.4.0/go.mod h1:G3gNqMNtPppf5XUz7O4shetPpcZ1VJ7zt18dlUeakrc=
|
||||||
github.com/gofrs/uuid/v5 v5.1.0 h1:S5rqVKIigghZTCBKPCw0Y+bXkn26K3TB5mvQq2Ix8dk=
|
github.com/gofrs/uuid/v5 v5.2.0 h1:qw1GMx6/y8vhVsx626ImfKMuS5CvJmhIKKtuyvfajMM=
|
||||||
github.com/gofrs/uuid/v5 v5.1.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8=
|
github.com/gofrs/uuid/v5 v5.2.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8=
|
||||||
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
||||||
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
||||||
github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU=
|
github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU=
|
||||||
github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4=
|
github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4=
|
||||||
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
|
||||||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
|
||||||
@@ -77,16 +84,16 @@ github.com/google/tink/go v1.6.1/go.mod h1:IGW53kTgag+st5yPhKKwJ6u2l+SSp5/v9XF7s
|
|||||||
github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE=
|
github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE=
|
||||||
github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ=
|
github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ=
|
||||||
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
|
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49 h1:/OuvSMGT9+xnyZ+7MZQ1zdngaCCAdPoSw8B/uurZ7pg=
|
github.com/insomniacslk/dhcp v0.0.0-20240529192340-51bc6136a0a6 h1:dh8D8FksyMhD64mRMbUhZHWYJfNoNMCxfVq6eexleMw=
|
||||||
github.com/insomniacslk/dhcp v0.0.0-20240419123447-f1cffa2c0c49/go.mod h1:KclMyHxX06VrVr0DJmeFSUb1ankt7xTfoOA35pCkoic=
|
github.com/insomniacslk/dhcp v0.0.0-20240529192340-51bc6136a0a6/go.mod h1:KclMyHxX06VrVr0DJmeFSUb1ankt7xTfoOA35pCkoic=
|
||||||
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
|
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
|
||||||
github.com/josharian/native v1.0.1-0.20221213033349-c1e37c09b531/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
github.com/josharian/native v1.0.1-0.20221213033349-c1e37c09b531/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
||||||
github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
|
github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
|
||||||
github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
|
||||||
github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4=
|
github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4=
|
||||||
github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM=
|
github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM=
|
github.com/klauspost/cpuid/v2 v2.2.8 h1:+StwCXwm9PdpiEkPyzBXIy+M9KUb4ODm0Zarf1kS5BM=
|
||||||
github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
github.com/klauspost/cpuid/v2 v2.2.8/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
||||||
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
||||||
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
|
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
|
||||||
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||||
@@ -105,24 +112,28 @@ github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759 h1:cjd4biTvO
|
|||||||
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759/go.mod h1:UHOv2xu+RIgLwpXca7TLrXleEd4oR3sPatW6IF8wU88=
|
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759/go.mod h1:UHOv2xu+RIgLwpXca7TLrXleEd4oR3sPatW6IF8wU88=
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec h1:HxreOiFTUrJXJautEo8rnE1uKTVGY8wtZepY1Tii/Nc=
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec h1:HxreOiFTUrJXJautEo8rnE1uKTVGY8wtZepY1Tii/Nc=
|
||||||
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec/go.mod h1:8BVmQ+3cxjqzWElafm24rb2Ae4jRI6vAXNXWqWjfrXw=
|
github.com/metacubex/gvisor v0.0.0-20240320004321-933faba989ec/go.mod h1:8BVmQ+3cxjqzWElafm24rb2Ae4jRI6vAXNXWqWjfrXw=
|
||||||
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98 h1:oMLlJV4a9AylNo8ZLBNUiqZ02Vme6GLLHjuWJz8amSk=
|
github.com/metacubex/quic-go v0.45.1-0.20240610004319-163fee60637e h1:bLYn3GuRvWDcBDAkIv5kUYIhzHwafDVq635BuybnKqI=
|
||||||
github.com/metacubex/quic-go v0.42.1-0.20240418003344-f006b5735d98/go.mod h1:iGx3Y1zynls/FjFgykLSqDcM81U0IKePRTXEz5g3iiQ=
|
github.com/metacubex/quic-go v0.45.1-0.20240610004319-163fee60637e/go.mod h1:Yza2H7Ax1rxWPUcJx0vW+oAt9EsPuSiyQFhFabUPzwU=
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d h1:RAe0ND8J5SOPGI623oEXfaHKaaUrrzHx+U1DN9Awcco=
|
github.com/metacubex/randv2 v0.2.0 h1:uP38uBvV2SxYfLj53kuvAjbND4RUDfFJjwr4UigMiLs=
|
||||||
github.com/metacubex/sing-quic v0.0.0-20240418004036-814c531c378d/go.mod h1:WyY0zYxv+o+18R/Ece+QFontlgXoobKbNqbtYn2zjz8=
|
github.com/metacubex/randv2 v0.2.0/go.mod h1:kFi2SzrQ5WuneuoLLCMkABtiBu6VRrMrWFqSPyj2cxY=
|
||||||
|
github.com/metacubex/sing-quic v0.0.0-20240518034124-7696d3f7da72 h1:Wr4g1HCb5Z/QIFwFiVNjO2qL+dRu25+Mdn9xtAZZ+ew=
|
||||||
|
github.com/metacubex/sing-quic v0.0.0-20240518034124-7696d3f7da72/go.mod h1:g7Mxj7b7zm7YVqD975mk/hSmrb0A0G4bVvIMr2MMzn8=
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.6 h1:6oEB3QcsFYnNiFeoevcXrCwJ3sAablwVSgtE9R3QeFQ=
|
github.com/metacubex/sing-shadowsocks v0.2.6 h1:6oEB3QcsFYnNiFeoevcXrCwJ3sAablwVSgtE9R3QeFQ=
|
||||||
github.com/metacubex/sing-shadowsocks v0.2.6/go.mod h1:zIkMeSnb8Mbf4hdqhw0pjzkn1d99YJ3JQm/VBg5WMTg=
|
github.com/metacubex/sing-shadowsocks v0.2.6/go.mod h1:zIkMeSnb8Mbf4hdqhw0pjzkn1d99YJ3JQm/VBg5WMTg=
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.0 h1:hqwT/AfI5d5UdPefIzR6onGHJfDXs5zgOM5QSgaM/9A=
|
github.com/metacubex/sing-shadowsocks2 v0.2.0 h1:hqwT/AfI5d5UdPefIzR6onGHJfDXs5zgOM5QSgaM/9A=
|
||||||
github.com/metacubex/sing-shadowsocks2 v0.2.0/go.mod h1:LCKF6j1P94zN8ZS+LXRK1gmYTVGB3squivBSXAFnOg8=
|
github.com/metacubex/sing-shadowsocks2 v0.2.0/go.mod h1:LCKF6j1P94zN8ZS+LXRK1gmYTVGB3squivBSXAFnOg8=
|
||||||
github.com/metacubex/sing-tun v0.2.6 h1:frc58BqnIClqcC9KcYBfVAn5bgO6WW1ANKvZW3/HYAQ=
|
github.com/metacubex/sing-tun v0.2.7-0.20240627012306-9d1f5fc0b45e h1:o+zohxPRo45P35fS9u1zfdBgr+L/7S0ObGU6YjbVBIc=
|
||||||
github.com/metacubex/sing-tun v0.2.6/go.mod h1:4VsMwZH1IlgPGFK1ZbBomZ/B2MYkTgs2+gnBAr5GOIo=
|
github.com/metacubex/sing-tun v0.2.7-0.20240627012306-9d1f5fc0b45e/go.mod h1:WwJGbCx7bQcBzuQXiDOJvZH27R0kIjKNNlISIWsL6kM=
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f h1:QjXrHKbTMBip/C+R79bvbfr42xH1gZl3uFb0RELdZiQ=
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f h1:QjXrHKbTMBip/C+R79bvbfr42xH1gZl3uFb0RELdZiQ=
|
||||||
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f/go.mod h1:olVkD4FChQ5gKMHG4ZzuD7+fMkJY1G8vwOKpRehjrmY=
|
github.com/metacubex/sing-vmess v0.1.9-0.20231207122118-72303677451f/go.mod h1:olVkD4FChQ5gKMHG4ZzuD7+fMkJY1G8vwOKpRehjrmY=
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63 h1:AGyIB55UfQm/0ZH0HtQO9u3l//yjtHUpjeRjjPGfGRI=
|
github.com/metacubex/sing-wireguard v0.0.0-20240618022557-a6efaa37127a h1:NpSGclHJUYndUwBmyIpFBSoBVg8PoVX7QQKhYg0DjM0=
|
||||||
github.com/metacubex/sing-wireguard v0.0.0-20240321042214-224f96122a63/go.mod h1:uY+BYb0UEknLrqvbGcwi9i++KgrKxsurysgI6G1Pveo=
|
github.com/metacubex/sing-wireguard v0.0.0-20240618022557-a6efaa37127a/go.mod h1:uY+BYb0UEknLrqvbGcwi9i++KgrKxsurysgI6G1Pveo=
|
||||||
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 h1:as/aO/fM8nv4W4pOr9EETP6kV/Oaujk3fUNyQSJK61c=
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66 h1:as/aO/fM8nv4W4pOr9EETP6kV/Oaujk3fUNyQSJK61c=
|
||||||
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66/go.mod h1:c7bVFM9f5+VzeZ/6Kg77T/jrg1Xp8QpqlSHvG/aXVts=
|
github.com/metacubex/tfo-go v0.0.0-20240228025757-be1269474a66/go.mod h1:c7bVFM9f5+VzeZ/6Kg77T/jrg1Xp8QpqlSHvG/aXVts=
|
||||||
github.com/miekg/dns v1.1.59 h1:C9EXc/UToRwKLhK5wKU/I4QVsBUc8kE6MkHBkeypWZs=
|
github.com/metacubex/utls v1.6.6 h1:3D12YKHTf2Z41UPhQU2dWerNWJ5TVQD9gKoQ+H+iLC8=
|
||||||
github.com/miekg/dns v1.1.59/go.mod h1:nZpewl5p6IvctfgrckopVx2OlSEHPRO/U4SYkRklrEk=
|
github.com/metacubex/utls v1.6.6/go.mod h1:+WLFUnXjcpdxXCnyX25nggw8C6YonZ8zOK2Zm/oRvdo=
|
||||||
|
github.com/miekg/dns v1.1.61 h1:nLxbwF3XxhwVSm8g9Dghm9MHPaUZuqhPiGL+675ZmEs=
|
||||||
|
github.com/miekg/dns v1.1.61/go.mod h1:mnAarhS3nWaW+NVP2wTkYVIZyHNJ098SJZUki3eykwQ=
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0 h1:o1ascnB1CIVzsqlfArQQjeMy1U0NcIbBO5rfd5E/OeU=
|
github.com/mroth/weightedrand/v2 v2.1.0 h1:o1ascnB1CIVzsqlfArQQjeMy1U0NcIbBO5rfd5E/OeU=
|
||||||
github.com/mroth/weightedrand/v2 v2.1.0/go.mod h1:f2faGsfOGOwc1p94wzHKKZyTpcJUW7OJ/9U4yfiNAOU=
|
github.com/mroth/weightedrand/v2 v2.1.0/go.mod h1:f2faGsfOGOwc1p94wzHKKZyTpcJUW7OJ/9U4yfiNAOU=
|
||||||
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 h1:1102pQc2SEPp5+xrS26wEaeb26sZy6k9/ZXlZN+eXE4=
|
github.com/oasisprotocol/deoxysii v0.0.0-20220228165953-2091330c22b7 h1:1102pQc2SEPp5+xrS26wEaeb26sZy6k9/ZXlZN+eXE4=
|
||||||
@@ -145,8 +156,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
|
|||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw=
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw=
|
||||||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE=
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE=
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.1.0 h1:EewKT7/LNac5SLiEblJeUu8z5eERHrmRLnMQL2d7qX4=
|
github.com/puzpuzpuz/xsync/v3 v3.2.0 h1:9AzuUeF88YC5bK8u2vEG1Fpvu4wgpM1wfPIExfaaDxQ=
|
||||||
github.com/puzpuzpuz/xsync/v3 v3.1.0/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
|
github.com/puzpuzpuz/xsync/v3 v3.2.0/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
|
||||||
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
|
github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo=
|
||||||
github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
|
github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A=
|
||||||
github.com/quic-go/qtls-go1-20 v0.4.1 h1:D33340mCNDAIKBqXuAvexTNMUByrYmFYVfKfDN5nfFs=
|
github.com/quic-go/qtls-go1-20 v0.4.1 h1:D33340mCNDAIKBqXuAvexTNMUByrYmFYVfKfDN5nfFs=
|
||||||
@@ -155,25 +166,25 @@ github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZV
|
|||||||
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
|
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
|
||||||
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a h1:+NkI2670SQpQWvkkD2QgdTuzQG263YZ+2emfpeyGqW0=
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a h1:+NkI2670SQpQWvkkD2QgdTuzQG263YZ+2emfpeyGqW0=
|
||||||
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a/go.mod h1:63s7jpZqcDAIpj8oI/1v4Izok+npJOHACFCU6+huCkM=
|
github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a/go.mod h1:63s7jpZqcDAIpj8oI/1v4Izok+npJOHACFCU6+huCkM=
|
||||||
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 h1:iL5gZI3uFp0X6EslacyapiRz7LLSJyr4RajF/BhMVyE=
|
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a h1:ObwtHN2VpqE0ZNjr6sGeT00J8uU7JF4cNUdb44/Duis=
|
||||||
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97/go.mod h1:xLnfdiJbSp8rNqYEdIW/6eDO4mVoogml14Bh2hSiFpM=
|
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a/go.mod h1:xLnfdiJbSp8rNqYEdIW/6eDO4mVoogml14Bh2hSiFpM=
|
||||||
|
github.com/sagernet/nftables v0.3.0-beta.4 h1:kbULlAwAC3jvdGAC1P5Fa3GSxVwQJibNenDW2zaXr8I=
|
||||||
|
github.com/sagernet/nftables v0.3.0-beta.4/go.mod h1:OQXAjvjNGGFxaTgVCSTRIhYB5/llyVDeapVoENYBDS8=
|
||||||
github.com/sagernet/sing v0.2.18/go.mod h1:OL6k2F0vHmEzXz2KW19qQzu172FDgSbUSODylighuVo=
|
github.com/sagernet/sing v0.2.18/go.mod h1:OL6k2F0vHmEzXz2KW19qQzu172FDgSbUSODylighuVo=
|
||||||
github.com/sagernet/sing v0.3.8 h1:gm4JKalPhydMYX2zFOTnnd4TXtM/16WFRqSjMepYQQk=
|
github.com/sagernet/sing v0.5.0-alpha.10 h1:kuHl10gpjbKQAdQfyogQU3u0CVnpqC3wrAHe/+BFaXc=
|
||||||
github.com/sagernet/sing v0.3.8/go.mod h1:+60H3Cm91RnL9dpVGWDPHt0zTQImO9Vfqt9a4rSambI=
|
github.com/sagernet/sing v0.5.0-alpha.10/go.mod h1:ARkL0gM13/Iv5VCZmci/NuoOlePoIsW0m7BWfln/Hak=
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 h1:5bCAkvDDzSMITiHFjolBwpdqYsvycdTu71FsMEFXQ14=
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6 h1:5bCAkvDDzSMITiHFjolBwpdqYsvycdTu71FsMEFXQ14=
|
||||||
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6/go.mod h1:khzr9AOPocLa+g53dBplwNDz4gdsyx/YM3swtAhlkHQ=
|
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6/go.mod h1:khzr9AOPocLa+g53dBplwNDz4gdsyx/YM3swtAhlkHQ=
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnVpEx6Tw3k=
|
github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnVpEx6Tw3k=
|
||||||
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
|
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=
|
||||||
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7/go.mod h1:FP9X2xjT/Az1EsG/orYYoC+5MojWnuI7hrffz8fGwwo=
|
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7/go.mod h1:FP9X2xjT/Az1EsG/orYYoC+5MojWnuI7hrffz8fGwwo=
|
||||||
github.com/sagernet/utls v1.5.4 h1:KmsEGbB2dKUtCNC+44NwAdNAqnqQ6GA4pTO0Yik56co=
|
|
||||||
github.com/sagernet/utls v1.5.4/go.mod h1:CTGxPWExIloRipK3XFpYv0OVyhO8kk3XCGW/ieyTh1s=
|
|
||||||
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e h1:iGH0RMv2FzELOFNFQtvsxH7NPmlo7X5JizEK51UCojo=
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e h1:iGH0RMv2FzELOFNFQtvsxH7NPmlo7X5JizEK51UCojo=
|
||||||
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e/go.mod h1:YbL4TKHRR6APYQv3U2RGfwLDpPYSyWz6oUlpISBEzBE=
|
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e/go.mod h1:YbL4TKHRR6APYQv3U2RGfwLDpPYSyWz6oUlpISBEzBE=
|
||||||
github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA=
|
github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA=
|
||||||
github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA=
|
github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA=
|
||||||
github.com/shirou/gopsutil/v3 v3.24.3 h1:eoUGJSmdfLzJ3mxIhmOAhgKEKgQkeOwKpz1NbhVnuPE=
|
github.com/shirou/gopsutil/v3 v3.24.5 h1:i0t8kL+kQTvpAYToeuiVk3TgDeKOFioZO3Ztz/iZ9pI=
|
||||||
github.com/shirou/gopsutil/v3 v3.24.3/go.mod h1:JpND7O217xa72ewWz9zN2eIIkPWsDN/3pl0H8Qt0uwg=
|
github.com/shirou/gopsutil/v3 v3.24.5/go.mod h1:bsoOS1aStSs9ErQ1WWfxllSeS1K5D+U30r2NfcubMVk=
|
||||||
github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=
|
github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=
|
||||||
github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
|
github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
|
||||||
github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=
|
github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=
|
||||||
@@ -187,15 +198,9 @@ github.com/sina-ghaderi/rabbitio v0.0.0-20220730151941-9ce26f4f872e/go.mod h1:+e
|
|||||||
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
||||||
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
|
||||||
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
|
||||||
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
|
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
|
||||||
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
|
||||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
||||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=
|
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=
|
||||||
@@ -207,14 +212,12 @@ github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923/go.mod h1:eLL9Nub3yfAho
|
|||||||
github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
|
github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
|
||||||
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
|
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
|
||||||
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
||||||
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 h1:gga7acRE695APm9hlsSMoOoE65U4/TcqNj90mc69Rlg=
|
github.com/vishvananda/netns v0.0.4 h1:Oeaw1EM2JMxD51g9uhtC0D7erkIjgmj8+JZc26m1YX8=
|
||||||
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0=
|
github.com/vishvananda/netns v0.0.4/go.mod h1:SpkAiCQRtJ6TvvxPnOSyH3BMl6unz3xZlaprSwhNNJM=
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc=
|
github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc=
|
||||||
github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw=
|
github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw=
|
||||||
github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0=
|
github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0=
|
||||||
github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
|
github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
|
||||||
github.com/zhangyunhao116/fastrand v0.4.0 h1:86QB6Y+GGgLZRFRDCjMmAS28QULwspK9sgL5d1Bx3H4=
|
|
||||||
github.com/zhangyunhao116/fastrand v0.4.0/go.mod h1:vIyo6EyBhjGKpZv6qVlkPl4JVAklpMM4DSKzbAkMguA=
|
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec h1:FpfFs4EhNehiVfzQttTuxanPIT43FtkkCFypIod8LHo=
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec h1:FpfFs4EhNehiVfzQttTuxanPIT43FtkkCFypIod8LHo=
|
||||||
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec/go.mod h1:BZ1RAoRPbCxum9Grlv5aeksu2H8BiKehBYooU2LFiOQ=
|
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec/go.mod h1:BZ1RAoRPbCxum9Grlv5aeksu2H8BiKehBYooU2LFiOQ=
|
||||||
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
|
go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
|
||||||
@@ -223,18 +226,18 @@ go4.org/netipx v0.0.0-20231129151722-fdeea329fbba h1:0b9z3AuHCjxk0x/opv64kcgZLBs
|
|||||||
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba/go.mod h1:PLyyIXexvUFg3Owu6p/WfdlivPbZJsZdgWZlrGope/Y=
|
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba/go.mod h1:PLyyIXexvUFg3Owu6p/WfdlivPbZJsZdgWZlrGope/Y=
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
||||||
golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30=
|
golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI=
|
||||||
golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M=
|
golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM=
|
||||||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f h1:99ci1mjWVBWwJiEKYY6jWa4d2nTQVIEhZIptnrVb1XY=
|
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY=
|
||||||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI=
|
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI=
|
||||||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
|
||||||
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
|
||||||
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
|
golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0=
|
||||||
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
|
golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
|
golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ=
|
||||||
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
|
golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE=
|
||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
|
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
|
||||||
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
|
||||||
@@ -254,28 +257,26 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|||||||
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
|
||||||
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
|
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA=
|
||||||
golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q=
|
golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0=
|
||||||
golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk=
|
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
|
||||||
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
|
||||||
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
|
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
|
||||||
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
|
||||||
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
|
||||||
golang.org/x/tools v0.20.0 h1:hz/CVckiOxybQvFw6h7b/q80NTr9IUQb4s1IIzW7KNY=
|
golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA=
|
||||||
golang.org/x/tools v0.20.0/go.mod h1:WvitBU7JJf6A4jOdg4S1tviW9bhUxkgeCui/0JHctQg=
|
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
|
||||||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
|
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=
|
||||||
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
|
google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=
|
||||||
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
lukechampine.com/blake3 v1.2.2 h1:wEAbSg0IVU4ih44CVlpMqMZMpzr5hf/6aqodLlevd/w=
|
lukechampine.com/blake3 v1.3.0 h1:sJ3XhFINmHSrYCgl958hscfIa3bw8x4DqMP3u1YvoYE=
|
||||||
lukechampine.com/blake3 v1.2.2/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k=
|
lukechampine.com/blake3 v1.3.0/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k=
|
||||||
|
|||||||
236
core/hub.go
@@ -1,5 +1,8 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include <stdlib.h>
|
||||||
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
bridge "core/dart-bridge"
|
bridge "core/dart-bridge"
|
||||||
@@ -10,10 +13,14 @@ import (
|
|||||||
"github.com/metacubex/mihomo/adapter/provider"
|
"github.com/metacubex/mihomo/adapter/provider"
|
||||||
"github.com/metacubex/mihomo/common/structure"
|
"github.com/metacubex/mihomo/common/structure"
|
||||||
"github.com/metacubex/mihomo/common/utils"
|
"github.com/metacubex/mihomo/common/utils"
|
||||||
|
"github.com/metacubex/mihomo/component/geodata"
|
||||||
|
"github.com/metacubex/mihomo/component/mmdb"
|
||||||
"github.com/metacubex/mihomo/config"
|
"github.com/metacubex/mihomo/config"
|
||||||
"github.com/metacubex/mihomo/constant"
|
"github.com/metacubex/mihomo/constant"
|
||||||
|
cp "github.com/metacubex/mihomo/constant/provider"
|
||||||
"github.com/metacubex/mihomo/hub/executor"
|
"github.com/metacubex/mihomo/hub/executor"
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
|
rp "github.com/metacubex/mihomo/rules/provider"
|
||||||
"github.com/metacubex/mihomo/tunnel"
|
"github.com/metacubex/mihomo/tunnel"
|
||||||
"github.com/metacubex/mihomo/tunnel/statistic"
|
"github.com/metacubex/mihomo/tunnel/statistic"
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
@@ -25,8 +32,12 @@ import (
|
|||||||
|
|
||||||
var currentConfig = config.DefaultRawConfig()
|
var currentConfig = config.DefaultRawConfig()
|
||||||
|
|
||||||
|
var configParams = ConfigExtendedParams{}
|
||||||
|
|
||||||
var isInit = false
|
var isInit = false
|
||||||
|
|
||||||
|
var currentProfileName = ""
|
||||||
|
|
||||||
//export initClash
|
//export initClash
|
||||||
func initClash(homeDirStr *C.char) bool {
|
func initClash(homeDirStr *C.char) bool {
|
||||||
if !isInit {
|
if !isInit {
|
||||||
@@ -57,31 +68,53 @@ func shutdownClash() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//export forceGc
|
||||||
|
func forceGc() {
|
||||||
|
go func() {
|
||||||
|
log.Infoln("[APP] request force GC")
|
||||||
|
runtime.GC()
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
//export setCurrentProfileName
|
||||||
|
func setCurrentProfileName(s *C.char) {
|
||||||
|
currentProfileName = C.GoString(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
//export getCurrentProfileName
|
||||||
|
func getCurrentProfileName() *C.char {
|
||||||
|
return C.CString(currentProfileName)
|
||||||
|
}
|
||||||
|
|
||||||
//export validateConfig
|
//export validateConfig
|
||||||
func validateConfig(s *C.char) bool {
|
func validateConfig(s *C.char, port C.longlong) {
|
||||||
|
i := int64(port)
|
||||||
bytes := []byte(C.GoString(s))
|
bytes := []byte(C.GoString(s))
|
||||||
_, err := config.UnmarshalRawConfig(bytes)
|
go func() {
|
||||||
return err == nil
|
_, err := config.UnmarshalRawConfig(bytes)
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
bridge.SendToPort(i, "")
|
||||||
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
//export updateConfig
|
//export updateConfig
|
||||||
func updateConfig(s *C.char, port C.longlong) {
|
func updateConfig(s *C.char, port C.longlong) {
|
||||||
i := int64(port)
|
i := int64(port)
|
||||||
|
paramsString := C.GoString(s)
|
||||||
go func() {
|
go func() {
|
||||||
paramsString := C.GoString(s)
|
|
||||||
var params = &GenerateConfigParams{}
|
var params = &GenerateConfigParams{}
|
||||||
err := json.Unmarshal([]byte(paramsString), params)
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
bridge.SendToPort(i, err.Error())
|
bridge.SendToPort(i, err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
prof := decorationConfig(params.ProfilePath, *params.Config, *params.IsCompatible)
|
configParams = params.Params
|
||||||
|
prof := decorationConfig(params.ProfilePath, params.Config)
|
||||||
currentConfig = prof
|
currentConfig = prof
|
||||||
if *params.IsPatch {
|
applyConfig()
|
||||||
applyConfig(true)
|
|
||||||
} else {
|
|
||||||
applyConfig(false)
|
|
||||||
}
|
|
||||||
bridge.SendToPort(i, "")
|
bridge.SendToPort(i, "")
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
@@ -129,30 +162,32 @@ func getProxies() *C.char {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//export changeProxy
|
//export changeProxy
|
||||||
func changeProxy(s *C.char) bool {
|
func changeProxy(s *C.char) {
|
||||||
|
paramsString := C.GoString(s)
|
||||||
go func() {
|
go func() {
|
||||||
paramsString := C.GoString(s)
|
|
||||||
var params = &ChangeProxyParams{}
|
var params = &ChangeProxyParams{}
|
||||||
err := json.Unmarshal([]byte(paramsString), params)
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Infoln("Unmarshal ChangeProxyParams %v", err)
|
log.Infoln("Unmarshal ChangeProxyParams %v", err)
|
||||||
}
|
}
|
||||||
|
groupName := *params.GroupName
|
||||||
|
proxyName := *params.ProxyName
|
||||||
proxies := tunnel.ProxiesWithProviders()
|
proxies := tunnel.ProxiesWithProviders()
|
||||||
proxy := proxies[*params.GroupName]
|
group, ok := proxies[groupName]
|
||||||
if proxy == nil {
|
if !ok {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infoln("change proxy %s", proxy.Name())
|
adapterProxy := group.(*adapter.Proxy)
|
||||||
adapterProxy := proxy.(*adapter.Proxy)
|
|
||||||
selector, ok := adapterProxy.ProxyAdapter.(*outboundgroup.Selector)
|
selector, ok := adapterProxy.ProxyAdapter.(*outboundgroup.Selector)
|
||||||
if !ok {
|
if !ok {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err := selector.Set(*params.ProxyName); err != nil {
|
|
||||||
return
|
err = selector.Set(proxyName)
|
||||||
|
if err == nil {
|
||||||
|
log.Infoln("[Selector] %s selected %s", groupName, proxyName)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
return true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//export getTraffic
|
//export getTraffic
|
||||||
@@ -170,10 +205,31 @@ func getTraffic() *C.char {
|
|||||||
return C.CString(string(data))
|
return C.CString(string(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//export getTotalTraffic
|
||||||
|
func getTotalTraffic() *C.char {
|
||||||
|
up, down := statistic.DefaultManager.Total()
|
||||||
|
traffic := map[string]int64{
|
||||||
|
"up": up,
|
||||||
|
"down": down,
|
||||||
|
}
|
||||||
|
data, err := json.Marshal(traffic)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error:", err)
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(string(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
//export resetTraffic
|
||||||
|
func resetTraffic() {
|
||||||
|
statistic.DefaultManager.ResetStatistic()
|
||||||
|
}
|
||||||
|
|
||||||
//export asyncTestDelay
|
//export asyncTestDelay
|
||||||
func asyncTestDelay(s *C.char) {
|
func asyncTestDelay(s *C.char, port C.longlong) {
|
||||||
|
i := int64(port)
|
||||||
|
paramsString := C.GoString(s)
|
||||||
go func() {
|
go func() {
|
||||||
paramsString := C.GoString(s)
|
|
||||||
var params = &TestDelayParams{}
|
var params = &TestDelayParams{}
|
||||||
err := json.Unmarshal([]byte(paramsString), params)
|
err := json.Unmarshal([]byte(paramsString), params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -195,26 +251,25 @@ func asyncTestDelay(s *C.char) {
|
|||||||
Name: params.ProxyName,
|
Name: params.ProxyName,
|
||||||
}
|
}
|
||||||
|
|
||||||
message := bridge.Message{
|
|
||||||
Type: bridge.Delay,
|
|
||||||
Data: delayData,
|
|
||||||
}
|
|
||||||
|
|
||||||
if proxy == nil {
|
if proxy == nil {
|
||||||
delayData.Value = -1
|
delayData.Value = -1
|
||||||
bridge.SendMessage(message)
|
data, _ := json.Marshal(delayData)
|
||||||
|
bridge.SendToPort(i, string(data))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
delay, err := proxy.URLTest(ctx, constant.DefaultTestURL, expectedStatus)
|
delay, err := proxy.URLTest(ctx, constant.DefaultTestURL, expectedStatus)
|
||||||
if err != nil || delay == 0 {
|
if err != nil || delay == 0 {
|
||||||
delayData.Value = -1
|
delayData.Value = -1
|
||||||
bridge.SendMessage(message)
|
data, _ := json.Marshal(delayData)
|
||||||
|
bridge.SendToPort(i, string(data))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
delayData.Value = int32(delay)
|
delayData.Value = int32(delay)
|
||||||
bridge.SendMessage(message)
|
data, _ := json.Marshal(delayData)
|
||||||
|
bridge.SendToPort(i, string(data))
|
||||||
|
return
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -222,7 +277,7 @@ func asyncTestDelay(s *C.char) {
|
|||||||
func getVersionInfo() *C.char {
|
func getVersionInfo() *C.char {
|
||||||
versionInfo := map[string]string{
|
versionInfo := map[string]string{
|
||||||
"clashName": constant.Name,
|
"clashName": constant.Name,
|
||||||
"version": constant.Version,
|
"version": "1.18.5",
|
||||||
}
|
}
|
||||||
data, err := json.Marshal(versionInfo)
|
data, err := json.Marshal(versionInfo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -258,7 +313,6 @@ func closeConnections() bool {
|
|||||||
//export closeConnection
|
//export closeConnection
|
||||||
func closeConnection(id *C.char) bool {
|
func closeConnection(id *C.char) bool {
|
||||||
connectionId := C.GoString(id)
|
connectionId := C.GoString(id)
|
||||||
|
|
||||||
err := statistic.DefaultManager.Get(connectionId).Close()
|
err := statistic.DefaultManager.Get(connectionId).Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
@@ -269,10 +323,13 @@ func closeConnection(id *C.char) bool {
|
|||||||
//export getProviders
|
//export getProviders
|
||||||
func getProviders() *C.char {
|
func getProviders() *C.char {
|
||||||
data, err := json.Marshal(tunnel.Providers())
|
data, err := json.Marshal(tunnel.Providers())
|
||||||
|
var msg *C.char
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return C.CString("")
|
msg = C.CString("")
|
||||||
|
return msg
|
||||||
}
|
}
|
||||||
return C.CString(string(data))
|
msg = C.CString(string(data))
|
||||||
|
return msg
|
||||||
}
|
}
|
||||||
|
|
||||||
//export getProvider
|
//export getProvider
|
||||||
@@ -286,16 +343,103 @@ func getProvider(name *C.char) *C.char {
|
|||||||
return C.CString(string(data))
|
return C.CString(string(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
//export healthcheck
|
//export getExternalProviders
|
||||||
func healthcheck() {
|
func getExternalProviders() *C.char {
|
||||||
hcCompatibleProvider(tunnel.Providers())
|
externalProviders := make([]ExternalProvider, 0)
|
||||||
|
providers := tunnel.Providers()
|
||||||
|
for n, p := range providers {
|
||||||
|
if p.VehicleType() != cp.Compatible {
|
||||||
|
p := p.(*provider.ProxySetProvider)
|
||||||
|
externalProviders = append(externalProviders, ExternalProvider{
|
||||||
|
Name: n,
|
||||||
|
Type: p.Type().String(),
|
||||||
|
VehicleType: p.VehicleType().String(),
|
||||||
|
UpdateAt: p.UpdatedAt,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for n, p := range tunnel.RuleProviders() {
|
||||||
|
if p.VehicleType() != cp.Compatible {
|
||||||
|
p := p.(*rp.RuleSetProvider)
|
||||||
|
externalProviders = append(externalProviders, ExternalProvider{
|
||||||
|
Name: n,
|
||||||
|
Type: p.Type().String(),
|
||||||
|
VehicleType: p.VehicleType().String(),
|
||||||
|
UpdateAt: p.UpdatedAt,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data, err := json.Marshal(externalProviders)
|
||||||
|
if err != nil {
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(string(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
//export updateExternalProvider
|
||||||
|
func updateExternalProvider(providerName *C.char, providerType *C.char, port C.longlong) {
|
||||||
|
i := int64(port)
|
||||||
|
providerNameString := C.GoString(providerName)
|
||||||
|
providerTypeString := C.GoString(providerType)
|
||||||
|
go func() {
|
||||||
|
switch providerTypeString {
|
||||||
|
case "Proxy":
|
||||||
|
providers := tunnel.Providers()
|
||||||
|
err := providers[providerNameString].Update()
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case "Rule":
|
||||||
|
providers := tunnel.RuleProviders()
|
||||||
|
err := providers[providerNameString].Update()
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case "MMDB":
|
||||||
|
err := mmdb.DownloadMMDB(constant.Path.Resolve(providerNameString))
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case "ASN":
|
||||||
|
err := mmdb.DownloadASN(constant.Path.Resolve(providerNameString))
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case "GeoIp":
|
||||||
|
err := geodata.DownloadGeoIP(constant.Path.Resolve(providerNameString))
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case "GeoSite":
|
||||||
|
err := geodata.DownloadGeoSite(constant.Path.Resolve(providerNameString))
|
||||||
|
if err != nil {
|
||||||
|
bridge.SendToPort(i, err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bridge.SendToPort(i, "")
|
||||||
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
//export initNativeApiBridge
|
//export initNativeApiBridge
|
||||||
func initNativeApiBridge(api unsafe.Pointer, port C.longlong) {
|
func initNativeApiBridge(api unsafe.Pointer) {
|
||||||
bridge.InitDartApi(api)
|
bridge.InitDartApi(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
//export initMessage
|
||||||
|
func initMessage(port C.longlong) {
|
||||||
i := int64(port)
|
i := int64(port)
|
||||||
bridge.Port = &i
|
Port = i
|
||||||
|
}
|
||||||
|
|
||||||
|
//export freeCString
|
||||||
|
func freeCString(s *C.char) {
|
||||||
|
C.free(unsafe.Pointer(s))
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@@ -308,9 +452,21 @@ func init() {
|
|||||||
} else {
|
} else {
|
||||||
delayData.Value = int32(delay)
|
delayData.Value = int32(delay)
|
||||||
}
|
}
|
||||||
bridge.SendMessage(bridge.Message{
|
SendMessage(Message{
|
||||||
Type: bridge.Delay,
|
Type: DelayMessage,
|
||||||
Data: delayData,
|
Data: delayData,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
statistic.DefaultRequestNotify = func(c statistic.Tracker) {
|
||||||
|
SendMessage(Message{
|
||||||
|
Type: RequestMessage,
|
||||||
|
Data: c,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
executor.DefaultProxyProviderLoadedHook = func(providerName string) {
|
||||||
|
SendMessage(Message{
|
||||||
|
Type: LoadedMessage,
|
||||||
|
Data: providerName,
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
10
core/log.go
@@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
bridge "core/dart-bridge"
|
|
||||||
"github.com/metacubex/mihomo/common/observable"
|
"github.com/metacubex/mihomo/common/observable"
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
)
|
)
|
||||||
@@ -18,11 +17,14 @@ func startLog() {
|
|||||||
logSubscriber = log.Subscribe()
|
logSubscriber = log.Subscribe()
|
||||||
go func() {
|
go func() {
|
||||||
for logData := range logSubscriber {
|
for logData := range logSubscriber {
|
||||||
message := &bridge.Message{
|
if logData.LogLevel < log.Level() {
|
||||||
Type: bridge.Log,
|
continue
|
||||||
|
}
|
||||||
|
message := &Message{
|
||||||
|
Type: LogMessage,
|
||||||
Data: logData,
|
Data: logData,
|
||||||
}
|
}
|
||||||
bridge.SendMessage(*message)
|
SendMessage(*message)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|||||||
77
core/message.go
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
bridge "core/dart-bridge"
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/metacubex/mihomo/constant"
|
||||||
|
)
|
||||||
|
|
||||||
|
var Port int64
|
||||||
|
var ServicePort int64
|
||||||
|
|
||||||
|
type MessageType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
LogMessage MessageType = "log"
|
||||||
|
ProtectMessage MessageType = "protect"
|
||||||
|
DelayMessage MessageType = "delay"
|
||||||
|
ProcessMessage MessageType = "process"
|
||||||
|
RequestMessage MessageType = "request"
|
||||||
|
StartedMessage MessageType = "started"
|
||||||
|
LoadedMessage MessageType = "loaded"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Delay struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Value int32 `json:"value"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Process struct {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
Metadata *constant.Metadata `json:"metadata"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Message struct {
|
||||||
|
Type MessageType `json:"type"`
|
||||||
|
Data interface{} `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (message *Message) Json() (string, error) {
|
||||||
|
data, err := json.Marshal(message)
|
||||||
|
return string(data), err
|
||||||
|
}
|
||||||
|
|
||||||
|
func SendMessage(message Message) {
|
||||||
|
s, err := message.Json()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if handler, ok := messageHandlers[message.Type]; ok {
|
||||||
|
handler(s)
|
||||||
|
} else {
|
||||||
|
sendToPort(s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var messageHandlers = map[MessageType]func(string) bool{
|
||||||
|
ProtectMessage: sendToServicePort,
|
||||||
|
ProcessMessage: sendToServicePort,
|
||||||
|
StartedMessage: conditionalSend,
|
||||||
|
LoadedMessage: conditionalSend,
|
||||||
|
}
|
||||||
|
|
||||||
|
func sendToPort(s string) bool {
|
||||||
|
return bridge.SendToPort(Port, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func sendToServicePort(s string) bool {
|
||||||
|
return bridge.SendToPort(ServicePort, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func conditionalSend(s string) bool {
|
||||||
|
isSuccess := sendToPort(s)
|
||||||
|
if !isSuccess {
|
||||||
|
return sendToServicePort(s)
|
||||||
|
}
|
||||||
|
return isSuccess
|
||||||
|
}
|
||||||
42
core/platform/limit.go
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
//go:build android
|
||||||
|
|
||||||
|
package platform
|
||||||
|
|
||||||
|
import "syscall"
|
||||||
|
|
||||||
|
var nullFd int
|
||||||
|
var maxFdCount int
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
fd, err := syscall.Open("/dev/null", syscall.O_WRONLY, 0644)
|
||||||
|
if err != nil {
|
||||||
|
panic(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
nullFd = fd
|
||||||
|
|
||||||
|
var limit syscall.Rlimit
|
||||||
|
|
||||||
|
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil {
|
||||||
|
maxFdCount = 1024
|
||||||
|
} else {
|
||||||
|
maxFdCount = int(limit.Cur)
|
||||||
|
}
|
||||||
|
|
||||||
|
maxFdCount = maxFdCount / 4 * 3
|
||||||
|
}
|
||||||
|
|
||||||
|
func ShouldBlockConnection() bool {
|
||||||
|
fd, err := syscall.Dup(nullFd)
|
||||||
|
if err != nil {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = syscall.Close(fd)
|
||||||
|
|
||||||
|
if fd > maxFdCount {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
@@ -1,3 +1,81 @@
|
|||||||
//go:build android
|
//go:build android
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"github.com/metacubex/mihomo/component/process"
|
||||||
|
"github.com/metacubex/mihomo/constant"
|
||||||
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ProcessMap struct {
|
||||||
|
m sync.Map
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cm *ProcessMap) Store(key int64, value string) {
|
||||||
|
cm.m.Store(key, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cm *ProcessMap) Load(key int64) (string, bool) {
|
||||||
|
value, ok := cm.m.Load(key)
|
||||||
|
if !ok || value == nil {
|
||||||
|
return "", false
|
||||||
|
}
|
||||||
|
return value.(string), true
|
||||||
|
}
|
||||||
|
|
||||||
|
var counter int64 = 0
|
||||||
|
|
||||||
|
var processMap ProcessMap
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
process.DefaultPackageNameResolver = func(metadata *constant.Metadata) (string, error) {
|
||||||
|
if metadata == nil {
|
||||||
|
return "", process.ErrInvalidNetwork
|
||||||
|
}
|
||||||
|
id := atomic.AddInt64(&counter, 1)
|
||||||
|
|
||||||
|
timeout := time.After(200 * time.Millisecond)
|
||||||
|
|
||||||
|
SendMessage(Message{
|
||||||
|
Type: ProcessMessage,
|
||||||
|
Data: Process{
|
||||||
|
Id: id,
|
||||||
|
Metadata: metadata,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-timeout:
|
||||||
|
return "", errors.New("package resolver timeout")
|
||||||
|
default:
|
||||||
|
value, exists := processMap.Load(id)
|
||||||
|
if exists {
|
||||||
|
return value, nil
|
||||||
|
}
|
||||||
|
time.Sleep(20 * time.Millisecond)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//export setProcessMap
|
||||||
|
func setProcessMap(s *C.char) {
|
||||||
|
if s == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
paramsString := C.GoString(s)
|
||||||
|
go func() {
|
||||||
|
var processMapItem = &ProcessMapItem{}
|
||||||
|
err := json.Unmarshal([]byte(paramsString), processMapItem)
|
||||||
|
if err == nil {
|
||||||
|
processMap.Store(processMapItem.Id, processMapItem.Value)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|||||||
43
core/status.go
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
//go:build android
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "C"
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
type AccessControl struct {
|
||||||
|
Mode string `json:"mode"`
|
||||||
|
AcceptList []string `json:"acceptList"`
|
||||||
|
RejectList []string `json:"rejectList"`
|
||||||
|
IsFilterSystemApp bool `json:"isFilterSystemApp"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AndroidProps struct {
|
||||||
|
AccessControl *AccessControl `json:"accessControl"`
|
||||||
|
AllowBypass bool `json:"allowBypass"`
|
||||||
|
SystemProxy bool `json:"systemProxy"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var androidProps AndroidProps
|
||||||
|
|
||||||
|
//export getAndroidProps
|
||||||
|
func getAndroidProps() *C.char {
|
||||||
|
data, err := json.Marshal(androidProps)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error:", err)
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(string(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
//export setAndroidProps
|
||||||
|
func setAndroidProps(s *C.char) {
|
||||||
|
paramsString := C.GoString(s)
|
||||||
|
err := json.Unmarshal([]byte(paramsString), &androidProps)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
176
core/tun.go
@@ -4,79 +4,157 @@ package main
|
|||||||
|
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
|
"core/platform"
|
||||||
t "core/tun"
|
t "core/tun"
|
||||||
|
"errors"
|
||||||
"github.com/metacubex/mihomo/component/dialer"
|
"github.com/metacubex/mihomo/component/dialer"
|
||||||
"github.com/metacubex/mihomo/log"
|
"github.com/metacubex/mihomo/log"
|
||||||
"golang.org/x/sync/semaphore"
|
"golang.org/x/sync/semaphore"
|
||||||
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var tunLock sync.Mutex
|
var tunLock sync.Mutex
|
||||||
var tun *t.Tun
|
var tun *t.Tun
|
||||||
|
var runTime *time.Time
|
||||||
|
|
||||||
//export startTUN
|
type FdMap struct {
|
||||||
func startTUN(fd C.int) bool {
|
m sync.Map
|
||||||
tunLock.Lock()
|
|
||||||
defer tunLock.Unlock()
|
|
||||||
|
|
||||||
if tun != nil {
|
|
||||||
tun.Close()
|
|
||||||
tun = nil
|
|
||||||
}
|
|
||||||
f := int(fd)
|
|
||||||
gateway := "172.16.0.1/30"
|
|
||||||
portal := "172.16.0.2"
|
|
||||||
dns := "0.0.0.0"
|
|
||||||
|
|
||||||
tempTun := &t.Tun{Closed: false, Limit: semaphore.NewWeighted(4)}
|
|
||||||
|
|
||||||
closer, err := t.Start(f, gateway, portal, dns)
|
|
||||||
|
|
||||||
applyConfig(true)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Errorln("startTUN error: %v", err)
|
|
||||||
tempTun.Close()
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
tempTun.Closer = closer
|
|
||||||
|
|
||||||
tun = tempTun
|
|
||||||
|
|
||||||
return true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//export updateMarkSocketPort
|
func (cm *FdMap) Store(key int64) {
|
||||||
func updateMarkSocketPort(markSocketPort C.longlong) bool {
|
cm.m.Store(key, struct{}{})
|
||||||
tunLock.Lock()
|
}
|
||||||
defer tunLock.Unlock()
|
|
||||||
//if tun != nil {
|
func (cm *FdMap) Load(key int64) bool {
|
||||||
// tun.MarkSocketPort = int64(markSocketPort)
|
_, ok := cm.m.Load(key)
|
||||||
//}
|
return ok
|
||||||
return true
|
}
|
||||||
|
|
||||||
|
var fdMap FdMap
|
||||||
|
|
||||||
|
//export startTUN
|
||||||
|
func startTUN(fd C.int, port C.longlong) {
|
||||||
|
i := int64(port)
|
||||||
|
ServicePort = i
|
||||||
|
go func() {
|
||||||
|
tunLock.Lock()
|
||||||
|
defer tunLock.Unlock()
|
||||||
|
|
||||||
|
if tun != nil {
|
||||||
|
tun.Close()
|
||||||
|
tun = nil
|
||||||
|
}
|
||||||
|
|
||||||
|
f := int(fd)
|
||||||
|
gateway := "172.16.0.1/30"
|
||||||
|
portal := "172.16.0.2"
|
||||||
|
dns := "0.0.0.0"
|
||||||
|
|
||||||
|
tempTun := &t.Tun{Closed: false, Limit: semaphore.NewWeighted(4)}
|
||||||
|
|
||||||
|
closer, err := t.Start(f, gateway, portal, dns)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Errorln("startTUN error: %v", err)
|
||||||
|
tempTun.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
tempTun.Closer = closer
|
||||||
|
|
||||||
|
tun = tempTun
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
|
||||||
|
runTime = &now
|
||||||
|
|
||||||
|
SendMessage(Message{
|
||||||
|
Type: StartedMessage,
|
||||||
|
Data: strconv.FormatInt(runTime.UnixMilli(), 10),
|
||||||
|
})
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
//export getRunTime
|
||||||
|
func getRunTime() *C.char {
|
||||||
|
if runTime == nil {
|
||||||
|
return C.CString("")
|
||||||
|
}
|
||||||
|
return C.CString(strconv.FormatInt(runTime.UnixMilli(), 10))
|
||||||
}
|
}
|
||||||
|
|
||||||
//export stopTun
|
//export stopTun
|
||||||
func stopTun() {
|
func stopTun() {
|
||||||
tunLock.Lock()
|
go func() {
|
||||||
defer tunLock.Unlock()
|
tunLock.Lock()
|
||||||
|
defer tunLock.Unlock()
|
||||||
|
|
||||||
if tun != nil {
|
runTime = nil
|
||||||
tun.Close()
|
|
||||||
applyConfig(true)
|
if tun != nil {
|
||||||
tun = nil
|
tun.Close()
|
||||||
}
|
tun = nil
|
||||||
|
}
|
||||||
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var errBlocked = errors.New("blocked")
|
||||||
|
|
||||||
|
//export setFdMap
|
||||||
|
func setFdMap(fd C.long) {
|
||||||
|
fdInt := int64(fd)
|
||||||
|
go func() {
|
||||||
|
fdMap.Store(fdInt)
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
type Fd struct {
|
||||||
|
Id int64 `json:"id"`
|
||||||
|
Value int64 `json:"value"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func markSocket(fd Fd) {
|
||||||
|
SendMessage(Message{
|
||||||
|
Type: ProtectMessage,
|
||||||
|
Data: fd,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
var fdCounter int64 = 0
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
dialer.DefaultSocketHook = func(network, address string, conn syscall.RawConn) error {
|
dialer.DefaultSocketHook = func(network, address string, conn syscall.RawConn) error {
|
||||||
|
if platform.ShouldBlockConnection() {
|
||||||
|
return errBlocked
|
||||||
|
}
|
||||||
return conn.Control(func(fd uintptr) {
|
return conn.Control(func(fd uintptr) {
|
||||||
if tun != nil {
|
if tun == nil {
|
||||||
tun.MarkSocket(int(fd))
|
return
|
||||||
time.Sleep(time.Millisecond * 100)
|
}
|
||||||
|
|
||||||
|
fdInt := int64(fd)
|
||||||
|
timeout := time.After(100 * time.Millisecond)
|
||||||
|
id := atomic.AddInt64(&fdCounter, 1)
|
||||||
|
|
||||||
|
markSocket(Fd{
|
||||||
|
Id: id,
|
||||||
|
Value: fdInt,
|
||||||
|
})
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-timeout:
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
exists := fdMap.Load(id)
|
||||||
|
if exists {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
time.Sleep(10 * time.Millisecond)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ package tun
|
|||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
bridge "core/dart-bridge"
|
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"github.com/Kr328/tun2socket"
|
"github.com/Kr328/tun2socket"
|
||||||
"github.com/Kr328/tun2socket/nat"
|
"github.com/Kr328/tun2socket/nat"
|
||||||
@@ -19,7 +18,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -186,19 +184,3 @@ func Start(fd int, gateway, portal, dns string) (io.Closer, error) {
|
|||||||
|
|
||||||
return stack, nil
|
return stack, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Tun) MarkSocket(fd int) {
|
|
||||||
_ = t.Limit.Acquire(context.Background(), 1)
|
|
||||||
defer t.Limit.Release(1)
|
|
||||||
|
|
||||||
if t.Closed {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
message := &bridge.Message{
|
|
||||||
Type: bridge.Tun,
|
|
||||||
Data: strconv.Itoa(fd),
|
|
||||||
}
|
|
||||||
|
|
||||||
bridge.SendMessage(*message)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -82,8 +82,11 @@ class ApplicationState extends State<Application> {
|
|||||||
super.initState();
|
super.initState();
|
||||||
globalState.appController = AppController(context);
|
globalState.appController = AppController(context);
|
||||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
|
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
|
||||||
globalState.appController.updateViewWidth();
|
final currentContext = globalState.navigatorKey.currentContext;
|
||||||
globalState.appController.afterInit();
|
if (currentContext != null) {
|
||||||
|
globalState.appController = AppController(currentContext);
|
||||||
|
}
|
||||||
|
await globalState.appController.init();
|
||||||
globalState.appController.initLink();
|
globalState.appController.initLink();
|
||||||
_updateGroups();
|
_updateGroups();
|
||||||
});
|
});
|
||||||
@@ -112,7 +115,6 @@ class ApplicationState extends State<Application> {
|
|||||||
lightColorScheme: lightDynamic,
|
lightColorScheme: lightDynamic,
|
||||||
darkColorScheme: darkDynamic,
|
darkColorScheme: darkDynamic,
|
||||||
);
|
);
|
||||||
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
globalState.appController.updateSystemColorSchemes(systemColorSchemes);
|
globalState.appController.updateSystemColorSchemes(systemColorSchemes);
|
||||||
});
|
});
|
||||||
@@ -127,7 +129,6 @@ class ApplicationState extends State<Application> {
|
|||||||
httpTimeoutDuration,
|
httpTimeoutDuration,
|
||||||
(timer) async {
|
(timer) async {
|
||||||
await globalState.appController.updateGroups();
|
await globalState.appController.updateGroups();
|
||||||
globalState.appController.appState.sortNum++;
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -136,55 +137,59 @@ class ApplicationState extends State<Application> {
|
|||||||
Widget build(context) {
|
Widget build(context) {
|
||||||
return AppStateContainer(
|
return AppStateContainer(
|
||||||
child: ClashMessageContainer(
|
child: ClashMessageContainer(
|
||||||
child: _buildApp(
|
child: Selector2<AppState, Config, ApplicationSelectorState>(
|
||||||
Selector2<AppState, Config, ApplicationSelectorState>(
|
selector: (_, appState, config) => ApplicationSelectorState(
|
||||||
selector: (_, appState, config) => ApplicationSelectorState(
|
locale: config.locale,
|
||||||
locale: config.locale,
|
themeMode: config.themeMode,
|
||||||
themeMode: config.themeMode,
|
primaryColor: config.primaryColor,
|
||||||
primaryColor: config.primaryColor,
|
|
||||||
),
|
|
||||||
builder: (_, state, child) {
|
|
||||||
return DynamicColorBuilder(
|
|
||||||
builder: (lightDynamic, darkDynamic) {
|
|
||||||
_updateSystemColorSchemes(lightDynamic, darkDynamic);
|
|
||||||
return MaterialApp(
|
|
||||||
navigatorKey: globalState.navigatorKey,
|
|
||||||
localizationsDelegates: const [
|
|
||||||
AppLocalizations.delegate,
|
|
||||||
GlobalMaterialLocalizations.delegate,
|
|
||||||
GlobalCupertinoLocalizations.delegate,
|
|
||||||
GlobalWidgetsLocalizations.delegate
|
|
||||||
],
|
|
||||||
title: appName,
|
|
||||||
locale: other.getLocaleForString(state.locale),
|
|
||||||
supportedLocales:
|
|
||||||
AppLocalizations.delegate.supportedLocales,
|
|
||||||
themeMode: state.themeMode,
|
|
||||||
theme: ThemeData(
|
|
||||||
pageTransitionsTheme: _pageTransitionsTheme,
|
|
||||||
useMaterial3: true,
|
|
||||||
colorScheme: _getAppColorScheme(
|
|
||||||
brightness: Brightness.light,
|
|
||||||
systemColorSchemes: systemColorSchemes,
|
|
||||||
primaryColor: state.primaryColor,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
darkTheme: ThemeData(
|
|
||||||
useMaterial3: true,
|
|
||||||
pageTransitionsTheme: _pageTransitionsTheme,
|
|
||||||
colorScheme: _getAppColorScheme(
|
|
||||||
brightness: Brightness.dark,
|
|
||||||
systemColorSchemes: systemColorSchemes,
|
|
||||||
primaryColor: state.primaryColor,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
home: child,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
child: const HomePage(),
|
|
||||||
),
|
),
|
||||||
|
builder: (_, state, child) {
|
||||||
|
return DynamicColorBuilder(
|
||||||
|
builder: (lightDynamic, darkDynamic) {
|
||||||
|
_updateSystemColorSchemes(lightDynamic, darkDynamic);
|
||||||
|
return MaterialApp(
|
||||||
|
debugShowCheckedModeBanner: false,
|
||||||
|
navigatorKey: globalState.navigatorKey,
|
||||||
|
localizationsDelegates: const [
|
||||||
|
AppLocalizations.delegate,
|
||||||
|
GlobalMaterialLocalizations.delegate,
|
||||||
|
GlobalCupertinoLocalizations.delegate,
|
||||||
|
GlobalWidgetsLocalizations.delegate
|
||||||
|
],
|
||||||
|
builder: (_, child) {
|
||||||
|
return PopContainer(
|
||||||
|
child: _buildApp(child!),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
scrollBehavior: BaseScrollBehavior(),
|
||||||
|
title: appName,
|
||||||
|
locale: other.getLocaleForString(state.locale),
|
||||||
|
supportedLocales: AppLocalizations.delegate.supportedLocales,
|
||||||
|
themeMode: state.themeMode,
|
||||||
|
theme: ThemeData(
|
||||||
|
useMaterial3: true,
|
||||||
|
pageTransitionsTheme: _pageTransitionsTheme,
|
||||||
|
colorScheme: _getAppColorScheme(
|
||||||
|
brightness: Brightness.light,
|
||||||
|
systemColorSchemes: systemColorSchemes,
|
||||||
|
primaryColor: state.primaryColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
darkTheme: ThemeData(
|
||||||
|
useMaterial3: true,
|
||||||
|
pageTransitionsTheme: _pageTransitionsTheme,
|
||||||
|
colorScheme: _getAppColorScheme(
|
||||||
|
brightness: Brightness.dark,
|
||||||
|
systemColorSchemes: systemColorSchemes,
|
||||||
|
primaryColor: state.primaryColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
home: child,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
child: const HomePage(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import 'dart:io';
|
|||||||
import 'dart:isolate';
|
import 'dart:isolate';
|
||||||
|
|
||||||
import 'package:ffi/ffi.dart';
|
import 'package:ffi/ffi.dart';
|
||||||
import '../enum/enum.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import '../models/models.dart';
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import '../common/common.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
import 'generated/clash_ffi.dart';
|
import 'generated/clash_ffi.dart';
|
||||||
|
|
||||||
class ClashCore {
|
class ClashCore {
|
||||||
@@ -35,7 +35,6 @@ class ClashCore {
|
|||||||
clashFFI = ClashFFI(lib);
|
clashFFI = ClashFFI(lib);
|
||||||
clashFFI.initNativeApiBridge(
|
clashFFI.initNativeApiBridge(
|
||||||
NativeApi.initializeApiDLData,
|
NativeApi.initializeApiDLData,
|
||||||
receiver.sendPort.nativePort,
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,10 +44,10 @@ class ClashCore {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool init(String homeDir) {
|
bool init(String homeDir) {
|
||||||
return clashFFI.initClash(
|
final homeDirChar = homeDir.toNativeUtf8().cast<Char>();
|
||||||
homeDir.toNativeUtf8().cast(),
|
final isInit = clashFFI.initClash(homeDirChar) == 1;
|
||||||
) ==
|
malloc.free(homeDirChar);
|
||||||
1;
|
return isInit;
|
||||||
}
|
}
|
||||||
|
|
||||||
shutdown() {
|
shutdown() {
|
||||||
@@ -58,11 +57,22 @@ class ClashCore {
|
|||||||
|
|
||||||
bool get isInit => clashFFI.getIsInit() == 1;
|
bool get isInit => clashFFI.getIsInit() == 1;
|
||||||
|
|
||||||
bool validateConfig(String data) {
|
Future<String> validateConfig(String data) {
|
||||||
return clashFFI.validateConfig(
|
final completer = Completer<String>();
|
||||||
data.toNativeUtf8().cast(),
|
final receiver = ReceivePort();
|
||||||
) ==
|
receiver.listen((message) {
|
||||||
1;
|
if (!completer.isCompleted) {
|
||||||
|
completer.complete(message);
|
||||||
|
receiver.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
final dataChar = data.toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.validateConfig(
|
||||||
|
dataChar,
|
||||||
|
receiver.sendPort.nativePort,
|
||||||
|
);
|
||||||
|
malloc.free(dataChar);
|
||||||
|
return completer.future;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String> updateConfig(UpdateConfigParams updateConfigParams) {
|
Future<String> updateConfig(UpdateConfigParams updateConfigParams) {
|
||||||
@@ -75,23 +85,51 @@ class ClashCore {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
final params = json.encode(updateConfigParams);
|
final params = json.encode(updateConfigParams);
|
||||||
|
final paramsChar = params.toNativeUtf8().cast<Char>();
|
||||||
clashFFI.updateConfig(
|
clashFFI.updateConfig(
|
||||||
params.toNativeUtf8().cast(),
|
paramsChar,
|
||||||
receiver.sendPort.nativePort,
|
receiver.sendPort.nativePort,
|
||||||
);
|
);
|
||||||
|
malloc.free(paramsChar);
|
||||||
return completer.future;
|
return completer.future;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initMessage() {
|
||||||
|
clashFFI.initMessage(
|
||||||
|
receiver.sendPort.nativePort,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
setProfileName(String profileName) {
|
||||||
|
final profileNameChar = profileName.toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.setCurrentProfileName(
|
||||||
|
profileNameChar,
|
||||||
|
);
|
||||||
|
malloc.free(profileNameChar);
|
||||||
|
}
|
||||||
|
|
||||||
|
getProfileName() {
|
||||||
|
final currentProfileNameRaw = clashFFI.getCurrentProfileName();
|
||||||
|
final currentProfileName =
|
||||||
|
currentProfileNameRaw.cast<Utf8>().toDartString();
|
||||||
|
clashFFI.freeCString(currentProfileNameRaw);
|
||||||
|
return currentProfileName;
|
||||||
|
}
|
||||||
|
|
||||||
Future<List<Group>> getProxiesGroups() {
|
Future<List<Group>> getProxiesGroups() {
|
||||||
final proxiesRaw = clashFFI.getProxies();
|
final proxiesRaw = clashFFI.getProxies();
|
||||||
final proxiesRawString = proxiesRaw.cast<Utf8>().toDartString();
|
final proxiesRawString = proxiesRaw.cast<Utf8>().toDartString();
|
||||||
|
clashFFI.freeCString(proxiesRaw);
|
||||||
return Isolate.run<List<Group>>(() {
|
return Isolate.run<List<Group>>(() {
|
||||||
final proxies = json.decode(proxiesRawString);
|
if (proxiesRawString.isEmpty) return [];
|
||||||
|
final proxies = (json.decode(proxiesRawString) ?? {}) as Map;
|
||||||
|
if (proxies.isEmpty) return [];
|
||||||
final groupNames = [
|
final groupNames = [
|
||||||
UsedProxy.GLOBAL.name,
|
UsedProxy.GLOBAL.name,
|
||||||
...(proxies[UsedProxy.GLOBAL.name]["all"] as List).where((e) {
|
...(proxies[UsedProxy.GLOBAL.name]["all"] as List).where((e) {
|
||||||
final proxy = proxies[e];
|
final proxy = proxies[e] ?? {};
|
||||||
return GroupTypeExtension.valueList.contains(proxy['type']);
|
return GroupTypeExtension.valueList.contains(proxy['type']) &&
|
||||||
|
proxy['hidden'] != true;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
final groupsRaw = groupNames.map((groupName) {
|
final groupsRaw = groupNames.map((groupName) {
|
||||||
@@ -100,6 +138,7 @@ class ClashCore {
|
|||||||
.map(
|
.map(
|
||||||
(name) => proxies[name],
|
(name) => proxies[name],
|
||||||
)
|
)
|
||||||
|
.where((proxy) => proxy != null)
|
||||||
.toList();
|
.toList();
|
||||||
return group;
|
return group;
|
||||||
}).toList();
|
}).toList();
|
||||||
@@ -107,65 +146,130 @@ class ClashCore {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<DelayMap> getDelayMap() {
|
Future<List<ExternalProvider>> getExternalProviders() {
|
||||||
final proxiesRaw = clashFFI.getProxies();
|
final externalProvidersRaw = clashFFI.getExternalProviders();
|
||||||
final proxiesRawString = proxiesRaw.cast<Utf8>().toDartString();
|
final externalProvidersRawString =
|
||||||
return Isolate.run<DelayMap>(() {
|
externalProvidersRaw.cast<Utf8>().toDartString();
|
||||||
final proxies = json.decode(proxiesRawString) as Map<String, dynamic>;
|
clashFFI.freeCString(externalProvidersRaw);
|
||||||
return proxies.map<String, int?>(
|
return Isolate.run<List<ExternalProvider>>(() {
|
||||||
(k, v) {
|
final externalProviders =
|
||||||
final history = v["history"] as List<dynamic>;
|
(json.decode(externalProvidersRawString) as List<dynamic>)
|
||||||
if (history.isEmpty) {
|
.map(
|
||||||
return MapEntry(
|
(item) => ExternalProvider.fromJson(item),
|
||||||
k,
|
)
|
||||||
null,
|
.toList();
|
||||||
);
|
return externalProviders;
|
||||||
} else {
|
|
||||||
final delay = history.last["delay"];
|
|
||||||
return MapEntry(
|
|
||||||
k,
|
|
||||||
delay != 0 ? delay : -1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
bool changeProxy(ChangeProxyParams changeProxyParams) {
|
Future<String> updateExternalProvider({
|
||||||
final params = json.encode(changeProxyParams);
|
required String providerName,
|
||||||
return clashFFI.changeProxy(params.toNativeUtf8().cast()) == 1;
|
required String providerType,
|
||||||
|
}) {
|
||||||
|
final completer = Completer<String>();
|
||||||
|
final receiver = ReceivePort();
|
||||||
|
receiver.listen((message) {
|
||||||
|
if (!completer.isCompleted) {
|
||||||
|
completer.complete(message);
|
||||||
|
receiver.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
final providerNameChar = providerName.toNativeUtf8().cast<Char>();
|
||||||
|
final providerTypeChar = providerType.toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.updateExternalProvider(
|
||||||
|
providerNameChar,
|
||||||
|
providerTypeChar,
|
||||||
|
receiver.sendPort.nativePort,
|
||||||
|
);
|
||||||
|
malloc.free(providerNameChar);
|
||||||
|
malloc.free(providerTypeChar);
|
||||||
|
return completer.future;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool delay(String proxyName) {
|
changeProxy(ChangeProxyParams changeProxyParams) {
|
||||||
|
final params = json.encode(changeProxyParams);
|
||||||
|
final paramsChar = params.toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.changeProxy(paramsChar);
|
||||||
|
malloc.free(paramsChar);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Delay> getDelay(String proxyName) {
|
||||||
final delayParams = {
|
final delayParams = {
|
||||||
"proxy-name": proxyName,
|
"proxy-name": proxyName,
|
||||||
"timeout": httpTimeoutDuration.inMilliseconds,
|
"timeout": httpTimeoutDuration.inMilliseconds,
|
||||||
};
|
};
|
||||||
clashFFI.asyncTestDelay(json.encode(delayParams).toNativeUtf8().cast());
|
final completer = Completer<Delay>();
|
||||||
return true;
|
final receiver = ReceivePort();
|
||||||
|
receiver.listen((message) {
|
||||||
|
if (!completer.isCompleted) {
|
||||||
|
completer.complete(Delay.fromJson(json.decode(message)));
|
||||||
|
receiver.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
final delayParamsChar =
|
||||||
|
json.encode(delayParams).toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.asyncTestDelay(
|
||||||
|
delayParamsChar,
|
||||||
|
receiver.sendPort.nativePort,
|
||||||
|
);
|
||||||
|
malloc.free(delayParamsChar);
|
||||||
|
Future.delayed(httpTimeoutDuration + moreDuration, () {
|
||||||
|
receiver.close();
|
||||||
|
if (!completer.isCompleted) {
|
||||||
|
completer.complete(
|
||||||
|
Delay(name: proxyName, value: -1),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return completer.future;
|
||||||
}
|
}
|
||||||
|
|
||||||
clearEffect(String path) {
|
clearEffect(String path) {
|
||||||
clashFFI.clearEffect(path.toNativeUtf8().cast());
|
final pathChar = path.toNativeUtf8().cast<Char>();
|
||||||
}
|
clashFFI.clearEffect(pathChar);
|
||||||
|
malloc.free(pathChar);
|
||||||
healthcheck() {
|
|
||||||
clashFFI.healthcheck();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VersionInfo getVersionInfo() {
|
VersionInfo getVersionInfo() {
|
||||||
final versionInfoRaw = clashFFI.getVersionInfo();
|
final versionInfoRaw = clashFFI.getVersionInfo();
|
||||||
final versionInfo = json.decode(versionInfoRaw.cast<Utf8>().toDartString());
|
final versionInfo = json.decode(versionInfoRaw.cast<Utf8>().toDartString());
|
||||||
|
clashFFI.freeCString(versionInfoRaw);
|
||||||
return VersionInfo.fromJson(versionInfo);
|
return VersionInfo.fromJson(versionInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setProps(Props props) {
|
||||||
|
final propsChar = json.encode(props).toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.setAndroidProps(propsChar);
|
||||||
|
malloc.free(propsChar);
|
||||||
|
}
|
||||||
|
|
||||||
|
Props getProps() {
|
||||||
|
final androidPropsRaw = clashFFI.getAndroidProps();
|
||||||
|
final androidProps = json.decode(
|
||||||
|
androidPropsRaw.cast<Utf8>().toDartString(),
|
||||||
|
);
|
||||||
|
clashFFI.freeCString(androidPropsRaw);
|
||||||
|
return Props.fromJson(androidProps);
|
||||||
|
}
|
||||||
|
|
||||||
Traffic getTraffic() {
|
Traffic getTraffic() {
|
||||||
final trafficRaw = clashFFI.getTraffic();
|
final trafficRaw = clashFFI.getTraffic();
|
||||||
final trafficMap = json.decode(trafficRaw.cast<Utf8>().toDartString());
|
final trafficMap = json.decode(trafficRaw.cast<Utf8>().toDartString());
|
||||||
|
clashFFI.freeCString(trafficRaw);
|
||||||
return Traffic.fromMap(trafficMap);
|
return Traffic.fromMap(trafficMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Traffic getTotalTraffic() {
|
||||||
|
final trafficRaw = clashFFI.getTotalTraffic();
|
||||||
|
final trafficMap = json.decode(trafficRaw.cast<Utf8>().toDartString());
|
||||||
|
clashFFI.freeCString(trafficRaw);
|
||||||
|
return Traffic.fromMap(trafficMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
void resetTraffic() {
|
||||||
|
clashFFI.resetTraffic();
|
||||||
|
}
|
||||||
|
|
||||||
void startLog() {
|
void startLog() {
|
||||||
clashFFI.startLog();
|
clashFFI.startLog();
|
||||||
}
|
}
|
||||||
@@ -174,21 +278,52 @@ class ClashCore {
|
|||||||
clashFFI.stopLog();
|
clashFFI.stopLog();
|
||||||
}
|
}
|
||||||
|
|
||||||
startTun(int fd) {
|
startTun(int fd, int port) {
|
||||||
clashFFI.startTUN(fd);
|
if (!Platform.isAndroid) return;
|
||||||
|
clashFFI.startTUN(fd, port);
|
||||||
|
}
|
||||||
|
|
||||||
|
requestGc() {
|
||||||
|
clashFFI.forceGc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void stopTun() {
|
void stopTun() {
|
||||||
clashFFI.stopTun();
|
clashFFI.stopTun();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setProcessMap(ProcessMapItem processMapItem) {
|
||||||
|
final processMapItemChar =
|
||||||
|
json.encode(processMapItem).toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.setProcessMap(processMapItemChar);
|
||||||
|
malloc.free(processMapItemChar);
|
||||||
|
}
|
||||||
|
|
||||||
|
void setFdMap(int fd) {
|
||||||
|
clashFFI.setFdMap(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
DateTime? getRunTime() {
|
||||||
|
final runTimeRaw = clashFFI.getRunTime();
|
||||||
|
final runTimeString = runTimeRaw.cast<Utf8>().toDartString();
|
||||||
|
clashFFI.freeCString(runTimeRaw);
|
||||||
|
if (runTimeString.isEmpty) return null;
|
||||||
|
return DateTime.fromMillisecondsSinceEpoch(int.parse(runTimeString));
|
||||||
|
}
|
||||||
|
|
||||||
List<Connection> getConnections() {
|
List<Connection> getConnections() {
|
||||||
final connectionsDataRaw = clashFFI.getConnections();
|
final connectionsDataRaw = clashFFI.getConnections();
|
||||||
final connectionsData =
|
final connectionsData =
|
||||||
json.decode(connectionsDataRaw.cast<Utf8>().toDartString()) as Map;
|
json.decode(connectionsDataRaw.cast<Utf8>().toDartString()) as Map;
|
||||||
|
clashFFI.freeCString(connectionsDataRaw);
|
||||||
final connectionsRaw = connectionsData['connections'] as List? ?? [];
|
final connectionsRaw = connectionsData['connections'] as List? ?? [];
|
||||||
return connectionsRaw.map((e) => Connection.fromJson(e)).toList();
|
return connectionsRaw.map((e) => Connection.fromJson(e)).toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
closeConnections(String id) {
|
||||||
|
final idChar = id.toNativeUtf8().cast<Char>();
|
||||||
|
clashFFI.closeConnection(idChar);
|
||||||
|
malloc.free(idChar);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final clashCore = ClashCore();
|
final clashCore = ClashCore();
|
||||||
|
|||||||
@@ -7,18 +7,6 @@ import 'package:flutter/foundation.dart';
|
|||||||
|
|
||||||
import 'core.dart';
|
import 'core.dart';
|
||||||
|
|
||||||
abstract mixin class ClashMessageListener {
|
|
||||||
void onLog(Log log) {}
|
|
||||||
|
|
||||||
void onTun(String fd) {}
|
|
||||||
|
|
||||||
void onDelay(Delay delay) {}
|
|
||||||
|
|
||||||
void onProcess(Metadata metadata) {}
|
|
||||||
|
|
||||||
void onNow(Now now) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ClashMessage {
|
class ClashMessage {
|
||||||
StreamSubscription? subscription;
|
StreamSubscription? subscription;
|
||||||
|
|
||||||
@@ -28,23 +16,23 @@ class ClashMessage {
|
|||||||
subscription = null;
|
subscription = null;
|
||||||
}
|
}
|
||||||
subscription = ClashCore.receiver.listen((message) {
|
subscription = ClashCore.receiver.listen((message) {
|
||||||
final m = Message.fromJson(json.decode(message));
|
final m = AppMessage.fromJson(json.decode(message));
|
||||||
for (final ClashMessageListener listener in _listeners) {
|
for (final AppMessageListener listener in _listeners) {
|
||||||
switch (m.type) {
|
switch (m.type) {
|
||||||
case MessageType.log:
|
case AppMessageType.log:
|
||||||
listener.onLog(Log.fromJson(m.data));
|
listener.onLog(Log.fromJson(m.data));
|
||||||
break;
|
break;
|
||||||
case MessageType.tun:
|
case AppMessageType.delay:
|
||||||
listener.onTun(m.data);
|
|
||||||
break;
|
|
||||||
case MessageType.delay:
|
|
||||||
listener.onDelay(Delay.fromJson(m.data));
|
listener.onDelay(Delay.fromJson(m.data));
|
||||||
break;
|
break;
|
||||||
case MessageType.process:
|
case AppMessageType.request:
|
||||||
listener.onProcess(Metadata.fromJson(m.data));
|
listener.onRequest(Connection.fromJson(m.data));
|
||||||
break;
|
break;
|
||||||
case MessageType.now:
|
case AppMessageType.started:
|
||||||
listener.onNow(Now.fromJson(m.data));
|
listener.onStarted(m.data);
|
||||||
|
break;
|
||||||
|
case AppMessageType.loaded:
|
||||||
|
listener.onLoaded(m.data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -53,18 +41,18 @@ class ClashMessage {
|
|||||||
|
|
||||||
static final ClashMessage instance = ClashMessage._();
|
static final ClashMessage instance = ClashMessage._();
|
||||||
|
|
||||||
final ObserverList<ClashMessageListener> _listeners =
|
final ObserverList<AppMessageListener> _listeners =
|
||||||
ObserverList<ClashMessageListener>();
|
ObserverList<AppMessageListener>();
|
||||||
|
|
||||||
bool get hasListeners {
|
bool get hasListeners {
|
||||||
return _listeners.isNotEmpty;
|
return _listeners.isNotEmpty;
|
||||||
}
|
}
|
||||||
|
|
||||||
void addListener(ClashMessageListener listener) {
|
void addListener(AppMessageListener listener) {
|
||||||
_listeners.add(listener);
|
_listeners.add(listener);
|
||||||
}
|
}
|
||||||
|
|
||||||
void removeListener(ClashMessageListener listener) {
|
void removeListener(AppMessageListener listener) {
|
||||||
_listeners.remove(listener);
|
_listeners.remove(listener);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,24 +1,42 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:path/path.dart';
|
||||||
|
|
||||||
import 'core.dart';
|
import 'core.dart';
|
||||||
|
|
||||||
class ClashService {
|
class ClashService {
|
||||||
Future<bool> initMmdb() async {
|
Future<void> initGeo() async {
|
||||||
final mmdbPath = await appPath.getMMDBPath();
|
final homePath = await appPath.getHomeDirPath();
|
||||||
var mmdbFile = File(mmdbPath);
|
final homeDir = Directory(homePath);
|
||||||
final isExists = await mmdbFile.exists();
|
final isExists = await homeDir.exists();
|
||||||
if (isExists) return true;
|
if (!isExists) {
|
||||||
|
await homeDir.create(recursive: true);
|
||||||
|
}
|
||||||
|
const geoFileNameList = [
|
||||||
|
mmdbFileName,
|
||||||
|
geoIpFileName,
|
||||||
|
geoSiteFileName,
|
||||||
|
asnFileName,
|
||||||
|
];
|
||||||
try {
|
try {
|
||||||
mmdbFile = await mmdbFile.create(recursive: true);
|
for (final geoFileName in geoFileNameList) {
|
||||||
ByteData data = await rootBundle.load('assets/data/geoip.metadb');
|
final geoFile = File(
|
||||||
List<int> bytes = data.buffer.asUint8List();
|
join(homePath, geoFileName),
|
||||||
await mmdbFile.writeAsBytes(bytes, flush: true);
|
);
|
||||||
return true;
|
final isExists = await geoFile.exists();
|
||||||
} catch (_) {
|
if (isExists) {
|
||||||
return false;
|
continue;
|
||||||
|
}
|
||||||
|
final data = await rootBundle.load('assets/data/$geoFileName');
|
||||||
|
List<int> bytes = data.buffer.asUint8List();
|
||||||
|
await geoFile.writeAsBytes(bytes, flush: true);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint("$e");
|
||||||
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -26,8 +44,7 @@ class ClashService {
|
|||||||
required ClashConfig clashConfig,
|
required ClashConfig clashConfig,
|
||||||
required Config config,
|
required Config config,
|
||||||
}) async {
|
}) async {
|
||||||
final isInitMmdb = await initMmdb();
|
await initGeo();
|
||||||
if (!isInitMmdb) return false;
|
|
||||||
final homeDirPath = await appPath.getHomeDirPath();
|
final homeDirPath = await appPath.getHomeDirPath();
|
||||||
final isInit = clashCore.init(homeDirPath);
|
final isInit = clashCore.init(homeDirPath);
|
||||||
return isInit;
|
return isInit;
|
||||||
|
|||||||
@@ -1,14 +1,10 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:fl_clash/clash/clash.dart';
|
|
||||||
import 'package:fl_clash/plugins/app.dart';
|
import 'package:fl_clash/plugins/app.dart';
|
||||||
|
|
||||||
class Android {
|
class Android {
|
||||||
init() async {
|
init() async {
|
||||||
app?.onExit = () {
|
app?.onExit = () {};
|
||||||
clashCore.shutdown();
|
|
||||||
exit(0);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -22,4 +22,7 @@ export 'string.dart';
|
|||||||
export 'app_localizations.dart';
|
export 'app_localizations.dart';
|
||||||
export 'function.dart';
|
export 'function.dart';
|
||||||
export 'package.dart';
|
export 'package.dart';
|
||||||
export 'measure.dart';
|
export 'measure.dart';
|
||||||
|
export 'service.dart';
|
||||||
|
export 'iterable.dart';
|
||||||
|
export 'scroll.dart';
|
||||||
@@ -1,14 +1,33 @@
|
|||||||
|
import 'dart:io';
|
||||||
import 'dart:ui';
|
import 'dart:ui';
|
||||||
|
|
||||||
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
|
import 'package:fl_clash/models/clash_config.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'system.dart';
|
||||||
|
|
||||||
const appName = "FlClash";
|
const appName = "FlClash";
|
||||||
const coreName = "clash.meta";
|
const coreName = "clash.meta";
|
||||||
const packageName = "FlClash";
|
const packageName = "FlClash";
|
||||||
const httpTimeoutDuration = Duration(milliseconds: 5000);
|
const httpTimeoutDuration = Duration(milliseconds: 5000);
|
||||||
const moreDuration = Duration(milliseconds: 100);
|
const moreDuration = Duration(milliseconds: 100);
|
||||||
|
const animateDuration = Duration(milliseconds: 100);
|
||||||
const defaultUpdateDuration = Duration(days: 1);
|
const defaultUpdateDuration = Duration(days: 1);
|
||||||
const mmdbFileName = "geoip.metadb";
|
const mmdbFileName = "geoip.metadb";
|
||||||
|
const asnFileName = "ASN.mmdb";
|
||||||
|
const geoIpFileName = "GeoIP.dat";
|
||||||
|
const geoSiteFileName = "GeoSite.dat";
|
||||||
|
final double kHeaderHeight = system.isDesktop ? (Platform.isMacOS ? 28 : 40) : 0;
|
||||||
|
const GeoXMap defaultGeoXMap = {
|
||||||
|
"mmdb":
|
||||||
|
"https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/geoip.metadb",
|
||||||
|
"asn":
|
||||||
|
"https://github.com/xishang0128/geoip/releases/download/latest/GeoLite2-ASN.mmdb",
|
||||||
|
"geoip":
|
||||||
|
"https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/GeoIP.dat",
|
||||||
|
"geosite":
|
||||||
|
"https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/geosite.dat"
|
||||||
|
};
|
||||||
const profilesDirectoryName = "profiles";
|
const profilesDirectoryName = "profiles";
|
||||||
const localhost = "127.0.0.1";
|
const localhost = "127.0.0.1";
|
||||||
const clashConfigKey = "clash_config";
|
const clashConfigKey = "clash_config";
|
||||||
@@ -16,12 +35,22 @@ const configKey = "config";
|
|||||||
const listItemPadding = EdgeInsets.symmetric(horizontal: 16);
|
const listItemPadding = EdgeInsets.symmetric(horizontal: 16);
|
||||||
const double dialogCommonWidth = 300;
|
const double dialogCommonWidth = 300;
|
||||||
const repository = "chen08209/FlClash";
|
const repository = "chen08209/FlClash";
|
||||||
|
const defaultExternalController = "127.0.0.1:9090";
|
||||||
const maxMobileWidth = 600;
|
const maxMobileWidth = 600;
|
||||||
const maxLaptopWidth = 840;
|
const maxLaptopWidth = 840;
|
||||||
|
const geodataLoaderMemconservative = "memconservative";
|
||||||
|
const geodataLoaderStandard = "standard";
|
||||||
|
const defaultTestUrl = "https://www.gstatic.com/generate_204";
|
||||||
final filter = ImageFilter.blur(
|
final filter = ImageFilter.blur(
|
||||||
sigmaX: 5,
|
sigmaX: 5,
|
||||||
sigmaY: 5,
|
sigmaY: 5,
|
||||||
tileMode: TileMode.mirror,
|
tileMode: TileMode.mirror,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const viewModeColumnsMap = {
|
||||||
|
ViewMode.mobile: [2, 1],
|
||||||
|
ViewMode.laptop: [3, 2],
|
||||||
|
ViewMode.desktop: [4, 3],
|
||||||
|
};
|
||||||
|
|
||||||
const defaultPrimaryColor = Colors.brown;
|
const defaultPrimaryColor = Colors.brown;
|
||||||
|
|||||||
@@ -7,8 +7,12 @@ extension BuildContextExtension on BuildContext {
|
|||||||
return findAncestorStateOfType<CommonScaffoldState>();
|
return findAncestorStateOfType<CommonScaffoldState>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Size get appSize{
|
||||||
|
return MediaQuery.of(this).size;
|
||||||
|
}
|
||||||
|
|
||||||
double get width {
|
double get width {
|
||||||
return MediaQuery.of(this).size.width;
|
return appSize.width;
|
||||||
}
|
}
|
||||||
|
|
||||||
ColorScheme get colorScheme => Theme.of(this).colorScheme;
|
ColorScheme get colorScheme => Theme.of(this).colorScheme;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
|
import 'package:fl_clash/common/app_localizations.dart';
|
||||||
|
|
||||||
extension DateTimeExtension on DateTime {
|
extension DateTimeExtension on DateTime {
|
||||||
bool isBeforeNow() {
|
bool get isBeforeNow {
|
||||||
return isBefore(DateTime.now());
|
return isBefore(DateTime.now());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -9,4 +11,32 @@ extension DateTimeExtension on DateTime {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
String get lastUpdateTimeDesc {
|
||||||
|
final currentDateTime = DateTime.now();
|
||||||
|
final difference = currentDateTime.difference(this);
|
||||||
|
final days = difference.inDays;
|
||||||
|
if (days >= 365) {
|
||||||
|
return "${(days / 365).floor()} ${appLocalizations.years}${appLocalizations.ago}";
|
||||||
|
}
|
||||||
|
if (days >= 30) {
|
||||||
|
return "${(days / 30).floor()} ${appLocalizations.months}${appLocalizations.ago}";
|
||||||
|
}
|
||||||
|
if (days >= 1) {
|
||||||
|
return "$days ${appLocalizations.days}${appLocalizations.ago}";
|
||||||
|
}
|
||||||
|
final hours = difference.inHours;
|
||||||
|
if (hours >= 1) {
|
||||||
|
return "$hours ${appLocalizations.hours}${appLocalizations.ago}";
|
||||||
|
}
|
||||||
|
final minutes = difference.inMinutes;
|
||||||
|
if (minutes >= 1) {
|
||||||
|
return "$minutes ${appLocalizations.minutes}${appLocalizations.ago}";
|
||||||
|
}
|
||||||
|
return appLocalizations.just;
|
||||||
|
}
|
||||||
|
|
||||||
|
String get show {
|
||||||
|
return toIso8601String().substring(0, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
13
lib/common/iterable.dart
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
extension IterableExt<T> on Iterable<T> {
|
||||||
|
Iterable<T> separated(T separator) sync* {
|
||||||
|
final iterator = this.iterator;
|
||||||
|
if (!iterator.moveNext()) return;
|
||||||
|
|
||||||
|
yield iterator.current;
|
||||||
|
|
||||||
|
while (iterator.moveNext()) {
|
||||||
|
yield separator;
|
||||||
|
yield iterator.current;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,10 +23,11 @@ class Measure {
|
|||||||
double? _bodyMediumHeight;
|
double? _bodyMediumHeight;
|
||||||
double? _bodySmallHeight;
|
double? _bodySmallHeight;
|
||||||
double? _labelSmallHeight;
|
double? _labelSmallHeight;
|
||||||
|
double? _labelMediumHeight;
|
||||||
double? _titleLargeHeight;
|
double? _titleLargeHeight;
|
||||||
|
double? _titleMediumHeight;
|
||||||
|
|
||||||
|
double get bodyMediumHeight {
|
||||||
double get bodyMediumHeight{
|
|
||||||
_bodyMediumHeight ??= computeTextSize(
|
_bodyMediumHeight ??= computeTextSize(
|
||||||
Text(
|
Text(
|
||||||
"",
|
"",
|
||||||
@@ -36,7 +37,7 @@ class Measure {
|
|||||||
return _bodyMediumHeight!;
|
return _bodyMediumHeight!;
|
||||||
}
|
}
|
||||||
|
|
||||||
double get bodySmallHeight{
|
double get bodySmallHeight {
|
||||||
_bodySmallHeight ??= computeTextSize(
|
_bodySmallHeight ??= computeTextSize(
|
||||||
Text(
|
Text(
|
||||||
"",
|
"",
|
||||||
@@ -46,7 +47,7 @@ class Measure {
|
|||||||
return _bodySmallHeight!;
|
return _bodySmallHeight!;
|
||||||
}
|
}
|
||||||
|
|
||||||
double get labelSmallHeight{
|
double get labelSmallHeight {
|
||||||
_labelSmallHeight ??= computeTextSize(
|
_labelSmallHeight ??= computeTextSize(
|
||||||
Text(
|
Text(
|
||||||
"",
|
"",
|
||||||
@@ -56,7 +57,17 @@ class Measure {
|
|||||||
return _labelSmallHeight!;
|
return _labelSmallHeight!;
|
||||||
}
|
}
|
||||||
|
|
||||||
double get titleLargeHeight{
|
double get labelMediumHeight {
|
||||||
|
_labelMediumHeight ??= computeTextSize(
|
||||||
|
Text(
|
||||||
|
"",
|
||||||
|
style: context.textTheme.labelMedium,
|
||||||
|
),
|
||||||
|
).height;
|
||||||
|
return _labelMediumHeight!;
|
||||||
|
}
|
||||||
|
|
||||||
|
double get titleLargeHeight {
|
||||||
_titleLargeHeight ??= computeTextSize(
|
_titleLargeHeight ??= computeTextSize(
|
||||||
Text(
|
Text(
|
||||||
"",
|
"",
|
||||||
@@ -65,4 +76,14 @@ class Measure {
|
|||||||
).height;
|
).height;
|
||||||
return _titleLargeHeight!;
|
return _titleLargeHeight!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double get titleMediumHeight {
|
||||||
|
_titleMediumHeight ??= computeTextSize(
|
||||||
|
Text(
|
||||||
|
"",
|
||||||
|
style: context.textTheme.titleMedium,
|
||||||
|
),
|
||||||
|
).height;
|
||||||
|
return _titleMediumHeight!;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,28 @@ class Navigation {
|
|||||||
label: "profiles",
|
label: "profiles",
|
||||||
fragment: ProfilesFragment(),
|
fragment: ProfilesFragment(),
|
||||||
),
|
),
|
||||||
|
const NavigationItem(
|
||||||
|
icon: Icon(Icons.view_timeline),
|
||||||
|
label: "requests",
|
||||||
|
fragment: RequestsFragment(),
|
||||||
|
description: "requestsDesc",
|
||||||
|
modes: [NavigationItemMode.desktop, NavigationItemMode.more],
|
||||||
|
),
|
||||||
|
const NavigationItem(
|
||||||
|
icon: Icon(Icons.ballot),
|
||||||
|
label: "connections",
|
||||||
|
fragment: ConnectionsFragment(),
|
||||||
|
description: "connectionsDesc",
|
||||||
|
modes: [NavigationItemMode.desktop, NavigationItemMode.more],
|
||||||
|
),
|
||||||
|
const NavigationItem(
|
||||||
|
icon: Icon(Icons.swap_vert_circle),
|
||||||
|
label: "resources",
|
||||||
|
description: "resourcesDesc",
|
||||||
|
keep: false,
|
||||||
|
fragment: Resources(),
|
||||||
|
modes: [NavigationItemMode.desktop, NavigationItemMode.more],
|
||||||
|
),
|
||||||
NavigationItem(
|
NavigationItem(
|
||||||
icon: const Icon(Icons.adb),
|
icon: const Icon(Icons.adb),
|
||||||
label: "logs",
|
label: "logs",
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ import 'dart:io';
|
|||||||
import 'dart:isolate';
|
import 'dart:isolate';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
|
import 'package:fl_clash/common/app_localizations.dart';
|
||||||
|
import 'package:fl_clash/common/constant.dart';
|
||||||
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:zxing2/qrcode.dart';
|
import 'package:zxing2/qrcode.dart';
|
||||||
import 'package:image/image.dart' as img;
|
import 'package:image/image.dart' as img;
|
||||||
@@ -37,6 +40,9 @@ class Other {
|
|||||||
}
|
}
|
||||||
final diff = timeStamp / 1000;
|
final diff = timeStamp / 1000;
|
||||||
final inHours = (diff / 3600).floor();
|
final inHours = (diff / 3600).floor();
|
||||||
|
if (inHours > 99) {
|
||||||
|
return "99:59:59";
|
||||||
|
}
|
||||||
final inMinutes = (diff / 60 % 60).floor();
|
final inMinutes = (diff / 60 % 60).floor();
|
||||||
final inSeconds = (diff % 60).floor();
|
final inSeconds = (diff % 60).floor();
|
||||||
|
|
||||||
@@ -169,7 +175,7 @@ class Other {
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<String> parseReleaseBody(String? body) {
|
List<String> parseReleaseBody(String? body) {
|
||||||
if(body == null) return [];
|
if (body == null) return [];
|
||||||
const pattern = r'- (.+?)\. \[.+?\]';
|
const pattern = r'- (.+?)\. \[.+?\]';
|
||||||
final regex = RegExp(pattern);
|
final regex = RegExp(pattern);
|
||||||
return regex
|
return regex
|
||||||
@@ -178,6 +184,30 @@ class Other {
|
|||||||
.where((item) => item.isNotEmpty)
|
.where((item) => item.isNotEmpty)
|
||||||
.toList();
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ViewMode getViewMode(double viewWidth) {
|
||||||
|
if (viewWidth <= maxMobileWidth) return ViewMode.mobile;
|
||||||
|
if (viewWidth <= maxLaptopWidth) return ViewMode.laptop;
|
||||||
|
return ViewMode.desktop;
|
||||||
|
}
|
||||||
|
|
||||||
|
int getColumns(ViewMode viewMode, int currentColumns) {
|
||||||
|
final targetColumnsArray = viewModeColumnsMap[viewMode]!;
|
||||||
|
if (targetColumnsArray.contains(currentColumns)) {
|
||||||
|
return currentColumns;
|
||||||
|
}
|
||||||
|
return targetColumnsArray.first;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getColumnsTextForInt(int number){
|
||||||
|
return switch(number){
|
||||||
|
1 => appLocalizations.oneColumn,
|
||||||
|
2 => appLocalizations.twoColumns,
|
||||||
|
3 => appLocalizations.threeColumns,
|
||||||
|
4 => appLocalizations.fourColumns,
|
||||||
|
int() => throw UnimplementedError(),
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final other = Other();
|
final other = Other();
|
||||||
|
|||||||
@@ -1,22 +1,13 @@
|
|||||||
import 'dart:async';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
import 'package:package_info_plus/package_info_plus.dart';
|
||||||
|
|
||||||
class AppPackage{
|
import 'common.dart';
|
||||||
|
|
||||||
static AppPackage? _instance;
|
extension PackageInfoExtension on PackageInfo {
|
||||||
Completer<PackageInfo> packageInfoCompleter = Completer();
|
String get ua => [
|
||||||
|
"$appName/v$version",
|
||||||
AppPackage._internal() {
|
"clash-verge",
|
||||||
PackageInfo.fromPlatform().then(
|
"Platform/${Platform.operatingSystem}",
|
||||||
(value) => packageInfoCompleter.complete(value),
|
].join(" ");
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
factory AppPackage() {
|
|
||||||
_instance ??= AppPackage._internal();
|
|
||||||
return _instance!;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final appPackage = AppPackage();
|
|
||||||
@@ -8,12 +8,30 @@ import 'constant.dart';
|
|||||||
|
|
||||||
class AppPath {
|
class AppPath {
|
||||||
static AppPath? _instance;
|
static AppPath? _instance;
|
||||||
Completer<Directory> applicationSupportDirectoryCompleter = Completer();
|
Completer<Directory> cacheDir = Completer();
|
||||||
|
|
||||||
|
// Future<Directory> _createDesktopCacheDir() async {
|
||||||
|
// final path = join(dirname(Platform.resolvedExecutable), 'cache');
|
||||||
|
// final dir = Directory(path);
|
||||||
|
// if (await dir.exists()) {
|
||||||
|
// await dir.create(recursive: true);
|
||||||
|
// }
|
||||||
|
// return dir;
|
||||||
|
// }
|
||||||
|
|
||||||
AppPath._internal() {
|
AppPath._internal() {
|
||||||
getApplicationSupportDirectory().then(
|
getApplicationSupportDirectory().then((value) {
|
||||||
(value) => applicationSupportDirectoryCompleter.complete(value),
|
cacheDir.complete(value);
|
||||||
);
|
});
|
||||||
|
// if (Platform.isAndroid) {
|
||||||
|
// getApplicationSupportDirectory().then((value) {
|
||||||
|
// cacheDir.complete(value);
|
||||||
|
// });
|
||||||
|
// } else {
|
||||||
|
// _createDesktopCacheDir().then((value) {
|
||||||
|
// cacheDir.complete(value);
|
||||||
|
// });
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
factory AppPath() {
|
factory AppPath() {
|
||||||
@@ -22,12 +40,12 @@ class AppPath {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<String> getHomeDirPath() async {
|
Future<String> getHomeDirPath() async {
|
||||||
final directory = await applicationSupportDirectoryCompleter.future;
|
final directory = await cacheDir.future;
|
||||||
return directory.path;
|
return directory.path;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String> getProfilesPath() async {
|
Future<String> getProfilesPath() async {
|
||||||
final directory = await applicationSupportDirectoryCompleter.future;
|
final directory = await cacheDir.future;
|
||||||
return join(directory.path, profilesDirectoryName);
|
return join(directory.path, profilesDirectoryName);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,11 +54,6 @@ class AppPath {
|
|||||||
final directory = await getProfilesPath();
|
final directory = await getProfilesPath();
|
||||||
return join(directory, "$id.yaml");
|
return join(directory, "$id.yaml");
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String> getMMDBPath() async {
|
|
||||||
var directory = await applicationSupportDirectoryCompleter.future;
|
|
||||||
return join(directory.path, mmdbFileName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final appPath = AppPath();
|
final appPath = AppPath();
|
||||||
|
|||||||
@@ -1,42 +1,33 @@
|
|||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:file_picker/file_picker.dart';
|
import 'package:file_picker/file_picker.dart';
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:image_picker/image_picker.dart';
|
import 'package:image_picker/image_picker.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
|
||||||
|
|
||||||
class Picker {
|
class Picker {
|
||||||
Future<Result<PlatformFile>> pickerConfigFile() async {
|
Future<PlatformFile?> pickerConfigFile() async {
|
||||||
FilePickerResult? filePickerResult;
|
final filePickerResult = await FilePicker.platform.pickFiles(
|
||||||
if (Platform.isAndroid) {
|
withData: true,
|
||||||
filePickerResult = await FilePicker.platform.pickFiles(
|
allowMultiple: false,
|
||||||
withData: true,
|
);
|
||||||
type: FileType.custom,
|
return filePickerResult?.files.first;
|
||||||
allowedExtensions: ['txt', 'conf'],
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
filePickerResult = await FilePicker.platform.pickFiles(
|
|
||||||
withData: true,
|
|
||||||
type: FileType.custom,
|
|
||||||
allowedExtensions: ['yaml', 'txt', 'conf'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
final file = filePickerResult?.files.first;
|
|
||||||
if (file == null) {
|
|
||||||
return Result.error(appLocalizations.pleaseUploadFile);
|
|
||||||
}
|
|
||||||
return Result.success(file);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<Result<String>> pickerConfigQRCode() async {
|
Future<PlatformFile?> pickerGeoDataFile() async {
|
||||||
|
final filePickerResult = await FilePicker.platform.pickFiles(
|
||||||
|
withData: true,
|
||||||
|
allowMultiple: false,
|
||||||
|
);
|
||||||
|
return filePickerResult?.files.first;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<String?> pickerConfigQRCode() async {
|
||||||
final xFile = await ImagePicker().pickImage(source: ImageSource.gallery);
|
final xFile = await ImagePicker().pickImage(source: ImageSource.gallery);
|
||||||
final bytes = await xFile?.readAsBytes();
|
final bytes = await xFile?.readAsBytes();
|
||||||
if (bytes == null) return Result.error();
|
if (bytes == null) return null;
|
||||||
final result = await other.parseQRCode(bytes);
|
final result = await other.parseQRCode(bytes);
|
||||||
if (result == null || !result.isUrl) {
|
if (result == null || !result.isUrl) {
|
||||||
return Result.error(appLocalizations.pleaseUploadValidQrcode);
|
throw appLocalizations.pleaseUploadValidQrcode;
|
||||||
}
|
}
|
||||||
return Result.success(result);
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,12 +11,12 @@ class ProxyManager {
|
|||||||
_proxy = proxy ?? proxy_plugin.Proxy();
|
_proxy = proxy ?? proxy_plugin.Proxy();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool get isStart => startTime != null && startTime!.isBeforeNow();
|
bool get isStart => startTime != null && startTime!.isBeforeNow;
|
||||||
|
|
||||||
DateTime? get startTime => _proxy.startTime;
|
DateTime? get startTime => _proxy.startTime;
|
||||||
|
|
||||||
Future<bool?> startProxy({required int port, String? args}) async {
|
Future<bool?> startProxy({required int port}) async {
|
||||||
return await _proxy.startProxy(port, args);
|
return await _proxy.startProxy(port);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool?> stopProxy() async {
|
Future<bool?> stopProxy() async {
|
||||||
@@ -28,20 +28,6 @@ class ProxyManager {
|
|||||||
return await (_proxy as Proxy).updateStartTime();
|
return await (_proxy as Proxy).updateStartTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool?> setProtect(int fd) async {
|
|
||||||
if (_proxy is! Proxy) return null;
|
|
||||||
return await (_proxy as Proxy).setProtect(fd);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<bool?> startForeground({
|
|
||||||
required String title,
|
|
||||||
required String content,
|
|
||||||
}) async {
|
|
||||||
if (_proxy is! Proxy) return null;
|
|
||||||
return await (_proxy as Proxy)
|
|
||||||
.startForeground(title: title, content: content);
|
|
||||||
}
|
|
||||||
|
|
||||||
factory ProxyManager() {
|
factory ProxyManager() {
|
||||||
_instance ??= ProxyManager._internal();
|
_instance ??= ProxyManager._internal();
|
||||||
return _instance!;
|
return _instance!;
|
||||||
|
|||||||
@@ -1,36 +1,107 @@
|
|||||||
import 'dart:convert';
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:dio/dio.dart';
|
||||||
|
import 'package:dio/io.dart';
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:http/http.dart';
|
import 'package:fl_clash/models/ip.dart';
|
||||||
import '../models/models.dart';
|
import 'package:fl_clash/state.dart';
|
||||||
|
|
||||||
class Request {
|
class Request {
|
||||||
static Future<Result<Response>> getFileResponseForUrl(String url) async {
|
late final Dio _dio;
|
||||||
final headers = {'User-Agent': coreName};
|
int? _port;
|
||||||
try {
|
bool _isStart = false;
|
||||||
final response = await get(Uri.parse(url), headers: headers).timeout(
|
|
||||||
httpTimeoutDuration,
|
Request() {
|
||||||
|
_dio = Dio();
|
||||||
|
_dio.options = BaseOptions(
|
||||||
|
headers: {"User-Agent": globalState.appController.clashConfig.globalUa},
|
||||||
|
);
|
||||||
|
_dio.interceptors.add(
|
||||||
|
InterceptorsWrapper(
|
||||||
|
onRequest: (options, handler) {
|
||||||
|
_updateAdapter();
|
||||||
|
return handler.next(options); // 继续请求
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_updateAdapter() {
|
||||||
|
final port = globalState.appController.clashConfig.mixedPort;
|
||||||
|
final isStart = globalState.appController.appState.isStart;
|
||||||
|
if (_port != port || isStart != _isStart) {
|
||||||
|
_port = port;
|
||||||
|
_isStart = isStart;
|
||||||
|
_dio.httpClientAdapter = IOHttpClientAdapter(
|
||||||
|
createHttpClient: () {
|
||||||
|
final client = HttpClient();
|
||||||
|
if (!_isStart) return client;
|
||||||
|
client.userAgent = globalState.appController.clashConfig.globalUa;
|
||||||
|
client.findProxy = (url) {
|
||||||
|
return "PROXY localhost:$_port;DIRECT";
|
||||||
|
};
|
||||||
|
return client;
|
||||||
|
},
|
||||||
|
validateCertificate: (_, __, ___) => true,
|
||||||
);
|
);
|
||||||
return Result.success(response);
|
|
||||||
} catch (err) {
|
|
||||||
return Result.error(err.toString());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<Result<Map<String,dynamic>>> checkForUpdate() async {
|
Future<Response> getFileResponseForUrl(String url) async {
|
||||||
final response = await get(
|
final response = await _dio
|
||||||
Uri.parse(
|
.get(
|
||||||
"https://api.github.com/repos/$repository/releases/latest",
|
url,
|
||||||
|
options: Options(
|
||||||
|
responseType: ResponseType.bytes,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.timeout(
|
||||||
|
httpTimeoutDuration * 2,
|
||||||
|
);
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Map<String, dynamic>?> checkForUpdate() async {
|
||||||
|
final response = await _dio.get(
|
||||||
|
"https://api.github.com/repos/$repository/releases/latest",
|
||||||
|
options: Options(
|
||||||
|
responseType: ResponseType.json,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
if (response.statusCode != 200) return Result.error();
|
if (response.statusCode != 200) return null;
|
||||||
final body = json.decode(response.body) as Map<String,dynamic>;
|
final data = response.data as Map<String, dynamic>;
|
||||||
final remoteVersion = body['tag_name'];
|
final remoteVersion = data['tag_name'];
|
||||||
final packageInfo = await appPackage.packageInfoCompleter.future;
|
final version = globalState.packageInfo.version;
|
||||||
final version = packageInfo.version;
|
|
||||||
final hasUpdate =
|
final hasUpdate =
|
||||||
other.compareVersions(remoteVersion.replaceAll('v', ''), version) > 0;
|
other.compareVersions(remoteVersion.replaceAll('v', ''), version) > 0;
|
||||||
if (!hasUpdate) return Result.error();
|
if (!hasUpdate) return null;
|
||||||
return Result.success(body);
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
final Map<String, IpInfo Function(Map<String, dynamic>)> _ipInfoSources = {
|
||||||
|
"https://ipwho.is/": IpInfo.fromIpwhoIsJson,
|
||||||
|
"https://api.ip.sb/geoip/": IpInfo.fromIpSbJson,
|
||||||
|
"https://ipapi.co/json/": IpInfo.fromIpApiCoJson,
|
||||||
|
"https://ipinfo.io/json/": IpInfo.fromIpInfoIoJson,
|
||||||
|
};
|
||||||
|
|
||||||
|
Future<IpInfo?> checkIp(CancelToken? cancelToken) async {
|
||||||
|
for (final source in _ipInfoSources.entries) {
|
||||||
|
try {
|
||||||
|
final response = await _dio
|
||||||
|
.get<Map<String, dynamic>>(source.key, cancelToken: cancelToken)
|
||||||
|
.timeout(
|
||||||
|
httpTimeoutDuration,
|
||||||
|
);
|
||||||
|
if (response.statusCode == 200 && response.data != null) {
|
||||||
|
return source.value(response.data!);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final request = Request();
|
||||||
|
|||||||
16
lib/common/scroll.dart
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import 'dart:ui';
|
||||||
|
|
||||||
|
import 'package:fl_clash/common/common.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class BaseScrollBehavior extends MaterialScrollBehavior {
|
||||||
|
@override
|
||||||
|
Set<PointerDeviceKind> get dragDevices => {
|
||||||
|
PointerDeviceKind.touch,
|
||||||
|
PointerDeviceKind.stylus,
|
||||||
|
PointerDeviceKind.invertedStylus,
|
||||||
|
PointerDeviceKind.trackpad,
|
||||||
|
if (system.isDesktop) PointerDeviceKind.mouse,
|
||||||
|
PointerDeviceKind.unknown,
|
||||||
|
};
|
||||||
|
}
|
||||||
110
lib/common/service.dart
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
import 'dart:ffi';
|
||||||
|
import 'dart:io';
|
||||||
|
import 'package:ffi/ffi.dart';
|
||||||
|
import 'package:win32/win32.dart';
|
||||||
|
|
||||||
|
typedef CreateServiceNative = IntPtr Function(
|
||||||
|
IntPtr hSCManager,
|
||||||
|
Pointer<Utf16> lpServiceName,
|
||||||
|
Pointer<Utf16> lpDisplayName,
|
||||||
|
Uint32 dwDesiredAccess,
|
||||||
|
Uint32 dwServiceType,
|
||||||
|
Uint32 dwStartType,
|
||||||
|
Uint32 dwErrorControl,
|
||||||
|
Pointer<Utf16> lpBinaryPathName,
|
||||||
|
Pointer<Utf16> lpLoadOrderGroup,
|
||||||
|
Pointer<Uint32> lpdwTagId,
|
||||||
|
Pointer<Utf16> lpDependencies,
|
||||||
|
Pointer<Utf16> lpServiceStartName,
|
||||||
|
Pointer<Utf16> lpPassword,
|
||||||
|
);
|
||||||
|
|
||||||
|
typedef CreateServiceDart = int Function(
|
||||||
|
int hSCManager,
|
||||||
|
Pointer<Utf16> lpServiceName,
|
||||||
|
Pointer<Utf16> lpDisplayName,
|
||||||
|
int dwDesiredAccess,
|
||||||
|
int dwServiceType,
|
||||||
|
int dwStartType,
|
||||||
|
int dwErrorControl,
|
||||||
|
Pointer<Utf16> lpBinaryPathName,
|
||||||
|
Pointer<Utf16> lpLoadOrderGroup,
|
||||||
|
Pointer<Uint32> lpdwTagId,
|
||||||
|
Pointer<Utf16> lpDependencies,
|
||||||
|
Pointer<Utf16> lpServiceStartName,
|
||||||
|
Pointer<Utf16> lpPassword,
|
||||||
|
);
|
||||||
|
|
||||||
|
const _SERVICE_ALL_ACCESS = 0xF003F;
|
||||||
|
|
||||||
|
const _SERVICE_WIN32_OWN_PROCESS = 0x00000010;
|
||||||
|
|
||||||
|
const _SERVICE_AUTO_START = 0x00000002;
|
||||||
|
|
||||||
|
const _SERVICE_ERROR_NORMAL = 0x00000001;
|
||||||
|
|
||||||
|
typedef GetLastErrorNative = Uint32 Function();
|
||||||
|
typedef GetLastErrorDart = int Function();
|
||||||
|
|
||||||
|
class Service {
|
||||||
|
static Service? _instance;
|
||||||
|
late DynamicLibrary _advapi32;
|
||||||
|
|
||||||
|
Service._internal() {
|
||||||
|
_advapi32 = DynamicLibrary.open('advapi32.dll');
|
||||||
|
}
|
||||||
|
|
||||||
|
factory Service() {
|
||||||
|
_instance ??= Service._internal();
|
||||||
|
return _instance!;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> createService() async {
|
||||||
|
final int scManager = OpenSCManager(nullptr, nullptr, _SERVICE_ALL_ACCESS);
|
||||||
|
if (scManager == 0) return;
|
||||||
|
final serviceName = 'FlClash Service'.toNativeUtf16();
|
||||||
|
final displayName = 'FlClash Service'.toNativeUtf16();
|
||||||
|
final binaryPathName = "C:\\Application\\Clash.Verge_1.6.6_x64_portable\\resources\\clash-verge-service.exe".toNativeUtf16();
|
||||||
|
final createService =
|
||||||
|
_advapi32.lookupFunction<CreateServiceNative, CreateServiceDart>(
|
||||||
|
'CreateServiceW',
|
||||||
|
);
|
||||||
|
final getLastError = DynamicLibrary.open('kernel32.dll')
|
||||||
|
.lookupFunction<GetLastErrorNative, GetLastErrorDart>('GetLastError');
|
||||||
|
|
||||||
|
final serviceHandle = createService(
|
||||||
|
scManager,
|
||||||
|
serviceName,
|
||||||
|
displayName,
|
||||||
|
_SERVICE_ALL_ACCESS,
|
||||||
|
_SERVICE_WIN32_OWN_PROCESS,
|
||||||
|
_SERVICE_AUTO_START,
|
||||||
|
_SERVICE_ERROR_NORMAL,
|
||||||
|
binaryPathName,
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
);
|
||||||
|
|
||||||
|
print("serviceHandle $serviceHandle");
|
||||||
|
|
||||||
|
final errorCode = GetLastError();
|
||||||
|
print('Error code: $errorCode');
|
||||||
|
|
||||||
|
final result = StartService(serviceHandle, 0, nullptr);
|
||||||
|
|
||||||
|
if (result == 0) {
|
||||||
|
print('Failed to start the service.');
|
||||||
|
} else {
|
||||||
|
print('Service started successfully.');
|
||||||
|
}
|
||||||
|
|
||||||
|
calloc.free(serviceName);
|
||||||
|
calloc.free(displayName);
|
||||||
|
calloc.free(binaryPathName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final service = Platform.isWindows ? Service() : null;
|
||||||
@@ -1,10 +1,5 @@
|
|||||||
extension StringExtension on String {
|
extension StringExtension on String {
|
||||||
bool get isUrl {
|
bool get isUrl {
|
||||||
try {
|
return RegExp(r'^(http|https|ftp)://').hasMatch(this);
|
||||||
Uri.parse(this);
|
|
||||||
return true;
|
|
||||||
} catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,15 +2,13 @@ import 'package:flutter/material.dart';
|
|||||||
import 'color.dart';
|
import 'color.dart';
|
||||||
|
|
||||||
extension TextStyleExtension on TextStyle {
|
extension TextStyleExtension on TextStyle {
|
||||||
toLight() {
|
TextStyle get toLight => copyWith(color: color?.toLight());
|
||||||
return copyWith(color: color?.toLight());
|
|
||||||
}
|
|
||||||
|
|
||||||
toSoftBold() {
|
TextStyle get toLighter => copyWith(color: color?.toLighter());
|
||||||
return copyWith(fontWeight: FontWeight.w500);
|
|
||||||
}
|
|
||||||
|
|
||||||
toBold() {
|
TextStyle get toSoftBold => copyWith(fontWeight: FontWeight.w500);
|
||||||
return copyWith(fontWeight: FontWeight.bold);
|
|
||||||
}
|
TextStyle get toBold => copyWith(fontWeight: FontWeight.bold);
|
||||||
}
|
|
||||||
|
TextStyle get toMinus => copyWith(fontSize: fontSize! - 2);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:fl_clash/models/config.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:window_manager/window_manager.dart';
|
import 'package:window_manager/window_manager.dart';
|
||||||
import 'package:windows_single_instance/windows_single_instance.dart';
|
import 'package:windows_single_instance/windows_single_instance.dart';
|
||||||
@@ -8,7 +9,7 @@ import 'protocol.dart';
|
|||||||
import 'system.dart';
|
import 'system.dart';
|
||||||
|
|
||||||
class Window {
|
class Window {
|
||||||
init() async {
|
init(WindowProps props) async {
|
||||||
if (Platform.isWindows) {
|
if (Platform.isWindows) {
|
||||||
await WindowsSingleInstance.ensureSingleInstance([], "FlClash");
|
await WindowsSingleInstance.ensureSingleInstance([], "FlClash");
|
||||||
protocol.register("clash");
|
protocol.register("clash");
|
||||||
@@ -16,11 +17,21 @@ class Window {
|
|||||||
protocol.register("flclash");
|
protocol.register("flclash");
|
||||||
}
|
}
|
||||||
await windowManager.ensureInitialized();
|
await windowManager.ensureInitialized();
|
||||||
WindowOptions windowOptions = const WindowOptions(
|
WindowOptions windowOptions = WindowOptions(
|
||||||
size: Size(1000, 600),
|
size: Size(props.width, props.height),
|
||||||
minimumSize: Size(400, 600),
|
minimumSize: const Size(380, 600),
|
||||||
center: true,
|
titleBarStyle: TitleBarStyle.hidden,
|
||||||
);
|
);
|
||||||
|
if (props.left != null || props.top != null) {
|
||||||
|
await windowManager.setPosition(
|
||||||
|
Offset(props.left ?? 0, props.top ?? 0),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
await windowManager.setAlignment(Alignment.center);
|
||||||
|
}
|
||||||
|
// if(Platform.isWindows){
|
||||||
|
// await windowManager.setTitleBarStyle(TitleBarStyle.hidden);
|
||||||
|
// }
|
||||||
await windowManager.waitUntilReadyToShow(windowOptions, () async {
|
await windowManager.waitUntilReadyToShow(windowOptions, () async {
|
||||||
await windowManager.setPreventClose(true);
|
await windowManager.setPreventClose(true);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import 'package:fl_clash/state.dart';
|
import 'package:fl_clash/state.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
import 'clash/core.dart';
|
import 'clash/core.dart';
|
||||||
import 'enum/enum.dart';
|
|
||||||
import 'models/models.dart';
|
import 'models/models.dart';
|
||||||
import 'common/common.dart';
|
import 'common/common.dart';
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ class AppController {
|
|||||||
late ClashConfig clashConfig;
|
late ClashConfig clashConfig;
|
||||||
late Measure measure;
|
late Measure measure;
|
||||||
late Function updateClashConfigDebounce;
|
late Function updateClashConfigDebounce;
|
||||||
|
late Function addCheckIpNumDebounce;
|
||||||
|
|
||||||
AppController(this.context) {
|
AppController(this.context) {
|
||||||
appState = context.read<AppState>();
|
appState = context.read<AppState>();
|
||||||
@@ -25,12 +26,16 @@ class AppController {
|
|||||||
updateClashConfigDebounce = debounce<Function()>(() async {
|
updateClashConfigDebounce = debounce<Function()>(() async {
|
||||||
await updateClashConfig();
|
await updateClashConfig();
|
||||||
});
|
});
|
||||||
|
addCheckIpNumDebounce = debounce(() {
|
||||||
|
appState.checkIpNum++;
|
||||||
|
});
|
||||||
measure = Measure.of(context);
|
measure = Measure.of(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> updateSystemProxy(bool isStart) async {
|
Future<void> updateSystemProxy(bool isStart) async {
|
||||||
if (isStart) {
|
if (isStart) {
|
||||||
await globalState.startSystemProxy(
|
await globalState.startSystemProxy(
|
||||||
|
appState: appState,
|
||||||
config: config,
|
config: config,
|
||||||
clashConfig: clashConfig,
|
clashConfig: clashConfig,
|
||||||
);
|
);
|
||||||
@@ -40,11 +45,11 @@ class AppController {
|
|||||||
updateRunTime,
|
updateRunTime,
|
||||||
updateTraffic,
|
updateTraffic,
|
||||||
];
|
];
|
||||||
clearShowProxyDelay();
|
|
||||||
testShowProxyDelay();
|
|
||||||
} else {
|
} else {
|
||||||
await globalState.stopSystemProxy();
|
await globalState.stopSystemProxy();
|
||||||
|
clashCore.resetTraffic();
|
||||||
appState.traffics = [];
|
appState.traffics = [];
|
||||||
|
appState.totalTraffic = Traffic();
|
||||||
appState.runTime = null;
|
appState.runTime = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -65,23 +70,14 @@ class AppController {
|
|||||||
|
|
||||||
updateTraffic() {
|
updateTraffic() {
|
||||||
globalState.updateTraffic(
|
globalState.updateTraffic(
|
||||||
config: config,
|
|
||||||
appState: appState,
|
appState: appState,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
changeProxy() {
|
addProfile(Profile profile) async {
|
||||||
globalState.changeProxy(
|
|
||||||
appState: appState,
|
|
||||||
config: config,
|
|
||||||
clashConfig: clashConfig,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
addProfile(Profile profile) {
|
|
||||||
config.setProfile(profile);
|
config.setProfile(profile);
|
||||||
if (config.currentProfileId != null) return;
|
if (config.currentProfileId != null) return;
|
||||||
changeProfile(profile.id);
|
await changeProfile(profile.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
deleteProfile(String id) async {
|
deleteProfile(String id) async {
|
||||||
@@ -99,18 +95,13 @@ class AppController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateProfile(String id) async {
|
Future<void> updateProfile(Profile profile) async {
|
||||||
final profile = config.getCurrentProfileForId(id);
|
await profile.update();
|
||||||
if (profile != null) {
|
config.setProfile(await profile.update());
|
||||||
final res = await profile.update();
|
|
||||||
if (res.type == ResultType.success) {
|
|
||||||
config.setProfile(profile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String> updateClashConfig({bool isPatch = true}) async {
|
Future<void> updateClashConfig({bool isPatch = true}) async {
|
||||||
return await globalState.updateClashConfig(
|
await globalState.updateClashConfig(
|
||||||
clashConfig: clashConfig,
|
clashConfig: clashConfig,
|
||||||
config: config,
|
config: config,
|
||||||
isPatch: isPatch,
|
isPatch: isPatch,
|
||||||
@@ -118,6 +109,18 @@ class AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future applyProfile() async {
|
Future applyProfile() async {
|
||||||
|
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
||||||
|
if (commonScaffoldState?.mounted != true) return;
|
||||||
|
commonScaffoldState?.loadingRun(() async {
|
||||||
|
await globalState.applyProfile(
|
||||||
|
appState: appState,
|
||||||
|
config: config,
|
||||||
|
clashConfig: clashConfig,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Future rawApplyProfile() async {
|
||||||
await globalState.applyProfile(
|
await globalState.applyProfile(
|
||||||
appState: appState,
|
appState: appState,
|
||||||
config: config,
|
config: config,
|
||||||
@@ -125,19 +128,6 @@ class AppController {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Function? _changeProfileDebounce;
|
|
||||||
|
|
||||||
changeProfileDebounce(String? profileId) {
|
|
||||||
if (profileId == config.currentProfileId) return;
|
|
||||||
config.currentProfileId = profileId;
|
|
||||||
_changeProfileDebounce ??= debounce<Function(String?)>((profileId) async {
|
|
||||||
await applyProfile();
|
|
||||||
appState.delayMap = {};
|
|
||||||
saveConfigPreferences();
|
|
||||||
});
|
|
||||||
_changeProfileDebounce!([profileId]);
|
|
||||||
}
|
|
||||||
|
|
||||||
changeProfile(String? value) async {
|
changeProfile(String? value) async {
|
||||||
if (value == config.currentProfileId) return;
|
if (value == config.currentProfileId) return;
|
||||||
config.currentProfileId = value;
|
config.currentProfileId = value;
|
||||||
@@ -148,14 +138,34 @@ class AppController {
|
|||||||
|
|
||||||
autoUpdateProfiles() async {
|
autoUpdateProfiles() async {
|
||||||
for (final profile in config.profiles) {
|
for (final profile in config.profiles) {
|
||||||
if (!profile.autoUpdate) return;
|
if (!profile.autoUpdate) continue;
|
||||||
final isNotNeedUpdate = profile.lastUpdateDate
|
final isNotNeedUpdate = profile.lastUpdateDate
|
||||||
?.add(
|
?.add(
|
||||||
profile.autoUpdateDuration,
|
profile.autoUpdateDuration,
|
||||||
)
|
)
|
||||||
.isBeforeNow();
|
.isBeforeNow;
|
||||||
if (isNotNeedUpdate == false) continue;
|
if (isNotNeedUpdate == false || profile.type == ProfileType.file) {
|
||||||
await profile.update();
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
updateProfile(profile);
|
||||||
|
} catch (e) {
|
||||||
|
appState.addLog(
|
||||||
|
Log(
|
||||||
|
logLevel: LogLevel.info,
|
||||||
|
payload: e.toString(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateProfiles() async {
|
||||||
|
for (final profile in config.profiles) {
|
||||||
|
if (profile.type == ProfileType.file) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
await updateProfile(profile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -211,33 +221,33 @@ class AppController {
|
|||||||
|
|
||||||
autoCheckUpdate() async {
|
autoCheckUpdate() async {
|
||||||
if (!config.autoCheckUpdate) return;
|
if (!config.autoCheckUpdate) return;
|
||||||
final res = await Request.checkForUpdate();
|
final res = await request.checkForUpdate();
|
||||||
checkUpdateResultHandle(result: res);
|
checkUpdateResultHandle(data: res);
|
||||||
}
|
}
|
||||||
|
|
||||||
checkUpdateResultHandle({
|
checkUpdateResultHandle({
|
||||||
Result<Map<String, dynamic>>? result,
|
Map<String, dynamic>? data,
|
||||||
bool handleError = false
|
bool handleError = false,
|
||||||
}) async {
|
}) async {
|
||||||
if (result == null) return;
|
if (data != null) {
|
||||||
if (result.type == ResultType.success) {
|
final tagName = data['tag_name'];
|
||||||
final tagName = result.data?['tag_name'];
|
final body = data['body'];
|
||||||
final body = result.data?['body'];
|
|
||||||
final submits = other.parseReleaseBody(body);
|
final submits = other.parseReleaseBody(body);
|
||||||
|
final textTheme = context.textTheme;
|
||||||
globalState.showMessage(
|
globalState.showMessage(
|
||||||
title: appLocalizations.discoverNewVersion,
|
title: appLocalizations.discoverNewVersion,
|
||||||
message: TextSpan(
|
message: TextSpan(
|
||||||
text: "$tagName \n",
|
text: "$tagName \n",
|
||||||
style: context.textTheme.headlineSmall,
|
style: textTheme.headlineSmall,
|
||||||
children: [
|
children: [
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: "\n",
|
text: "\n",
|
||||||
style: context.textTheme.bodyMedium,
|
style: textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
for (final submit in submits)
|
for (final submit in submits)
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: "- $submit \n",
|
text: "- $submit \n",
|
||||||
style: context.textTheme.bodyMedium,
|
style: textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -248,7 +258,7 @@ class AppController {
|
|||||||
},
|
},
|
||||||
confirmText: appLocalizations.goDownload,
|
confirmText: appLocalizations.goDownload,
|
||||||
);
|
);
|
||||||
} else if(handleError){
|
} else if (handleError) {
|
||||||
globalState.showMessage(
|
globalState.showMessage(
|
||||||
title: appLocalizations.checkUpdate,
|
title: appLocalizations.checkUpdate,
|
||||||
message: TextSpan(
|
message: TextSpan(
|
||||||
@@ -258,43 +268,49 @@ class AppController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
afterInit() async {
|
init() async {
|
||||||
if (config.autoRun) {
|
|
||||||
await updateSystemProxy(true);
|
|
||||||
} else {
|
|
||||||
await proxyManager.updateStartTime();
|
|
||||||
await updateSystemProxy(proxyManager.isStart);
|
|
||||||
}
|
|
||||||
autoUpdateProfiles();
|
|
||||||
updateLogStatus();
|
updateLogStatus();
|
||||||
if (!config.silentLaunch) {
|
if (!config.silentLaunch) {
|
||||||
window?.show();
|
window?.show();
|
||||||
}
|
}
|
||||||
autoCheckUpdate();
|
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
||||||
}
|
if (commonScaffoldState?.mounted == true) {
|
||||||
|
await commonScaffoldState?.loadingRun(() async {
|
||||||
healthcheck() {
|
await globalState.applyProfile(
|
||||||
if (globalState.healthcheckLock) return;
|
appState: appState,
|
||||||
for (final delay in appState.delayMap.entries) {
|
config: config,
|
||||||
setDelay(
|
clashConfig: clashConfig,
|
||||||
Delay(
|
);
|
||||||
name: delay.key,
|
}, title: appLocalizations.init);
|
||||||
value: 0,
|
} else {
|
||||||
),
|
await globalState.applyProfile(
|
||||||
|
appState: appState,
|
||||||
|
config: config,
|
||||||
|
clashConfig: clashConfig,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
clashCore.healthcheck();
|
await afterInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
afterInit() async {
|
||||||
|
await proxyManager.updateStartTime();
|
||||||
|
if (proxyManager.isStart) {
|
||||||
|
await updateSystemProxy(true);
|
||||||
|
} else {
|
||||||
|
await updateSystemProxy(config.autoRun);
|
||||||
|
}
|
||||||
|
autoUpdateProfiles();
|
||||||
|
autoCheckUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
setDelay(Delay delay) {
|
setDelay(Delay delay) {
|
||||||
appState.setDelay(delay);
|
appState.setDelay(delay);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateDelayMap() async {
|
|
||||||
appState.delayMap = await clashCore.getDelayMap();
|
|
||||||
}
|
|
||||||
|
|
||||||
toPage(int index, {bool hasAnimate = false}) {
|
toPage(int index, {bool hasAnimate = false}) {
|
||||||
|
if (index > appState.currentNavigationItems.length - 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
appState.currentLabel = appState.currentNavigationItems[index].label;
|
appState.currentLabel = appState.currentNavigationItems[index].label;
|
||||||
if ((config.isAnimateToPage || hasAnimate)) {
|
if ((config.isAnimateToPage || hasAnimate)) {
|
||||||
globalState.pageController?.animateToPage(
|
globalState.pageController?.animateToPage(
|
||||||
@@ -346,98 +362,95 @@ class AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
addProfileFormURL(String url) async {
|
addProfileFormURL(String url) async {
|
||||||
globalState.navigatorKey.currentState?.popUntil((route) => route.isFirst);
|
if (globalState.navigatorKey.currentState?.canPop() ?? false) {
|
||||||
|
globalState.navigatorKey.currentState?.popUntil((route) => route.isFirst);
|
||||||
|
}
|
||||||
toProfiles();
|
toProfiles();
|
||||||
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
||||||
if (commonScaffoldState?.mounted != true) return;
|
if (commonScaffoldState?.mounted != true) return;
|
||||||
commonScaffoldState?.loadingRun(
|
final profile = await commonScaffoldState?.loadingRun<Profile>(
|
||||||
() async {
|
() async {
|
||||||
await Future.delayed(const Duration(milliseconds: 300));
|
return await Profile.normal(
|
||||||
final profile = Profile(
|
|
||||||
url: url,
|
url: url,
|
||||||
);
|
).update();
|
||||||
final res = await profile.update();
|
|
||||||
if (res.type == ResultType.success) {
|
|
||||||
addProfile(profile);
|
|
||||||
} else {
|
|
||||||
debugPrint(res.message);
|
|
||||||
globalState.showMessage(
|
|
||||||
title: "${appLocalizations.add}${appLocalizations.profile}",
|
|
||||||
message: TextSpan(text: res.message!),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
title: "${appLocalizations.add}${appLocalizations.profile}",
|
||||||
);
|
);
|
||||||
|
if (profile != null) {
|
||||||
|
await addProfile(profile);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
addProfileFormFile() async {
|
addProfileFormFile() async {
|
||||||
final result = await picker.pickerConfigFile();
|
final platformFile = await globalState.safeRun(picker.pickerConfigFile);
|
||||||
if (result.type == ResultType.error) return;
|
|
||||||
if (!context.mounted) return;
|
if (!context.mounted) return;
|
||||||
globalState.navigatorKey.currentState?.popUntil((route) => route.isFirst);
|
globalState.navigatorKey.currentState?.popUntil((route) => route.isFirst);
|
||||||
toProfiles();
|
toProfiles();
|
||||||
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
final commonScaffoldState = globalState.homeScaffoldKey.currentState;
|
||||||
if (commonScaffoldState?.mounted != true) return;
|
if (commonScaffoldState?.mounted != true) return;
|
||||||
commonScaffoldState?.loadingRun(
|
final profile = await commonScaffoldState?.loadingRun<Profile?>(
|
||||||
() async {
|
() async {
|
||||||
await Future.delayed(const Duration(milliseconds: 300));
|
await Future.delayed(const Duration(milliseconds: 300));
|
||||||
final bytes = result.data?.bytes;
|
final bytes = platformFile?.bytes;
|
||||||
if (bytes == null) {
|
if (bytes == null) {
|
||||||
return;
|
return null;
|
||||||
}
|
}
|
||||||
final profile = Profile(label: result.data?.name);
|
return await Profile.normal(label: platformFile?.name).saveFile(bytes);
|
||||||
final sRes = await profile.saveFile(bytes);
|
|
||||||
if (sRes.type == ResultType.error) {
|
|
||||||
debugPrint(sRes.message);
|
|
||||||
globalState.showMessage(
|
|
||||||
title: "${appLocalizations.add}${appLocalizations.profile}",
|
|
||||||
message: TextSpan(text: sRes.message!),
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
addProfile(profile);
|
|
||||||
},
|
},
|
||||||
|
title: "${appLocalizations.add}${appLocalizations.profile}",
|
||||||
);
|
);
|
||||||
|
if (profile != null) {
|
||||||
|
await addProfile(profile);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
addProfileFormQrCode() async {
|
addProfileFormQrCode() async {
|
||||||
final result = await picker.pickerConfigQRCode();
|
final url = await globalState.safeRun(picker.pickerConfigQRCode);
|
||||||
if (result.type == ResultType.error) {
|
if (url == null) return;
|
||||||
if (result.message != null) {
|
addProfileFormURL(url);
|
||||||
globalState.showMessage(
|
|
||||||
title: appLocalizations.tip,
|
|
||||||
message: TextSpan(
|
|
||||||
text: result.message,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
addProfileFormURL(result.data!);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
clearShowProxyDelay() {
|
int get columns =>
|
||||||
final showProxyDelay = appState.getRealProxyName(appState.showProxyName);
|
other.getColumns(appState.viewMode, config.proxiesColumns);
|
||||||
if (showProxyDelay != null) {
|
|
||||||
appState.setDelay(
|
updateViewWidth(double width) {
|
||||||
Delay(name: showProxyDelay, value: null),
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
appState.viewWidth = width;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Proxy> _sortOfName(List<Proxy> proxies) {
|
||||||
|
return List.of(proxies)
|
||||||
|
..sort(
|
||||||
|
(a, b) => other.sortByChar(a.name, b.name),
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
testShowProxyDelay() {
|
List<Proxy> _sortOfDelay(List<Proxy> proxies) {
|
||||||
final showProxyDelay = appState.getRealProxyName(appState.showProxyName);
|
return proxies = List.of(proxies)
|
||||||
if (showProxyDelay != null) {
|
..sort(
|
||||||
globalState.updateCurrentDelay(showProxyDelay);
|
(a, b) {
|
||||||
}
|
final aDelay = appState.getDelay(a.name);
|
||||||
|
final bDelay = appState.getDelay(b.name);
|
||||||
|
if (aDelay == null && bDelay == null) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (aDelay == null || aDelay == -1) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (bDelay == null || bDelay == -1) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return aDelay.compareTo(bDelay);
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateViewWidth() {
|
List<Proxy> getSortProxies(List<Proxy> proxies) {
|
||||||
appState.viewWidth = context.width;
|
return switch (config.proxiesSortType) {
|
||||||
if (appState.viewWidth == 0) {
|
ProxiesSortType.none => proxies,
|
||||||
Future.delayed(moreDuration, () {
|
ProxiesSortType.delay => _sortOfDelay(proxies),
|
||||||
updateViewWidth();
|
ProxiesSortType.name => _sortOfName(proxies),
|
||||||
});
|
};
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// ignore_for_file: constant_identifier_names
|
// ignore_for_file: constant_identifier_names
|
||||||
|
|
||||||
enum GroupType { Selector, URLTest, Fallback }
|
enum GroupType { Selector, URLTest, Fallback, LoadBalance, Relay }
|
||||||
|
|
||||||
enum GroupName { GLOBAL, Proxy, Auto, Fallback }
|
enum GroupName { GLOBAL, Proxy, Auto, Fallback }
|
||||||
|
|
||||||
@@ -56,9 +56,32 @@ enum ProfileType { file, url }
|
|||||||
|
|
||||||
enum ResultType { success, error }
|
enum ResultType { success, error }
|
||||||
|
|
||||||
enum MessageType { log, tun, delay, process, now }
|
enum AppMessageType {
|
||||||
|
log,
|
||||||
|
delay,
|
||||||
|
request,
|
||||||
|
started,
|
||||||
|
loaded,
|
||||||
|
}
|
||||||
|
|
||||||
|
enum ServiceMessageType {
|
||||||
|
protect,
|
||||||
|
process,
|
||||||
|
started,
|
||||||
|
loaded,
|
||||||
|
}
|
||||||
|
|
||||||
|
enum FindProcessMode { always, off }
|
||||||
|
|
||||||
enum RecoveryOption {
|
enum RecoveryOption {
|
||||||
all,
|
all,
|
||||||
onlyProfiles,
|
onlyProfiles,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum ChipType { action, delete }
|
||||||
|
|
||||||
|
enum CommonCardType { plain, filled }
|
||||||
|
|
||||||
|
enum ProxiesType { tab, list }
|
||||||
|
|
||||||
|
enum ProxyCardType { expand, shrink, min }
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:fl_clash/models/common.dart';
|
|
||||||
import 'package:fl_clash/state.dart';
|
import 'package:fl_clash/state.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
class AboutFragment extends StatelessWidget {
|
class AboutFragment extends StatelessWidget {
|
||||||
@@ -11,13 +9,13 @@ class AboutFragment extends StatelessWidget {
|
|||||||
_checkUpdate(BuildContext context) async {
|
_checkUpdate(BuildContext context) async {
|
||||||
final commonScaffoldState = context.commonScaffoldState;
|
final commonScaffoldState = context.commonScaffoldState;
|
||||||
if (commonScaffoldState?.mounted != true) return;
|
if (commonScaffoldState?.mounted != true) return;
|
||||||
final res =
|
final data =
|
||||||
await commonScaffoldState?.loadingRun<Result<Map<String, dynamic>>>(
|
await commonScaffoldState?.loadingRun<Map<String, dynamic>?>(
|
||||||
Request.checkForUpdate,
|
request.checkForUpdate,
|
||||||
title: appLocalizations.checkUpdate,
|
title: appLocalizations.checkUpdate,
|
||||||
);
|
);
|
||||||
globalState.appController.checkUpdateResultHandle(
|
globalState.appController.checkUpdateResultHandle(
|
||||||
result: res,
|
data: data,
|
||||||
handleError: true,
|
handleError: true,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -50,16 +48,9 @@ class AboutFragment extends StatelessWidget {
|
|||||||
appName,
|
appName,
|
||||||
style: Theme.of(context).textTheme.headlineSmall,
|
style: Theme.of(context).textTheme.headlineSmall,
|
||||||
),
|
),
|
||||||
FutureBuilder<PackageInfo>(
|
Text(
|
||||||
future: appPackage.packageInfoCompleter.future,
|
globalState.packageInfo.version,
|
||||||
builder: (_, package) {
|
style: Theme.of(context).textTheme.labelLarge,
|
||||||
final version = package.data?.version;
|
|
||||||
if (version == null) return Container();
|
|
||||||
return Text(
|
|
||||||
version,
|
|
||||||
style: Theme.of(context).textTheme.labelLarge,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,11 +1,20 @@
|
|||||||
|
import 'package:collection/collection.dart';
|
||||||
import 'package:fl_clash/enum/enum.dart';
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
import 'package:fl_clash/plugins/app.dart';
|
import 'package:fl_clash/plugins/app.dart';
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
|
import 'package:fl_clash/state.dart';
|
||||||
import 'package:fl_clash/widgets/widgets.dart';
|
import 'package:fl_clash/widgets/widgets.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
extension AccessControlExtension on AccessControl {
|
||||||
|
List<String> get currentList => switch (mode) {
|
||||||
|
AccessControlMode.acceptSelected => acceptList,
|
||||||
|
AccessControlMode.rejectSelected => rejectList,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
class AccessFragment extends StatefulWidget {
|
class AccessFragment extends StatefulWidget {
|
||||||
const AccessFragment({super.key});
|
const AccessFragment({super.key});
|
||||||
|
|
||||||
@@ -19,11 +28,19 @@ class _AccessFragmentState extends State<AccessFragment> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
packagesListenable.value = await app?.getPackages() ?? [];
|
Future.delayed(const Duration(milliseconds: 300), () async {
|
||||||
|
packagesListenable.value = await app?.getPackages() ?? [];
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
packagesListenable.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
Widget _buildAppProxyModePopup() {
|
Widget _buildAppProxyModePopup() {
|
||||||
final items = [
|
final items = [
|
||||||
CommonPopupMenuItem(
|
CommonPopupMenuItem(
|
||||||
@@ -79,130 +96,103 @@ class _AccessFragmentState extends State<AccessFragment> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildSelectedAllButton({
|
Widget _buildSearchButton(List<Package> packages) {
|
||||||
required bool isSelectedAll,
|
return IconButton(
|
||||||
required List<String> allValueList,
|
tooltip: appLocalizations.search,
|
||||||
}) {
|
onPressed: () {
|
||||||
return Builder(
|
showSearch(
|
||||||
builder: (context) {
|
context: context,
|
||||||
final tooltip = isSelectedAll
|
delegate: AccessControlSearchDelegate(
|
||||||
? appLocalizations.cancelSelectAll
|
packages: packages,
|
||||||
: appLocalizations.selectAll;
|
),
|
||||||
return IconButton(
|
).then((_) => {setState(() {})});
|
||||||
tooltip: tooltip,
|
|
||||||
onPressed: () {
|
|
||||||
final config = context.read<Config>();
|
|
||||||
if (isSelectedAll) {
|
|
||||||
config.accessControl.currentList = [];
|
|
||||||
config.accessControl = config.accessControl.copyWith();
|
|
||||||
} else {
|
|
||||||
config.accessControl.currentList = allValueList;
|
|
||||||
config.accessControl = config.accessControl.copyWith();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
icon: isSelectedAll
|
|
||||||
? const Icon(Icons.deselect)
|
|
||||||
: const Icon(Icons.select_all),
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
|
icon: const Icon(Icons.search),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _actionHeader({
|
Widget _buildSelectedAllButton({
|
||||||
required bool isAccessControl,
|
required bool isAccessControl,
|
||||||
required List<String> valueList,
|
required bool isSelectedAll,
|
||||||
required String describe,
|
required List<String> allValueList,
|
||||||
required List<String> packageNameList,
|
|
||||||
}) {
|
}) {
|
||||||
|
final tooltip = isSelectedAll
|
||||||
|
? appLocalizations.cancelSelectAll
|
||||||
|
: appLocalizations.selectAll;
|
||||||
return AbsorbPointer(
|
return AbsorbPointer(
|
||||||
absorbing: !isAccessControl,
|
absorbing: !isAccessControl,
|
||||||
child: Padding(
|
child: FloatingActionButton(
|
||||||
padding: const EdgeInsets.only(
|
tooltip: tooltip,
|
||||||
top: 4,
|
onPressed: () {
|
||||||
bottom: 4,
|
final config = globalState.appController.config;
|
||||||
left: 16,
|
final isAccept =
|
||||||
right: 8,
|
config.accessControl.mode == AccessControlMode.acceptSelected;
|
||||||
),
|
|
||||||
child: Row(
|
if (isSelectedAll) {
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
config.accessControl = switch (isAccept) {
|
||||||
mainAxisSize: MainAxisSize.max,
|
true => config.accessControl.copyWith(
|
||||||
children: [
|
acceptList: [],
|
||||||
Expanded(
|
|
||||||
child: IntrinsicHeight(
|
|
||||||
child: Column(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Flexible(
|
|
||||||
child: Text(
|
|
||||||
appLocalizations.selected,
|
|
||||||
style: Theme.of(context)
|
|
||||||
.textTheme
|
|
||||||
.labelLarge
|
|
||||||
?.copyWith(
|
|
||||||
color:
|
|
||||||
Theme.of(context).colorScheme.primary,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Flexible(
|
|
||||||
child: SizedBox(
|
|
||||||
width: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
child: Text(
|
|
||||||
"${valueList.length}",
|
|
||||||
style: Theme.of(context)
|
|
||||||
.textTheme
|
|
||||||
.labelLarge
|
|
||||||
?.copyWith(
|
|
||||||
color:
|
|
||||||
Theme.of(context).colorScheme.primary,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
child: Text(describe),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
false => config.accessControl.copyWith(
|
||||||
),
|
rejectList: [],
|
||||||
Row(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.end,
|
|
||||||
children: [
|
|
||||||
Flexible(
|
|
||||||
child: _buildSelectedAllButton(
|
|
||||||
isSelectedAll: valueList.length == packageNameList.length,
|
|
||||||
allValueList: packageNameList,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
Flexible(child: _buildFilterSystemAppButton()),
|
};
|
||||||
Flexible(child: _buildAppProxyModePopup()),
|
} else {
|
||||||
],
|
config.accessControl = switch (isAccept) {
|
||||||
),
|
true => config.accessControl.copyWith(
|
||||||
],
|
acceptList: allValueList,
|
||||||
),
|
),
|
||||||
|
false => config.accessControl.copyWith(
|
||||||
|
rejectList: allValueList,
|
||||||
|
),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
child: isSelectedAll
|
||||||
|
? const Icon(Icons.deselect)
|
||||||
|
: const Icon(Icons.select_all),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildPackageList(bool isAccessControl) {
|
Widget _buildPackageList() {
|
||||||
return ValueListenableBuilder(
|
return ValueListenableBuilder(
|
||||||
valueListenable: packagesListenable,
|
valueListenable: packagesListenable,
|
||||||
builder: (_, packages, ___) {
|
builder: (_, packages, ___) {
|
||||||
return Selector<Config, AccessControl>(
|
final accessControl = globalState.appController.config.accessControl;
|
||||||
selector: (_, config) => config.accessControl,
|
final acceptList = accessControl.acceptList;
|
||||||
builder: (context, accessControl, __) {
|
final rejectList = accessControl.rejectList;
|
||||||
|
final acceptPackages = packages.sorted((a, b) {
|
||||||
|
final isSelectA = acceptList.contains(a.packageName);
|
||||||
|
final isSelectB = acceptList.contains(b.packageName);
|
||||||
|
if (isSelectA && isSelectB) return 0;
|
||||||
|
if (isSelectA) return -1;
|
||||||
|
if (isSelectB) return 1;
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
final rejectPackages = packages.sorted((a, b) {
|
||||||
|
final isSelectA = rejectList.contains(a.packageName);
|
||||||
|
final isSelectB = rejectList.contains(b.packageName);
|
||||||
|
if (isSelectA && isSelectB) return 0;
|
||||||
|
if (isSelectA) return -1;
|
||||||
|
if (isSelectB) return 1;
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
return Selector<Config, PackageListSelectorState>(
|
||||||
|
selector: (_, config) => PackageListSelectorState(
|
||||||
|
accessControl: config.accessControl,
|
||||||
|
isAccessControl: config.isAccessControl,
|
||||||
|
),
|
||||||
|
builder: (context, state, __) {
|
||||||
|
final accessControl = state.accessControl;
|
||||||
|
final isAccessControl = state.isAccessControl;
|
||||||
final isFilterSystemApp = accessControl.isFilterSystemApp;
|
final isFilterSystemApp = accessControl.isFilterSystemApp;
|
||||||
|
final accessControlMode = accessControl.mode;
|
||||||
|
final packages =
|
||||||
|
accessControlMode == AccessControlMode.acceptSelected
|
||||||
|
? acceptPackages
|
||||||
|
: rejectPackages;
|
||||||
|
final currentList = accessControl.currentList;
|
||||||
final currentPackages = isFilterSystemApp
|
final currentPackages = isFilterSystemApp
|
||||||
? packages
|
? packages
|
||||||
.where((element) => element.isSystem == false)
|
.where((element) => element.isSystem == false)
|
||||||
@@ -210,60 +200,146 @@ class _AccessFragmentState extends State<AccessFragment> {
|
|||||||
: packages;
|
: packages;
|
||||||
final packageNameList =
|
final packageNameList =
|
||||||
currentPackages.map((e) => e.packageName).toList();
|
currentPackages.map((e) => e.packageName).toList();
|
||||||
final accessControlMode = accessControl.mode;
|
final valueList = currentList.intersection(packageNameList);
|
||||||
final valueList =
|
|
||||||
accessControl.currentList.intersection(packageNameList);
|
|
||||||
final describe =
|
final describe =
|
||||||
accessControlMode == AccessControlMode.acceptSelected
|
accessControlMode == AccessControlMode.acceptSelected
|
||||||
? appLocalizations.accessControlAllowDesc
|
? appLocalizations.accessControlAllowDesc
|
||||||
: appLocalizations.accessControlNotAllowDesc;
|
: appLocalizations.accessControlNotAllowDesc;
|
||||||
|
|
||||||
return DisabledMask(
|
return DisabledMask(
|
||||||
status: !isAccessControl,
|
status: !isAccessControl,
|
||||||
child: Column(
|
child: FloatLayout(
|
||||||
children: [
|
floatingWidget: FloatWrapper(
|
||||||
_actionHeader(
|
child: _buildSelectedAllButton(
|
||||||
isAccessControl: isAccessControl,
|
isAccessControl: isAccessControl,
|
||||||
valueList: valueList,
|
isSelectedAll: valueList.length == packageNameList.length,
|
||||||
describe: describe,
|
allValueList: packageNameList,
|
||||||
packageNameList: packageNameList,
|
|
||||||
),
|
),
|
||||||
Expanded(
|
),
|
||||||
flex: 1,
|
child: Column(
|
||||||
child: FadeBox(
|
children: [
|
||||||
key: const Key("fade_box"),
|
AbsorbPointer(
|
||||||
child: currentPackages.isEmpty
|
absorbing: !isAccessControl,
|
||||||
? const Center(
|
child: Padding(
|
||||||
child: CircularProgressIndicator(),
|
padding: const EdgeInsets.only(
|
||||||
)
|
top: 4,
|
||||||
: ListView.builder(
|
bottom: 4,
|
||||||
itemCount: currentPackages.length,
|
left: 16,
|
||||||
itemBuilder: (_, index) {
|
right: 8,
|
||||||
final package = currentPackages[index];
|
),
|
||||||
return PackageListItem(
|
child: Row(
|
||||||
key: Key(package.label),
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
package: package,
|
mainAxisSize: MainAxisSize.max,
|
||||||
value:
|
children: [
|
||||||
valueList.contains(package.packageName),
|
Expanded(
|
||||||
isActive: isAccessControl,
|
child: IntrinsicHeight(
|
||||||
onChanged: (value) {
|
child: Column(
|
||||||
if (value == true) {
|
mainAxisSize: MainAxisSize.max,
|
||||||
valueList.add(package.packageName);
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
} else {
|
children: [
|
||||||
valueList.remove(package.packageName);
|
Expanded(
|
||||||
}
|
child: Row(
|
||||||
final config = context.read<Config>();
|
children: [
|
||||||
config.accessControl.currentList =
|
Flexible(
|
||||||
valueList;
|
child: Text(
|
||||||
config.accessControl =
|
appLocalizations.selected,
|
||||||
config.accessControl.copyWith();
|
style: Theme.of(context)
|
||||||
},
|
.textTheme
|
||||||
);
|
.labelLarge
|
||||||
},
|
?.copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const Flexible(
|
||||||
|
child: SizedBox(
|
||||||
|
width: 8,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
child: Text(
|
||||||
|
"${valueList.length}",
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelLarge
|
||||||
|
?.copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
child: Text(describe),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
|
Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
Flexible(
|
||||||
|
child: _buildSearchButton(currentPackages)),
|
||||||
|
Flexible(child: _buildFilterSystemAppButton()),
|
||||||
|
Flexible(child: _buildAppProxyModePopup()),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
Expanded(
|
||||||
],
|
flex: 1,
|
||||||
|
child: FadeBox(
|
||||||
|
key: const Key("fade_box"),
|
||||||
|
child: currentPackages.isEmpty
|
||||||
|
? const Center(
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
)
|
||||||
|
: ListView.builder(
|
||||||
|
itemCount: currentPackages.length,
|
||||||
|
itemBuilder: (_, index) {
|
||||||
|
final package = currentPackages[index];
|
||||||
|
return PackageListItem(
|
||||||
|
key: Key(package.packageName),
|
||||||
|
package: package,
|
||||||
|
value:
|
||||||
|
valueList.contains(package.packageName),
|
||||||
|
isActive: isAccessControl,
|
||||||
|
onChanged: (value) {
|
||||||
|
if (value == true) {
|
||||||
|
valueList.add(package.packageName);
|
||||||
|
} else {
|
||||||
|
valueList.remove(package.packageName);
|
||||||
|
}
|
||||||
|
final config =
|
||||||
|
globalState.appController.config;
|
||||||
|
if (accessControlMode ==
|
||||||
|
AccessControlMode.acceptSelected) {
|
||||||
|
config.accessControl =
|
||||||
|
config.accessControl.copyWith(
|
||||||
|
acceptList: valueList,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
config.accessControl =
|
||||||
|
config.accessControl.copyWith(
|
||||||
|
rejectList: valueList,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@@ -276,7 +352,7 @@ class _AccessFragmentState extends State<AccessFragment> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Selector<Config, bool>(
|
return Selector<Config, bool>(
|
||||||
selector: (_, config) => config.isAccessControl,
|
selector: (_, config) => config.isAccessControl,
|
||||||
builder: (_, isAccessControl, __) {
|
builder: (_, isAccessControl, child) {
|
||||||
return Column(
|
return Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
children: [
|
children: [
|
||||||
@@ -300,11 +376,12 @@ class _AccessFragmentState extends State<AccessFragment> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
Flexible(
|
Flexible(
|
||||||
child: _buildPackageList(isAccessControl),
|
child: child!,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
child: _buildPackageList(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -369,3 +446,111 @@ class PackageListItem extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class AccessControlSearchDelegate extends SearchDelegate {
|
||||||
|
final List<Package> packages;
|
||||||
|
|
||||||
|
AccessControlSearchDelegate({
|
||||||
|
required this.packages,
|
||||||
|
});
|
||||||
|
|
||||||
|
List<Package> get _results {
|
||||||
|
final lowQuery = query.toLowerCase();
|
||||||
|
return packages
|
||||||
|
.where(
|
||||||
|
(package) =>
|
||||||
|
package.label.toLowerCase().contains(lowQuery) ||
|
||||||
|
package.packageName.contains(lowQuery),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<Widget>? buildActions(BuildContext context) {
|
||||||
|
return [
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
if (query.isEmpty) {
|
||||||
|
close(context, null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
query = '';
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.clear),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 8,
|
||||||
|
)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget? buildLeading(BuildContext context) {
|
||||||
|
return IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
close(context, null);
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _packageList(List<Package> packages) {
|
||||||
|
return Selector<Config, PackageListSelectorState>(
|
||||||
|
selector: (_, config) => PackageListSelectorState(
|
||||||
|
accessControl: config.accessControl,
|
||||||
|
isAccessControl: config.isAccessControl,
|
||||||
|
),
|
||||||
|
builder: (context, state, __) {
|
||||||
|
final accessControl = state.accessControl;
|
||||||
|
final isAccessControl = state.isAccessControl;
|
||||||
|
final accessControlMode = accessControl.mode;
|
||||||
|
final currentList = accessControl.currentList;
|
||||||
|
final packageNameList =
|
||||||
|
this.packages.map((e) => e.packageName).toList();
|
||||||
|
final valueList = currentList.intersection(packageNameList);
|
||||||
|
return DisabledMask(
|
||||||
|
status: !isAccessControl,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: packages.length,
|
||||||
|
itemBuilder: (_, index) {
|
||||||
|
final package = packages[index];
|
||||||
|
return PackageListItem(
|
||||||
|
key: Key(package.packageName),
|
||||||
|
package: package,
|
||||||
|
value: valueList.contains(package.packageName),
|
||||||
|
isActive: isAccessControl,
|
||||||
|
onChanged: (value) {
|
||||||
|
if (value == true) {
|
||||||
|
valueList.add(package.packageName);
|
||||||
|
} else {
|
||||||
|
valueList.remove(package.packageName);
|
||||||
|
}
|
||||||
|
final config = globalState.appController.config;
|
||||||
|
if (accessControlMode == AccessControlMode.acceptSelected) {
|
||||||
|
config.accessControl = config.accessControl.copyWith(
|
||||||
|
acceptList: valueList,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
config.accessControl = config.accessControl.copyWith(
|
||||||
|
rejectList: valueList,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget buildResults(BuildContext context) {
|
||||||
|
return buildSuggestions(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget buildSuggestions(BuildContext context) {
|
||||||
|
return _packageList(_results);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -89,6 +89,24 @@ class ApplicationSettingFragment extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
if (Platform.isAndroid)
|
||||||
|
Selector<Config, bool>(
|
||||||
|
selector: (_, config) => config.isExclude,
|
||||||
|
builder: (_, isExclude, child) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.visibility_off),
|
||||||
|
title: Text(appLocalizations.exclude),
|
||||||
|
subtitle: Text(appLocalizations.excludeDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: isExclude,
|
||||||
|
onChanged: (value) {
|
||||||
|
final config = context.read<Config>();
|
||||||
|
config.isExclude = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
if (Platform.isAndroid)
|
if (Platform.isAndroid)
|
||||||
Selector<Config, bool>(
|
Selector<Config, bool>(
|
||||||
selector: (_, config) => config.isAnimateToPage,
|
selector: (_, config) => config.isAnimateToPage,
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import 'package:fl_clash/models/dav.dart';
|
|||||||
import 'package:fl_clash/state.dart';
|
import 'package:fl_clash/state.dart';
|
||||||
import 'package:fl_clash/widgets/fade_box.dart';
|
import 'package:fl_clash/widgets/fade_box.dart';
|
||||||
import 'package:fl_clash/widgets/list.dart';
|
import 'package:fl_clash/widgets/list.dart';
|
||||||
import 'package:fl_clash/widgets/section.dart';
|
|
||||||
import 'package:fl_clash/widgets/text.dart';
|
import 'package:fl_clash/widgets/text.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
@@ -34,9 +33,9 @@ class _BackupAndRecoveryState extends State<BackupAndRecovery> {
|
|||||||
final res = await commonScaffoldState?.loadingRun<bool>(() async {
|
final res = await commonScaffoldState?.loadingRun<bool>(() async {
|
||||||
return await _client?.backup();
|
return await _client?.backup();
|
||||||
});
|
});
|
||||||
if(res != true) return;
|
if (res != true) return;
|
||||||
globalState.showMessage(
|
globalState.showMessage(
|
||||||
title: appLocalizations.recovery,
|
title: appLocalizations.backup,
|
||||||
message: TextSpan(text: appLocalizations.backupSuccess),
|
message: TextSpan(text: appLocalizations.backupSuccess),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -46,7 +45,7 @@ class _BackupAndRecoveryState extends State<BackupAndRecovery> {
|
|||||||
final res = await commonScaffoldState?.loadingRun<bool>(() async {
|
final res = await commonScaffoldState?.loadingRun<bool>(() async {
|
||||||
return await _client?.recovery(recoveryOption: recoveryOption);
|
return await _client?.recovery(recoveryOption: recoveryOption);
|
||||||
});
|
});
|
||||||
if(res != true) return;
|
if (res != true) return;
|
||||||
globalState.showMessage(
|
globalState.showMessage(
|
||||||
title: appLocalizations.recovery,
|
title: appLocalizations.recovery,
|
||||||
message: TextSpan(text: appLocalizations.recoverySuccess),
|
message: TextSpan(text: appLocalizations.recoverySuccess),
|
||||||
@@ -69,26 +68,22 @@ class _BackupAndRecoveryState extends State<BackupAndRecovery> {
|
|||||||
if (dav == null) {
|
if (dav == null) {
|
||||||
return ListView(
|
return ListView(
|
||||||
children: [
|
children: [
|
||||||
Section(
|
ListHeader(
|
||||||
title: appLocalizations.account,
|
title: appLocalizations.account,
|
||||||
child: Builder(
|
),
|
||||||
builder: (_) {
|
ListItem(
|
||||||
return ListItem(
|
leading: const Icon(Icons.account_box),
|
||||||
leading: const Icon(Icons.account_box),
|
title: Text(appLocalizations.noInfo),
|
||||||
title: Text(appLocalizations.noInfo),
|
subtitle: Text(appLocalizations.pleaseBindWebDAV),
|
||||||
subtitle: Text(appLocalizations.pleaseBindWebDAV),
|
trailing: FilledButton.tonal(
|
||||||
trailing: FilledButton.tonal(
|
onPressed: () {
|
||||||
onPressed: () {
|
_showAddWebDAV(dav);
|
||||||
_showAddWebDAV(dav);
|
|
||||||
},
|
|
||||||
child: Text(
|
|
||||||
appLocalizations.bind,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
|
child: Text(
|
||||||
|
appLocalizations.bind,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
)
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -96,62 +91,60 @@ class _BackupAndRecoveryState extends State<BackupAndRecovery> {
|
|||||||
final pingFuture = _client!.pingCompleter.future;
|
final pingFuture = _client!.pingCompleter.future;
|
||||||
return ListView(
|
return ListView(
|
||||||
children: [
|
children: [
|
||||||
Section(
|
ListHeader(title: appLocalizations.account),
|
||||||
title: appLocalizations.account,
|
ListItem(
|
||||||
child: ListItem(
|
leading: const Icon(Icons.account_box),
|
||||||
leading: const Icon(Icons.account_box),
|
title: TooltipText(
|
||||||
title: TooltipText(
|
text: Text(
|
||||||
text: Text(
|
dav.user,
|
||||||
dav.user,
|
maxLines: 1,
|
||||||
maxLines: 1,
|
overflow: TextOverflow.ellipsis,
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
subtitle: Padding(
|
),
|
||||||
padding: const EdgeInsets.symmetric(vertical: 4),
|
subtitle: Padding(
|
||||||
child: Row(
|
padding: const EdgeInsets.symmetric(vertical: 4),
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
child: Row(
|
||||||
children: [
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
Text(appLocalizations.connectivity),
|
children: [
|
||||||
FutureBuilder<bool>(
|
Text(appLocalizations.connectivity),
|
||||||
future: pingFuture,
|
FutureBuilder<bool>(
|
||||||
builder: (_, snapshot) {
|
future: pingFuture,
|
||||||
return Center(
|
builder: (_, snapshot) {
|
||||||
child: FadeBox(
|
return Center(
|
||||||
key: const Key("fade_box_1"),
|
child: FadeBox(
|
||||||
child: snapshot.connectionState ==
|
key: const Key("fade_box_1"),
|
||||||
ConnectionState.waiting
|
child: snapshot.connectionState ==
|
||||||
? const SizedBox(
|
ConnectionState.waiting
|
||||||
width: 12,
|
? const SizedBox(
|
||||||
height: 12,
|
width: 12,
|
||||||
child: CircularProgressIndicator(
|
height: 12,
|
||||||
strokeWidth: 1,
|
child: CircularProgressIndicator(
|
||||||
),
|
strokeWidth: 1,
|
||||||
)
|
|
||||||
: Container(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
shape: BoxShape.circle,
|
|
||||||
color: snapshot.data == true
|
|
||||||
? Colors.green
|
|
||||||
: Colors.red,
|
|
||||||
),
|
|
||||||
width: 12,
|
|
||||||
height: 12,
|
|
||||||
),
|
),
|
||||||
),
|
)
|
||||||
);
|
: Container(
|
||||||
},
|
decoration: BoxDecoration(
|
||||||
),
|
shape: BoxShape.circle,
|
||||||
],
|
color: snapshot.data == true
|
||||||
),
|
? Colors.green
|
||||||
|
: Colors.red,
|
||||||
|
),
|
||||||
|
width: 12,
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
trailing: FilledButton.tonal(
|
),
|
||||||
onPressed: () {
|
trailing: FilledButton.tonal(
|
||||||
_showAddWebDAV(dav);
|
onPressed: () {
|
||||||
},
|
_showAddWebDAV(dav);
|
||||||
child: Text(
|
},
|
||||||
appLocalizations.edit,
|
child: Text(
|
||||||
),
|
appLocalizations.edit,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -161,22 +154,21 @@ class _BackupAndRecoveryState extends State<BackupAndRecovery> {
|
|||||||
return FadeBox(
|
return FadeBox(
|
||||||
key: const Key("fade_box_2"),
|
key: const Key("fade_box_2"),
|
||||||
child: snapshot.data == true
|
child: snapshot.data == true
|
||||||
? Section(
|
? Column(
|
||||||
title: appLocalizations.backupAndRecovery,
|
children: [
|
||||||
child: Column(
|
ListHeader(
|
||||||
children: [
|
title: appLocalizations.backupAndRecovery),
|
||||||
ListItem(
|
ListItem(
|
||||||
onTab: _backup,
|
onTab: _backup,
|
||||||
title: Text(appLocalizations.backup),
|
title: Text(appLocalizations.backup),
|
||||||
subtitle: Text(appLocalizations.backupDesc),
|
subtitle: Text(appLocalizations.backupDesc),
|
||||||
),
|
),
|
||||||
ListItem(
|
ListItem(
|
||||||
onTab: _handleRecovery,
|
onTab: _handleRecovery,
|
||||||
title: Text(appLocalizations.recovery),
|
title: Text(appLocalizations.recovery),
|
||||||
subtitle: Text(appLocalizations.recoveryDesc),
|
subtitle: Text(appLocalizations.recoveryDesc),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
|
||||||
)
|
)
|
||||||
: Container(),
|
: Container(),
|
||||||
);
|
);
|
||||||
@@ -228,6 +220,12 @@ class _WebDAVFormDialogState extends State<WebDAVFormDialog> {
|
|||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
_obscureController.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:fl_clash/enum/enum.dart';
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
@@ -37,141 +39,409 @@ class _ConfigFragmentState extends State<ConfigFragment> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_updateLoglevel(LogLevel? logLevel) {
|
_showLogLevelDialog(LogLevel value) {
|
||||||
if (logLevel == null ||
|
globalState.showCommonDialog(
|
||||||
logLevel == globalState.appController.clashConfig.logLevel) return;
|
child: AlertDialog(
|
||||||
globalState.appController.clashConfig.logLevel = logLevel;
|
title: Text(appLocalizations.logLevel),
|
||||||
globalState.appController.updateClashConfigDebounce();
|
contentPadding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8,
|
||||||
|
vertical: 16,
|
||||||
|
),
|
||||||
|
content: SizedBox(
|
||||||
|
width: 250,
|
||||||
|
child: Wrap(
|
||||||
|
children: [
|
||||||
|
for (final logLevel in LogLevel.values)
|
||||||
|
ListItem.radio(
|
||||||
|
delegate: RadioDelegate<LogLevel>(
|
||||||
|
value: logLevel,
|
||||||
|
groupValue: value,
|
||||||
|
onChanged: (LogLevel? value) {
|
||||||
|
if (value == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.logLevel = value;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
title: Text(logLevel.name),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
_showUaDialog(String? value) {
|
||||||
Widget build(BuildContext context) {
|
const uas = [
|
||||||
List<Widget> items = [
|
null,
|
||||||
Selector<ClashConfig, int>(
|
"clash-verge/v1.6.6",
|
||||||
selector: (_, clashConfig) => clashConfig.mixedPort,
|
"ClashforWindows/0.19.23",
|
||||||
builder: (_, mixedPort, __) {
|
];
|
||||||
return ListItem(
|
globalState.showCommonDialog(
|
||||||
onTab: () {
|
child: AlertDialog(
|
||||||
_modifyMixedPort(mixedPort);
|
title: const Text("UA"),
|
||||||
|
contentPadding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8,
|
||||||
|
vertical: 16,
|
||||||
|
),
|
||||||
|
content: SizedBox(
|
||||||
|
width: 250,
|
||||||
|
child: Wrap(
|
||||||
|
children: [
|
||||||
|
for (final ua in uas)
|
||||||
|
ListItem.radio(
|
||||||
|
delegate: RadioDelegate<String?>(
|
||||||
|
value: ua,
|
||||||
|
groupValue: value,
|
||||||
|
onChanged: (String? value) {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.globalRealUa = value;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
title: Text(ua ?? appLocalizations.defaultText),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_modifyTestUrl(String testUrl) async {
|
||||||
|
final newTestUrl = await globalState.showCommonDialog<String>(
|
||||||
|
child: TestUrlFormDialog(
|
||||||
|
testUrl: testUrl,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
if (newTestUrl != null && newTestUrl != testUrl && mounted) {
|
||||||
|
try {
|
||||||
|
if (!newTestUrl.isUrl) {
|
||||||
|
throw "Invalid url";
|
||||||
|
}
|
||||||
|
globalState.appController.config.testUrl = newTestUrl;
|
||||||
|
globalState.appController.updateClashConfigDebounce();
|
||||||
|
} catch (e) {
|
||||||
|
globalState.showMessage(
|
||||||
|
title: appLocalizations.testUrl,
|
||||||
|
message: TextSpan(
|
||||||
|
text: e.toString(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildAppSection() {
|
||||||
|
return generateSection(
|
||||||
|
title: appLocalizations.app,
|
||||||
|
items: [
|
||||||
|
if (Platform.isAndroid)
|
||||||
|
Selector<Config, bool>(
|
||||||
|
selector: (_, config) => config.allowBypass,
|
||||||
|
builder: (_, allowBypass, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.arrow_forward_outlined),
|
||||||
|
title: Text(appLocalizations.allowBypass),
|
||||||
|
subtitle: Text(appLocalizations.allowBypassDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: allowBypass,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.config.allowBypass = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
},
|
},
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 16,vertical: 4),
|
),
|
||||||
leading: const Icon(Icons.adjust),
|
if (Platform.isAndroid)
|
||||||
title: Text(appLocalizations.proxyPort),
|
Selector<Config, bool>(
|
||||||
trailing: FilledButton.tonal(
|
selector: (_, config) => config.systemProxy,
|
||||||
onPressed: () {
|
builder: (_, systemProxy, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.settings_ethernet),
|
||||||
|
title: Text(appLocalizations.systemProxy),
|
||||||
|
subtitle: Text(appLocalizations.systemProxyDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: systemProxy,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.config.systemProxy = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<Config, bool>(
|
||||||
|
selector: (_, config) => config.isCompatible,
|
||||||
|
builder: (_, isCompatible, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.expand_outlined),
|
||||||
|
title: Text(appLocalizations.compatible),
|
||||||
|
subtitle: Text(appLocalizations.compatibleDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: isCompatible,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.config.isCompatible = value;
|
||||||
|
await appController.applyProfile();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildGeneralSection() {
|
||||||
|
return generateSection(
|
||||||
|
title: appLocalizations.general,
|
||||||
|
items: [
|
||||||
|
Selector<ClashConfig, LogLevel>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.logLevel,
|
||||||
|
builder: (_, value, __) {
|
||||||
|
return ListItem(
|
||||||
|
leading: const Icon(Icons.info_outline),
|
||||||
|
title: Text(appLocalizations.logLevel),
|
||||||
|
subtitle: Text(value.name),
|
||||||
|
onTab: () {
|
||||||
|
_showLogLevelDialog(value);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, String?>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.globalRealUa,
|
||||||
|
builder: (_, value, __) {
|
||||||
|
return ListItem(
|
||||||
|
leading: const Icon(Icons.computer_outlined),
|
||||||
|
title: const Text("UA"),
|
||||||
|
subtitle: Text(value ?? appLocalizations.defaultText),
|
||||||
|
onTab: () {
|
||||||
|
_showUaDialog(value);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<Config, String>(
|
||||||
|
selector: (_, config) => config.testUrl,
|
||||||
|
builder: (_, value, __) {
|
||||||
|
return ListItem(
|
||||||
|
leading: const Icon(Icons.timeline),
|
||||||
|
title: Text(appLocalizations.testUrl),
|
||||||
|
subtitle: Text(value),
|
||||||
|
onTab: () {
|
||||||
|
_modifyTestUrl(value);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, int>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.mixedPort,
|
||||||
|
builder: (_, mixedPort, __) {
|
||||||
|
return ListItem(
|
||||||
|
onTab: () {
|
||||||
_modifyMixedPort(mixedPort);
|
_modifyMixedPort(mixedPort);
|
||||||
},
|
},
|
||||||
child: Text(
|
leading: const Icon(Icons.adjust_outlined),
|
||||||
"$mixedPort",
|
title: Text(appLocalizations.proxyPort),
|
||||||
|
subtitle: Text(appLocalizations.proxyPortDesc),
|
||||||
|
trailing: FilledButton.tonal(
|
||||||
|
onPressed: () {
|
||||||
|
_modifyMixedPort(mixedPort);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
"$mixedPort",
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
);
|
},
|
||||||
},
|
),
|
||||||
),
|
|
||||||
Selector<ClashConfig, bool>(
|
|
||||||
selector: (_, clashConfig) => clashConfig.allowLan,
|
|
||||||
builder: (_, allowLan, __) {
|
|
||||||
return ListItem.switchItem(
|
|
||||||
leading: const Icon(Icons.device_hub),
|
|
||||||
title: Text(appLocalizations.allowLan),
|
|
||||||
subtitle: Text(appLocalizations.allowLanDesc),
|
|
||||||
delegate: SwitchDelegate(
|
|
||||||
value: allowLan,
|
|
||||||
onChanged: (bool value) async {
|
|
||||||
final clashConfig = context.read<ClashConfig>();
|
|
||||||
clashConfig.allowLan = value;
|
|
||||||
globalState.appController.updateClashConfigDebounce();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
if (system.isDesktop)
|
|
||||||
Selector<ClashConfig, bool>(
|
Selector<ClashConfig, bool>(
|
||||||
selector: (_, clashConfig) => clashConfig.tun.enable,
|
selector: (_, clashConfig) => clashConfig.ipv6,
|
||||||
builder: (_, tunEnable, __) {
|
builder: (_, ipv6, __) {
|
||||||
return ListItem.switchItem(
|
return ListItem.switchItem(
|
||||||
leading: const Icon(Icons.support),
|
leading: const Icon(Icons.water_outlined),
|
||||||
title: Text(appLocalizations.tun),
|
title: const Text("IPv6"),
|
||||||
subtitle: Text(appLocalizations.tunDesc),
|
subtitle: Text(appLocalizations.ipv6Desc),
|
||||||
delegate: SwitchDelegate(
|
delegate: SwitchDelegate(
|
||||||
value: tunEnable,
|
value: ipv6,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.ipv6 = value;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.allowLan,
|
||||||
|
builder: (_, allowLan, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.device_hub),
|
||||||
|
title: Text(appLocalizations.allowLan),
|
||||||
|
subtitle: Text(appLocalizations.allowLanDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: allowLan,
|
||||||
onChanged: (bool value) async {
|
onChanged: (bool value) async {
|
||||||
final clashConfig = context.read<ClashConfig>();
|
final clashConfig = context.read<ClashConfig>();
|
||||||
clashConfig.tun = Tun(enable: value);
|
clashConfig.allowLan = value;
|
||||||
globalState.appController.updateClashConfigDebounce();
|
globalState.appController.updateClashConfigDebounce();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
Selector<Config, bool>(
|
Selector<ClashConfig, bool>(
|
||||||
selector: (_, config) => config.isCompatible,
|
selector: (_, clashConfig) => clashConfig.unifiedDelay,
|
||||||
builder: (_, isCompatible, __) {
|
builder: (_, unifiedDelay, __) {
|
||||||
return ListItem.switchItem(
|
return ListItem.switchItem(
|
||||||
leading: const Icon(Icons.expand),
|
leading: const Icon(Icons.compress_outlined),
|
||||||
title: Text(appLocalizations.compatible),
|
title: Text(appLocalizations.unifiedDelay),
|
||||||
subtitle: Text(appLocalizations.compatibleDesc),
|
subtitle: Text(appLocalizations.unifiedDelayDesc),
|
||||||
delegate: SwitchDelegate(
|
delegate: SwitchDelegate(
|
||||||
value: isCompatible,
|
value: unifiedDelay,
|
||||||
onChanged: (bool value) async {
|
onChanged: (bool value) async {
|
||||||
final appController = globalState.appController;
|
final appController = globalState.appController;
|
||||||
appController.config.isCompatible = value;
|
appController.clashConfig.unifiedDelay = value;
|
||||||
await appController.updateClashConfig(isPatch: false);
|
appController.updateClashConfigDebounce();
|
||||||
await appController.updateGroups();
|
},
|
||||||
appController.changeProxy();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: kMaterialListPadding,
|
|
||||||
child: Selector<ClashConfig, LogLevel>(
|
|
||||||
selector: (_, clashConfig) => clashConfig.logLevel,
|
|
||||||
builder: (_, value, __) {
|
|
||||||
return ListItem(
|
|
||||||
leading: const Icon(Icons.feedback),
|
|
||||||
title: Text(appLocalizations.logLevel),
|
|
||||||
trailing: SizedBox(
|
|
||||||
height: 48,
|
|
||||||
child: DropdownMenu<LogLevel>(
|
|
||||||
width: 124,
|
|
||||||
inputDecorationTheme: const InputDecorationTheme(
|
|
||||||
filled: true,
|
|
||||||
contentPadding: EdgeInsets.symmetric(
|
|
||||||
vertical: 5,
|
|
||||||
horizontal: 16,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
initialSelection: value,
|
|
||||||
dropdownMenuEntries: [
|
|
||||||
for (final logLevel in LogLevel.values)
|
|
||||||
DropdownMenuEntry<LogLevel>(
|
|
||||||
value: logLevel,
|
|
||||||
label: logLevel.name,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
onSelected: _updateLoglevel,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) =>
|
||||||
|
clashConfig.findProcessMode == FindProcessMode.always,
|
||||||
|
builder: (_, findProcess, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.polymer_outlined),
|
||||||
|
title: Text(appLocalizations.findProcessMode),
|
||||||
|
subtitle: Text(appLocalizations.findProcessModeDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: findProcess,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.findProcessMode =
|
||||||
|
value ? FindProcessMode.always : FindProcessMode.off;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.tcpConcurrent,
|
||||||
|
builder: (_, tcpConcurrent, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.double_arrow_outlined),
|
||||||
|
title: Text(appLocalizations.tcpConcurrent),
|
||||||
|
subtitle: Text(appLocalizations.tcpConcurrentDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: tcpConcurrent,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.tcpConcurrent = value;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) =>
|
||||||
|
clashConfig.geodataLoader == geodataLoaderMemconservative,
|
||||||
|
builder: (_, memconservative, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.memory),
|
||||||
|
title: Text(appLocalizations.geodataLoader),
|
||||||
|
subtitle: Text(appLocalizations.geodataLoaderDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: memconservative,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.geodataLoader = value
|
||||||
|
? geodataLoaderMemconservative
|
||||||
|
: geodataLoaderStandard;
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) =>
|
||||||
|
clashConfig.externalController.isNotEmpty,
|
||||||
|
builder: (_, hasExternalController, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.api_outlined),
|
||||||
|
title: Text(appLocalizations.externalController),
|
||||||
|
subtitle: Text(appLocalizations.externalControllerDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: hasExternalController,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final appController = globalState.appController;
|
||||||
|
appController.clashConfig.externalController =
|
||||||
|
value ? defaultExternalController : '';
|
||||||
|
appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildMoreSection() {
|
||||||
|
return generateSection(
|
||||||
|
title: appLocalizations.more,
|
||||||
|
items: [
|
||||||
|
if (system.isDesktop)
|
||||||
|
Selector<ClashConfig, bool>(
|
||||||
|
selector: (_, clashConfig) => clashConfig.tun.enable,
|
||||||
|
builder: (_, tunEnable, __) {
|
||||||
|
return ListItem.switchItem(
|
||||||
|
leading: const Icon(Icons.important_devices_outlined),
|
||||||
|
title: Text(appLocalizations.tun),
|
||||||
|
subtitle: Text(appLocalizations.tunDesc),
|
||||||
|
delegate: SwitchDelegate(
|
||||||
|
value: tunEnable,
|
||||||
|
onChanged: (bool value) async {
|
||||||
|
final clashConfig = context.read<ClashConfig>();
|
||||||
|
clashConfig.tun = Tun(enable: value);
|
||||||
|
globalState.appController.updateClashConfigDebounce();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
List<Widget> items = [
|
||||||
|
..._buildAppSection(),
|
||||||
|
..._buildGeneralSection(),
|
||||||
|
..._buildMoreSection(),
|
||||||
];
|
];
|
||||||
return ListView.separated(
|
return ListView.builder(
|
||||||
|
padding: const EdgeInsets.only(bottom: 32),
|
||||||
itemBuilder: (_, index) {
|
itemBuilder: (_, index) {
|
||||||
return Container(
|
return Container(
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
child: items[index],
|
child: items[index],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
separatorBuilder: (_, __) {
|
|
||||||
return const Divider(
|
|
||||||
height: 0,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
itemCount: items.length,
|
itemCount: items.length,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -195,7 +465,7 @@ class _MixedPortFormDialogState extends State<MixedPortFormDialog> {
|
|||||||
portController = TextEditingController(text: "${widget.mixedPort}");
|
portController = TextEditingController(text: "${widget.mixedPort}");
|
||||||
}
|
}
|
||||||
|
|
||||||
_handleAddProfileFormURL() async {
|
_handleUpdate() async {
|
||||||
final port = portController.value.text;
|
final port = portController.value.text;
|
||||||
if (port.isEmpty) return;
|
if (port.isEmpty) return;
|
||||||
Navigator.of(context).pop<String>(port);
|
Navigator.of(context).pop<String>(port);
|
||||||
@@ -221,7 +491,64 @@ class _MixedPortFormDialogState extends State<MixedPortFormDialog> {
|
|||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: _handleAddProfileFormURL,
|
onPressed: _handleUpdate,
|
||||||
|
child: Text(appLocalizations.submit),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TestUrlFormDialog extends StatefulWidget {
|
||||||
|
final String testUrl;
|
||||||
|
|
||||||
|
const TestUrlFormDialog({
|
||||||
|
super.key,
|
||||||
|
required this.testUrl,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<TestUrlFormDialog> createState() => _TestUrlFormDialogState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _TestUrlFormDialogState extends State<TestUrlFormDialog> {
|
||||||
|
late TextEditingController testUrlController;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
testUrlController = TextEditingController(text: widget.testUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
_handleUpdate() async {
|
||||||
|
final testUrl = testUrlController.value.text;
|
||||||
|
if (testUrl.isEmpty) return;
|
||||||
|
Navigator.of(context).pop<String>(testUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: Text(appLocalizations.testUrl),
|
||||||
|
content: SizedBox(
|
||||||
|
width: 300,
|
||||||
|
child: Wrap(
|
||||||
|
runSpacing: 16,
|
||||||
|
children: [
|
||||||
|
TextField(
|
||||||
|
maxLines: 5,
|
||||||
|
minLines: 1,
|
||||||
|
controller: testUrlController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: _handleUpdate,
|
||||||
child: Text(appLocalizations.submit),
|
child: Text(appLocalizations.submit),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:fl_clash/clash/core.dart';
|
import 'package:fl_clash/clash/clash.dart';
|
||||||
|
import 'package:fl_clash/common/common.dart';
|
||||||
|
import 'package:fl_clash/enum/enum.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
import 'package:fl_clash/plugins/app.dart';
|
|
||||||
import 'package:fl_clash/state.dart';
|
|
||||||
import 'package:fl_clash/widgets/widgets.dart';
|
import 'package:fl_clash/widgets/widgets.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class ConnectionsFragment extends StatefulWidget {
|
class ConnectionsFragment extends StatefulWidget {
|
||||||
const ConnectionsFragment({super.key});
|
const ConnectionsFragment({super.key});
|
||||||
@@ -15,124 +16,317 @@ class ConnectionsFragment extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _ConnectionsFragmentState extends State<ConnectionsFragment> {
|
class _ConnectionsFragmentState extends State<ConnectionsFragment> {
|
||||||
final connectionsNotifier = ValueNotifier<List<Connection>>([]);
|
final connectionsNotifier =
|
||||||
Map<String, String?> idPackageNameMap = {};
|
ValueNotifier<ConnectionsAndKeywords>(const ConnectionsAndKeywords());
|
||||||
|
final ScrollController _scrollController = ScrollController(
|
||||||
|
keepScrollOffset: false,
|
||||||
|
);
|
||||||
|
|
||||||
Timer? timer;
|
Timer? timer;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
_getConnections();
|
connectionsNotifier.value = connectionsNotifier.value
|
||||||
|
.copyWith(connections: clashCore.getConnections());
|
||||||
if (timer != null) {
|
if (timer != null) {
|
||||||
timer?.cancel();
|
timer?.cancel();
|
||||||
timer = null;
|
timer = null;
|
||||||
}
|
}
|
||||||
timer = Timer.periodic(const Duration(seconds: 3), (timer) {
|
timer = Timer.periodic(
|
||||||
if (mounted) {
|
const Duration(seconds: 1),
|
||||||
_getConnections();
|
(timer) {
|
||||||
}
|
connectionsNotifier.value = connectionsNotifier.value
|
||||||
});
|
.copyWith(connections: clashCore.getConnections());
|
||||||
|
},
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
_getConnections() {
|
_initActions() {
|
||||||
connectionsNotifier.value = clashCore
|
WidgetsBinding.instance.addPostFrameCallback(
|
||||||
.getConnections();
|
(_) {
|
||||||
|
final commonScaffoldState =
|
||||||
|
context.findAncestorStateOfType<CommonScaffoldState>();
|
||||||
|
commonScaffoldState?.actions = [
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
showSearch(
|
||||||
|
context: context,
|
||||||
|
delegate: ConnectionsSearchDelegate(
|
||||||
|
state: connectionsNotifier.value,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.search),
|
||||||
|
),
|
||||||
|
];
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_addKeyword(String keyword) {
|
||||||
|
final isContains = connectionsNotifier.value.keywords.contains(keyword);
|
||||||
|
if (isContains) return;
|
||||||
|
final keywords = List<String>.from(connectionsNotifier.value.keywords)
|
||||||
|
..add(keyword);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value.copyWith(
|
||||||
|
keywords: keywords,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteKeyword(String keyword) {
|
||||||
|
final isContains = connectionsNotifier.value.keywords.contains(keyword);
|
||||||
|
if (!isContains) return;
|
||||||
|
final keywords = List<String>.from(connectionsNotifier.value.keywords)
|
||||||
|
..remove(keyword);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value.copyWith(
|
||||||
|
keywords: keywords,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_handleBlockConnection(String id) {
|
||||||
|
clashCore.closeConnections(id);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value
|
||||||
|
.copyWith(connections: clashCore.getConnections());
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
super.dispose();
|
super.dispose();
|
||||||
timer?.cancel();
|
timer?.cancel();
|
||||||
|
connectionsNotifier.dispose();
|
||||||
|
_scrollController.dispose();
|
||||||
timer = null;
|
timer = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<ImageProvider?> _getPackageIconWithConnection(
|
|
||||||
Connection connection) async {
|
|
||||||
final uid = connection.metadata.uid;
|
|
||||||
// if(globalState.packageNameMap[uid] == null){
|
|
||||||
// globalState.packageNameMap[uid] = await app?.getPackageName(connection.metadata);
|
|
||||||
// }
|
|
||||||
final packageName = globalState.packageNameMap[uid];
|
|
||||||
if(packageName == null) return null;
|
|
||||||
return await app?.getPackageIcon(packageName);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return ValueListenableBuilder<List<Connection>>(
|
return Selector<AppState, bool?>(
|
||||||
valueListenable: connectionsNotifier,
|
selector: (_, appState) =>
|
||||||
builder: (_, List<Connection> connections, __) {
|
appState.currentLabel == 'connections' ||
|
||||||
if (connections.isEmpty) {
|
appState.viewMode == ViewMode.mobile &&
|
||||||
return const NullStatus(
|
appState.currentLabel == "tools",
|
||||||
label: "未开启代理,或者没有连接数据",
|
builder: (_, isCurrent, child) {
|
||||||
);
|
if (isCurrent == null || isCurrent) {
|
||||||
|
_initActions();
|
||||||
}
|
}
|
||||||
return ListView.separated(
|
return child!;
|
||||||
physics: const AlwaysScrollableScrollPhysics(),
|
},
|
||||||
itemBuilder: (_, index) {
|
child: ValueListenableBuilder<ConnectionsAndKeywords>(
|
||||||
final connection = connections[index];
|
valueListenable: connectionsNotifier,
|
||||||
return ListTile(
|
builder: (_, state, __) {
|
||||||
titleAlignment: ListTileTitleAlignment.top,
|
var connections = state.filteredConnections;
|
||||||
leading: Container(
|
if (connections.isEmpty) {
|
||||||
margin: const EdgeInsets.only(top: 4),
|
return NullStatus(
|
||||||
width: 48,
|
label: appLocalizations.nullConnectionsDesc,
|
||||||
height: 48,
|
);
|
||||||
child: FutureBuilder<ImageProvider?>(
|
}
|
||||||
future: _getPackageIconWithConnection(connection),
|
connections = connections.reversed.toList();
|
||||||
builder: (_, snapshot) {
|
return Column(
|
||||||
if (!snapshot.hasData && snapshot.data == null) {
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
return Container();
|
children: [
|
||||||
} else {
|
if (state.keywords.isNotEmpty)
|
||||||
return Image(
|
Padding(
|
||||||
image: snapshot.data!,
|
padding: const EdgeInsets.symmetric(
|
||||||
gaplessPlayback: true,
|
horizontal: 16,
|
||||||
width: 48,
|
vertical: 16,
|
||||||
height: 48,
|
),
|
||||||
);
|
child: Wrap(
|
||||||
}
|
runSpacing: 6,
|
||||||
|
spacing: 6,
|
||||||
|
children: [
|
||||||
|
for (final keyword in state.keywords)
|
||||||
|
CommonChip(
|
||||||
|
label: keyword,
|
||||||
|
type: ChipType.delete,
|
||||||
|
onPressed: () {
|
||||||
|
_deleteKeyword(keyword);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: ListView.separated(
|
||||||
|
controller: _scrollController,
|
||||||
|
itemBuilder: (_, index) {
|
||||||
|
final connection = connections[index];
|
||||||
|
return ConnectionItem(
|
||||||
|
key: Key(connection.id),
|
||||||
|
connection: connection,
|
||||||
|
onClick: _addKeyword,
|
||||||
|
trailing: IconButton(
|
||||||
|
icon: const Icon(Icons.block),
|
||||||
|
onPressed: () {
|
||||||
|
_handleBlockConnection(connection.id);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
separatorBuilder: (BuildContext context, int index) {
|
||||||
|
return const Divider(
|
||||||
|
height: 0,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
itemCount: connections.length,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class ConnectionsSearchDelegate extends SearchDelegate {
|
||||||
|
ValueNotifier<ConnectionsAndKeywords> connectionsNotifier;
|
||||||
|
|
||||||
|
ConnectionsSearchDelegate({
|
||||||
|
required ConnectionsAndKeywords state,
|
||||||
|
}) : connectionsNotifier = ValueNotifier<ConnectionsAndKeywords>(state);
|
||||||
|
|
||||||
|
get state => connectionsNotifier.value;
|
||||||
|
|
||||||
|
List<Connection> get _results {
|
||||||
|
final lowerQuery = query.toLowerCase().trim();
|
||||||
|
return connectionsNotifier.value.filteredConnections.where((request) {
|
||||||
|
final lowerNetwork = request.metadata.network.toLowerCase();
|
||||||
|
final lowerHost = request.metadata.host.toLowerCase();
|
||||||
|
final lowerDestinationIP = request.metadata.destinationIP.toLowerCase();
|
||||||
|
final lowerProcess = request.metadata.process.toLowerCase();
|
||||||
|
final lowerChains = request.chains.join("").toLowerCase();
|
||||||
|
return lowerNetwork.contains(lowerQuery) ||
|
||||||
|
lowerHost.contains(lowerQuery) ||
|
||||||
|
lowerDestinationIP.contains(lowerQuery) ||
|
||||||
|
lowerProcess.contains(lowerQuery) ||
|
||||||
|
lowerChains.contains(lowerQuery);
|
||||||
|
}).toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
_addKeyword(String keyword) {
|
||||||
|
final isContains = connectionsNotifier.value.keywords.contains(keyword);
|
||||||
|
if (isContains) return;
|
||||||
|
final keywords = List<String>.from(connectionsNotifier.value.keywords)
|
||||||
|
..add(keyword);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value.copyWith(
|
||||||
|
keywords: keywords,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_deleteKeyword(String keyword) {
|
||||||
|
final isContains = connectionsNotifier.value.keywords.contains(keyword);
|
||||||
|
if (!isContains) return;
|
||||||
|
final keywords = List<String>.from(connectionsNotifier.value.keywords)
|
||||||
|
..remove(keyword);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value.copyWith(
|
||||||
|
keywords: keywords,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_handleBlockConnection(String id) {
|
||||||
|
clashCore.closeConnections(id);
|
||||||
|
connectionsNotifier.value = connectionsNotifier.value.copyWith(
|
||||||
|
connections: clashCore.getConnections(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<Widget>? buildActions(BuildContext context) {
|
||||||
|
return [
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
if (query.isEmpty) {
|
||||||
|
close(context, null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
query = '';
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.clear),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 8,
|
||||||
|
)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget? buildLeading(BuildContext context) {
|
||||||
|
return IconButton(
|
||||||
|
onPressed: () {
|
||||||
|
close(context, null);
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget buildResults(BuildContext context) {
|
||||||
|
return buildSuggestions(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
connectionsNotifier.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget buildSuggestions(BuildContext context) {
|
||||||
|
return ValueListenableBuilder(
|
||||||
|
valueListenable: connectionsNotifier,
|
||||||
|
builder: (_, __, ___) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
if (state.keywords.isNotEmpty)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 16,
|
||||||
|
vertical: 16,
|
||||||
|
),
|
||||||
|
child: Wrap(
|
||||||
|
runSpacing: 6,
|
||||||
|
spacing: 6,
|
||||||
|
children: [
|
||||||
|
for (final keyword in state.keywords)
|
||||||
|
CommonChip(
|
||||||
|
label: keyword,
|
||||||
|
type: ChipType.delete,
|
||||||
|
onPressed: () {
|
||||||
|
_deleteKeyword(keyword);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
contentPadding:
|
Expanded(
|
||||||
const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
|
child: ListView.separated(
|
||||||
title: Column(
|
itemBuilder: (_, index) {
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
final connection = _results[index];
|
||||||
children: [
|
return ConnectionItem(
|
||||||
Text(connection.metadata.host.isNotEmpty
|
key: Key(connection.id),
|
||||||
? connection.metadata.host
|
connection: connection,
|
||||||
: connection.metadata.destinationIP),
|
onClick: _addKeyword,
|
||||||
Padding(
|
trailing: IconButton(
|
||||||
padding: const EdgeInsets.only(
|
icon: const Icon(Icons.block),
|
||||||
top: 12,
|
onPressed: () {
|
||||||
|
_handleBlockConnection(connection.id);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
child: Wrap(
|
);
|
||||||
runSpacing: 8,
|
},
|
||||||
spacing: 8,
|
separatorBuilder: (BuildContext context, int index) {
|
||||||
children: [
|
return const Divider(
|
||||||
for (final chain in connection.chains)
|
height: 0,
|
||||||
CommonChip(
|
);
|
||||||
label: chain,
|
},
|
||||||
),
|
itemCount: _results.length,
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
trailing: IconButton(
|
)
|
||||||
icon: const Icon(Icons.block),
|
],
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
separatorBuilder: (BuildContext context, int index) {
|
|
||||||
return const Divider(
|
|
||||||
height: 0,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
itemCount: connections.length,
|
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ class CoreInfo extends StatelessWidget {
|
|||||||
selector: (_, appState) => appState.versionInfo,
|
selector: (_, appState) => appState.versionInfo,
|
||||||
builder: (_, versionInfo, __) {
|
builder: (_, versionInfo, __) {
|
||||||
return CommonCard(
|
return CommonCard(
|
||||||
|
onPressed: () {},
|
||||||
info: Info(
|
info: Info(
|
||||||
label: appLocalizations.coreInfo,
|
label: appLocalizations.coreInfo,
|
||||||
iconData: Icons.memory,
|
iconData: Icons.memory,
|
||||||
@@ -31,7 +32,7 @@ class CoreInfo extends StatelessWidget {
|
|||||||
style: context
|
style: context
|
||||||
.textTheme
|
.textTheme
|
||||||
.titleMedium
|
.titleMedium
|
||||||
?.toSoftBold(),
|
?.toSoftBold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
@@ -44,7 +45,7 @@ class CoreInfo extends StatelessWidget {
|
|||||||
style: context
|
style: context
|
||||||
.textTheme
|
.textTheme
|
||||||
.titleLarge
|
.titleLarge
|
||||||
?.toSoftBold(),
|
?.toSoftBold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import 'package:fl_clash/enum/enum.dart';
|
import 'dart:math';
|
||||||
|
|
||||||
|
import 'package:fl_clash/fragments/dashboard/intranet_ip.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:fl_clash/widgets/widgets.dart';
|
import 'package:fl_clash/widgets/widgets.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
import 'network_detection.dart';
|
import 'network_detection.dart';
|
||||||
import 'core_info.dart';
|
|
||||||
import 'outbound_mode.dart';
|
import 'outbound_mode.dart';
|
||||||
import 'start_button.dart';
|
import 'start_button.dart';
|
||||||
import 'network_speed.dart';
|
import 'network_speed.dart';
|
||||||
@@ -29,34 +29,35 @@ class _DashboardFragmentState extends State<DashboardFragment> {
|
|||||||
alignment: Alignment.topCenter,
|
alignment: Alignment.topCenter,
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Selector<AppState, ViewMode>(
|
child: Selector<AppState, double>(
|
||||||
selector: (_, appState) => appState.viewMode,
|
selector: (_, appState) => appState.viewWidth,
|
||||||
builder: (_, viewMode, ___) {
|
builder: (_, viewWidth, ___) {
|
||||||
final isDesktop = viewMode == ViewMode.desktop;
|
// final viewMode = other.getViewMode(viewWidth);
|
||||||
|
// final isDesktop = viewMode == ViewMode.desktop;
|
||||||
return Grid(
|
return Grid(
|
||||||
crossAxisCount: 12,
|
crossAxisCount: max(4 * ((viewWidth / 320).ceil()), 8),
|
||||||
crossAxisSpacing: 16,
|
crossAxisSpacing: 16,
|
||||||
mainAxisSpacing: 16,
|
mainAxisSpacing: 16,
|
||||||
children: [
|
children: const [
|
||||||
GridItem(
|
GridItem(
|
||||||
crossAxisCellCount: isDesktop ? 8 : 12,
|
crossAxisCellCount: 8,
|
||||||
child: const NetworkSpeed(),
|
child: NetworkSpeed(),
|
||||||
),
|
),
|
||||||
GridItem(
|
GridItem(
|
||||||
crossAxisCellCount: isDesktop ? 4 : 6,
|
crossAxisCellCount: 4,
|
||||||
child: const OutboundMode(),
|
child: OutboundMode(),
|
||||||
),
|
),
|
||||||
GridItem(
|
GridItem(
|
||||||
crossAxisCellCount: isDesktop ? 4 : 6,
|
crossAxisCellCount: 4,
|
||||||
child: const NetworkDetection(),
|
child: NetworkDetection(),
|
||||||
),
|
),
|
||||||
GridItem(
|
GridItem(
|
||||||
crossAxisCellCount: isDesktop ? 4 : 6,
|
crossAxisCellCount: 4,
|
||||||
child: const TrafficUsage(),
|
child: TrafficUsage(),
|
||||||
),
|
),
|
||||||
GridItem(
|
GridItem(
|
||||||
crossAxisCellCount: isDesktop ? 4 : 6,
|
crossAxisCellCount: 4,
|
||||||
child: const CoreInfo(),
|
child: IntranetIP(),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|||||||
92
lib/fragments/dashboard/intranet_ip.dart
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:fl_clash/common/common.dart';
|
||||||
|
import 'package:fl_clash/state.dart';
|
||||||
|
import 'package:fl_clash/widgets/widgets.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class IntranetIP extends StatefulWidget {
|
||||||
|
const IntranetIP({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<IntranetIP> createState() => _IntranetIPState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _IntranetIPState extends State<IntranetIP> {
|
||||||
|
final ipNotifier = ValueNotifier<String>("");
|
||||||
|
|
||||||
|
Future<String?> getLocalIpAddress() async {
|
||||||
|
List<NetworkInterface> interfaces = await NetworkInterface.list();
|
||||||
|
for (final interface in interfaces) {
|
||||||
|
for (final address in interface.addresses) {
|
||||||
|
if (!address.isLoopback) {
|
||||||
|
return address.address;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
ipNotifier.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
||||||
|
ipNotifier.value = await getLocalIpAddress() ?? "";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return CommonCard(
|
||||||
|
info: Info(
|
||||||
|
label: appLocalizations.intranetIP,
|
||||||
|
iconData: Icons.devices,
|
||||||
|
),
|
||||||
|
onPressed: (){
|
||||||
|
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
padding: const EdgeInsets.all(16).copyWith(top: 0),
|
||||||
|
height: globalState.appController.measure.titleLargeHeight + 24 - 2,
|
||||||
|
child: ValueListenableBuilder(
|
||||||
|
valueListenable: ipNotifier,
|
||||||
|
builder: (_, value, __) {
|
||||||
|
return FadeBox(
|
||||||
|
child: value.isNotEmpty
|
||||||
|
? Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: TooltipText(
|
||||||
|
text: Text(
|
||||||
|
value,
|
||||||
|
style: context.textTheme.titleLarge?.toSoftBold.toMinus,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: const Padding(
|
||||||
|
padding: EdgeInsets.all(2),
|
||||||
|
child: AspectRatio(
|
||||||
|
aspectRatio: 1,
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import 'package:country_flags/country_flags.dart';
|
||||||
|
import 'package:dio/dio.dart';
|
||||||
import 'package:fl_clash/common/common.dart';
|
import 'package:fl_clash/common/common.dart';
|
||||||
import 'package:fl_clash/models/models.dart';
|
import 'package:fl_clash/models/models.dart';
|
||||||
import 'package:fl_clash/state.dart';
|
import 'package:fl_clash/state.dart';
|
||||||
@@ -13,118 +15,177 @@ class NetworkDetection extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _NetworkDetectionState extends State<NetworkDetection> {
|
class _NetworkDetectionState extends State<NetworkDetection> {
|
||||||
Widget _buildDescription(String? currentProxyName, int? delay) {
|
final ipInfoNotifier = ValueNotifier<IpInfo?>(null);
|
||||||
if (currentProxyName == null) {
|
final timeoutNotifier = ValueNotifier<bool>(false);
|
||||||
return TooltipText(
|
bool? _preIsStart;
|
||||||
text: Text(
|
CancelToken? cancelToken;
|
||||||
appLocalizations.noProxyDesc,
|
Function? _checkIpDebounce;
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
_checkIp(
|
||||||
),
|
bool isInit,
|
||||||
overflow: TextOverflow.ellipsis,
|
bool isStart,
|
||||||
),
|
) async {
|
||||||
);
|
if (!isInit) return;
|
||||||
|
timeoutNotifier.value = false;
|
||||||
|
if (_preIsStart == false && _preIsStart == isStart) return;
|
||||||
|
if (cancelToken != null) {
|
||||||
|
cancelToken!.cancel();
|
||||||
|
cancelToken = null;
|
||||||
}
|
}
|
||||||
if (delay == 0 || delay == null) {
|
ipInfoNotifier.value = null;
|
||||||
return const AspectRatio(
|
final ipInfo = await request.checkIp(cancelToken);
|
||||||
aspectRatio: 1,
|
if (ipInfo == null) {
|
||||||
child: CircularProgressIndicator(
|
timeoutNotifier.value = true;
|
||||||
strokeCap: StrokeCap.round,
|
return;
|
||||||
),
|
} else {
|
||||||
);
|
timeoutNotifier.value = false;
|
||||||
}
|
}
|
||||||
if (delay > 0) {
|
_preIsStart = isStart;
|
||||||
return Row(
|
ipInfoNotifier.value = ipInfo;
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
}
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
|
||||||
children: [
|
_checkIpContainer(Widget child) {
|
||||||
TooltipText(
|
_checkIpDebounce = debounce(_checkIp);
|
||||||
text: Text(
|
return Selector2<AppState, Config, CheckIpSelectorState>(
|
||||||
"$delay",
|
selector: (_, appState, config) {
|
||||||
overflow: TextOverflow.ellipsis,
|
return CheckIpSelectorState(
|
||||||
maxLines: 1,
|
isInit: appState.isInit,
|
||||||
style: context.textTheme.titleLarge
|
selectedMap: appState.selectedMap,
|
||||||
?.copyWith(
|
isStart: appState.isStart,
|
||||||
color: context.colorScheme.primary,
|
checkIpNum: appState.checkIpNum,
|
||||||
)
|
);
|
||||||
.toSoftBold(),
|
},
|
||||||
),
|
builder: (_, state, __) {
|
||||||
),
|
if (_checkIpDebounce != null) {
|
||||||
const Flexible(
|
_checkIpDebounce!([state.isInit, state.isStart]);
|
||||||
child: SizedBox(
|
}
|
||||||
width: 4,
|
return child;
|
||||||
),
|
},
|
||||||
),
|
child: child,
|
||||||
Flexible(
|
|
||||||
flex: 0,
|
|
||||||
child: Text(
|
|
||||||
'ms',
|
|
||||||
style: Theme.of(context).textTheme.bodyMedium?.toLight(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return Text(
|
|
||||||
"Timeout",
|
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
|
||||||
color: Colors.red,
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
ipInfoNotifier.dispose();
|
||||||
|
timeoutNotifier.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return CommonCard(
|
return _checkIpContainer(
|
||||||
info: Info(
|
ValueListenableBuilder<IpInfo?>(
|
||||||
iconData: Icons.network_check,
|
valueListenable: ipInfoNotifier,
|
||||||
label: appLocalizations.networkDetection,
|
builder: (_, ipInfo, __) {
|
||||||
),
|
return CommonCard(
|
||||||
child: Selector<AppState, NetworkDetectionSelectorState>(
|
onPressed: () {},
|
||||||
selector: (_, appState) {
|
|
||||||
return NetworkDetectionSelectorState(
|
|
||||||
currentProxyName: appState.showProxyName,
|
|
||||||
delay: appState.getDelay(
|
|
||||||
appState.showProxyName,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
builder: (_, state, __) {
|
|
||||||
return Container(
|
|
||||||
padding: const EdgeInsets.all(16).copyWith(top: 0),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
children: [
|
||||||
Flexible(
|
Flexible(
|
||||||
flex: 0,
|
flex: 0,
|
||||||
child: TooltipText(
|
|
||||||
text: Text(
|
|
||||||
state.currentProxyName ?? appLocalizations.noProxy,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
maxLines: 1,
|
|
||||||
style: Theme.of(context)
|
|
||||||
.textTheme
|
|
||||||
.titleMedium
|
|
||||||
?.toSoftBold(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 8,
|
|
||||||
),
|
|
||||||
Flexible(
|
|
||||||
child: Container(
|
child: Container(
|
||||||
height: globalState.appController.measure.titleLargeHeight,
|
padding: const EdgeInsets.all(16),
|
||||||
alignment: Alignment.centerLeft,
|
child: Row(
|
||||||
child: FadeBox(
|
children: [
|
||||||
child: _buildDescription(
|
Icon(
|
||||||
state.currentProxyName,
|
Icons.network_check,
|
||||||
state.delay,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 8,
|
||||||
|
),
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: FadeBox(
|
||||||
|
child: ipInfo != null
|
||||||
|
? CountryFlag.fromCountryCode(
|
||||||
|
ipInfo.countryCode,
|
||||||
|
width: 24,
|
||||||
|
height: 24,
|
||||||
|
)
|
||||||
|
: ValueListenableBuilder(
|
||||||
|
valueListenable: timeoutNotifier,
|
||||||
|
builder: (_, timeout, __) {
|
||||||
|
if (timeout) {
|
||||||
|
return Text(
|
||||||
|
appLocalizations.checkError,
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.titleMedium,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return TooltipText(
|
||||||
|
text: Text(
|
||||||
|
appLocalizations.checking,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.titleMedium,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Container(
|
||||||
|
height: globalState.appController.measure.titleLargeHeight +
|
||||||
|
24 -
|
||||||
|
2,
|
||||||
|
alignment: Alignment.centerLeft,
|
||||||
|
padding: const EdgeInsets.all(16).copyWith(top: 0),
|
||||||
|
child: FadeBox(
|
||||||
|
child: ipInfo != null
|
||||||
|
? Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Flexible(
|
||||||
|
flex: 1,
|
||||||
|
child: TooltipText(
|
||||||
|
text: Text(
|
||||||
|
ipInfo.ip,
|
||||||
|
style: context.textTheme.titleLarge
|
||||||
|
?.toSoftBold.toMinus,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: ValueListenableBuilder(
|
||||||
|
valueListenable: timeoutNotifier,
|
||||||
|
builder: (_, timeout, __) {
|
||||||
|
if (timeout) {
|
||||||
|
return Text(
|
||||||
|
"timeout",
|
||||||
|
style: context.textTheme.titleLarge
|
||||||
|
?.copyWith(color: Colors.red)
|
||||||
|
.toSoftBold
|
||||||
|
.toMinus,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.all(2),
|
||||||
|
child: const AspectRatio(
|
||||||
|
aspectRatio: 1,
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -21,26 +21,17 @@ class _NetworkSpeedState extends State<NetworkSpeed> {
|
|||||||
.asMap()
|
.asMap()
|
||||||
.map(
|
.map(
|
||||||
(index, e) => MapEntry(
|
(index, e) => MapEntry(
|
||||||
index,
|
index,
|
||||||
Point(
|
Point(
|
||||||
(index + initPoints.length).toDouble(),
|
(index + initPoints.length).toDouble(),
|
||||||
e.speed.toDouble(),
|
e.speed.toDouble(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
.values
|
.values
|
||||||
.toList();
|
.toList();
|
||||||
var pointsRaw = [...initPoints, ...trafficPoints];
|
|
||||||
List<Point> points;
|
|
||||||
if (pointsRaw.length > 60) {
|
|
||||||
points = pointsRaw
|
|
||||||
.getRange(pointsRaw.length - 61, pointsRaw.length - 1)
|
|
||||||
.toList();
|
|
||||||
} else {
|
|
||||||
points = pointsRaw;
|
|
||||||
}
|
|
||||||
|
|
||||||
return points;
|
return [...initPoints, ...trafficPoints];
|
||||||
}
|
}
|
||||||
|
|
||||||
Traffic _getLastTraffic(List<Traffic> traffics) {
|
Traffic _getLastTraffic(List<Traffic> traffics) {
|
||||||
@@ -53,12 +44,11 @@ class _NetworkSpeedState extends State<NetworkSpeed> {
|
|||||||
required IconData iconData,
|
required IconData iconData,
|
||||||
required TrafficValue value,
|
required TrafficValue value,
|
||||||
}) {
|
}) {
|
||||||
|
|
||||||
final showValue = value.showValue;
|
final showValue = value.showValue;
|
||||||
final showUnit = "${value.showUnit}/s";
|
final showUnit = "${value.showUnit}/s";
|
||||||
final titleLargeSoftBold =
|
final titleLargeSoftBold =
|
||||||
Theme.of(context).textTheme.titleLarge?.toSoftBold();
|
Theme.of(context).textTheme.titleLarge?.toSoftBold;
|
||||||
final bodyMedium = Theme.of(context).textTheme.bodySmall?.toLight();
|
final bodyMedium = Theme.of(context).textTheme.bodySmall?.toLight;
|
||||||
final valueText = Text(
|
final valueText = Text(
|
||||||
showValue,
|
showValue,
|
||||||
style: titleLargeSoftBold,
|
style: titleLargeSoftBold,
|
||||||
@@ -85,7 +75,7 @@ class _NetworkSpeedState extends State<NetworkSpeed> {
|
|||||||
Flexible(
|
Flexible(
|
||||||
child: Text(
|
child: Text(
|
||||||
label,
|
label,
|
||||||
style: Theme.of(context).textTheme.titleSmall?.toSoftBold(),
|
style: Theme.of(context).textTheme.titleSmall?.toSoftBold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -121,7 +111,8 @@ class _NetworkSpeedState extends State<NetworkSpeed> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return CommonCard(
|
return CommonCard(
|
||||||
info: Info(
|
onPressed: () {},
|
||||||
|
info: Info(
|
||||||
label: appLocalizations.networkSpeed,
|
label: appLocalizations.networkSpeed,
|
||||||
iconData: Icons.speed,
|
iconData: Icons.speed,
|
||||||
),
|
),
|
||||||
@@ -172,4 +163,4 @@ class _NetworkSpeedState extends State<NetworkSpeed> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||