mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
Compare commits
107 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1952ff1b02 | |||
| 99f6c0bda5 | |||
| 28b77d33ca | |||
| b0b070f6aa | |||
| 89b1f314b1 | |||
| 020263eba6 | |||
| d359215b20 | |||
| a6a0bba569 | |||
| f729e924cd | |||
| 3c1d0f893a | |||
| b184331258 | |||
| 36603ab542 | |||
| d0e21247b5 | |||
| 786a8b54ce | |||
| d762fe7283 | |||
| ed9cab3251 | |||
| 8e1e754a87 | |||
| c6eaaa1f37 | |||
| 5077ec9a46 | |||
| e4a808c6ce | |||
| 52efdfa288 | |||
| a4f413e79e | |||
| 71ae3864fc | |||
| 008bc476e0 | |||
| 3947b04e21 | |||
| acef2637c8 | |||
| ba8b09cdc9 | |||
| 79e5ba0cb0 | |||
| 165fda0352 | |||
| c4dfb4d591 | |||
| e80e0b7f94 | |||
| b856fc2230 | |||
| 202ac52e25 | |||
| 2b1a8af998 | |||
| b924845835 | |||
| 0f8d7fed97 | |||
| 20ff172055 | |||
| 42671f616f | |||
| ecca99828f | |||
| 7f40df9d36 | |||
| 9a497f7892 | |||
| dc5a10ebc9 | |||
| d1a4c7f133 | |||
| 93ebf299e6 | |||
| 1d83da9d44 | |||
| d2abaad5b4 | |||
| 8bf88a89bd | |||
| 96cfd04450 | |||
| c5f39ec906 | |||
| 5cd8f9c2f2 | |||
| 2d11712fdc | |||
| 9528850873 | |||
| a0d5647f23 | |||
| 5ff810a6ef | |||
| 3dc314d79a | |||
| 466a5cecbe | |||
| a13d70227f | |||
| 519981d681 | |||
| 0d17bf28e0 | |||
| fc1d4b22a6 | |||
| d2f5be6e19 | |||
| 27a5b6b9f2 | |||
| 2ae048b1de | |||
| a890c83088 | |||
| 3eedbdccba | |||
| 73b3d03a25 | |||
| b74f84abc2 | |||
| bbb056e9d1 | |||
| 0d953a32be | |||
| 3383bb6b45 | |||
| afcb801806 | |||
| 494835a5a4 | |||
| 2f784f563f | |||
| 11d6fd2ed9 | |||
| 0e8138ba6b | |||
| 0eb3719972 | |||
| 196cd34ef7 | |||
| ed42a2f7df | |||
| 9b944bf51e | |||
| b8c792418d | |||
| 6d8a38c65b | |||
| 09c1c68aad | |||
| 36b8353b07 | |||
| f10ed1269e | |||
| e6e35f01d7 | |||
| 35737bdd84 | |||
| 5a6960bffd | |||
| 10cefe2ab0 | |||
| add53834e7 | |||
| f740ec57ea | |||
| 7eadfe2af2 | |||
| 001a4358e1 | |||
| 31abe64513 | |||
| 900aa86c29 | |||
| 264e17f30b | |||
| fbc3ff3276 | |||
| 151cdd4e03 | |||
| f0deb1294a | |||
| 19efb08cb9 | |||
| 9f4b9ca771 | |||
| a60e480be0 | |||
| f28e21ef79 | |||
| b4ca1e63c4 | |||
| e35f4bbb52 | |||
| f0e575da69 | |||
| a6b7d2091a | |||
| 324a1a66c5 |
@@ -12,6 +12,7 @@ on:
|
|||||||
default: debug
|
default: debug
|
||||||
options:
|
options:
|
||||||
- debug
|
- debug
|
||||||
|
- prerelease
|
||||||
- nightly
|
- nightly
|
||||||
- release
|
- release
|
||||||
flavor:
|
flavor:
|
||||||
@@ -104,6 +105,9 @@ jobs:
|
|||||||
"release")
|
"release")
|
||||||
./gradlew :app:assemble${flavor^}Release --info
|
./gradlew :app:assemble${flavor^}Release --info
|
||||||
;;
|
;;
|
||||||
|
"prerelease")
|
||||||
|
./gradlew :app:assemble${flavor^}Prerelease --info
|
||||||
|
;;
|
||||||
"nightly")
|
"nightly")
|
||||||
./gradlew :app:assemble${flavor^}Nightly --info
|
./gradlew :app:assemble${flavor^}Nightly --info
|
||||||
;;
|
;;
|
||||||
@@ -118,11 +122,6 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: android_artifacts_${{ inputs.flavor }}
|
name: android_artifacts_${{ inputs.flavor }}
|
||||||
path: >-
|
path: app/build/outputs/apk/${{ inputs.flavor }}/${{ inputs.build_type }}/wgtunnel-${{ inputs.flavor }}${{ inputs.flavor == 'fdroid' && '-release' || '' }}-*.apk
|
||||||
app/build/outputs/apk/${{ inputs.flavor }}/${{ inputs.build_type }}/${{
|
|
||||||
inputs.flavor == 'fdroid' && inputs.build_type == 'release'
|
|
||||||
&& 'wgtunnel-fdroid-release-*.apk'
|
|
||||||
|| format('wgtunnel-{0}-v*.apk', inputs.flavor)
|
|
||||||
}}
|
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
if-no-files-found: warn
|
if-no-files-found: warn
|
||||||
@@ -69,7 +69,7 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/temp
|
run: mkdir ${{ github.workspace }}/temp
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v5
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: android_artifacts_*
|
pattern: android_artifacts_*
|
||||||
path: ${{ github.workspace }}/temp
|
path: ${{ github.workspace }}/temp
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ on:
|
|||||||
description: "GitHub release type"
|
description: "GitHub release type"
|
||||||
options:
|
options:
|
||||||
- none
|
- none
|
||||||
|
- prerelease
|
||||||
- release
|
- release
|
||||||
default: release
|
default: release
|
||||||
required: true
|
required: true
|
||||||
@@ -59,7 +60,7 @@ jobs:
|
|||||||
flavor: fdroid
|
flavor: fdroid
|
||||||
|
|
||||||
build-standalone:
|
build-standalone:
|
||||||
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' || inputs.release_type == 'debug' || inputs.flavor == 'standalone' }}
|
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' || inputs.release_type == 'prerelease' || inputs.flavor == 'standalone' }}
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@@ -108,7 +109,7 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/temp
|
run: mkdir ${{ github.workspace }}/temp
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v5
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: android_artifacts_*
|
pattern: android_artifacts_*
|
||||||
path: ${{ github.workspace }}/temp
|
path: ${{ github.workspace }}/temp
|
||||||
@@ -123,6 +124,11 @@ jobs:
|
|||||||
echo "$RELEASE_NOTES" >> $GITHUB_ENV
|
echo "$RELEASE_NOTES" >> $GITHUB_ENV
|
||||||
echo "EOF" >> $GITHUB_ENV
|
echo "EOF" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: On prerelease release notes
|
||||||
|
if: ${{ github.event_name != 'push' && inputs.release_type == 'prerelease' }}
|
||||||
|
run: |
|
||||||
|
echo "RELEASE_NOTES=Testing version of app for specific feature." >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Get checksum
|
- name: Get checksum
|
||||||
id: checksum
|
id: checksum
|
||||||
run: |
|
run: |
|
||||||
@@ -156,8 +162,8 @@ jobs:
|
|||||||
tag_name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
tag_name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
||||||
name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: ${{ github.event_name != 'push' && inputs.release_type == 'prerelease' }}
|
||||||
make_latest: true
|
make_latest: ${{ github.event_name == 'push' || inputs.release_type == 'release' }}
|
||||||
files: |
|
files: |
|
||||||
${{ github.workspace }}/temp/**/*.apk
|
${{ github.workspace }}/temp/**/*.apk
|
||||||
env:
|
env:
|
||||||
|
|||||||
+19
-24
@@ -1,5 +1,3 @@
|
|||||||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application)
|
alias(libs.plugins.android.application)
|
||||||
alias(libs.plugins.kotlin.android)
|
alias(libs.plugins.kotlin.android)
|
||||||
@@ -22,8 +20,6 @@ android {
|
|||||||
includeInBundle = false
|
includeInBundle = false
|
||||||
}
|
}
|
||||||
|
|
||||||
ksp { arg("room.schemaLocation", "$projectDir/schemas") }
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = Constants.APP_ID
|
applicationId = Constants.APP_ID
|
||||||
minSdk = Constants.MIN_SDK
|
minSdk = Constants.MIN_SDK
|
||||||
@@ -31,10 +27,15 @@ android {
|
|||||||
versionCode = computeVersionCode()
|
versionCode = computeVersionCode()
|
||||||
versionName = computeVersionName()
|
versionName = computeVersionName()
|
||||||
|
|
||||||
|
ksp { arg("room.schemaLocation", "$projectDir/schemas") }
|
||||||
|
|
||||||
sourceSets { getByName("debug").assets.srcDirs(files("$projectDir/schemas")) }
|
sourceSets { getByName("debug").assets.srcDirs(files("$projectDir/schemas")) }
|
||||||
|
|
||||||
val languagesArray = buildLanguagesArray(languageList())
|
buildConfigField(
|
||||||
buildConfigField("String[]", "LANGUAGES", "new String[]{ $languagesArray }")
|
"String[]",
|
||||||
|
"LANGUAGES",
|
||||||
|
"new String[]{ ${languageList().joinToString(separator = ", ") { "\"$it\"" }} }",
|
||||||
|
)
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables { useSupportLibrary = true }
|
vectorDrawables { useSupportLibrary = true }
|
||||||
@@ -72,15 +73,22 @@ android {
|
|||||||
|
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
resValue("string", "app_name", "WG Tunnel Debug")
|
resValue("string", "app_name", "WG Tunnel - Debug")
|
||||||
isDebuggable = true
|
isDebuggable = true
|
||||||
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.debug\"")
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.debug\"")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
create(Constants.PRERELEASE) {
|
||||||
|
initWith(buildTypes.getByName(Constants.RELEASE))
|
||||||
|
applicationIdSuffix = ".prerelease"
|
||||||
|
resValue("string", "app_name", "WG Tunnel - Pre")
|
||||||
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.pre\"")
|
||||||
|
}
|
||||||
|
|
||||||
create(Constants.NIGHTLY) {
|
create(Constants.NIGHTLY) {
|
||||||
initWith(buildTypes.getByName(Constants.RELEASE))
|
initWith(buildTypes.getByName(Constants.RELEASE))
|
||||||
applicationIdSuffix = ".nightly"
|
applicationIdSuffix = ".nightly"
|
||||||
resValue("string", "app_name", "WG Tunnel Nightly")
|
resValue("string", "app_name", "WG Tunnel - Nightly")
|
||||||
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.nightly\"")
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.nightly\"")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -106,14 +114,7 @@ android {
|
|||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
}
|
}
|
||||||
|
kotlinOptions { jvmTarget = Constants.JVM_TARGET }
|
||||||
kotlin {
|
|
||||||
compilerOptions {
|
|
||||||
jvmTarget = JvmTarget.JVM_17
|
|
||||||
freeCompilerArgs = listOf("-XXLanguage:+PropertyParamAnnotationDefaultTargetMode")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
compose = true
|
compose = true
|
||||||
buildConfig = true
|
buildConfig = true
|
||||||
@@ -121,8 +122,8 @@ android {
|
|||||||
packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } }
|
packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } }
|
||||||
|
|
||||||
licensee {
|
licensee {
|
||||||
allowedLicenses().forEach { allow(it) }
|
Constants.allowedLicenses.forEach { allow(it) }
|
||||||
allowedLicenseUrls().forEach { allowUrl(it) }
|
Constants.allowedLicenseUrls.forEach { allowUrl(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
applicationVariants.all {
|
applicationVariants.all {
|
||||||
@@ -218,16 +219,10 @@ dependencies {
|
|||||||
implementation(libs.ktor.client.content.negotiation)
|
implementation(libs.ktor.client.content.negotiation)
|
||||||
implementation(libs.ktor.serialization.kotlinx.json)
|
implementation(libs.ktor.serialization.kotlinx.json)
|
||||||
implementation(libs.slf4j.android)
|
implementation(libs.slf4j.android)
|
||||||
implementation(libs.icmp4a)
|
|
||||||
|
|
||||||
// shizuku
|
// shizuku
|
||||||
implementation(libs.shizuku.api)
|
implementation(libs.shizuku.api)
|
||||||
implementation(libs.shizuku.provider)
|
implementation(libs.shizuku.provider)
|
||||||
|
|
||||||
implementation(libs.reorderable)
|
|
||||||
implementation(libs.roomdatabasebackup) {
|
|
||||||
exclude(group = "org.reactivestreams", module = "reactive-streams")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register<Copy>("copyLicenseeJsonToAssets") {
|
tasks.register<Copy>("copyLicenseeJsonToAssets") {
|
||||||
|
|||||||
@@ -1,302 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 18,
|
|
||||||
"identityHash": "505728bad740c12bab998a066b569333",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL, `trusted_network_ssids` TEXT NOT NULL, `is_always_on_vpn_enabled` INTEGER NOT NULL, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_enabled` INTEGER NOT NULL DEFAULT false, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT false, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `is_amnezia_enabled` INTEGER NOT NULL DEFAULT false, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT false, `is_vpn_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT false, `split_tunnel_apps` TEXT NOT NULL DEFAULT '', `wifi_detection_method` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelEnabled",
|
|
||||||
"columnName": "is_kernel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAmneziaEnabled",
|
|
||||||
"columnName": "is_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isVpnKillSwitchEnabled",
|
|
||||||
"columnName": "is_vpn_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelKillSwitchEnabled",
|
|
||||||
"columnName": "is_kernel_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isDisableKillSwitchOnTrustedEnabled",
|
|
||||||
"columnName": "is_disable_kill_switch_on_trusted_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "splitTunnelApps",
|
|
||||||
"columnName": "split_tunnel_apps",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "TunnelConfig",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `wg_quick` TEXT NOT NULL, `tunnel_networks` TEXT NOT NULL DEFAULT '', `is_mobile_data_tunnel` INTEGER NOT NULL DEFAULT false, `is_primary_tunnel` INTEGER NOT NULL DEFAULT false, `am_quick` TEXT NOT NULL DEFAULT '', `is_Active` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `ping_interval` INTEGER DEFAULT null, `ping_cooldown` INTEGER DEFAULT null, `ping_ip` TEXT DEFAULT null, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `is_ipv4_preferred` INTEGER NOT NULL DEFAULT true, `position` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wgQuick",
|
|
||||||
"columnName": "wg_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelNetworks",
|
|
||||||
"columnName": "tunnel_networks",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMobileDataTunnel",
|
|
||||||
"columnName": "is_mobile_data_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPrimaryTunnel",
|
|
||||||
"columnName": "is_primary_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "amQuick",
|
|
||||||
"columnName": "am_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isActive",
|
|
||||||
"columnName": "is_Active",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingInterval",
|
|
||||||
"columnName": "ping_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingCooldown",
|
|
||||||
"columnName": "ping_cooldown",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingIp",
|
|
||||||
"columnName": "ping_ip",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv4Preferred",
|
|
||||||
"columnName": "is_ipv4_preferred",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "position",
|
|
||||||
"columnName": "position",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_TunnelConfig_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '505728bad740c12bab998a066b569333')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,316 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 19,
|
|
||||||
"identityHash": "82bdb96b7a9f8695a34ad1ec21d9aea8",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL, `trusted_network_ssids` TEXT NOT NULL, `is_always_on_vpn_enabled` INTEGER NOT NULL, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_enabled` INTEGER NOT NULL DEFAULT false, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT false, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `is_amnezia_enabled` INTEGER NOT NULL DEFAULT false, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT false, `is_vpn_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT false, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT true, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelEnabled",
|
|
||||||
"columnName": "is_kernel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAmneziaEnabled",
|
|
||||||
"columnName": "is_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isVpnKillSwitchEnabled",
|
|
||||||
"columnName": "is_vpn_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelKillSwitchEnabled",
|
|
||||||
"columnName": "is_kernel_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isDisableKillSwitchOnTrustedEnabled",
|
|
||||||
"columnName": "is_disable_kill_switch_on_trusted_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingIntervalSeconds",
|
|
||||||
"columnName": "tunnel_ping_interval_sec",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "30"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingAttempts",
|
|
||||||
"columnName": "tunnel_ping_attempts",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingTimeoutSeconds",
|
|
||||||
"columnName": "tunnel_ping_timeout_sec",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "TunnelConfig",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `wg_quick` TEXT NOT NULL, `tunnel_networks` TEXT NOT NULL DEFAULT '', `is_mobile_data_tunnel` INTEGER NOT NULL DEFAULT false, `is_primary_tunnel` INTEGER NOT NULL DEFAULT false, `am_quick` TEXT NOT NULL DEFAULT '', `is_Active` INTEGER NOT NULL DEFAULT false, `restart_on_ping_failure` INTEGER NOT NULL DEFAULT false, `ping_target` TEXT DEFAULT null, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `is_ipv4_preferred` INTEGER NOT NULL DEFAULT true, `position` INTEGER NOT NULL DEFAULT 0, `auto_tunnel_apps` TEXT NOT NULL DEFAULT '[]')",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wgQuick",
|
|
||||||
"columnName": "wg_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelNetworks",
|
|
||||||
"columnName": "tunnel_networks",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMobileDataTunnel",
|
|
||||||
"columnName": "is_mobile_data_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPrimaryTunnel",
|
|
||||||
"columnName": "is_primary_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "amQuick",
|
|
||||||
"columnName": "am_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isActive",
|
|
||||||
"columnName": "is_Active",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "restartOnPingFailure",
|
|
||||||
"columnName": "restart_on_ping_failure",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingTarget",
|
|
||||||
"columnName": "ping_target",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv4Preferred",
|
|
||||||
"columnName": "is_ipv4_preferred",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "position",
|
|
||||||
"columnName": "position",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "autoTunnelApps",
|
|
||||||
"columnName": "auto_tunnel_apps",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'[]'"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_TunnelConfig_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '82bdb96b7a9f8695a34ad1ec21d9aea8')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<color name="ic_launcher_background">#648DB3</color>
|
|
||||||
</resources>
|
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
<!--foreground service permissions-->
|
<!--foreground service permissions-->
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
||||||
<!--start service on boot permission-->
|
<!--start service on boot permission-->
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
@@ -47,10 +48,6 @@
|
|||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent>
|
</intent>
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.MAIN" />
|
|
||||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
||||||
</intent>
|
|
||||||
</queries>
|
</queries>
|
||||||
<application
|
<application
|
||||||
android:name=".WireGuardAutoTunnel"
|
android:name=".WireGuardAutoTunnel"
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel
|
package com.zaneschepke.wireguardautotunnel
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
import android.graphics.Color
|
import android.graphics.Color
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
@@ -25,10 +27,10 @@ import androidx.compose.runtime.*
|
|||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.input.pointer.pointerInput
|
import androidx.compose.ui.input.pointer.pointerInput
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.core.net.toUri
|
import androidx.core.net.toUri
|
||||||
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
|
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
|
||||||
import androidx.lifecycle.compose.collectAsStateWithLifecycle
|
import androidx.lifecycle.compose.collectAsStateWithLifecycle
|
||||||
import androidx.lifecycle.lifecycleScope
|
|
||||||
import androidx.navigation.compose.NavHost
|
import androidx.navigation.compose.NavHost
|
||||||
import androidx.navigation.compose.composable
|
import androidx.navigation.compose.composable
|
||||||
import androidx.navigation.compose.currentBackStackEntryAsState
|
import androidx.navigation.compose.currentBackStackEntryAsState
|
||||||
@@ -36,9 +38,6 @@ import androidx.navigation.compose.rememberNavController
|
|||||||
import androidx.navigation.toRoute
|
import androidx.navigation.toRoute
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.data.AppDatabase
|
|
||||||
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.Route
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.VpnDeniedDialog
|
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.VpnDeniedDialog
|
||||||
@@ -55,7 +54,6 @@ import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.Loca
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.MainScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.MainScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.TunnelAutoTunnelScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.TunnelAutoTunnelScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.ConfigScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.ConfigScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.sort.SortScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.splittunnel.SplitTunnelScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.splittunnel.SplitTunnelScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.tunneloptions.TunnelOptionsScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.tunneloptions.TunnelOptionsScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.pin.PinLockScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.pin.PinLockScreen
|
||||||
@@ -66,22 +64,17 @@ import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.displa
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.language.LanguageScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.language.LanguageScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.killswitch.KillSwitchScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.killswitch.KillSwitchScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.logs.LogsScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.logs.LogsScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.TunnelMonitoringScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.SupportScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.support.SupportScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.license.LicenseScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.support.license.LicenseScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.WireguardAutoTunnelTheme
|
import com.zaneschepke.wireguardautotunnel.ui.theme.WireguardAutoTunnelTheme
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.isRunningOnTv
|
import com.zaneschepke.wireguardautotunnel.util.extensions.isRunningOnTv
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.restartApp
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.showToast
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import de.raphaelebner.roomdatabasebackup.core.RoomBackup
|
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import kotlin.system.exitProcess
|
import kotlin.system.exitProcess
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import org.amnezia.awg.backend.GoBackend.VpnService
|
import org.amnezia.awg.backend.GoBackend.VpnService
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
class MainActivity : AppCompatActivity() {
|
class MainActivity : AppCompatActivity() {
|
||||||
@@ -92,16 +85,8 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
@Inject lateinit var networkMonitor: NetworkMonitor
|
@Inject lateinit var networkMonitor: NetworkMonitor
|
||||||
|
|
||||||
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
|
||||||
|
|
||||||
@Inject @MainDispatcher lateinit var mainDispatcher: CoroutineDispatcher
|
|
||||||
|
|
||||||
@Inject lateinit var appDatabase: AppDatabase
|
|
||||||
|
|
||||||
private var lastLocationPermissionState: Boolean? = null
|
private var lastLocationPermissionState: Boolean? = null
|
||||||
|
|
||||||
private lateinit var roomBackup: RoomBackup
|
|
||||||
|
|
||||||
val REQUEST_CODE = 123
|
val REQUEST_CODE = 123
|
||||||
|
|
||||||
@SuppressLint("BatteryLife")
|
@SuppressLint("BatteryLife")
|
||||||
@@ -114,7 +99,6 @@ class MainActivity : AppCompatActivity() {
|
|||||||
window.isNavigationBarContrastEnforced = false
|
window.isNavigationBarContrastEnforced = false
|
||||||
}
|
}
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
roomBackup = RoomBackup(this)
|
|
||||||
|
|
||||||
val viewModel by viewModels<AppViewModel>()
|
val viewModel by viewModels<AppViewModel>()
|
||||||
|
|
||||||
@@ -126,6 +110,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
val isTv = isRunningOnTv()
|
val isTv = isRunningOnTv()
|
||||||
val appUiState by viewModel.uiState.collectAsStateWithLifecycle()
|
val appUiState by viewModel.uiState.collectAsStateWithLifecycle()
|
||||||
val appViewState by viewModel.appViewState.collectAsStateWithLifecycle()
|
val appViewState by viewModel.appViewState.collectAsStateWithLifecycle()
|
||||||
|
val tunnelError by viewModel.tunnelManager.errorEvents.collectAsStateWithLifecycle(null)
|
||||||
|
|
||||||
val navController = rememberNavController()
|
val navController = rememberNavController()
|
||||||
val backStackEntry by navController.currentBackStackEntryAsState()
|
val backStackEntry by navController.currentBackStackEntryAsState()
|
||||||
@@ -168,6 +153,15 @@ class MainActivity : AppCompatActivity() {
|
|||||||
viewModel.handleEvent(AppEvent.SetBatteryOptimizeDisableShown)
|
viewModel.handleEvent(AppEvent.SetBatteryOptimizeDisableShown)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LaunchedEffect(tunnelError) {
|
||||||
|
if (tunnelError == null) return@LaunchedEffect
|
||||||
|
val message = tunnelError!!.second.toStringRes()
|
||||||
|
val context = this@MainActivity
|
||||||
|
snackbar.showSnackbar(
|
||||||
|
context.getString(R.string.tunnel_error_template, context.getString(message))
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
with(appViewState) {
|
with(appViewState) {
|
||||||
LaunchedEffect(isConfigChanged) {
|
LaunchedEffect(isConfigChanged) {
|
||||||
if (isConfigChanged) {
|
if (isConfigChanged) {
|
||||||
@@ -268,13 +262,13 @@ class MainActivity : AppCompatActivity() {
|
|||||||
MainScreen(appUiState, appViewState, viewModel)
|
MainScreen(appUiState, appViewState, viewModel)
|
||||||
}
|
}
|
||||||
composable<Route.Settings> {
|
composable<Route.Settings> {
|
||||||
SettingsScreen(appUiState, appViewState, viewModel)
|
SettingsScreen(appUiState, viewModel)
|
||||||
}
|
}
|
||||||
composable<Route.SettingsAdvanced> {
|
composable<Route.SettingsAdvanced> {
|
||||||
SettingsAdvancedScreen(appUiState, viewModel)
|
SettingsAdvancedScreen(appUiState, viewModel)
|
||||||
}
|
}
|
||||||
composable<Route.LocationDisclosure> {
|
composable<Route.LocationDisclosure> {
|
||||||
LocationDisclosureScreen(viewModel)
|
LocationDisclosureScreen(appUiState, viewModel)
|
||||||
}
|
}
|
||||||
composable<Route.AutoTunnel> {
|
composable<Route.AutoTunnel> {
|
||||||
AutoTunnelScreen(appUiState, viewModel)
|
AutoTunnelScreen(appUiState, viewModel)
|
||||||
@@ -301,19 +295,14 @@ class MainActivity : AppCompatActivity() {
|
|||||||
val args = backStack.toRoute<Route.Config>()
|
val args = backStack.toRoute<Route.Config>()
|
||||||
val config =
|
val config =
|
||||||
appUiState.tunnels.firstOrNull { it.id == args.id }
|
appUiState.tunnels.firstOrNull { it.id == args.id }
|
||||||
ConfigScreen(config, appUiState, viewModel)
|
ConfigScreen(config, viewModel)
|
||||||
}
|
}
|
||||||
composable<Route.TunnelOptions> { backStack ->
|
composable<Route.TunnelOptions> { backStack ->
|
||||||
val args = backStack.toRoute<Route.TunnelOptions>()
|
val args = backStack.toRoute<Route.TunnelOptions>()
|
||||||
appUiState.tunnels
|
appUiState.tunnels
|
||||||
.firstOrNull { it.id == args.id }
|
.firstOrNull { it.id == args.id }
|
||||||
?.let { config ->
|
?.let { config ->
|
||||||
TunnelOptionsScreen(
|
TunnelOptionsScreen(config, viewModel, appViewState)
|
||||||
config,
|
|
||||||
viewModel,
|
|
||||||
appViewState,
|
|
||||||
appUiState.appSettings,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
composable<Route.Lock> { PinLockScreen(viewModel) }
|
composable<Route.Lock> { PinLockScreen(viewModel) }
|
||||||
@@ -333,10 +322,6 @@ class MainActivity : AppCompatActivity() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
composable<Route.Sort> { SortScreen(appUiState, viewModel) }
|
|
||||||
composable<Route.TunnelMonitoring> {
|
|
||||||
TunnelMonitoringScreen(appUiState, viewModel)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -348,61 +333,19 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
WireGuardAutoTunnel.setUiActive(true)
|
checkPermissionAndNotify()
|
||||||
networkMonitor.checkPermissionsAndUpdateState()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onPause() {
|
private fun checkPermissionAndNotify() {
|
||||||
super.onPause()
|
val hasLocation =
|
||||||
WireGuardAutoTunnel.setUiActive(false)
|
ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) ==
|
||||||
|
PackageManager.PERMISSION_GRANTED
|
||||||
|
if (lastLocationPermissionState != hasLocation) {
|
||||||
|
Timber.d("Location permission changed to: $hasLocation")
|
||||||
|
if (hasLocation) {
|
||||||
|
networkMonitor.sendLocationPermissionsGrantedBroadcast()
|
||||||
|
}
|
||||||
|
lastLocationPermissionState = hasLocation
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun performBackup() =
|
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
|
||||||
roomBackup
|
|
||||||
.database(appDatabase)
|
|
||||||
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
|
||||||
.enableLogDebug(true)
|
|
||||||
.maxFileCount(5)
|
|
||||||
.apply {
|
|
||||||
onCompleteListener { success, message, exitCode ->
|
|
||||||
lifecycleScope.launch(mainDispatcher) {
|
|
||||||
if (success) {
|
|
||||||
showToast(
|
|
||||||
getString(
|
|
||||||
R.string.backup_success,
|
|
||||||
getString(R.string.restarting_app),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
restartApp()
|
|
||||||
} else showToast(R.string.backup_failed)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.backup()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun performRestore() =
|
|
||||||
lifecycleScope.launch {
|
|
||||||
roomBackup
|
|
||||||
.database(appDatabase)
|
|
||||||
.enableLogDebug(true)
|
|
||||||
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
|
||||||
.apply {
|
|
||||||
onCompleteListener { success, message, exitCode ->
|
|
||||||
lifecycleScope.launch(mainDispatcher) {
|
|
||||||
if (success) {
|
|
||||||
showToast(
|
|
||||||
getString(
|
|
||||||
R.string.restore_success,
|
|
||||||
getString(R.string.restarting_app),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
restartApp()
|
|
||||||
} else showToast(R.string.restore_failed)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.restore()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,25 +4,27 @@ import android.app.Application
|
|||||||
import android.os.StrictMode
|
import android.os.StrictMode
|
||||||
import android.os.StrictMode.ThreadPolicy
|
import android.os.StrictMode.ThreadPolicy
|
||||||
import androidx.hilt.work.HiltWorkerFactory
|
import androidx.hilt.work.HiltWorkerFactory
|
||||||
|
import androidx.lifecycle.DefaultLifecycleObserver
|
||||||
|
import androidx.lifecycle.LifecycleOwner
|
||||||
|
import androidx.lifecycle.ProcessLifecycleOwner
|
||||||
import androidx.work.Configuration
|
import androidx.work.Configuration
|
||||||
import com.wireguard.android.backend.GoBackend
|
import com.wireguard.android.backend.GoBackend
|
||||||
import com.zaneschepke.logcatter.LogReader
|
import com.zaneschepke.logcatter.LogReader
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.worker.ServiceWorker
|
import com.zaneschepke.wireguardautotunnel.core.worker.ServiceWorker
|
||||||
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.util.LocaleUtil
|
import com.zaneschepke.wireguardautotunnel.util.LocaleUtil
|
||||||
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
||||||
import dagger.hilt.android.HiltAndroidApp
|
import dagger.hilt.android.HiltAndroidApp
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.withContext
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
@HiltAndroidApp
|
@HiltAndroidApp
|
||||||
@@ -43,13 +45,12 @@ class WireGuardAutoTunnel : Application(), Configuration.Provider {
|
|||||||
|
|
||||||
@Inject @MainDispatcher lateinit var mainDispatcher: CoroutineDispatcher
|
@Inject @MainDispatcher lateinit var mainDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
@Inject lateinit var notificationMonitor: NotificationMonitor
|
|
||||||
|
|
||||||
@Inject lateinit var tunnelManager: TunnelManager
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
instance = this
|
instance = this
|
||||||
|
ProcessLifecycleOwner.get().lifecycle.addObserver(AppLifecycleObserver())
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
Timber.plant(Timber.DebugTree())
|
Timber.plant(Timber.DebugTree())
|
||||||
StrictMode.setThreadPolicy(
|
StrictMode.setThreadPolicy(
|
||||||
@@ -79,7 +80,6 @@ class WireGuardAutoTunnel : Application(), Configuration.Provider {
|
|||||||
ServiceWorker.start(this)
|
ServiceWorker.start(this)
|
||||||
|
|
||||||
applicationScope.launch {
|
applicationScope.launch {
|
||||||
launch { notificationMonitor.handleApplicationNotifications() }
|
|
||||||
appDataRepository.appState.getLocale()?.let {
|
appDataRepository.appState.getLocale()?.let {
|
||||||
withContext(mainDispatcher) { LocaleUtil.changeLocale(it) }
|
withContext(mainDispatcher) { LocaleUtil.changeLocale(it) }
|
||||||
}
|
}
|
||||||
@@ -90,20 +90,30 @@ class WireGuardAutoTunnel : Application(), Configuration.Provider {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onTerminate() {
|
override fun onTerminate() {
|
||||||
applicationScope.cancel()
|
applicationScope.launch {
|
||||||
tunnelManager.setBackendStatus(BackendStatus.Inactive)
|
tunnelManager.setBackendState(BackendState.INACTIVE, emptyList())
|
||||||
|
}
|
||||||
super.onTerminate()
|
super.onTerminate()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class AppLifecycleObserver : DefaultLifecycleObserver {
|
||||||
|
|
||||||
|
override fun onStart(owner: LifecycleOwner) {
|
||||||
|
Timber.d("Application entered foreground")
|
||||||
|
foreground = true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPause(owner: LifecycleOwner) {
|
||||||
|
Timber.d("Application entered background")
|
||||||
|
foreground = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
private var foreground = false
|
||||||
|
|
||||||
private val _uiActive = MutableStateFlow(false)
|
fun isForeground(): Boolean {
|
||||||
|
return foreground
|
||||||
val uiActive: StateFlow<Boolean>
|
|
||||||
get() = _uiActive
|
|
||||||
|
|
||||||
fun setUiActive(active: Boolean) {
|
|
||||||
_uiActive.update { active }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Volatile private var lastActiveTunnels: List<Int> = emptyList()
|
@Volatile private var lastActiveTunnels: List<Int> = emptyList()
|
||||||
|
|||||||
-6
@@ -43,14 +43,8 @@ interface NotificationManager {
|
|||||||
fun show(notificationId: Int, notification: Notification)
|
fun show(notificationId: Int, notification: Notification)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val AUTO_TUNNEL_LOCATION_PERMISSION_ID = 123
|
|
||||||
const val AUTO_TUNNEL_LOCATION_SERVICES_ID = 124
|
|
||||||
// For auto tunnel foreground notification
|
|
||||||
const val AUTO_TUNNEL_NOTIFICATION_ID = 122
|
const val AUTO_TUNNEL_NOTIFICATION_ID = 122
|
||||||
// for tunnel foreground notification
|
|
||||||
const val VPN_NOTIFICATION_ID = 100
|
const val VPN_NOTIFICATION_ID = 100
|
||||||
const val TUNNEL_ERROR_NOTIFICATION_ID = 101
|
|
||||||
const val TUNNEL_MESSAGES_NOTIFICATION_ID = 102
|
|
||||||
const val EXTRA_ID = "id"
|
const val EXTRA_ID = "id"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
-63
@@ -1,63 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.notification
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
|
||||||
import jakarta.inject.Inject
|
|
||||||
import kotlinx.coroutines.coroutineScope
|
|
||||||
import kotlinx.coroutines.flow.collectLatest
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
|
|
||||||
class NotificationMonitor
|
|
||||||
@Inject
|
|
||||||
constructor(
|
|
||||||
private val tunnelManager: TunnelManager,
|
|
||||||
private val notificationManager: NotificationManager,
|
|
||||||
) {
|
|
||||||
suspend fun handleApplicationNotifications() = coroutineScope {
|
|
||||||
launch { handleTunnelErrors() }
|
|
||||||
launch { handleTunnelMessages() }
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleTunnelErrors() =
|
|
||||||
tunnelManager.errorEvents.collectLatest { (tunnelConf, error) ->
|
|
||||||
if (!WireGuardAutoTunnel.uiActive.value) {
|
|
||||||
val notification =
|
|
||||||
notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
|
||||||
title = StringValue.DynamicString(tunnelConf.name),
|
|
||||||
description =
|
|
||||||
when (error) {
|
|
||||||
is BackendError.BounceFailed -> error.toStringValue()
|
|
||||||
else ->
|
|
||||||
StringValue.StringResource(
|
|
||||||
R.string.tunnel_error_template,
|
|
||||||
error.toStringRes(),
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
notificationManager.show(
|
|
||||||
NotificationManager.TUNNEL_ERROR_NOTIFICATION_ID,
|
|
||||||
notification,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleTunnelMessages() =
|
|
||||||
tunnelManager.messageEvents.collectLatest { (tunnelConf, message) ->
|
|
||||||
if (!WireGuardAutoTunnel.uiActive.value) {
|
|
||||||
val notification =
|
|
||||||
notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
|
||||||
title = StringValue.DynamicString(tunnelConf.name),
|
|
||||||
description = message.toStringValue(),
|
|
||||||
)
|
|
||||||
notificationManager.show(
|
|
||||||
NotificationManager.TUNNEL_MESSAGES_NOTIFICATION_ID,
|
|
||||||
notification,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+6
-7
@@ -7,6 +7,9 @@ import android.content.ServiceConnection
|
|||||||
import android.net.VpnService
|
import android.net.VpnService
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.requestAutoTunnelTileServiceUpdate
|
import com.zaneschepke.wireguardautotunnel.util.extensions.requestAutoTunnelTileServiceUpdate
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.requestTunnelTileServiceStateUpdate
|
import com.zaneschepke.wireguardautotunnel.util.extensions.requestTunnelTileServiceStateUpdate
|
||||||
@@ -26,9 +29,9 @@ class ServiceManager
|
|||||||
@Inject
|
@Inject
|
||||||
constructor(
|
constructor(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
private val applicationScope: CoroutineScope,
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
private val mainDispatcher: CoroutineDispatcher,
|
@MainDispatcher private val mainDispatcher: CoroutineDispatcher,
|
||||||
private val appDataRepository: AppDataRepository,
|
private val appDataRepository: AppDataRepository,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
@@ -93,8 +96,6 @@ constructor(
|
|||||||
service.stop()
|
service.stop()
|
||||||
try {
|
try {
|
||||||
context.unbindService(autoTunnelServiceConnection)
|
context.unbindService(autoTunnelServiceConnection)
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to unbind AutoTunnelService")
|
|
||||||
} finally {
|
} finally {
|
||||||
_tunnelService.value = null
|
_tunnelService.value = null
|
||||||
}
|
}
|
||||||
@@ -119,8 +120,6 @@ constructor(
|
|||||||
service.stop()
|
service.stop()
|
||||||
try {
|
try {
|
||||||
context.unbindService(tunnelServiceConnection)
|
context.unbindService(tunnelServiceConnection)
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to stop TunnelForegroundService")
|
|
||||||
} finally {
|
} finally {
|
||||||
_tunnelService.value = null
|
_tunnelService.value = null
|
||||||
}
|
}
|
||||||
|
|||||||
+189
-27
@@ -7,24 +7,27 @@ import android.os.IBinder
|
|||||||
import androidx.core.app.ServiceCompat
|
import androidx.core.app.ServiceCompat
|
||||||
import androidx.lifecycle.LifecycleService
|
import androidx.lifecycle.LifecycleService
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.util.Constants
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.distinctByKeys
|
import com.zaneschepke.wireguardautotunnel.util.extensions.distinctByKeys
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import io.ktor.util.collections.*
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.Job
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
@@ -34,18 +37,23 @@ class TunnelForegroundService : LifecycleService() {
|
|||||||
|
|
||||||
@Inject lateinit var serviceManager: ServiceManager
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
@Inject lateinit var tunnelManager: TunnelManager
|
@Inject lateinit var networkMonitor: NetworkMonitor
|
||||||
|
|
||||||
@Inject lateinit var tunnelMonitor: TunnelMonitor
|
|
||||||
|
|
||||||
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
@Inject lateinit var appDataRepository: AppDataRepository
|
@Inject lateinit var tunnelRepo: TunnelRepository
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
private val isNetworkConnected = MutableStateFlow(true)
|
||||||
|
|
||||||
|
private val tunnelJobs = ConcurrentHashMap<TunnelConf, Job>()
|
||||||
|
private val pingJobs = ConcurrentHashMap<TunnelConf, Job>()
|
||||||
|
|
||||||
|
private val jobsMutex = Mutex()
|
||||||
|
|
||||||
class LocalBinder(val service: TunnelForegroundService) : Binder()
|
class LocalBinder(val service: TunnelForegroundService) : Binder()
|
||||||
|
|
||||||
private val tunnelJobs = ConcurrentMap<TunnelConf, Job>()
|
|
||||||
|
|
||||||
private val binder = LocalBinder(this)
|
private val binder = LocalBinder(this)
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
@@ -78,23 +86,94 @@ class TunnelForegroundService : LifecycleService() {
|
|||||||
fun start() =
|
fun start() =
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
tunnelManager.activeTunnels.distinctByKeys().collect { activeTunnels ->
|
tunnelManager.activeTunnels.distinctByKeys().collect { activeTunnels ->
|
||||||
val activeTunConfigs = activeTunnels.keys
|
// No active tunnels and no jobs: nothing to do
|
||||||
val obsoleteJobs = tunnelJobs.keys - activeTunConfigs
|
if (activeTunnels.isEmpty() && tunnelJobs.isEmpty()) return@collect
|
||||||
obsoleteJobs.forEach { tunnelConf -> tunnelJobs[tunnelConf]?.cancel() }
|
|
||||||
activeTunConfigs.forEach { tun ->
|
// Synchronize jobs with active tunnels
|
||||||
if (tunnelJobs.containsKey(tun)) return@forEach
|
synchronizeJobs(activeTunnels)
|
||||||
tunnelJobs[tun] = launch { tunnelMonitor.startMonitoring(tun, true) }
|
updateServiceNotification()
|
||||||
}
|
|
||||||
updateServiceNotification(activeTunnels)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private suspend fun synchronizeJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
jobsMutex.withLock {
|
||||||
|
// Stop jobs for tunnels that are no longer active
|
||||||
|
stopInactiveJobs(activeTunnels)
|
||||||
|
// Start jobs for new tunnels
|
||||||
|
startNewJobs(activeTunnels)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopInactiveJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
// If no active tunnels, clear all jobs
|
||||||
|
if (activeTunnels.isEmpty()) {
|
||||||
|
clearAllJobs()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Stop jobs for tunnels not in activeTunnels
|
||||||
|
val tunnelsToStop = tunnelJobs.keys - activeTunnels.keys
|
||||||
|
tunnelsToStop.forEach { tun -> stopTunnelJobs(tun) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clearAllJobs() {
|
||||||
|
tunnelJobs.forEach { (tun, job) ->
|
||||||
|
Timber.d("Stopping tunnel job for ${tun.tunName}")
|
||||||
|
job.cancel()
|
||||||
|
}
|
||||||
|
tunnelJobs.clear()
|
||||||
|
|
||||||
|
pingJobs.forEach { (tun, job) ->
|
||||||
|
if (isPingBounce(tun)) {
|
||||||
|
Timber.d("Preserving ping job for ${tun.tunName} due to PING bounce")
|
||||||
|
return@forEach
|
||||||
|
}
|
||||||
|
Timber.d("Stopping ping job for ${tun.tunName}")
|
||||||
|
job.cancel()
|
||||||
|
}
|
||||||
|
pingJobs.entries.removeIf { (tun, _) -> !isPingBounce(tun) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopTunnelJobs(tun: TunnelConf) {
|
||||||
|
tunnelJobs.remove(tun)?.cancel()
|
||||||
|
Timber.d("Stopped tunnel job for ${tun.tunName}")
|
||||||
|
if (isPingBounce(tun))
|
||||||
|
return Timber.d("Preserving ${tun.tunName} ping job due to ping bounce")
|
||||||
|
pingJobs.remove(tun)?.cancel()
|
||||||
|
Timber.d("Stopped ping job for ${tun.tunName}")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startNewJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
val tunnelsToStart = activeTunnels.keys - tunnelJobs.keys
|
||||||
|
tunnelsToStart.forEach { tun ->
|
||||||
|
tunnelJobs[tun] = startTunnelJobs(tun)
|
||||||
|
Timber.d("Started tunnel job for ${tun.tunName}")
|
||||||
|
|
||||||
|
if (pingJobs[tun]?.isActive == true) {
|
||||||
|
Timber.d("Reusing active ping job for ${tun.tunName}")
|
||||||
|
} else {
|
||||||
|
pingJobs[tun]?.cancel() // Cancel any stale job
|
||||||
|
if (tun.isPingEnabled) {
|
||||||
|
if (tun.isStaticallyConfigured()) {
|
||||||
|
Timber.d("Skipping ping for statically configured tunnel")
|
||||||
|
} else {
|
||||||
|
pingJobs[tun] = startPingJob(tun)
|
||||||
|
Timber.d("Started ping job for ${tun.tunName}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isPingBounce(tun: TunnelConf): Boolean =
|
||||||
|
tunnelManager.bouncingTunnelIds[tun.id] == TunnelStatus.StopReason.PING
|
||||||
|
|
||||||
// TODO Would be cool to have this include kill switch
|
// TODO Would be cool to have this include kill switch
|
||||||
private fun updateServiceNotification(activeTunnels: Map<TunnelConf, TunnelState>) {
|
// TODO also we need to include errors
|
||||||
|
private fun updateServiceNotification() {
|
||||||
val notification =
|
val notification =
|
||||||
when (activeTunnels.size) {
|
when (tunnelJobs.size) {
|
||||||
0 -> onCreateNotification()
|
0 -> onCreateNotification()
|
||||||
1 -> createTunnelNotification(activeTunnels.keys.first())
|
1 -> createTunnelNotification(tunnelJobs.keys.first())
|
||||||
else -> createTunnelsNotification()
|
else -> createTunnelsNotification()
|
||||||
}
|
}
|
||||||
ServiceCompat.startForeground(
|
ServiceCompat.startForeground(
|
||||||
@@ -105,18 +184,91 @@ class TunnelForegroundService : LifecycleService() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// use same scope so we can cancel all of these
|
||||||
|
private fun startTunnelJobs(tunnelConf: TunnelConf) =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
// monitor if we have internet connectivity
|
||||||
|
launch { startNetworkMonitorJob() }
|
||||||
|
// job to trigger stats emit on interval
|
||||||
|
launch { startTunnelStatsJob(tunnelConf) }
|
||||||
|
// monitor changes to the tunnel config
|
||||||
|
launch { startTunnelConfChangesJob(tunnelConf) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startTunnelConfChangesJob(tunnelConf: TunnelConf) {
|
||||||
|
tunnelRepo.flow
|
||||||
|
.flowOn(ioDispatcher)
|
||||||
|
.map { storedTunnels -> storedTunnels.firstOrNull { it.id == tunnelConf.id } }
|
||||||
|
.filterNotNull()
|
||||||
|
// only emit when one of these 3 values change
|
||||||
|
.distinctUntilChanged { old, new -> old == new }
|
||||||
|
.collect { storedTunnel ->
|
||||||
|
if (tunnelConf != storedTunnel) {
|
||||||
|
Timber.d("Config changed for ${storedTunnel.tunName}, bouncing")
|
||||||
|
// let this complete, even after cancel
|
||||||
|
withContext(NonCancellable) {
|
||||||
|
tunnelManager.bounceTunnel(
|
||||||
|
storedTunnel,
|
||||||
|
TunnelStatus.StopReason.CONFIG_CHANGED,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startNetworkMonitorJob() {
|
||||||
|
networkMonitor.networkStatusFlow.flowOn(ioDispatcher).collectLatest { status ->
|
||||||
|
val isAvailable = status !is NetworkStatus.Disconnected
|
||||||
|
isNetworkConnected.value = isAvailable
|
||||||
|
Timber.d("Network available: $status")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startTunnelStatsJob(tunnel: TunnelConf) = coroutineScope {
|
||||||
|
while (isActive) {
|
||||||
|
tunnelManager.updateTunnelStatistics(tunnel)
|
||||||
|
delay(STATS_DELAY)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startPingJob(tunnel: TunnelConf) =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
// delay for initial duration
|
||||||
|
delay(tunnel.pingInterval ?: Constants.PING_INTERVAL)
|
||||||
|
while (isActive) {
|
||||||
|
val shouldBounce = shouldBounceTunnel(tunnel)
|
||||||
|
val delayMs =
|
||||||
|
if (shouldBounce) {
|
||||||
|
// let this complete, even after cancel
|
||||||
|
withContext(NonCancellable) {
|
||||||
|
tunnelManager.bounceTunnel(tunnel, TunnelStatus.StopReason.PING)
|
||||||
|
}
|
||||||
|
tunnel.pingCooldown ?: Constants.PING_COOLDOWN
|
||||||
|
} else {
|
||||||
|
tunnel.pingInterval ?: Constants.PING_INTERVAL
|
||||||
|
}
|
||||||
|
delay(delayMs)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun shouldBounceTunnel(tunnel: TunnelConf): Boolean {
|
||||||
|
if (!isNetworkConnected.value) {
|
||||||
|
Timber.d("Network disconnected, skipping ping for ${tunnel.tunName}")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return runCatching { !tunnel.isTunnelPingable(ioDispatcher) }
|
||||||
|
.onFailure { e -> Timber.e(e, "Ping check failed for ${tunnel.tunName}") }
|
||||||
|
.getOrDefault(true)
|
||||||
|
}
|
||||||
|
|
||||||
fun stop() {
|
fun stop() {
|
||||||
Timber.d("Stop called")
|
|
||||||
tunnelJobs.forEach { it.value.cancel() }
|
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
stopSelf()
|
stopSelf()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
tunnelJobs.forEach { it.value.cancel() }
|
|
||||||
serviceManager.handleTunnelServiceDestroy()
|
serviceManager.handleTunnelServiceDestroy()
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
Timber.d("onDestroy")
|
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,4 +303,14 @@ class TunnelForegroundService : LifecycleService() {
|
|||||||
title = getString(R.string.tunnel_starting),
|
title = getString(R.string.tunnel_starting),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO add notification handling and optional log reading for restart on handshake failures
|
||||||
|
companion object {
|
||||||
|
const val STATS_DELAY = 1_000L
|
||||||
|
// ipv6 disabled or block on network
|
||||||
|
// Failed to send handshake initiation: write udp [::]"
|
||||||
|
// Failed to send data packets: write udp [::]
|
||||||
|
// Failed to send data packets: write udp 0.0.0.0:51820
|
||||||
|
// Handshake did not complete after 5 seconds, retrying
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+140
-305
@@ -3,23 +3,22 @@ package com.zaneschepke.wireguardautotunnel.core.service.autotunnel
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Binder
|
import android.os.Binder
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
|
import android.os.PowerManager
|
||||||
import androidx.core.app.ServiceCompat
|
import androidx.core.app.ServiceCompat
|
||||||
import androidx.lifecycle.LifecycleService
|
import androidx.lifecycle.LifecycleService
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
import com.zaneschepke.networkmonitor.AndroidNetworkMonitor
|
|
||||||
import com.zaneschepke.networkmonitor.ConnectivityState
|
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus.StopReason.Ping
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent
|
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.events.KillSwitchEvent
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
@@ -27,15 +26,11 @@ import com.zaneschepke.wireguardautotunnel.domain.state.AutoTunnelState
|
|||||||
import com.zaneschepke.wireguardautotunnel.domain.state.NetworkState
|
import com.zaneschepke.wireguardautotunnel.domain.state.NetworkState
|
||||||
import com.zaneschepke.wireguardautotunnel.util.Constants
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toMillis
|
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Provider
|
import javax.inject.Provider
|
||||||
import kotlin.math.pow
|
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.flow.*
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
@@ -53,24 +48,20 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
|
|
||||||
@Inject lateinit var tunnelManager: TunnelManager
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
@Inject lateinit var tunnelMonitor: TunnelMonitor
|
|
||||||
|
|
||||||
private val defaultState = AutoTunnelState()
|
private val defaultState = AutoTunnelState()
|
||||||
|
|
||||||
private val autoTunMutex = Mutex()
|
|
||||||
|
|
||||||
private val autoTunnelStateFlow = MutableStateFlow(defaultState)
|
private val autoTunnelStateFlow = MutableStateFlow(defaultState)
|
||||||
|
|
||||||
private val bounceCounts = MutableStateFlow<Map<Int, Int>>(emptyMap())
|
private var wakeLock: PowerManager.WakeLock? = null
|
||||||
|
|
||||||
private var eventHandlerJob: Job? = null
|
private var killSwitchJob: Job? = null
|
||||||
|
|
||||||
private val lastBounceTimes = mutableMapOf<Int, Long>()
|
|
||||||
|
|
||||||
class LocalBinder(val service: AutoTunnelService) : Binder()
|
class LocalBinder(val service: AutoTunnelService) : Binder()
|
||||||
|
|
||||||
private val binder = LocalBinder(this)
|
private val binder = LocalBinder(this)
|
||||||
|
|
||||||
|
private var isServiceRunning = false
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
launchWatcherNotification()
|
launchWatcherNotification()
|
||||||
@@ -89,19 +80,28 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun start() {
|
fun start() {
|
||||||
launchWatcherNotification()
|
if (isServiceRunning) return
|
||||||
startAutoTunnelStateJob()
|
isServiceRunning = true
|
||||||
startLocationPermissionsNotificationJob()
|
kotlin
|
||||||
|
.runCatching {
|
||||||
|
launchWatcherNotification()
|
||||||
|
initWakeLock()
|
||||||
|
startAutoTunnelJob()
|
||||||
|
startAutoTunnelStateJob()
|
||||||
|
killSwitchJob = startKillSwitchJob()
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun stop() {
|
fun stop() {
|
||||||
|
isServiceRunning = false
|
||||||
|
wakeLock?.let { if (it.isHeld) it.release() }
|
||||||
stopSelf()
|
stopSelf()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
serviceManager.handleAutoTunnelServiceDestroy()
|
serviceManager.handleAutoTunnelServiceDestroy()
|
||||||
restoreVpnKillSwitch()
|
restoreVpnKillSwitch()
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -109,13 +109,13 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
with(autoTunnelStateFlow.value) {
|
with(autoTunnelStateFlow.value) {
|
||||||
if (
|
if (
|
||||||
settings.isVpnKillSwitchEnabled &&
|
settings.isVpnKillSwitchEnabled &&
|
||||||
tunnelManager.getBackendStatus() !is BackendStatus.KillSwitch
|
tunnelManager.getBackendState() != BackendState.KILL_SWITCH_ACTIVE
|
||||||
) {
|
) {
|
||||||
eventHandlerJob?.cancel()
|
killSwitchJob?.cancel()
|
||||||
val allowedIps =
|
val allowedIps =
|
||||||
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
||||||
else emptyList()
|
else emptyList()
|
||||||
tunnelManager.setBackendStatus(BackendStatus.KillSwitch(allowedIps))
|
tunnelManager.setBackendState(BackendState.KILL_SWITCH_ACTIVE, allowedIps)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -143,141 +143,80 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startAutoTunnelStateJob() =
|
private fun initWakeLock() {
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
wakeLock =
|
||||||
val networkFlow =
|
(getSystemService(POWER_SERVICE) as PowerManager).run {
|
||||||
debouncedConnectivityStateFlow
|
val tag = this.javaClass.name
|
||||||
.flowOn(ioDispatcher)
|
newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "$tag::lock").apply {
|
||||||
.map(NetworkState::from)
|
try {
|
||||||
.map { StateChange.NetworkChange(it) }
|
Timber.i("Initiating wakelock with 10 min timeout")
|
||||||
.distinctUntilChanged()
|
acquire(Constants.BATTERY_SAVER_WATCHER_WAKE_LOCK_TIMEOUT)
|
||||||
|
} finally {
|
||||||
val settingsFlow =
|
release()
|
||||||
combineSettings().map { StateChange.SettingsChange(it.first, it.second) }
|
|
||||||
|
|
||||||
val tunnelsFlow =
|
|
||||||
tunnelManager.activeTunnels.map { StateChange.ActiveTunnelsChange(it) }
|
|
||||||
|
|
||||||
val monitoringFlow =
|
|
||||||
tunnelManager.activeTunnels
|
|
||||||
.map { map -> map.mapValues { (_, state) -> state.pingStates } }
|
|
||||||
.distinctUntilChanged()
|
|
||||||
.map { StateChange.MonitoringChange(it) }
|
|
||||||
|
|
||||||
var reevaluationJob: Job? = null
|
|
||||||
|
|
||||||
// get everything in sync before we use merge
|
|
||||||
combine(networkFlow, settingsFlow, tunnelsFlow, monitoringFlow) {
|
|
||||||
network,
|
|
||||||
settings,
|
|
||||||
tunnels,
|
|
||||||
monitoring ->
|
|
||||||
autoTunnelStateFlow.update {
|
|
||||||
it.copy(
|
|
||||||
activeTunnels = tunnels.activeTunnels,
|
|
||||||
networkState = network.networkState,
|
|
||||||
settings = settings.settings,
|
|
||||||
tunnels = settings.tunnels,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.first()
|
|
||||||
|
|
||||||
// use merge to limit the noise of a combine and also increase the scalability of auto
|
|
||||||
// tunnel handling new states
|
|
||||||
merge(networkFlow, settingsFlow, tunnelsFlow, monitoringFlow).collect { change ->
|
|
||||||
if (change !is StateChange.ActiveTunnelsChange) {
|
|
||||||
Timber.d("New state changed to ${change.javaClass.simpleName}")
|
|
||||||
}
|
|
||||||
|
|
||||||
when (change) {
|
|
||||||
is StateChange.NetworkChange -> {
|
|
||||||
reevaluationJob?.cancel()
|
|
||||||
val previousState = autoTunnelStateFlow.value
|
|
||||||
autoTunnelStateFlow.update { it.copy(networkState = change.networkState) }
|
|
||||||
// Android late mobile data state change, we can ignore handling this
|
|
||||||
if (
|
|
||||||
isAndroidLateCellularActiveChange(
|
|
||||||
previousState.networkState,
|
|
||||||
change.networkState,
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
Timber.d("Android late cellular active state change")
|
|
||||||
return@collect
|
|
||||||
}
|
|
||||||
}
|
|
||||||
is StateChange.SettingsChange -> {
|
|
||||||
reevaluationJob?.cancel()
|
|
||||||
autoTunnelStateFlow.update {
|
|
||||||
it.copy(settings = change.settings, tunnels = change.tunnels)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
is StateChange.ActiveTunnelsChange -> {
|
|
||||||
autoTunnelStateFlow.update { it.copy(activeTunnels = change.activeTunnels) }
|
|
||||||
return@collect
|
|
||||||
}
|
|
||||||
is StateChange.MonitoringChange -> {
|
|
||||||
change.pingStates.forEach { (config, pingState) ->
|
|
||||||
Timber.d("Ping state $pingState")
|
|
||||||
if (pingState?.all { it.value.isReachable } == true) {
|
|
||||||
Timber.d("Clearing bounce count on success")
|
|
||||||
bounceCounts.update { current ->
|
|
||||||
current.toMutableMap().apply { remove(config.id) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return@collect handleAutoTunnelEvent(
|
|
||||||
autoTunnelStateFlow.value.determineAutoTunnelEvent(
|
|
||||||
StateChange.MonitoringChange(change.pingStates)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
handleAutoTunnelEvent(autoTunnelStateFlow.value.determineAutoTunnelEvent(change))
|
|
||||||
|
|
||||||
reevaluationJob = launch {
|
|
||||||
delay(REEVALUATE_CHECK_DELAY)
|
|
||||||
val currentState = autoTunnelStateFlow.value
|
|
||||||
if (currentState != defaultState) {
|
|
||||||
Timber.d("Re-evaluating auto-tunnel state..")
|
|
||||||
handleAutoTunnelEvent(currentState.determineAutoTunnelEvent(change))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildNetworkState(networkStatus: NetworkStatus): NetworkState {
|
||||||
|
return with(autoTunnelStateFlow.value.networkState) {
|
||||||
|
val wifiName =
|
||||||
|
when (networkStatus) {
|
||||||
|
is NetworkStatus.Connected -> {
|
||||||
|
networkStatus.wifiSsid
|
||||||
|
}
|
||||||
|
else -> null
|
||||||
|
}
|
||||||
|
copy(
|
||||||
|
isWifiConnected = networkStatus.wifiConnected,
|
||||||
|
isMobileDataConnected = networkStatus.cellularConnected,
|
||||||
|
isEthernetConnected = networkStatus.ethernetConnected,
|
||||||
|
wifiName = wifiName,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun isAndroidLateCellularActiveChange(
|
|
||||||
previous: NetworkState,
|
|
||||||
new: NetworkState,
|
|
||||||
): Boolean {
|
|
||||||
return (previous.isWifiConnected != new.isWifiConnected &&
|
|
||||||
previous.wifiName == new.wifiName &&
|
|
||||||
previous.isMobileDataConnected != new.isMobileDataConnected)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// all relevant settings to auto tunnel
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
private fun areAutoTunnelSettingsTheSame(old: AppSettings, new: AppSettings): Boolean {
|
private fun startAutoTunnelStateJob() =
|
||||||
return (old.isTunnelOnWifiEnabled == new.isTunnelOnWifiEnabled &&
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
old.isTunnelOnMobileDataEnabled == new.isTunnelOnMobileDataEnabled &&
|
combine(
|
||||||
old.isTunnelOnEthernetEnabled == new.isTunnelOnEthernetEnabled &&
|
combineSettings(),
|
||||||
old.trustedNetworkSSIDs == new.trustedNetworkSSIDs &&
|
appDataRepository
|
||||||
old.isPingEnabled == new.isPingEnabled &&
|
.get()
|
||||||
old.debounceDelaySeconds == new.debounceDelaySeconds &&
|
.settings
|
||||||
old.wifiDetectionMethod == new.wifiDetectionMethod &&
|
.flow
|
||||||
old.isVpnKillSwitchEnabled == new.isVpnKillSwitchEnabled &&
|
.distinctUntilChanged { old, new ->
|
||||||
old.isLanOnKillSwitchEnabled == new.isLanOnKillSwitchEnabled &&
|
old.isKernelEnabled == new.isKernelEnabled
|
||||||
old.isDisableKillSwitchOnTrustedEnabled == new.isDisableKillSwitchOnTrustedEnabled &&
|
} // Only emit when isKernelEnabled changes
|
||||||
old.isStopOnNoInternetEnabled == new.isStopOnNoInternetEnabled)
|
.flatMapLatest {
|
||||||
}
|
networkMonitor.networkStatusFlow.flowOn(ioDispatcher).map {
|
||||||
|
buildNetworkState(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.distinctUntilChanged(),
|
||||||
|
) { double, networkState ->
|
||||||
|
AutoTunnelState(
|
||||||
|
tunnelManager.activeTunnels.value,
|
||||||
|
networkState,
|
||||||
|
double.first,
|
||||||
|
double.second,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.collect { state ->
|
||||||
|
autoTunnelStateFlow.update {
|
||||||
|
it.copy(
|
||||||
|
activeTunnels = state.activeTunnels,
|
||||||
|
networkState = state.networkState,
|
||||||
|
settings = state.settings,
|
||||||
|
tunnels = state.tunnels,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun combineSettings(): Flow<Pair<AppSettings, Tunnels>> {
|
private fun combineSettings(): Flow<Pair<AppSettings, Tunnels>> {
|
||||||
return combine(
|
return combine(
|
||||||
appDataRepository
|
appDataRepository.get().settings.flow,
|
||||||
.get()
|
|
||||||
.settings
|
|
||||||
.flow
|
|
||||||
.distinctUntilChanged(::areAutoTunnelSettingsTheSame),
|
|
||||||
appDataRepository.get().tunnels.flow.map { tunnels ->
|
appDataRepository.get().tunnels.flow.map { tunnels ->
|
||||||
// isActive is ignored for equality checks so user can manually toggle off
|
// isActive is ignored for equality checks so user can manually toggle off
|
||||||
// tunnel with auto-tunnel
|
// tunnel with auto-tunnel
|
||||||
@@ -289,174 +228,70 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
.distinctUntilChanged()
|
.distinctUntilChanged()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun areAutoTunnelPermissionsRequiredTheSame(
|
private fun startKillSwitchJob() =
|
||||||
old: AutoTunnelState,
|
|
||||||
new: AutoTunnelState,
|
|
||||||
): Boolean {
|
|
||||||
return (old.settings.wifiDetectionMethod == new.settings.wifiDetectionMethod &&
|
|
||||||
old.networkState.locationPermissionGranted ==
|
|
||||||
new.networkState.locationPermissionGranted &&
|
|
||||||
old.networkState.locationServicesEnabled == new.networkState.locationServicesEnabled &&
|
|
||||||
old.tunnels == new.tunnels &&
|
|
||||||
old.settings.trustedNetworkSSIDs == new.settings.trustedNetworkSSIDs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// watch for changes to location permission and notify user it will impact auto-tunneling
|
|
||||||
// TODO or a recheck button for location permission so we dont have to poll it
|
|
||||||
private fun startLocationPermissionsNotificationJob(): Job =
|
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
var locationServicesShown = false
|
autoTunnelStateFlow.collect {
|
||||||
var locationPermissionsShown = false
|
if (it == defaultState) return@collect
|
||||||
|
when (val event = it.asKillSwitchEvent()) {
|
||||||
data class NetworkPermissionState(
|
KillSwitchEvent.DoNothing -> Unit
|
||||||
val detectionMethod: AndroidNetworkMonitor.WifiDetectionMethod,
|
is KillSwitchEvent.Start -> {
|
||||||
val locationServicesEnabled: Boolean,
|
Timber.d("Starting kill switch")
|
||||||
val locationPermissionsEnabled: Boolean,
|
tunnelManager.setBackendState(
|
||||||
val ssidReadRequired: Boolean,
|
BackendState.KILL_SWITCH_ACTIVE,
|
||||||
)
|
event.allowedIps,
|
||||||
|
)
|
||||||
autoTunnelStateFlow
|
|
||||||
.distinctUntilChanged(::areAutoTunnelPermissionsRequiredTheSame)
|
|
||||||
.map {
|
|
||||||
NetworkPermissionState(
|
|
||||||
it.settings.wifiDetectionMethod,
|
|
||||||
it.networkState.locationServicesEnabled == true,
|
|
||||||
it.networkState.locationPermissionGranted == true,
|
|
||||||
(it.tunnels.any { tunnel -> tunnel.tunnelNetworks.isNotEmpty() } ||
|
|
||||||
it.settings.trustedNetworkSSIDs.isNotEmpty()),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.collect { state ->
|
|
||||||
when (state.detectionMethod) {
|
|
||||||
AndroidNetworkMonitor.WifiDetectionMethod.DEFAULT,
|
|
||||||
AndroidNetworkMonitor.WifiDetectionMethod.LEGACY -> {
|
|
||||||
if (
|
|
||||||
!state.locationPermissionsEnabled &&
|
|
||||||
!locationPermissionsShown &&
|
|
||||||
state.ssidReadRequired
|
|
||||||
) {
|
|
||||||
locationPermissionsShown = true
|
|
||||||
val notification =
|
|
||||||
notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.AUTO_TUNNEL,
|
|
||||||
title = getString(R.string.warning),
|
|
||||||
description =
|
|
||||||
getString(R.string.location_permissions_missing),
|
|
||||||
)
|
|
||||||
notificationManager.show(
|
|
||||||
NotificationManager.AUTO_TUNNEL_LOCATION_PERMISSION_ID,
|
|
||||||
notification,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (
|
|
||||||
!state.locationServicesEnabled &&
|
|
||||||
!locationServicesShown &&
|
|
||||||
state.ssidReadRequired
|
|
||||||
) {
|
|
||||||
locationServicesShown = true
|
|
||||||
val notification =
|
|
||||||
notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.AUTO_TUNNEL,
|
|
||||||
title = getString(R.string.warning),
|
|
||||||
description =
|
|
||||||
getString(R.string.location_services_not_detected),
|
|
||||||
)
|
|
||||||
notificationManager.show(
|
|
||||||
NotificationManager.AUTO_TUNNEL_LOCATION_SERVICES_ID,
|
|
||||||
notification,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (state.locationServicesEnabled || !state.ssidReadRequired) {
|
|
||||||
notificationManager.remove(
|
|
||||||
NotificationManager.AUTO_TUNNEL_LOCATION_SERVICES_ID
|
|
||||||
)
|
|
||||||
locationServicesShown = false
|
|
||||||
}
|
|
||||||
if (state.locationPermissionsEnabled || !state.ssidReadRequired) {
|
|
||||||
notificationManager.remove(
|
|
||||||
NotificationManager.AUTO_TUNNEL_LOCATION_PERMISSION_ID
|
|
||||||
)
|
|
||||||
locationPermissionsShown = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else -> Unit
|
|
||||||
}
|
}
|
||||||
}
|
KillSwitchEvent.Stop -> {
|
||||||
}
|
Timber.d("Stopping kill switch")
|
||||||
|
tunnelManager.setBackendState(BackendState.SERVICE_ACTIVE, emptySet())
|
||||||
private suspend fun handleAutoTunnelEvent(autoTunnelEvent: AutoTunnelEvent) {
|
|
||||||
autoTunMutex.withLock {
|
|
||||||
when (
|
|
||||||
val event =
|
|
||||||
autoTunnelEvent.also {
|
|
||||||
Timber.i("Auto tunnel event: ${it.javaClass.simpleName}")
|
|
||||||
}
|
}
|
||||||
) {
|
|
||||||
is AutoTunnelEvent.Start ->
|
|
||||||
(event.tunnelConf ?: appDataRepository.get().getPrimaryOrFirstTunnel())?.let {
|
|
||||||
tunnelManager.startTunnel(it)
|
|
||||||
}
|
|
||||||
is AutoTunnelEvent.Stop -> tunnelManager.stopTunnel()
|
|
||||||
AutoTunnelEvent.DoNothing -> Timber.i("Auto-tunneling: nothing to do")
|
|
||||||
is AutoTunnelEvent.Bounce ->
|
|
||||||
handleBounceWithBackoff(event.configsPeerKeyResolvedMap)
|
|
||||||
is AutoTunnelEvent.StartKillSwitch -> {
|
|
||||||
Timber.d("Starting kill switch")
|
|
||||||
tunnelManager.setBackendStatus(BackendStatus.KillSwitch(event.allowedIps))
|
|
||||||
}
|
|
||||||
AutoTunnelEvent.StopKillSwitch -> {
|
|
||||||
Timber.d("Stopping kill switch")
|
|
||||||
tunnelManager.setBackendStatus(BackendStatus.Active)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleBounceWithBackoff(
|
@OptIn(FlowPreview::class)
|
||||||
configsPeerKeyResolvedMap: List<Pair<TunnelConf, Map<String, String?>>>
|
private fun startAutoTunnelJob() =
|
||||||
) { // Simplified param: no failureCount
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
val settings = appDataRepository.get().settings.get()
|
Timber.i("Starting auto-tunnel network event watcher")
|
||||||
val pingIntervalMillis = settings.tunnelPingIntervalSeconds.toMillis()
|
val settings = appDataRepository.get().settings.get()
|
||||||
configsPeerKeyResolvedMap.forEach { (config, peerMap) ->
|
|
||||||
val bounceCount = bounceCounts.value.getOrDefault(config.id, 0)
|
var reevaluationJob: Job? = null
|
||||||
val exponent = bounceCount.toDouble()
|
|
||||||
val backoffDelay =
|
autoTunnelStateFlow.debounce(settings.debounceDelayMillis()).collect { watcherState ->
|
||||||
(pingIntervalMillis * 2.0.pow(exponent)).toLong().coerceAtMost(MAX_BACKOFF_MS)
|
if (watcherState == defaultState) return@collect
|
||||||
val currentTime = System.currentTimeMillis()
|
reevaluationJob?.cancel()
|
||||||
val lastTime = lastBounceTimes.getOrDefault(config.id, 0L)
|
handleAutoTunnelEvent(watcherState)
|
||||||
if (currentTime - lastTime >= backoffDelay) {
|
|
||||||
Timber.d(
|
// schedule one-time re-evaluation
|
||||||
"Bouncing tunnel ${config.name} after detecting failure, with bounce count $bounceCount and calculated backoff delay $backoffDelay ms"
|
reevaluationJob = launch {
|
||||||
)
|
delay(REEVALUATE_CHECK_DELAY)
|
||||||
tunnelManager.bounceTunnel(config, Ping(peerMap))
|
if (watcherState != defaultState) {
|
||||||
lastBounceTimes[config.id] = currentTime
|
Timber.d("Re-evaluating auto-tunnel state..")
|
||||||
bounceCounts.update { current ->
|
handleAutoTunnelEvent(watcherState)
|
||||||
current.toMutableMap().apply { this[config.id] = (this[config.id] ?: 0) + 1 }
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
Timber.d(
|
|
||||||
"Backoff in progress for tunnel ${config.name}, skipping bounce (required delay: $backoffDelay ms)"
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(FlowPreview::class, ExperimentalCoroutinesApi::class)
|
private suspend fun handleAutoTunnelEvent(watcherState: AutoTunnelState) {
|
||||||
private val debouncedConnectivityStateFlow: Flow<ConnectivityState> by lazy {
|
Timber.i("Auto-tunnel settings: ${watcherState.settings.toAutoTunnelStateString()}")
|
||||||
appDataRepository
|
Timber.i("Auto-tunnel network state: ${watcherState.networkState}")
|
||||||
.get()
|
when (
|
||||||
.settings
|
val event =
|
||||||
.flow
|
watcherState.asAutoTunnelEvent().also {
|
||||||
.map { it.debounceDelaySeconds.toMillis() }
|
Timber.i("Auto-tunnel event: ${it.javaClass.simpleName}")
|
||||||
.distinctUntilChanged()
|
}
|
||||||
.flatMapLatest { debounceMillis ->
|
) {
|
||||||
networkMonitor.connectivityStateFlow.debounce(debounceMillis)
|
is AutoTunnelEvent.Start ->
|
||||||
}
|
(event.tunnelConf ?: appDataRepository.get().getPrimaryOrFirstTunnel())?.let {
|
||||||
|
tunnelManager.startTunnel(it)
|
||||||
|
}
|
||||||
|
is AutoTunnelEvent.Stop -> tunnelManager.stopTunnel()
|
||||||
|
AutoTunnelEvent.DoNothing -> Timber.i("Auto-tunneling: nothing to do")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
// try to keep this window short as it will interrupt manual overrides
|
const val REEVALUATE_CHECK_DELAY = 5_000L
|
||||||
const val REEVALUATE_CHECK_DELAY = 2_000L
|
|
||||||
const val MAX_BACKOFF_MS = 300_000L // 5 minutes
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
-20
@@ -1,20 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service.autotunnel
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.NetworkState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
|
|
||||||
sealed class StateChange {
|
|
||||||
data class NetworkChange(val networkState: NetworkState) : StateChange()
|
|
||||||
|
|
||||||
data class SettingsChange(val settings: AppSettings, val tunnels: Tunnels) : StateChange()
|
|
||||||
|
|
||||||
data class ActiveTunnelsChange(val activeTunnels: Map<TunnelConf, TunnelState>) : StateChange()
|
|
||||||
|
|
||||||
data class MonitoringChange(val pingStates: Map<TunnelConf, Map<Key, PingState>?>) :
|
|
||||||
StateChange()
|
|
||||||
}
|
|
||||||
@@ -2,42 +2,37 @@ package com.zaneschepke.wireguardautotunnel.core.tunnel
|
|||||||
|
|
||||||
import com.wireguard.android.backend.Tunnel
|
import com.wireguard.android.backend.Tunnel
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendError
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.ConfigProxy
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import kotlin.coroutines.cancellation.CancellationException
|
import kotlin.concurrent.thread
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.flow.*
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
abstract class BaseTunnel(
|
abstract class BaseTunnel(
|
||||||
private val applicationScope: CoroutineScope,
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
private val appDataRepository: AppDataRepository,
|
private val appDataRepository: AppDataRepository,
|
||||||
private val serviceManager: ServiceManager,
|
private val serviceManager: ServiceManager,
|
||||||
) : TunnelProvider {
|
) : TunnelProvider {
|
||||||
|
|
||||||
private val _errorEvents = MutableSharedFlow<Pair<TunnelConf, BackendError>>()
|
private val _errorEvents =
|
||||||
|
MutableSharedFlow<Pair<TunnelConf, BackendError>>(replay = 0, extraBufferCapacity = 1)
|
||||||
override val errorEvents = _errorEvents.asSharedFlow()
|
override val errorEvents = _errorEvents.asSharedFlow()
|
||||||
|
|
||||||
private val _messageEvents = MutableSharedFlow<Pair<TunnelConf, BackendMessage>>()
|
|
||||||
override val messageEvents = _messageEvents.asSharedFlow()
|
|
||||||
|
|
||||||
private val activeTuns = MutableStateFlow<Map<TunnelConf, TunnelState>>(emptyMap())
|
private val activeTuns = MutableStateFlow<Map<TunnelConf, TunnelState>>(emptyMap())
|
||||||
private val tunJobs = ConcurrentHashMap<Int, Job>()
|
private val tunThreads = ConcurrentHashMap<Int, Thread>()
|
||||||
override val activeTunnels = activeTuns.asStateFlow()
|
override val activeTunnels = activeTuns.asStateFlow()
|
||||||
|
|
||||||
private val tunMutex = Mutex()
|
private val tunMutex = Mutex()
|
||||||
@@ -54,43 +49,32 @@ abstract class BaseTunnel(
|
|||||||
return serviceManager.hasVpnPermission()
|
return serviceManager.hasVpnPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun updateTunnelStatus(
|
protected suspend fun updateTunnelStatus(
|
||||||
tunnelConf: TunnelConf,
|
tunnelConf: TunnelConf,
|
||||||
status: TunnelStatus?,
|
status: TunnelStatus? = null,
|
||||||
stats: TunnelStatistics?,
|
stats: TunnelStatistics? = null,
|
||||||
pingStates: Map<Key, PingState>?,
|
|
||||||
handshakeSuccessLogs: Boolean?,
|
|
||||||
) {
|
) {
|
||||||
tunStatusMutex.withLock {
|
tunStatusMutex.withLock {
|
||||||
activeTuns.update { currentTuns ->
|
activeTuns.update { currentTuns ->
|
||||||
val originalConf = currentTuns.getKeyById(tunnelConf.id) ?: tunnelConf
|
val originalConf = currentTuns.getKeyById(tunnelConf.id) ?: tunnelConf
|
||||||
val existingState = currentTuns.getValueById(tunnelConf.id) ?: TunnelState()
|
val existingState = currentTuns.getValueById(tunnelConf.id) ?: TunnelState()
|
||||||
val newStatus = status ?: existingState.status
|
val newState = status ?: existingState.status
|
||||||
if (newStatus == TunnelStatus.Down) {
|
if (newState == TunnelStatus.Down) {
|
||||||
Timber.d("Removing tunnel ${tunnelConf.id} from activeTunnels as state is DOWN")
|
Timber.d("Removing tunnel ${tunnelConf.id} from activeTunnels as state is DOWN")
|
||||||
cleanUpTunJob(tunnelConf)
|
cleanUpTunThread(tunnelConf)
|
||||||
currentTuns - originalConf
|
currentTuns - originalConf
|
||||||
} else if (
|
} else if (existingState.status == newState && stats == null) {
|
||||||
existingState.status == newStatus &&
|
Timber.d("Skipping redundant state update for ${tunnelConf.id}: $newState")
|
||||||
stats == null &&
|
|
||||||
pingStates == null &&
|
|
||||||
handshakeSuccessLogs == null
|
|
||||||
) {
|
|
||||||
Timber.d("Skipping redundant state update for ${tunnelConf.id}: $newStatus")
|
|
||||||
currentTuns
|
currentTuns
|
||||||
} else {
|
} else {
|
||||||
val updated =
|
val updated =
|
||||||
existingState.copy(
|
existingState.copy(
|
||||||
status = newStatus,
|
status = newState,
|
||||||
statistics = stats ?: existingState.statistics,
|
statistics = stats ?: existingState.statistics,
|
||||||
pingStates = pingStates ?: existingState.pingStates,
|
|
||||||
handshakeSuccessLogs =
|
|
||||||
handshakeSuccessLogs ?: existingState.handshakeSuccessLogs,
|
|
||||||
)
|
)
|
||||||
currentTuns + (originalConf to updated)
|
currentTuns + (originalConf to updated)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
handleServiceStateOnChange()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,100 +104,44 @@ abstract class BaseTunnel(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override suspend fun updateTunnelStatistics(tunnel: TunnelConf) {
|
||||||
|
val stats = getStatistics(tunnel)
|
||||||
|
updateTunnelStatus(tunnel, null, stats)
|
||||||
|
}
|
||||||
|
|
||||||
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
if (activeTuns.exists(tunnelConf.id) || tunJobs.containsKey(tunnelConf.id))
|
if (activeTuns.exists(tunnelConf.id) || tunThreads.containsKey(tunnelConf.id)) return
|
||||||
return Timber.w("Tunnel is already running ${tunnelConf.name}")
|
|
||||||
// For userspace, we need to make sure all previous tunnels are down
|
|
||||||
if (this@BaseTunnel is UserspaceTunnel) stopActiveTunnels()
|
if (this@BaseTunnel is UserspaceTunnel) stopActiveTunnels()
|
||||||
tunMutex.withLock {
|
tunMutex.withLock {
|
||||||
val job =
|
tunThreads[tunnelConf.id] = thread {
|
||||||
applicationScope.launch {
|
try {
|
||||||
try {
|
runBlocking {
|
||||||
Timber.d("Starting tunnel ${tunnelConf.id}...")
|
Timber.d("Starting tunnel ${tunnelConf.id}...")
|
||||||
startTunnelInner(tunnelConf)
|
startTunnelInner(tunnelConf)
|
||||||
Timber.d("Started complete for tunnel ${tunnelConf.name}...")
|
Timber.d("Started complete for tunnel ${tunnelConf.name}...")
|
||||||
// catch cancellation that could occur before and during startTunnelInner
|
|
||||||
// and trigger at that suspend point
|
|
||||||
} catch (e: CancellationException) {
|
|
||||||
Timber.w(
|
|
||||||
"Tunnel start has been cancelled as ${tunnelConf.name} failed to start"
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
} catch (e: InterruptedException) {
|
||||||
|
Timber.w(
|
||||||
|
"Tunnel start has been interrupted as ${tunnelConf.name} failed to start"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
tunJobs[tunnelConf.id] = job
|
|
||||||
job.invokeOnCompletion {
|
|
||||||
tunJobs.remove(tunnelConf.id)
|
|
||||||
Timber.d("Start job completed for tunnel ${tunnelConf.id}")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun startTunnelInner(tunnelConf: TunnelConf) {
|
private suspend fun startTunnelInner(tunnelConf: TunnelConf) {
|
||||||
configureTunnelCallbacks(tunnelConf)
|
configureTunnelCallbacks(tunnelConf)
|
||||||
Timber.d("Starting backend for tunnel ${tunnelConf.id}...")
|
Timber.d("Starting backend for tunnel ${tunnelConf.id}...")
|
||||||
|
try {
|
||||||
var currentConf = tunnelConf
|
startBackend(tunnelConf)
|
||||||
var restoreAttempted = false
|
updateTunnelStatus(tunnelConf, TunnelStatus.Up)
|
||||||
var originalError: BackendError? = null
|
Timber.d("Started for tun ${tunnelConf.id}...")
|
||||||
|
saveTunnelActiveState(tunnelConf, true)
|
||||||
while (true) {
|
serviceManager.startTunnelForegroundService()
|
||||||
try {
|
} catch (e: BackendError) {
|
||||||
startBackend(currentConf)
|
Timber.e(e, "Failed to start backend for ${tunnelConf.name}")
|
||||||
updateTunnelStatus(currentConf, TunnelStatus.Up)
|
_errorEvents.emit(tunnelConf to e)
|
||||||
Timber.d("Started for tun ${currentConf.id}...")
|
updateTunnelStatus(tunnelConf, TunnelStatus.Down)
|
||||||
saveTunnelActiveState(currentConf, true)
|
|
||||||
serviceManager.startTunnelForegroundService()
|
|
||||||
if (restoreAttempted)
|
|
||||||
_messageEvents.emit(tunnelConf to BackendMessage.BounceRecovery)
|
|
||||||
if (bouncingTunnelIds[currentConf.id] is TunnelStatus.StopReason.Ping) {
|
|
||||||
_messageEvents.emit(tunnelConf to BackendMessage.BounceSuccess)
|
|
||||||
}
|
|
||||||
return // Success, return
|
|
||||||
} catch (e: BackendError) {
|
|
||||||
originalError = originalError ?: e
|
|
||||||
val bounceReason = bouncingTunnelIds[currentConf.id]
|
|
||||||
if (!restoreAttempted && bounceReason is TunnelStatus.StopReason.Ping) {
|
|
||||||
Timber.i(
|
|
||||||
"Attempting to recover bounce failure with previously resolved endpoints for ${currentConf.name}"
|
|
||||||
)
|
|
||||||
try {
|
|
||||||
val previouslyResolved = bounceReason.previouslyResolvedEndpoints
|
|
||||||
val configProxy = ConfigProxy.from(currentConf.toAmConfig())
|
|
||||||
val updatedConfigProxy =
|
|
||||||
configProxy.copy(
|
|
||||||
peers =
|
|
||||||
configProxy.peers.map {
|
|
||||||
it.copy(
|
|
||||||
endpoint =
|
|
||||||
previouslyResolved[it.publicKey] ?: it.endpoint
|
|
||||||
)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
val (wg, amnezia) = updatedConfigProxy.buildConfigs()
|
|
||||||
currentConf =
|
|
||||||
currentConf.copyWithCallback(
|
|
||||||
amQuick = amnezia.toAwgQuickString(true),
|
|
||||||
wgQuick = wg.toWgQuickString(true),
|
|
||||||
)
|
|
||||||
bouncingTunnelIds.remove(currentConf.id)
|
|
||||||
restoreAttempted = true
|
|
||||||
continue // Retry
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(
|
|
||||||
e,
|
|
||||||
"Failed to update config with resolved endpoints for ${currentConf.name}",
|
|
||||||
)
|
|
||||||
// Fall through to failure (will emit BounceFailed since
|
|
||||||
// retryAttempted=true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Timber.e(e, "Failed to start backend for ${currentConf.name}")
|
|
||||||
val emitError =
|
|
||||||
if (restoreAttempted) BackendError.BounceFailed(originalError) else e
|
|
||||||
_errorEvents.emit(currentConf to emitError)
|
|
||||||
updateTunnelStatus(currentConf, TunnelStatus.Down)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,23 +174,30 @@ abstract class BaseTunnel(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun handleServiceStateOnChange() {
|
private fun handleServiceStateOnChange() {
|
||||||
if (activeTuns.value.isEmpty()) serviceManager.stopTunnelForegroundService()
|
if (activeTuns.value.isEmpty() && bouncingTunnelIds.isEmpty())
|
||||||
|
serviceManager.stopTunnelForegroundService()
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun handleStuckStartingTunnelShutdown(tunnel: TunnelConf) {
|
private suspend fun handleStuckStartingTunnelShutdown(tunnel: TunnelConf) {
|
||||||
Timber.d("Stuck in starting state so cancelling job for tunnel ${tunnel.name}")
|
Timber.d("Stuck in starting state so shutting down tunnel thread for tunnel ${tunnel.name}")
|
||||||
try {
|
try {
|
||||||
tunJobs[tunnel.id]?.cancel() ?: Timber.d("No job found for ${tunnel.name}")
|
tunThreads[tunnel.id]?.let {
|
||||||
|
if (it.state != Thread.State.TERMINATED) {
|
||||||
|
it.interrupt()
|
||||||
|
} else {
|
||||||
|
Timber.d("Thread already terminated")
|
||||||
|
}
|
||||||
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e, "Failed to cancel job for ${tunnel.name}")
|
Timber.e(e, "Failed to stop tunnel thread for ${tunnel.name}")
|
||||||
} finally {
|
} finally {
|
||||||
updateTunnelStatus(tunnel, TunnelStatus.Down)
|
updateTunnelStatus(tunnel, TunnelStatus.Down)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun cleanUpTunJob(tunnel: TunnelConf) {
|
private fun cleanUpTunThread(tunnel: TunnelConf) {
|
||||||
Timber.d("Removing job for ${tunnel.name}")
|
Timber.d("Removing thread for ${tunnel.name}")
|
||||||
tunJobs -= tunnel.id
|
tunThreads -= tunnel.id
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun removeActiveTunnel(tunnelConf: TunnelConf) {
|
private fun removeActiveTunnel(tunnelConf: TunnelConf) {
|
||||||
@@ -275,10 +210,16 @@ abstract class BaseTunnel(
|
|||||||
"Bounce tunnel ${tunnelConf.name} for reason: $reason, current bouncing: ${bouncingTunnelIds.size}"
|
"Bounce tunnel ${tunnelConf.name} for reason: $reason, current bouncing: ${bouncingTunnelIds.size}"
|
||||||
)
|
)
|
||||||
bouncingTunnelIds[tunnelConf.id] = reason
|
bouncingTunnelIds[tunnelConf.id] = reason
|
||||||
runCatching {
|
try {
|
||||||
stopTunnel(tunnelConf, reason)
|
stopTunnel(tunnelConf, reason)
|
||||||
delay(BOUNCE_DELAY)
|
delay(BOUNCE_DELAY)
|
||||||
startTunnel(tunnelConf)
|
startTunnel(tunnelConf)
|
||||||
|
} finally {
|
||||||
|
bouncingTunnelIds.remove(tunnelConf.id)
|
||||||
|
handleServiceStateOnChange()
|
||||||
|
Timber.d(
|
||||||
|
"Cleared bounce state for ${tunnelConf.name}, remaining: ${bouncingTunnelIds.size}"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,9 +5,8 @@ import com.wireguard.android.backend.BackendException
|
|||||||
import com.wireguard.android.backend.Tunnel
|
import com.wireguard.android.backend.Tunnel
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
@@ -36,17 +35,11 @@ constructor(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun startBackend(tunnel: TunnelConf) {
|
override suspend fun startBackend(tunnel: TunnelConf) {
|
||||||
// name too long for kernel mode
|
|
||||||
if (!tunnel.isNameKernelCompatible) throw BackendError.TunnelNameTooLong
|
|
||||||
try {
|
try {
|
||||||
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
backend.setState(tunnel, Tunnel.State.UP, tunnel.toWgConfig())
|
backend.setState(tunnel, Tunnel.State.UP, tunnel.toWgConfig())
|
||||||
} catch (e: BackendException) {
|
} catch (e: BackendException) {
|
||||||
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
|
||||||
throw e.toBackendError()
|
throw e.toBackendError()
|
||||||
} catch (e: IllegalArgumentException) {
|
|
||||||
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
|
||||||
throw BackendError.Config
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,12 +52,12 @@ constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun setBackendStatus(backendStatus: BackendStatus) {
|
override fun setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
Timber.w("Not yet implemented for kernel")
|
Timber.w("Not yet implemented for kernel")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getBackendStatus(): BackendStatus {
|
override fun getBackendState(): BackendState {
|
||||||
return BackendStatus.Inactive
|
return BackendState.INACTIVE
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> {
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
|||||||
+53
-64
@@ -1,32 +1,37 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.Kernel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.Userspace
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendError
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||||
import kotlinx.coroutines.flow.*
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.SharedFlow
|
||||||
|
import kotlinx.coroutines.flow.SharingStarted
|
||||||
|
import kotlinx.coroutines.flow.filterNotNull
|
||||||
|
import kotlinx.coroutines.flow.flatMapLatest
|
||||||
|
import kotlinx.coroutines.flow.stateIn
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.plus
|
import kotlinx.coroutines.plus
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
|
||||||
class TunnelManager
|
class TunnelManager
|
||||||
@Inject
|
@Inject
|
||||||
constructor(
|
constructor(
|
||||||
private val kernelTunnel: TunnelProvider,
|
@Kernel private val kernelTunnel: TunnelProvider,
|
||||||
private val userspaceTunnel: TunnelProvider,
|
@Userspace private val userspaceTunnel: TunnelProvider,
|
||||||
private val appDataRepository: AppDataRepository,
|
private val appDataRepository: AppDataRepository,
|
||||||
applicationScope: CoroutineScope,
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
ioDispatcher: CoroutineDispatcher,
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
) : TunnelProvider {
|
) : TunnelProvider {
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
@@ -34,8 +39,7 @@ constructor(
|
|||||||
appDataRepository.settings.flow
|
appDataRepository.settings.flow
|
||||||
.filterNotNull()
|
.filterNotNull()
|
||||||
.flatMapLatest { settings ->
|
.flatMapLatest { settings ->
|
||||||
val backend = if (settings.isKernelEnabled) kernelTunnel else userspaceTunnel
|
MutableStateFlow(if (settings.isKernelEnabled) kernelTunnel else userspaceTunnel)
|
||||||
MutableStateFlow(backend)
|
|
||||||
}
|
}
|
||||||
.stateIn(
|
.stateIn(
|
||||||
scope = applicationScope.plus(ioDispatcher),
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
@@ -43,30 +47,26 @@ constructor(
|
|||||||
initialValue = userspaceTunnel,
|
initialValue = userspaceTunnel,
|
||||||
)
|
)
|
||||||
|
|
||||||
override val activeTunnels: StateFlow<Map<TunnelConf, TunnelState>> =
|
|
||||||
tunnelProviderFlow.value.activeTunnels
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
override val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>> =
|
override val activeTunnels =
|
||||||
tunnelProviderFlow
|
appDataRepository.settings.flow
|
||||||
.flatMapLatest { it.errorEvents }
|
|
||||||
.shareIn(
|
|
||||||
scope = applicationScope.plus(ioDispatcher),
|
|
||||||
started = SharingStarted.Eagerly,
|
|
||||||
replay = 0,
|
|
||||||
)
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
|
||||||
override val messageEvents: SharedFlow<Pair<TunnelConf, BackendMessage>> =
|
|
||||||
tunnelProviderFlow
|
|
||||||
.flatMapLatest { it.messageEvents }
|
|
||||||
.filterNotNull()
|
.filterNotNull()
|
||||||
.shareIn(
|
.flatMapLatest { settings ->
|
||||||
|
if (settings.isKernelEnabled) {
|
||||||
|
kernelTunnel.activeTunnels
|
||||||
|
} else {
|
||||||
|
userspaceTunnel.activeTunnels
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.stateIn(
|
||||||
scope = applicationScope.plus(ioDispatcher),
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
started = SharingStarted.Eagerly,
|
started = SharingStarted.Eagerly,
|
||||||
replay = 0,
|
initialValue = emptyMap(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
override val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>>
|
||||||
|
get() = tunnelProviderFlow.value.errorEvents
|
||||||
|
|
||||||
override val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason> =
|
override val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason> =
|
||||||
tunnelProviderFlow.value.bouncingTunnelIds
|
tunnelProviderFlow.value.bouncingTunnelIds
|
||||||
|
|
||||||
@@ -74,8 +74,8 @@ constructor(
|
|||||||
return userspaceTunnel.hasVpnPermission()
|
return userspaceTunnel.hasVpnPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
override suspend fun updateTunnelStatistics(tunnel: TunnelConf) {
|
||||||
return tunnelProviderFlow.value.getStatistics(tunnelConf)
|
tunnelProviderFlow.value.updateTunnelStatistics(tunnel)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
@@ -90,47 +90,36 @@ constructor(
|
|||||||
tunnelProviderFlow.value.bounceTunnel(tunnelConf, reason)
|
tunnelProviderFlow.value.bounceTunnel(tunnelConf, reason)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun setBackendStatus(backendStatus: BackendStatus) {
|
override fun setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
tunnelProviderFlow.value.setBackendStatus(backendStatus)
|
tunnelProviderFlow.value.setBackendState(backendState, allowedIps)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getBackendStatus(): BackendStatus {
|
override fun getBackendState(): BackendState {
|
||||||
return tunnelProviderFlow.value.getBackendStatus()
|
return tunnelProviderFlow.value.getBackendState()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> {
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
return tunnelProviderFlow.value.runningTunnelNames()
|
return tunnelProviderFlow.value.runningTunnelNames()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun updateTunnelStatus(
|
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
||||||
tunnelConf: TunnelConf,
|
return tunnelProviderFlow.value.getStatistics(tunnelConf)
|
||||||
status: TunnelStatus?,
|
|
||||||
stats: TunnelStatistics?,
|
|
||||||
pingStates: Map<Key, PingState>?,
|
|
||||||
handshakeSuccessLogs: Boolean?,
|
|
||||||
) {
|
|
||||||
tunnelProviderFlow.value.updateTunnelStatus(
|
|
||||||
tunnelConf,
|
|
||||||
status,
|
|
||||||
stats,
|
|
||||||
pingStates,
|
|
||||||
handshakeSuccessLogs,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun restorePreviousState() {
|
fun restorePreviousState() =
|
||||||
val settings = appDataRepository.settings.get()
|
applicationScope.launch(ioDispatcher) {
|
||||||
if (settings.isRestoreOnBootEnabled) {
|
val settings = appDataRepository.settings.get()
|
||||||
val previouslyActiveTuns = appDataRepository.tunnels.getActive()
|
if (settings.isRestoreOnBootEnabled) {
|
||||||
val tunsToStart =
|
val previouslyActiveTuns = appDataRepository.tunnels.getActive()
|
||||||
previouslyActiveTuns.filterNot { tun ->
|
val tunsToStart =
|
||||||
activeTunnels.value.any { tun.id == it.key.id }
|
previouslyActiveTuns.filterNot { tun ->
|
||||||
|
activeTunnels.value.any { tun.id == it.key.id }
|
||||||
|
}
|
||||||
|
if (settings.isKernelEnabled) {
|
||||||
|
return@launch tunsToStart.forEach { startTunnel(it) }
|
||||||
|
} else {
|
||||||
|
tunsToStart.firstOrNull()?.let { startTunnel(it) }
|
||||||
}
|
}
|
||||||
if (settings.isKernelEnabled) {
|
|
||||||
return tunsToStart.forEach { startTunnel(it) }
|
|
||||||
} else {
|
|
||||||
tunsToStart.firstOrNull()?.let { startTunnel(it) }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,266 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
|
||||||
|
|
||||||
import com.zaneschepke.logcatter.LogReader
|
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.FailureReason
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toMillis
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.network.NetworkUtils
|
|
||||||
import dagger.hilt.android.scopes.ServiceScoped
|
|
||||||
import io.ktor.util.collections.*
|
|
||||||
import javax.inject.Inject
|
|
||||||
import kotlinx.coroutines.*
|
|
||||||
import kotlinx.coroutines.flow.*
|
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
@ServiceScoped
|
|
||||||
class TunnelMonitor
|
|
||||||
@Inject
|
|
||||||
constructor(
|
|
||||||
private val appDataRepository: AppDataRepository,
|
|
||||||
private val tunnelManager: TunnelManager,
|
|
||||||
private val networkMonitor: NetworkMonitor,
|
|
||||||
private val networkUtils: NetworkUtils,
|
|
||||||
private val logReader: LogReader,
|
|
||||||
) {
|
|
||||||
|
|
||||||
@OptIn(FlowPreview::class)
|
|
||||||
suspend fun startMonitoring(tunnelConf: TunnelConf, withLogs: Boolean): Job = coroutineScope {
|
|
||||||
launch {
|
|
||||||
launch { startTunnelConfChangesJob(tunnelConf) }
|
|
||||||
launch { startPingMonitor(tunnelConf) }
|
|
||||||
launch { startWgStatsPoll(tunnelConf) }
|
|
||||||
if (withLogs) launch { startLogsMonitor(tunnelConf) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startTunnelConfChangesJob(tunnelConf: TunnelConf) {
|
|
||||||
appDataRepository.tunnels.flow
|
|
||||||
.map { storedTunnels -> storedTunnels.firstOrNull { it.id == tunnelConf.id } }
|
|
||||||
.filterNotNull()
|
|
||||||
.distinctUntilChanged { old, new -> old == new }
|
|
||||||
.collect { storedTunnel ->
|
|
||||||
if (tunnelConf != storedTunnel) {
|
|
||||||
Timber.d("Config changed for ${storedTunnel.tunName}, bouncing")
|
|
||||||
withContext(NonCancellable) {
|
|
||||||
tunnelManager.bounceTunnel(
|
|
||||||
storedTunnel,
|
|
||||||
TunnelStatus.StopReason.ConfigChanged,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startLogsMonitor(tunnelConf: TunnelConf) {
|
|
||||||
logReader.liveLogs.collect { log ->
|
|
||||||
val healthLogs =
|
|
||||||
when {
|
|
||||||
log.message.contains(HANDSHAKE_RESPONSE_TEXT, true) ||
|
|
||||||
log.message.contains(KEEPALIVE_RESPONSE_TEXT, true) -> true
|
|
||||||
log.message.contains(HANDSHAKE_INIT_FAILED_TEXT, true) ||
|
|
||||||
log.message.contains(HANDSHAKE_NOT_COMPLETED_TEXT) ||
|
|
||||||
log.message.contains(DATA_PACKET_FAILED_TEXT) -> false
|
|
||||||
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
healthLogs?.let { healthy ->
|
|
||||||
tunnelManager.updateTunnelStatus(tunnelConf, null, null, null, healthy)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startPingMonitor(tunnelConf: TunnelConf) = coroutineScope {
|
|
||||||
val pingStatsFlow = MutableStateFlow<Map<Key, PingState>>(emptyMap())
|
|
||||||
|
|
||||||
val tunStateFlow =
|
|
||||||
tunnelManager.activeTunnels.mapNotNull { it.getValueById(tunnelConf.id) }.stateIn(this)
|
|
||||||
|
|
||||||
val connectivityStateFlow = networkMonitor.connectivityStateFlow.stateIn(this)
|
|
||||||
|
|
||||||
val isNetworkConnected = connectivityStateFlow.map { it.hasConnectivity() }.stateIn(this)
|
|
||||||
|
|
||||||
data class NetworkChangeKey(
|
|
||||||
val ethernetConnected: Boolean,
|
|
||||||
val wifiConnected: Boolean,
|
|
||||||
val cellularConnected: Boolean,
|
|
||||||
val wifiSsid: String?,
|
|
||||||
)
|
|
||||||
|
|
||||||
connectivityStateFlow
|
|
||||||
.map {
|
|
||||||
NetworkChangeKey(
|
|
||||||
ethernetConnected = it.ethernetConnected,
|
|
||||||
wifiConnected = it.wifiState.connected,
|
|
||||||
cellularConnected = it.cellularConnected,
|
|
||||||
wifiSsid = if (it.wifiState.connected) it.wifiState.ssid else null,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.distinctUntilChanged()
|
|
||||||
.stateIn(this)
|
|
||||||
|
|
||||||
appDataRepository.settings.flow
|
|
||||||
.distinctUntilChanged { old, new ->
|
|
||||||
old.isPingEnabled == new.isPingEnabled &&
|
|
||||||
old.tunnelPingIntervalSeconds == new.tunnelPingIntervalSeconds &&
|
|
||||||
old.tunnelPingAttempts == new.tunnelPingAttempts &&
|
|
||||||
old.tunnelPingTimeoutSeconds == new.tunnelPingTimeoutSeconds
|
|
||||||
}
|
|
||||||
.collectLatest { settings ->
|
|
||||||
if (!settings.isPingEnabled) return@collectLatest
|
|
||||||
|
|
||||||
Timber.d("Starting pinger for ${tunnelConf.tunName} with settings")
|
|
||||||
|
|
||||||
val config = tunnelConf.toAmConfig()
|
|
||||||
|
|
||||||
val pingablePeers = config.peers.filter { it.allowedIps.isNotEmpty() }
|
|
||||||
if (pingablePeers.isEmpty()) return@collectLatest
|
|
||||||
|
|
||||||
suspend fun performPing() {
|
|
||||||
val updates = ConcurrentMap<Key, PingState>()
|
|
||||||
|
|
||||||
pingablePeers.forEach { peer ->
|
|
||||||
val previousState = pingStatsFlow.value[peer.publicKey] ?: PingState()
|
|
||||||
|
|
||||||
val allowedIpStr = peer.allowedIps.firstOrNull()?.toString()
|
|
||||||
if (allowedIpStr == null) {
|
|
||||||
updates[peer.publicKey] =
|
|
||||||
previousState.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.NoResolvedEndpoint,
|
|
||||||
lastPingAttemptMillis = System.currentTimeMillis(),
|
|
||||||
)
|
|
||||||
return@forEach
|
|
||||||
}
|
|
||||||
|
|
||||||
val host =
|
|
||||||
{
|
|
||||||
val parts = allowedIpStr.split("/")
|
|
||||||
val internalIp = if (parts.size == 2) parts[0] else allowedIpStr
|
|
||||||
|
|
||||||
val prefix =
|
|
||||||
if (parts.size == 2) parts[1].toIntOrNull() ?: 32 else 32
|
|
||||||
if (prefix <= 1) {
|
|
||||||
tunnelConf.pingTarget ?: CLOUDFLARE_IPV4_IP
|
|
||||||
} else {
|
|
||||||
internalIp.removeSurrounding("[", "]")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.invoke()
|
|
||||||
|
|
||||||
val attemptTime = System.currentTimeMillis()
|
|
||||||
runCatching {
|
|
||||||
val pingStats =
|
|
||||||
settings.tunnelPingTimeoutSeconds?.let {
|
|
||||||
networkUtils.pingWithStats(
|
|
||||||
host,
|
|
||||||
settings.tunnelPingAttempts,
|
|
||||||
it.toMillis(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
?: networkUtils.pingWithStats(
|
|
||||||
host,
|
|
||||||
settings.tunnelPingAttempts,
|
|
||||||
)
|
|
||||||
|
|
||||||
updates[peer.publicKey] =
|
|
||||||
previousState.copy(
|
|
||||||
transmitted = pingStats.transmitted,
|
|
||||||
received = pingStats.received,
|
|
||||||
packetLoss = pingStats.packetLoss,
|
|
||||||
rttMin = pingStats.rttMin,
|
|
||||||
rttMax = pingStats.rttMax,
|
|
||||||
rttAvg = pingStats.rttAvg,
|
|
||||||
rttStddev = pingStats.rttStddev,
|
|
||||||
isReachable = pingStats.isReachable,
|
|
||||||
failureReason =
|
|
||||||
if (pingStats.isReachable) null
|
|
||||||
else FailureReason.PingFailed,
|
|
||||||
lastSuccessfulPingMillis =
|
|
||||||
pingStats.lastSuccessfulPingMillis
|
|
||||||
?: previousState.lastSuccessfulPingMillis,
|
|
||||||
pingTarget = host,
|
|
||||||
lastPingAttemptMillis = attemptTime,
|
|
||||||
)
|
|
||||||
Timber.d(
|
|
||||||
"Ping completed for peer ${peer.publicKey.toBase64().substring(0, 5)}.. to host $host with stats: $pingStats"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.onFailure {
|
|
||||||
Timber.e(
|
|
||||||
it,
|
|
||||||
"Ping failed for peer ${peer.publicKey} in ${tunnelConf.tunName} to host $host",
|
|
||||||
)
|
|
||||||
updates[peer.publicKey] =
|
|
||||||
previousState.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.PingFailed,
|
|
||||||
pingTarget = host,
|
|
||||||
lastPingAttemptMillis = attemptTime,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (updates.isNotEmpty()) {
|
|
||||||
pingStatsFlow.update { updates }
|
|
||||||
tunnelManager.updateTunnelStatus(tunnelConf, null, null, updates)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wait for the tunnel to be fully active
|
|
||||||
tunStateFlow.filter { state -> state.status == TunnelStatus.Up }.first()
|
|
||||||
|
|
||||||
// small delay to make sure tunnel is fully up before we actively monitor
|
|
||||||
delay(3_000L)
|
|
||||||
|
|
||||||
while (isActive) {
|
|
||||||
if (isNetworkConnected.value) {
|
|
||||||
performPing()
|
|
||||||
} else {
|
|
||||||
pingStatsFlow.update { current ->
|
|
||||||
current.mapValues { entry ->
|
|
||||||
entry.value.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.NoConnectivity,
|
|
||||||
lastPingAttemptMillis = System.currentTimeMillis(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tunnelManager.updateTunnelStatus(
|
|
||||||
tunnelConf,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
pingStatsFlow.value,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
delay(settings.tunnelPingIntervalSeconds.toMillis())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startWgStatsPoll(tunnelConf: TunnelConf) = coroutineScope {
|
|
||||||
while (isActive) {
|
|
||||||
val stats = tunnelManager.getStatistics(tunnelConf)
|
|
||||||
tunnelManager.updateTunnelStatus(tunnelConf, null, stats, null)
|
|
||||||
delay(STATS_DELAY)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
const val CLOUDFLARE_IPV6_IP = "2606:4700:4700::1111"
|
|
||||||
const val CLOUDFLARE_IPV4_IP = "1.1.1.1"
|
|
||||||
|
|
||||||
const val STATS_DELAY = 1_000L
|
|
||||||
|
|
||||||
const val KEEPALIVE_RESPONSE_TEXT = "Receiving keepalive packet"
|
|
||||||
const val HANDSHAKE_RESPONSE_TEXT = "Received handshake response"
|
|
||||||
const val HANDSHAKE_INIT_FAILED_TEXT = "Failed to send handshake initiation: write udp"
|
|
||||||
const val DATA_PACKET_FAILED_TEXT = "Failed to send data packets"
|
|
||||||
const val HANDSHAKE_NOT_COMPLETED_TEXT =
|
|
||||||
"Handshake did not complete after 5 seconds, retrying"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+9
-20
@@ -1,17 +1,14 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendError
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import kotlinx.coroutines.flow.SharedFlow
|
import kotlinx.coroutines.flow.SharedFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
|
|
||||||
interface TunnelProvider {
|
interface TunnelProvider {
|
||||||
/** Starts the specified tunnel configuration. */
|
/** Starts the specified tunnel configuration. */
|
||||||
@@ -26,24 +23,24 @@ interface TunnelProvider {
|
|||||||
*/
|
*/
|
||||||
suspend fun stopTunnel(
|
suspend fun stopTunnel(
|
||||||
tunnelConf: TunnelConf? = null,
|
tunnelConf: TunnelConf? = null,
|
||||||
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.User,
|
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.USER,
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bounces (stops and restarts) the specified tunnel.
|
* Bounces (stops and restarts) the specified tunnel.
|
||||||
*
|
*
|
||||||
* @param tunnelConf The tunnel to bounce.
|
* @param tunnelConf The tunnel to bounce.
|
||||||
* @param reason The reason for bouncing, defaults to User for manual actions. Callers should
|
* @param reason The reason for bouncing, defaults to USER for manual actions. Callers should
|
||||||
* override with specific reasons (e.g., Ping, ConfigChanged) when applicable.
|
* override with specific reasons (e.g., PING, CONFIG_CHANGED) when applicable.
|
||||||
*/
|
*/
|
||||||
suspend fun bounceTunnel(
|
suspend fun bounceTunnel(
|
||||||
tunnelConf: TunnelConf,
|
tunnelConf: TunnelConf,
|
||||||
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.User,
|
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.USER,
|
||||||
)
|
)
|
||||||
|
|
||||||
fun setBackendStatus(backendStatus: BackendStatus)
|
fun setBackendState(backendState: BackendState, allowedIps: Collection<String>)
|
||||||
|
|
||||||
fun getBackendStatus(): BackendStatus
|
fun getBackendState(): BackendState
|
||||||
|
|
||||||
suspend fun runningTunnelNames(): Set<String>
|
suspend fun runningTunnelNames(): Set<String>
|
||||||
|
|
||||||
@@ -53,17 +50,9 @@ interface TunnelProvider {
|
|||||||
|
|
||||||
val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>>
|
val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>>
|
||||||
|
|
||||||
val messageEvents: SharedFlow<Pair<TunnelConf, BackendMessage>>
|
|
||||||
|
|
||||||
val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason>
|
val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason>
|
||||||
|
|
||||||
fun hasVpnPermission(): Boolean
|
fun hasVpnPermission(): Boolean
|
||||||
|
|
||||||
suspend fun updateTunnelStatus(
|
suspend fun updateTunnelStatistics(tunnel: TunnelConf)
|
||||||
tunnelConf: TunnelConf,
|
|
||||||
status: TunnelStatus? = null,
|
|
||||||
stats: TunnelStatistics? = null,
|
|
||||||
pingStates: Map<Key, PingState>? = null,
|
|
||||||
handshakeSuccessLogs: Boolean? = null,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|||||||
+41
-23
@@ -1,15 +1,15 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.AmneziaStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.AmneziaStatistics
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asAmBackendStatus
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asAmBackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asBackendStatus
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asBackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendError
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendError
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import kotlin.jvm.optionals.getOrNull
|
import kotlin.jvm.optionals.getOrNull
|
||||||
@@ -17,38 +17,29 @@ import kotlinx.coroutines.CoroutineScope
|
|||||||
import org.amnezia.awg.backend.Backend
|
import org.amnezia.awg.backend.Backend
|
||||||
import org.amnezia.awg.backend.BackendException
|
import org.amnezia.awg.backend.BackendException
|
||||||
import org.amnezia.awg.backend.Tunnel
|
import org.amnezia.awg.backend.Tunnel
|
||||||
|
import org.amnezia.awg.config.Config
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class UserspaceTunnel
|
class UserspaceTunnel
|
||||||
@Inject
|
@Inject
|
||||||
constructor(
|
constructor(
|
||||||
applicationScope: CoroutineScope,
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
val serviceManager: ServiceManager,
|
val serviceManager: ServiceManager,
|
||||||
val appDataRepository: AppDataRepository,
|
val appDataRepository: AppDataRepository,
|
||||||
private val backend: Backend,
|
private val backend: Backend,
|
||||||
) : BaseTunnel(applicationScope, appDataRepository, serviceManager) {
|
) : BaseTunnel(applicationScope, appDataRepository, serviceManager) {
|
||||||
|
|
||||||
|
private var previousBackendState: Pair<BackendState, Boolean>? = null
|
||||||
|
|
||||||
override suspend fun startBackend(tunnel: TunnelConf) {
|
override suspend fun startBackend(tunnel: TunnelConf) {
|
||||||
try {
|
try {
|
||||||
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
val amConfig = tunnel.toAmConfig()
|
val amConfig = tunnel.toAmConfig()
|
||||||
var previousKillSwitch: Backend.BackendStatus? = null
|
handleVpnKillSwitchWithDomainEndpoints(amConfig)
|
||||||
// prevent dns failures from bringing tuns up when vpn kill switch active
|
|
||||||
if (
|
|
||||||
amConfig.peers.any { it.endpoint.getOrNull()?.toString()?.isUrl() == true } &&
|
|
||||||
backend.backendStatus is Backend.BackendStatus.KillSwitchActive
|
|
||||||
) {
|
|
||||||
previousKillSwitch = backend.backendStatus
|
|
||||||
setBackendStatus(BackendStatus.Active)
|
|
||||||
}
|
|
||||||
backend.setState(tunnel, Tunnel.State.UP, amConfig)
|
backend.setState(tunnel, Tunnel.State.UP, amConfig)
|
||||||
previousKillSwitch?.let { backend.backendStatus = it }
|
|
||||||
} catch (e: BackendException) {
|
} catch (e: BackendException) {
|
||||||
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
throw e.toBackendError()
|
throw e.toBackendError()
|
||||||
} catch (e: IllegalArgumentException) {
|
|
||||||
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
|
||||||
throw BackendError.Config
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,20 +50,47 @@ constructor(
|
|||||||
} catch (e: BackendException) {
|
} catch (e: BackendException) {
|
||||||
Timber.e(e, "Failed to stop tunnel ${tunnel.id}")
|
Timber.e(e, "Failed to stop tunnel ${tunnel.id}")
|
||||||
throw e.toBackendError()
|
throw e.toBackendError()
|
||||||
|
} finally {
|
||||||
|
handlePreviouslyEnabledVpnKillSwitch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun setBackendStatus(backendStatus: BackendStatus) {
|
// stop vpn kill switch if we need to resolve DNS for peer endpoints
|
||||||
Timber.d("Setting backend state: $backendStatus")
|
private suspend fun handleVpnKillSwitchWithDomainEndpoints(config: Config) {
|
||||||
|
if (
|
||||||
|
config.peers.any { it.endpoint.getOrNull()?.toString()?.isUrl() == true } &&
|
||||||
|
backend.backendState.asBackendState() == BackendState.KILL_SWITCH_ACTIVE
|
||||||
|
) {
|
||||||
|
val bypassLan = appDataRepository.settings.get().isLanOnKillSwitchEnabled
|
||||||
|
previousBackendState = Pair(BackendState.KILL_SWITCH_ACTIVE, bypassLan)
|
||||||
|
setBackendState(BackendState.SERVICE_ACTIVE, emptyList())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// restore vpn kill switch if needed
|
||||||
|
private fun handlePreviouslyEnabledVpnKillSwitch() {
|
||||||
|
// let auto tunnel handle this if it is active
|
||||||
|
if (serviceManager.autoTunnelService.value == null) {
|
||||||
|
previousBackendState?.let { (state, lanEnabled) ->
|
||||||
|
Timber.d("Restoring kill switch configuration")
|
||||||
|
val lan = if (lanEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS else emptyList()
|
||||||
|
backend.setBackendState(state.asAmBackendState(), lan)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
previousBackendState = null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
|
Timber.d("Setting backend state: $backendState with allowedIps: $allowedIps")
|
||||||
try {
|
try {
|
||||||
backend.backendStatus = backendStatus.asAmBackendStatus()
|
backend.setBackendState(backendState.asAmBackendState(), allowedIps)
|
||||||
} catch (e: BackendException) {
|
} catch (e: BackendException) {
|
||||||
throw e.toBackendError()
|
throw e.toBackendError()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getBackendStatus(): BackendStatus {
|
override fun getBackendState(): BackendState {
|
||||||
return backend.backendStatus.asBackendStatus()
|
return backend.backendState.asBackendState()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> {
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
|||||||
@@ -2,7 +2,11 @@ package com.zaneschepke.wireguardautotunnel.core.worker
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.hilt.work.HiltWorker
|
import androidx.hilt.work.HiltWorker
|
||||||
import androidx.work.*
|
import androidx.work.CoroutineWorker
|
||||||
|
import androidx.work.ExistingPeriodicWorkPolicy
|
||||||
|
import androidx.work.PeriodicWorkRequestBuilder
|
||||||
|
import androidx.work.WorkManager
|
||||||
|
import androidx.work.WorkerParameters
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data
|
package com.zaneschepke.wireguardautotunnel.data
|
||||||
|
|
||||||
import androidx.room.*
|
import androidx.room.AutoMigration
|
||||||
|
import androidx.room.Database
|
||||||
|
import androidx.room.DeleteColumn
|
||||||
|
import androidx.room.RoomDatabase
|
||||||
|
import androidx.room.TypeConverters
|
||||||
import androidx.room.migration.AutoMigrationSpec
|
import androidx.room.migration.AutoMigrationSpec
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.SettingsDao
|
import com.zaneschepke.wireguardautotunnel.data.dao.SettingsDao
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
||||||
@@ -9,7 +13,7 @@ import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
|||||||
|
|
||||||
@Database(
|
@Database(
|
||||||
entities = [Settings::class, TunnelConfig::class],
|
entities = [Settings::class, TunnelConfig::class],
|
||||||
version = 19,
|
version = 17,
|
||||||
autoMigrations =
|
autoMigrations =
|
||||||
[
|
[
|
||||||
AutoMigration(from = 1, to = 2),
|
AutoMigration(from = 1, to = 2),
|
||||||
@@ -28,8 +32,6 @@ import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
|||||||
AutoMigration(from = 14, to = 15),
|
AutoMigration(from = 14, to = 15),
|
||||||
AutoMigration(from = 15, to = 16),
|
AutoMigration(from = 15, to = 16),
|
||||||
AutoMigration(from = 16, to = 17, spec = WifiDetectionMigration::class),
|
AutoMigration(from = 16, to = 17, spec = WifiDetectionMigration::class),
|
||||||
AutoMigration(from = 17, to = 18),
|
|
||||||
AutoMigration(from = 18, to = 19, spec = PingMigration::class),
|
|
||||||
],
|
],
|
||||||
exportSchema = true,
|
exportSchema = true,
|
||||||
)
|
)
|
||||||
@@ -49,22 +51,3 @@ class RemoveTunnelPauseMigration : AutoMigrationSpec
|
|||||||
|
|
||||||
@DeleteColumn(tableName = "Settings", columnName = "is_wifi_by_shell_enabled")
|
@DeleteColumn(tableName = "Settings", columnName = "is_wifi_by_shell_enabled")
|
||||||
class WifiDetectionMigration : AutoMigrationSpec
|
class WifiDetectionMigration : AutoMigrationSpec
|
||||||
|
|
||||||
@DeleteColumn.Entries(
|
|
||||||
DeleteColumn(tableName = "TunnelConfig", columnName = "ping_interval"),
|
|
||||||
DeleteColumn(tableName = "TunnelConfig", columnName = "ping_cooldown"),
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "split_tunnel_apps"),
|
|
||||||
)
|
|
||||||
@RenameColumn.Entries(
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "TunnelConfig",
|
|
||||||
fromColumnName = "is_ping_enabled",
|
|
||||||
toColumnName = "restart_on_ping_failure",
|
|
||||||
),
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "TunnelConfig",
|
|
||||||
fromColumnName = "ping_ip",
|
|
||||||
toColumnName = "ping_target",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
class PingMigration : AutoMigrationSpec
|
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ class DataStoreManager(
|
|||||||
val theme = stringPreferencesKey("THEME")
|
val theme = stringPreferencesKey("THEME")
|
||||||
val isRemoteControlEnabled = booleanPreferencesKey("IS_REMOTE_CONTROL_ENABLED")
|
val isRemoteControlEnabled = booleanPreferencesKey("IS_REMOTE_CONTROL_ENABLED")
|
||||||
val remoteKey = stringPreferencesKey("REMOTE_KEY")
|
val remoteKey = stringPreferencesKey("REMOTE_KEY")
|
||||||
val showDetailedPingStats = booleanPreferencesKey("SHOW_DETAILED_PING_STATS")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// preferences
|
// preferences
|
||||||
|
|||||||
@@ -6,19 +6,19 @@ import kotlinx.serialization.json.Json
|
|||||||
|
|
||||||
class DatabaseConverters {
|
class DatabaseConverters {
|
||||||
@TypeConverter
|
@TypeConverter
|
||||||
fun listToString(value: List<String>): String {
|
fun listToString(value: MutableList<String>): String {
|
||||||
return Json.encodeToString(value)
|
return Json.encodeToString(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
@TypeConverter
|
@TypeConverter
|
||||||
fun stringToList(value: String): List<String> {
|
fun stringToList(value: String): MutableList<String> {
|
||||||
if (value.isBlank() || value.isEmpty()) return mutableListOf()
|
if (value.isBlank() || value.isEmpty()) return mutableListOf()
|
||||||
return try {
|
return try {
|
||||||
Json.decodeFromString<List<String>>(value)
|
Json.decodeFromString<MutableList<String>>(value)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
val list = value.split(",").toMutableList()
|
val list = value.split(",").toMutableList()
|
||||||
val json = listToString(list)
|
val json = listToString(list)
|
||||||
Json.decodeFromString<List<String>>(json)
|
Json.decodeFromString<MutableList<String>>(json)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
package com.zaneschepke.wireguardautotunnel.data.dao
|
||||||
|
|
||||||
import androidx.room.*
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Delete
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
package com.zaneschepke.wireguardautotunnel.data.dao
|
||||||
|
|
||||||
import androidx.room.*
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Delete
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.TunnelConfigs
|
import com.zaneschepke.wireguardautotunnel.util.extensions.TunnelConfigs
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
@@ -42,6 +46,5 @@ interface TunnelConfigDao {
|
|||||||
@Query("SELECT * FROM TUNNELCONFIG WHERE is_mobile_data_tunnel=1")
|
@Query("SELECT * FROM TUNNELCONFIG WHERE is_mobile_data_tunnel=1")
|
||||||
suspend fun findByMobileDataTunnel(): TunnelConfigs
|
suspend fun findByMobileDataTunnel(): TunnelConfigs
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnelconfig ORDER BY position")
|
@Query("SELECT * FROM tunnelconfig") fun getAllFlow(): Flow<MutableList<TunnelConfig>>
|
||||||
fun getAllFlow(): Flow<List<TunnelConfig>>
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ data class GeneralState(
|
|||||||
val expandedTunnelIds: List<Int> = emptyList(),
|
val expandedTunnelIds: List<Int> = emptyList(),
|
||||||
val isLocalLogsEnabled: Boolean = IS_LOGS_ENABLED_DEFAULT,
|
val isLocalLogsEnabled: Boolean = IS_LOGS_ENABLED_DEFAULT,
|
||||||
val isRemoteControlEnabled: Boolean = IS_REMOTE_CONTROL_ENABLED,
|
val isRemoteControlEnabled: Boolean = IS_REMOTE_CONTROL_ENABLED,
|
||||||
val showDetailedPingStats: Boolean = SHOW_DETAILED_PING_STATS_DEFAULT,
|
|
||||||
val remoteKey: String? = null,
|
val remoteKey: String? = null,
|
||||||
val locale: String? = null,
|
val locale: String? = null,
|
||||||
val theme: Theme = Theme.AUTOMATIC,
|
val theme: Theme = Theme.AUTOMATIC,
|
||||||
@@ -21,6 +20,5 @@ data class GeneralState(
|
|||||||
const val PIN_LOCK_ENABLED_DEFAULT = false
|
const val PIN_LOCK_ENABLED_DEFAULT = false
|
||||||
const val IS_LOGS_ENABLED_DEFAULT = false
|
const val IS_LOGS_ENABLED_DEFAULT = false
|
||||||
const val IS_REMOTE_CONTROL_ENABLED = false
|
const val IS_REMOTE_CONTROL_ENABLED = false
|
||||||
const val SHOW_DETAILED_PING_STATS_DEFAULT = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,8 @@ data class Settings(
|
|||||||
@ColumnInfo(name = "is_tunnel_enabled") val isAutoTunnelEnabled: Boolean = false,
|
@ColumnInfo(name = "is_tunnel_enabled") val isAutoTunnelEnabled: Boolean = false,
|
||||||
@ColumnInfo(name = "is_tunnel_on_mobile_data_enabled")
|
@ColumnInfo(name = "is_tunnel_on_mobile_data_enabled")
|
||||||
val isTunnelOnMobileDataEnabled: Boolean = false,
|
val isTunnelOnMobileDataEnabled: Boolean = false,
|
||||||
@ColumnInfo(name = "trusted_network_ssids") val trustedNetworkSSIDs: List<String> = emptyList(),
|
@ColumnInfo(name = "trusted_network_ssids")
|
||||||
|
val trustedNetworkSSIDs: MutableList<String> = mutableListOf(),
|
||||||
@ColumnInfo(name = "is_always_on_vpn_enabled") val isAlwaysOnVpnEnabled: Boolean = false,
|
@ColumnInfo(name = "is_always_on_vpn_enabled") val isAlwaysOnVpnEnabled: Boolean = false,
|
||||||
@ColumnInfo(name = "is_tunnel_on_ethernet_enabled")
|
@ColumnInfo(name = "is_tunnel_on_ethernet_enabled")
|
||||||
val isTunnelOnEthernetEnabled: Boolean = false,
|
val isTunnelOnEthernetEnabled: Boolean = false,
|
||||||
@@ -44,15 +45,12 @@ data class Settings(
|
|||||||
val isDisableKillSwitchOnTrustedEnabled: Boolean = false,
|
val isDisableKillSwitchOnTrustedEnabled: Boolean = false,
|
||||||
@ColumnInfo(name = "is_tunnel_on_unsecure_enabled", defaultValue = "false")
|
@ColumnInfo(name = "is_tunnel_on_unsecure_enabled", defaultValue = "false")
|
||||||
val isTunnelOnUnsecureEnabled: Boolean = false,
|
val isTunnelOnUnsecureEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "split_tunnel_apps", defaultValue = "")
|
||||||
|
val splitTunnelApps: MutableList<String> = mutableListOf(),
|
||||||
@ColumnInfo(name = "wifi_detection_method", defaultValue = "0")
|
@ColumnInfo(name = "wifi_detection_method", defaultValue = "0")
|
||||||
val wifiDetectionMethod: WifiDetectionMethod = WifiDetectionMethod.fromValue(0),
|
val wifiDetectionMethod: WifiDetectionMethod = WifiDetectionMethod.fromValue(0),
|
||||||
@ColumnInfo(name = "is_ping_monitoring_enabled", defaultValue = "true")
|
|
||||||
val isPingMonitoringEnabled: Boolean = true,
|
|
||||||
@ColumnInfo(name = "tunnel_ping_interval_sec", defaultValue = "30")
|
|
||||||
val tunnelPingIntervalSeconds: Int = 30,
|
|
||||||
@ColumnInfo(name = "tunnel_ping_attempts", defaultValue = "3") val tunnelPingAttempts: Int = 3,
|
|
||||||
@ColumnInfo(name = "tunnel_ping_timeout_sec") val tunnelPingTimeoutSeconds: Int? = null,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
enum class WifiDetectionMethod(val value: Int) {
|
enum class WifiDetectionMethod(val value: Int) {
|
||||||
DEFAULT(0),
|
DEFAULT(0),
|
||||||
LEGACY(1),
|
LEGACY(1),
|
||||||
|
|||||||
@@ -11,23 +11,22 @@ data class TunnelConfig(
|
|||||||
@ColumnInfo(name = "name") val name: String,
|
@ColumnInfo(name = "name") val name: String,
|
||||||
@ColumnInfo(name = "wg_quick") val wgQuick: String,
|
@ColumnInfo(name = "wg_quick") val wgQuick: String,
|
||||||
@ColumnInfo(name = "tunnel_networks", defaultValue = "")
|
@ColumnInfo(name = "tunnel_networks", defaultValue = "")
|
||||||
val tunnelNetworks: List<String> = listOf(),
|
val tunnelNetworks: MutableList<String> = mutableListOf(),
|
||||||
@ColumnInfo(name = "is_mobile_data_tunnel", defaultValue = "false")
|
@ColumnInfo(name = "is_mobile_data_tunnel", defaultValue = "false")
|
||||||
val isMobileDataTunnel: Boolean = false,
|
val isMobileDataTunnel: Boolean = false,
|
||||||
@ColumnInfo(name = "is_primary_tunnel", defaultValue = "false")
|
@ColumnInfo(name = "is_primary_tunnel", defaultValue = "false")
|
||||||
val isPrimaryTunnel: Boolean = false,
|
val isPrimaryTunnel: Boolean = false,
|
||||||
@ColumnInfo(name = "am_quick", defaultValue = "") val amQuick: String = AM_QUICK_DEFAULT,
|
@ColumnInfo(name = "am_quick", defaultValue = "") val amQuick: String = AM_QUICK_DEFAULT,
|
||||||
@ColumnInfo(name = "is_Active", defaultValue = "false") val isActive: Boolean = false,
|
@ColumnInfo(name = "is_Active", defaultValue = "false") val isActive: Boolean = false,
|
||||||
@ColumnInfo(name = "restart_on_ping_failure", defaultValue = "false")
|
@ColumnInfo(name = "is_ping_enabled", defaultValue = "false")
|
||||||
val restartOnPingFailure: Boolean = false,
|
val isPingEnabled: Boolean = false,
|
||||||
@ColumnInfo(name = "ping_target", defaultValue = "null") var pingTarget: String? = null,
|
@ColumnInfo(name = "ping_interval", defaultValue = "null") val pingInterval: Long? = null,
|
||||||
|
@ColumnInfo(name = "ping_cooldown", defaultValue = "null") val pingCooldown: Long? = null,
|
||||||
|
@ColumnInfo(name = "ping_ip", defaultValue = "null") var pingIp: String? = null,
|
||||||
@ColumnInfo(name = "is_ethernet_tunnel", defaultValue = "false")
|
@ColumnInfo(name = "is_ethernet_tunnel", defaultValue = "false")
|
||||||
val isEthernetTunnel: Boolean = false,
|
var isEthernetTunnel: Boolean = false,
|
||||||
@ColumnInfo(name = "is_ipv4_preferred", defaultValue = "true")
|
@ColumnInfo(name = "is_ipv4_preferred", defaultValue = "true")
|
||||||
val isIpv4Preferred: Boolean = true,
|
var isIpv4Preferred: Boolean = true,
|
||||||
@ColumnInfo(name = "position", defaultValue = "0") val position: Int = 0,
|
|
||||||
@ColumnInfo(name = "auto_tunnel_apps", defaultValue = "[]")
|
|
||||||
val autoTunnelApps: List<String> = listOf(),
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|||||||
-2
@@ -13,7 +13,6 @@ object GeneralStateMapper {
|
|||||||
expandedTunnelIds,
|
expandedTunnelIds,
|
||||||
isLocalLogsEnabled,
|
isLocalLogsEnabled,
|
||||||
isRemoteControlEnabled,
|
isRemoteControlEnabled,
|
||||||
showDetailedPingStats,
|
|
||||||
remoteKey,
|
remoteKey,
|
||||||
locale,
|
locale,
|
||||||
theme,
|
theme,
|
||||||
@@ -29,7 +28,6 @@ object GeneralStateMapper {
|
|||||||
expandedTunnelIds,
|
expandedTunnelIds,
|
||||||
isLocalLogsEnabled,
|
isLocalLogsEnabled,
|
||||||
isRemoteControlEnabled,
|
isRemoteControlEnabled,
|
||||||
showDetailedPingStats,
|
|
||||||
remoteKey,
|
remoteKey,
|
||||||
locale,
|
locale,
|
||||||
theme,
|
theme,
|
||||||
|
|||||||
+1
@@ -2,6 +2,7 @@ package com.zaneschepke.wireguardautotunnel.data.mapper
|
|||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.GitHubRelease
|
import com.zaneschepke.wireguardautotunnel.data.entity.GitHubRelease
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppUpdate
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppUpdate
|
||||||
|
import kotlin.collections.firstOrNull
|
||||||
|
|
||||||
object GitHubReleaseMapper {
|
object GitHubReleaseMapper {
|
||||||
fun toAppUpdate(gitHubRelease: GitHubRelease, newVersion: String): AppUpdate {
|
fun toAppUpdate(gitHubRelease: GitHubRelease, newVersion: String): AppUpdate {
|
||||||
|
|||||||
@@ -28,13 +28,11 @@ object SettingsMapper {
|
|||||||
debounceDelaySeconds = settings.debounceDelaySeconds,
|
debounceDelaySeconds = settings.debounceDelaySeconds,
|
||||||
isDisableKillSwitchOnTrustedEnabled = settings.isDisableKillSwitchOnTrustedEnabled,
|
isDisableKillSwitchOnTrustedEnabled = settings.isDisableKillSwitchOnTrustedEnabled,
|
||||||
isTunnelOnUnsecureEnabled = settings.isTunnelOnUnsecureEnabled,
|
isTunnelOnUnsecureEnabled = settings.isTunnelOnUnsecureEnabled,
|
||||||
|
splitTunnelApps = settings.splitTunnelApps,
|
||||||
wifiDetectionMethod =
|
wifiDetectionMethod =
|
||||||
AndroidNetworkMonitor.WifiDetectionMethod.fromValue(
|
AndroidNetworkMonitor.WifiDetectionMethod.fromValue(
|
||||||
settings.wifiDetectionMethod.value
|
settings.wifiDetectionMethod.value
|
||||||
),
|
),
|
||||||
tunnelPingIntervalSeconds = settings.tunnelPingIntervalSeconds,
|
|
||||||
tunnelPingAttempts = settings.tunnelPingAttempts,
|
|
||||||
tunnelPingTimeoutSeconds = settings.tunnelPingTimeoutSeconds,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -43,7 +41,7 @@ object SettingsMapper {
|
|||||||
id = appSettings.id,
|
id = appSettings.id,
|
||||||
isAutoTunnelEnabled = appSettings.isAutoTunnelEnabled,
|
isAutoTunnelEnabled = appSettings.isAutoTunnelEnabled,
|
||||||
isTunnelOnMobileDataEnabled = appSettings.isTunnelOnMobileDataEnabled,
|
isTunnelOnMobileDataEnabled = appSettings.isTunnelOnMobileDataEnabled,
|
||||||
trustedNetworkSSIDs = appSettings.trustedNetworkSSIDs,
|
trustedNetworkSSIDs = appSettings.trustedNetworkSSIDs.toMutableList(),
|
||||||
isAlwaysOnVpnEnabled = appSettings.isAlwaysOnVpnEnabled,
|
isAlwaysOnVpnEnabled = appSettings.isAlwaysOnVpnEnabled,
|
||||||
isTunnelOnEthernetEnabled = appSettings.isTunnelOnEthernetEnabled,
|
isTunnelOnEthernetEnabled = appSettings.isTunnelOnEthernetEnabled,
|
||||||
isShortcutsEnabled = appSettings.isShortcutsEnabled,
|
isShortcutsEnabled = appSettings.isShortcutsEnabled,
|
||||||
@@ -61,11 +59,9 @@ object SettingsMapper {
|
|||||||
debounceDelaySeconds = appSettings.debounceDelaySeconds,
|
debounceDelaySeconds = appSettings.debounceDelaySeconds,
|
||||||
isDisableKillSwitchOnTrustedEnabled = appSettings.isDisableKillSwitchOnTrustedEnabled,
|
isDisableKillSwitchOnTrustedEnabled = appSettings.isDisableKillSwitchOnTrustedEnabled,
|
||||||
isTunnelOnUnsecureEnabled = appSettings.isTunnelOnUnsecureEnabled,
|
isTunnelOnUnsecureEnabled = appSettings.isTunnelOnUnsecureEnabled,
|
||||||
|
splitTunnelApps = appSettings.splitTunnelApps.toMutableList(),
|
||||||
wifiDetectionMethod =
|
wifiDetectionMethod =
|
||||||
Settings.WifiDetectionMethod.fromValue(appSettings.wifiDetectionMethod.value),
|
Settings.WifiDetectionMethod.fromValue(appSettings.wifiDetectionMethod.value),
|
||||||
tunnelPingIntervalSeconds = appSettings.tunnelPingIntervalSeconds,
|
|
||||||
tunnelPingAttempts = appSettings.tunnelPingAttempts,
|
|
||||||
tunnelPingTimeoutSeconds = appSettings.tunnelPingTimeoutSeconds,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-7
@@ -15,11 +15,12 @@ object TunnelConfigMapper {
|
|||||||
isPrimaryTunnel,
|
isPrimaryTunnel,
|
||||||
amQuick,
|
amQuick,
|
||||||
isActive,
|
isActive,
|
||||||
pingTarget,
|
isPingEnabled,
|
||||||
restartOnPingFailure,
|
pingInterval,
|
||||||
|
pingCooldown,
|
||||||
|
pingIp,
|
||||||
isEthernetTunnel,
|
isEthernetTunnel,
|
||||||
isIpv4Preferred,
|
isIpv4Preferred,
|
||||||
position,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30,16 +31,17 @@ object TunnelConfigMapper {
|
|||||||
id,
|
id,
|
||||||
tunName,
|
tunName,
|
||||||
wgQuick,
|
wgQuick,
|
||||||
tunnelNetworks,
|
tunnelNetworks.toMutableList(),
|
||||||
isMobileDataTunnel,
|
isMobileDataTunnel,
|
||||||
isPrimaryTunnel,
|
isPrimaryTunnel,
|
||||||
amQuick,
|
amQuick,
|
||||||
isActive,
|
isActive,
|
||||||
restartOnPingFailure,
|
isPingEnabled,
|
||||||
pingTarget,
|
pingInterval,
|
||||||
|
pingCooldown,
|
||||||
|
pingIp,
|
||||||
isEthernetTunnel,
|
isEthernetTunnel,
|
||||||
isIpv4Preferred,
|
isIpv4Preferred,
|
||||||
position,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.network
|
package com.zaneschepke.wireguardautotunnel.data.network
|
||||||
|
|
||||||
import io.ktor.client.*
|
import io.ktor.client.HttpClient
|
||||||
import io.ktor.client.engine.okhttp.*
|
import io.ktor.client.engine.okhttp.OkHttp
|
||||||
import io.ktor.client.plugins.*
|
import io.ktor.client.plugins.HttpTimeout
|
||||||
import io.ktor.client.plugins.contentnegotiation.*
|
import io.ktor.client.plugins.contentnegotiation.ContentNegotiation
|
||||||
import io.ktor.serialization.kotlinx.json.*
|
import io.ktor.serialization.kotlinx.json.json
|
||||||
import kotlinx.serialization.json.Json
|
import kotlinx.serialization.json.Json
|
||||||
|
|
||||||
object KtorClient {
|
object KtorClient {
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.network
|
package com.zaneschepke.wireguardautotunnel.data.network
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.GitHubRelease
|
import com.zaneschepke.wireguardautotunnel.data.entity.GitHubRelease
|
||||||
import io.ktor.client.*
|
import io.ktor.client.HttpClient
|
||||||
import io.ktor.client.call.*
|
import io.ktor.client.call.body
|
||||||
import io.ktor.client.plugins.*
|
import io.ktor.client.plugins.ClientRequestException
|
||||||
import io.ktor.client.request.*
|
import io.ktor.client.request.get
|
||||||
import io.ktor.http.*
|
import io.ktor.http.HttpStatusCode
|
||||||
|
|
||||||
class KtorGitHubApi(private val client: HttpClient) : GitHubApi {
|
class KtorGitHubApi(private val client: HttpClient) : GitHubApi {
|
||||||
override suspend fun getLatestRelease(owner: String, repo: String): Result<GitHubRelease> {
|
override suspend fun getLatestRelease(owner: String, repo: String): Result<GitHubRelease> {
|
||||||
|
|||||||
-12
@@ -119,15 +119,6 @@ class DataStoreAppStateRepository(private val dataStoreManager: DataStoreManager
|
|||||||
return dataStoreManager.getFromStore(DataStoreManager.remoteKey)
|
return dataStoreManager.getFromStore(DataStoreManager.remoteKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun setShowDetailedPingStats(showDetailedPing: Boolean) {
|
|
||||||
dataStoreManager.saveToDataStore(DataStoreManager.showDetailedPingStats, showDetailedPing)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun getShowDetailedPing(): Boolean {
|
|
||||||
return dataStoreManager.getFromStore(DataStoreManager.showDetailedPingStats)
|
|
||||||
?: GeneralState.SHOW_DETAILED_PING_STATS_DEFAULT
|
|
||||||
}
|
|
||||||
|
|
||||||
override val flow: Flow<AppState> =
|
override val flow: Flow<AppState> =
|
||||||
dataStoreManager.preferencesFlow
|
dataStoreManager.preferencesFlow
|
||||||
.map { prefs ->
|
.map { prefs ->
|
||||||
@@ -153,9 +144,6 @@ class DataStoreAppStateRepository(private val dataStoreManager: DataStoreManager
|
|||||||
isRemoteControlEnabled =
|
isRemoteControlEnabled =
|
||||||
pref[DataStoreManager.isRemoteControlEnabled]
|
pref[DataStoreManager.isRemoteControlEnabled]
|
||||||
?: GeneralState.IS_REMOTE_CONTROL_ENABLED,
|
?: GeneralState.IS_REMOTE_CONTROL_ENABLED,
|
||||||
showDetailedPingStats =
|
|
||||||
pref[DataStoreManager.showDetailedPingStats]
|
|
||||||
?: GeneralState.SHOW_DETAILED_PING_STATS_DEFAULT,
|
|
||||||
remoteKey = pref[DataStoreManager.remoteKey],
|
remoteKey = pref[DataStoreManager.remoteKey],
|
||||||
locale = pref[DataStoreManager.locale],
|
locale = pref[DataStoreManager.locale],
|
||||||
theme = getTheme(),
|
theme = getTheme(),
|
||||||
|
|||||||
+7
-5
@@ -9,11 +9,13 @@ import com.zaneschepke.wireguardautotunnel.domain.model.AppUpdate
|
|||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.UpdateRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.UpdateRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.util.Constants
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
import com.zaneschepke.wireguardautotunnel.util.NumberUtils
|
import com.zaneschepke.wireguardautotunnel.util.NumberUtils
|
||||||
import io.ktor.client.*
|
import io.ktor.client.HttpClient
|
||||||
import io.ktor.client.request.*
|
import io.ktor.client.request.get
|
||||||
import io.ktor.client.statement.*
|
import io.ktor.client.statement.HttpResponse
|
||||||
import io.ktor.http.*
|
import io.ktor.client.statement.bodyAsChannel
|
||||||
import io.ktor.utils.io.*
|
import io.ktor.http.contentLength
|
||||||
|
import io.ktor.utils.io.ByteReadChannel
|
||||||
|
import io.ktor.utils.io.readAvailable
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|||||||
@@ -4,12 +4,9 @@ import android.content.Context
|
|||||||
import com.zaneschepke.logcatter.LogReader
|
import com.zaneschepke.logcatter.LogReader
|
||||||
import com.zaneschepke.logcatter.LogcatReader
|
import com.zaneschepke.logcatter.LogcatReader
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
||||||
import com.zaneschepke.wireguardautotunnel.core.shortcut.DynamicShortcutManager
|
import com.zaneschepke.wireguardautotunnel.core.shortcut.DynamicShortcutManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.shortcut.ShortcutManager
|
import com.zaneschepke.wireguardautotunnel.core.shortcut.ShortcutManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.network.NetworkUtils
|
|
||||||
import dagger.Module
|
import dagger.Module
|
||||||
import dagger.Provides
|
import dagger.Provides
|
||||||
import dagger.hilt.InstallIn
|
import dagger.hilt.InstallIn
|
||||||
@@ -50,19 +47,4 @@ class AppModule {
|
|||||||
): ShortcutManager {
|
): ShortcutManager {
|
||||||
return DynamicShortcutManager(context, ioDispatcher)
|
return DynamicShortcutManager(context, ioDispatcher)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Singleton
|
|
||||||
@Provides
|
|
||||||
fun provideNetworkUtils(@IoDispatcher ioDispatcher: CoroutineDispatcher): NetworkUtils {
|
|
||||||
return NetworkUtils(ioDispatcher)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Singleton
|
|
||||||
@Provides
|
|
||||||
fun provideNotificationMonitor(
|
|
||||||
tunnelManager: TunnelManager,
|
|
||||||
notificationManager: NotificationManager,
|
|
||||||
): NotificationMonitor {
|
|
||||||
return NotificationMonitor(tunnelManager, notificationManager)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,14 +11,22 @@ import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
|||||||
import com.zaneschepke.wireguardautotunnel.data.network.GitHubApi
|
import com.zaneschepke.wireguardautotunnel.data.network.GitHubApi
|
||||||
import com.zaneschepke.wireguardautotunnel.data.network.KtorClient
|
import com.zaneschepke.wireguardautotunnel.data.network.KtorClient
|
||||||
import com.zaneschepke.wireguardautotunnel.data.network.KtorGitHubApi
|
import com.zaneschepke.wireguardautotunnel.data.network.KtorGitHubApi
|
||||||
import com.zaneschepke.wireguardautotunnel.data.repository.*
|
import com.zaneschepke.wireguardautotunnel.data.repository.AppDataRoomRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.*
|
import com.zaneschepke.wireguardautotunnel.data.repository.DataStoreAppStateRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.repository.GitHubUpdateRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.repository.RoomSettingsRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.repository.RoomTunnelRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppSettingRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.UpdateRepository
|
||||||
import dagger.Module
|
import dagger.Module
|
||||||
import dagger.Provides
|
import dagger.Provides
|
||||||
import dagger.hilt.InstallIn
|
import dagger.hilt.InstallIn
|
||||||
import dagger.hilt.android.qualifiers.ApplicationContext
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
import dagger.hilt.components.SingletonComponent
|
import dagger.hilt.components.SingletonComponent
|
||||||
import io.ktor.client.*
|
import io.ktor.client.HttpClient
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
|
||||||
|
|||||||
@@ -4,15 +4,15 @@ import android.content.Context
|
|||||||
import com.wireguard.android.backend.WgQuickBackend
|
import com.wireguard.android.backend.WgQuickBackend
|
||||||
import com.wireguard.android.util.RootShell
|
import com.wireguard.android.util.RootShell
|
||||||
import com.wireguard.android.util.ToolsInstaller
|
import com.wireguard.android.util.ToolsInstaller
|
||||||
import com.zaneschepke.logcatter.LogReader
|
|
||||||
import com.zaneschepke.networkmonitor.AndroidNetworkMonitor
|
import com.zaneschepke.networkmonitor.AndroidNetworkMonitor
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.*
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.KernelTunnel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.UserspaceTunnel
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppSettingRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppSettingRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.util.network.NetworkUtils
|
|
||||||
import dagger.Module
|
import dagger.Module
|
||||||
import dagger.Provides
|
import dagger.Provides
|
||||||
import dagger.hilt.InstallIn
|
import dagger.hilt.InstallIn
|
||||||
@@ -99,7 +99,6 @@ class TunnelModule {
|
|||||||
appDataRepository: AppDataRepository,
|
appDataRepository: AppDataRepository,
|
||||||
@IoDispatcher ioDispatcher: CoroutineDispatcher,
|
@IoDispatcher ioDispatcher: CoroutineDispatcher,
|
||||||
@ApplicationScope applicationScope: CoroutineScope,
|
@ApplicationScope applicationScope: CoroutineScope,
|
||||||
notificationManager: NotificationManager,
|
|
||||||
): TunnelManager {
|
): TunnelManager {
|
||||||
return TunnelManager(
|
return TunnelManager(
|
||||||
kernelTunnel,
|
kernelTunnel,
|
||||||
@@ -151,23 +150,4 @@ class TunnelModule {
|
|||||||
appDataRepository,
|
appDataRepository,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Singleton
|
|
||||||
@Provides
|
|
||||||
fun provideTunnelMonitor(
|
|
||||||
@ApplicationContext context: Context,
|
|
||||||
tunnelManager: TunnelManager,
|
|
||||||
networkMonitor: NetworkMonitor,
|
|
||||||
networkUtils: NetworkUtils,
|
|
||||||
logReader: LogReader,
|
|
||||||
appDataRepository: AppDataRepository,
|
|
||||||
): TunnelMonitor {
|
|
||||||
return TunnelMonitor(
|
|
||||||
appDataRepository,
|
|
||||||
tunnelManager,
|
|
||||||
networkMonitor,
|
|
||||||
networkUtils,
|
|
||||||
logReader,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-19
@@ -1,7 +1,6 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.events
|
package com.zaneschepke.wireguardautotunnel.domain.enums
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
|
||||||
|
|
||||||
sealed class BackendError : Exception() {
|
sealed class BackendError : Exception() {
|
||||||
data object DNS : BackendError()
|
data object DNS : BackendError()
|
||||||
@@ -12,37 +11,23 @@ sealed class BackendError : Exception() {
|
|||||||
|
|
||||||
data object KernelModuleName : BackendError()
|
data object KernelModuleName : BackendError()
|
||||||
|
|
||||||
|
data object InvalidConfig : BackendError()
|
||||||
|
|
||||||
data object NotAuthorized : BackendError()
|
data object NotAuthorized : BackendError()
|
||||||
|
|
||||||
data object ServiceNotRunning : BackendError()
|
data object ServiceNotRunning : BackendError()
|
||||||
|
|
||||||
data object Unknown : BackendError()
|
data object Unknown : BackendError()
|
||||||
|
|
||||||
data object TunnelNameTooLong : BackendError()
|
|
||||||
|
|
||||||
data class BounceFailed(val error: BackendError) : BackendError()
|
|
||||||
|
|
||||||
fun toStringRes() =
|
fun toStringRes() =
|
||||||
when (this) {
|
when (this) {
|
||||||
Config -> R.string.config_error
|
Config -> R.string.config_error
|
||||||
DNS -> R.string.dns_resolve_error
|
DNS -> R.string.dns_resolve_error
|
||||||
|
InvalidConfig -> R.string.invalid_config_error
|
||||||
KernelModuleName -> R.string.kernel_name_error
|
KernelModuleName -> R.string.kernel_name_error
|
||||||
NotAuthorized,
|
NotAuthorized,
|
||||||
Unauthorized -> R.string.auth_error
|
Unauthorized -> R.string.auth_error
|
||||||
ServiceNotRunning -> R.string.service_running_error
|
ServiceNotRunning -> R.string.service_running_error
|
||||||
Unknown -> R.string.unknown_error
|
Unknown -> R.string.unknown_error
|
||||||
TunnelNameTooLong -> R.string.error_tunnel_name
|
|
||||||
is BounceFailed -> R.string.bounce_failed_template
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun toStringValue(): StringValue {
|
|
||||||
return when (val backendError = this) {
|
|
||||||
is BounceFailed ->
|
|
||||||
StringValue.StringResource(
|
|
||||||
backendError.toStringRes(),
|
|
||||||
backendError.error.toStringRes(),
|
|
||||||
)
|
|
||||||
else -> StringValue.StringResource(backendError.toStringRes())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.enums
|
package com.zaneschepke.wireguardautotunnel.domain.enums
|
||||||
|
|
||||||
sealed class BackendStatus {
|
enum class BackendState {
|
||||||
data object Inactive : BackendStatus()
|
KILL_SWITCH_ACTIVE,
|
||||||
|
SERVICE_ACTIVE,
|
||||||
data object Active : BackendStatus()
|
INACTIVE,
|
||||||
|
|
||||||
data class KillSwitch(val allowedIps: List<String>) : BackendStatus()
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,12 +10,10 @@ sealed class TunnelStatus {
|
|||||||
|
|
||||||
data object Starting : TunnelStatus()
|
data object Starting : TunnelStatus()
|
||||||
|
|
||||||
sealed class StopReason {
|
enum class StopReason {
|
||||||
data object User : StopReason()
|
USER,
|
||||||
|
PING,
|
||||||
data class Ping(val previouslyResolvedEndpoints: Map<String, String?>) : StopReason()
|
CONFIG_CHANGED,
|
||||||
|
|
||||||
data object ConfigChanged : StopReason()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun isDown(): Boolean {
|
fun isDown(): Boolean {
|
||||||
|
|||||||
@@ -5,14 +5,7 @@ import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
|||||||
sealed class AutoTunnelEvent {
|
sealed class AutoTunnelEvent {
|
||||||
data class Start(val tunnelConf: TunnelConf? = null) : AutoTunnelEvent()
|
data class Start(val tunnelConf: TunnelConf? = null) : AutoTunnelEvent()
|
||||||
|
|
||||||
data class Bounce(val configsPeerKeyResolvedMap: List<Pair<TunnelConf, Map<String, String?>>>) :
|
|
||||||
AutoTunnelEvent()
|
|
||||||
|
|
||||||
data object Stop : AutoTunnelEvent()
|
data object Stop : AutoTunnelEvent()
|
||||||
|
|
||||||
data object DoNothing : AutoTunnelEvent()
|
data object DoNothing : AutoTunnelEvent()
|
||||||
|
|
||||||
data class StartKillSwitch(val allowedIps: List<String>) : AutoTunnelEvent()
|
|
||||||
|
|
||||||
data object StopKillSwitch : AutoTunnelEvent()
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.events
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
|
||||||
|
|
||||||
sealed class BackendMessage {
|
|
||||||
|
|
||||||
data object BounceSuccess : BackendMessage()
|
|
||||||
|
|
||||||
data object BounceRecovery : BackendMessage()
|
|
||||||
|
|
||||||
fun toStringRes() =
|
|
||||||
when (this) {
|
|
||||||
BounceRecovery -> R.string.pinger_bounce_recovery
|
|
||||||
BounceSuccess -> R.string.pinger_bounce_successful
|
|
||||||
}
|
|
||||||
|
|
||||||
fun toStringValue() = StringValue.StringResource(this.toStringRes())
|
|
||||||
}
|
|
||||||
@@ -24,12 +24,14 @@ data class AppSettings(
|
|||||||
val debounceDelaySeconds: Int = 3,
|
val debounceDelaySeconds: Int = 3,
|
||||||
val isDisableKillSwitchOnTrustedEnabled: Boolean = false,
|
val isDisableKillSwitchOnTrustedEnabled: Boolean = false,
|
||||||
val isTunnelOnUnsecureEnabled: Boolean = false,
|
val isTunnelOnUnsecureEnabled: Boolean = false,
|
||||||
|
val splitTunnelApps: List<String> = emptyList(),
|
||||||
val wifiDetectionMethod: AndroidNetworkMonitor.WifiDetectionMethod =
|
val wifiDetectionMethod: AndroidNetworkMonitor.WifiDetectionMethod =
|
||||||
AndroidNetworkMonitor.WifiDetectionMethod.DEFAULT,
|
AndroidNetworkMonitor.WifiDetectionMethod.DEFAULT,
|
||||||
val tunnelPingIntervalSeconds: Int = 30,
|
|
||||||
val tunnelPingAttempts: Int = 3,
|
|
||||||
val tunnelPingTimeoutSeconds: Int? = null,
|
|
||||||
) {
|
) {
|
||||||
|
fun debounceDelayMillis(): Long {
|
||||||
|
return debounceDelaySeconds * 1000L
|
||||||
|
}
|
||||||
|
|
||||||
fun toAutoTunnelStateString(): String {
|
fun toAutoTunnelStateString(): String {
|
||||||
return """
|
return """
|
||||||
TunnelOnWifi: $isTunnelOnWifiEnabled
|
TunnelOnWifi: $isTunnelOnWifiEnabled
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ data class AppState(
|
|||||||
val expandedTunnelIds: List<Int>,
|
val expandedTunnelIds: List<Int>,
|
||||||
val isLocalLogsEnabled: Boolean,
|
val isLocalLogsEnabled: Boolean,
|
||||||
val isRemoteControlEnabled: Boolean,
|
val isRemoteControlEnabled: Boolean,
|
||||||
val showDetailedPingStats: Boolean,
|
|
||||||
val remoteKey: String?,
|
val remoteKey: String?,
|
||||||
val locale: String?,
|
val locale: String?,
|
||||||
val theme: Theme,
|
val theme: Theme,
|
||||||
|
|||||||
@@ -2,9 +2,14 @@ package com.zaneschepke.wireguardautotunnel.domain.model
|
|||||||
|
|
||||||
import com.wireguard.android.backend.Tunnel
|
import com.wireguard.android.backend.Tunnel
|
||||||
import com.wireguard.config.Config
|
import com.wireguard.config.Config
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.*
|
import com.zaneschepke.wireguardautotunnel.util.extensions.*
|
||||||
import java.io.InputStream
|
import java.io.InputStream
|
||||||
|
import java.net.InetAddress
|
||||||
import java.nio.charset.StandardCharsets
|
import java.nio.charset.StandardCharsets
|
||||||
|
import kotlin.coroutines.CoroutineContext
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
data class TunnelConf(
|
data class TunnelConf(
|
||||||
val id: Int = 0,
|
val id: Int = 0,
|
||||||
@@ -15,16 +20,15 @@ data class TunnelConf(
|
|||||||
val isPrimaryTunnel: Boolean = false,
|
val isPrimaryTunnel: Boolean = false,
|
||||||
val amQuick: String,
|
val amQuick: String,
|
||||||
val isActive: Boolean = false,
|
val isActive: Boolean = false,
|
||||||
val pingTarget: String? = null,
|
val isPingEnabled: Boolean = false,
|
||||||
val restartOnPingFailure: Boolean = false,
|
val pingInterval: Long? = null,
|
||||||
|
val pingCooldown: Long? = null,
|
||||||
|
val pingIp: String? = null,
|
||||||
val isEthernetTunnel: Boolean = false,
|
val isEthernetTunnel: Boolean = false,
|
||||||
val isIpv4Preferred: Boolean = true,
|
val isIpv4Preferred: Boolean = true,
|
||||||
val position: Int = 0,
|
|
||||||
@Transient private var stateChangeCallback: ((Any) -> Unit)? = null,
|
@Transient private var stateChangeCallback: ((Any) -> Unit)? = null,
|
||||||
) : Tunnel, org.amnezia.awg.backend.Tunnel {
|
) : Tunnel, org.amnezia.awg.backend.Tunnel {
|
||||||
|
|
||||||
val isNameKernelCompatible: Boolean = (name.length <= 15)
|
|
||||||
|
|
||||||
fun setStateChangeCallback(callback: (Any) -> Unit) {
|
fun setStateChangeCallback(callback: (Any) -> Unit) {
|
||||||
stateChangeCallback = callback
|
stateChangeCallback = callback
|
||||||
}
|
}
|
||||||
@@ -39,8 +43,10 @@ data class TunnelConf(
|
|||||||
isPrimaryTunnel == other.isPrimaryTunnel &&
|
isPrimaryTunnel == other.isPrimaryTunnel &&
|
||||||
isMobileDataTunnel == other.isMobileDataTunnel &&
|
isMobileDataTunnel == other.isMobileDataTunnel &&
|
||||||
isEthernetTunnel == other.isEthernetTunnel &&
|
isEthernetTunnel == other.isEthernetTunnel &&
|
||||||
pingTarget == other.pingTarget &&
|
isPingEnabled == other.isPingEnabled &&
|
||||||
restartOnPingFailure == other.restartOnPingFailure &&
|
pingIp == other.pingIp &&
|
||||||
|
pingCooldown == other.pingCooldown &&
|
||||||
|
pingInterval == other.pingInterval &&
|
||||||
tunnelNetworks == other.tunnelNetworks &&
|
tunnelNetworks == other.tunnelNetworks &&
|
||||||
isIpv4Preferred == other.isIpv4Preferred
|
isIpv4Preferred == other.isIpv4Preferred
|
||||||
}
|
}
|
||||||
@@ -66,8 +72,10 @@ data class TunnelConf(
|
|||||||
isPrimaryTunnel: Boolean = this.isPrimaryTunnel,
|
isPrimaryTunnel: Boolean = this.isPrimaryTunnel,
|
||||||
amQuick: String = this.amQuick,
|
amQuick: String = this.amQuick,
|
||||||
isActive: Boolean = this.isActive,
|
isActive: Boolean = this.isActive,
|
||||||
restartOnPingFailure: Boolean = this.restartOnPingFailure,
|
isPingEnabled: Boolean = this.isPingEnabled,
|
||||||
pingIp: String? = this.pingTarget,
|
pingInterval: Long? = this.pingInterval,
|
||||||
|
pingCooldown: Long? = this.pingCooldown,
|
||||||
|
pingIp: String? = this.pingIp,
|
||||||
isEthernetTunnel: Boolean = this.isEthernetTunnel,
|
isEthernetTunnel: Boolean = this.isEthernetTunnel,
|
||||||
isIpv4Preferred: Boolean = this.isIpv4Preferred,
|
isIpv4Preferred: Boolean = this.isIpv4Preferred,
|
||||||
): TunnelConf {
|
): TunnelConf {
|
||||||
@@ -80,11 +88,12 @@ data class TunnelConf(
|
|||||||
isPrimaryTunnel,
|
isPrimaryTunnel,
|
||||||
amQuick,
|
amQuick,
|
||||||
isActive,
|
isActive,
|
||||||
|
isPingEnabled,
|
||||||
|
pingInterval,
|
||||||
|
pingCooldown,
|
||||||
pingIp,
|
pingIp,
|
||||||
restartOnPingFailure,
|
|
||||||
isEthernetTunnel,
|
isEthernetTunnel,
|
||||||
isIpv4Preferred,
|
isIpv4Preferred,
|
||||||
position,
|
|
||||||
)
|
)
|
||||||
.apply { stateChangeCallback = this@TunnelConf.stateChangeCallback }
|
.apply { stateChangeCallback = this@TunnelConf.stateChangeCallback }
|
||||||
}
|
}
|
||||||
@@ -125,6 +134,21 @@ data class TunnelConf(
|
|||||||
return tunnelName
|
return tunnelName
|
||||||
}
|
}
|
||||||
|
|
||||||
|
suspend fun isTunnelPingable(context: CoroutineContext): Boolean {
|
||||||
|
return withContext(context) {
|
||||||
|
val config = toWgConfig()
|
||||||
|
if (pingIp != null) {
|
||||||
|
return@withContext InetAddress.getByName(pingIp)
|
||||||
|
.isReachable(Constants.PING_TIMEOUT.toInt())
|
||||||
|
.also { Timber.i("Ping reachable $pingIp: $it") }
|
||||||
|
}
|
||||||
|
config.peers
|
||||||
|
.map { peer -> peer.isReachable() }
|
||||||
|
.all { true }
|
||||||
|
.also { Timber.i("Ping of all peers reachable: $it") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun configFromWgQuick(wgQuick: String): Config {
|
fun configFromWgQuick(wgQuick: String): Config {
|
||||||
val inputStream: InputStream = wgQuick.byteInputStream()
|
val inputStream: InputStream = wgQuick.byteInputStream()
|
||||||
|
|||||||
-4
@@ -41,9 +41,5 @@ interface AppStateRepository {
|
|||||||
|
|
||||||
suspend fun getRemoteKey(): String?
|
suspend fun getRemoteKey(): String?
|
||||||
|
|
||||||
suspend fun setShowDetailedPingStats(showDetailedPing: Boolean)
|
|
||||||
|
|
||||||
suspend fun getShowDetailedPing(): Boolean
|
|
||||||
|
|
||||||
val flow: Flow<AppState>
|
val flow: Flow<AppState>
|
||||||
}
|
}
|
||||||
|
|||||||
+119
-83
@@ -1,8 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.state
|
package com.zaneschepke.wireguardautotunnel.domain.state
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.StateChange
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.allDown
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.hasActive
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.isUp
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent
|
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent.*
|
import com.zaneschepke.wireguardautotunnel.domain.events.KillSwitchEvent
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.isMatchingToWildcardList
|
import com.zaneschepke.wireguardautotunnel.util.extensions.isMatchingToWildcardList
|
||||||
@@ -14,68 +16,6 @@ data class AutoTunnelState(
|
|||||||
val tunnels: List<TunnelConf> = emptyList(),
|
val tunnels: List<TunnelConf> = emptyList(),
|
||||||
) {
|
) {
|
||||||
|
|
||||||
fun determineAutoTunnelEvent(stateChange: StateChange): AutoTunnelEvent {
|
|
||||||
when (val change = stateChange) {
|
|
||||||
is StateChange.NetworkChange,
|
|
||||||
is StateChange.SettingsChange -> {
|
|
||||||
// Compute desired tunnel based on network conditions
|
|
||||||
var desiredTunnel: TunnelConf? = null
|
|
||||||
if (networkState.isEthernetConnected && settings.isTunnelOnEthernetEnabled) {
|
|
||||||
desiredTunnel = preferredEthernetTunnel()
|
|
||||||
} else if (isMobileDataActive() && settings.isTunnelOnMobileDataEnabled) {
|
|
||||||
desiredTunnel = preferredMobileDataTunnel()
|
|
||||||
} else if (
|
|
||||||
isWifiActive() && settings.isTunnelOnWifiEnabled && !isCurrentSSIDTrusted()
|
|
||||||
) {
|
|
||||||
desiredTunnel = preferredWifiTunnel()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Override for no connectivity if enabled
|
|
||||||
if (isNoConnectivity() && settings.isStopOnNoInternetEnabled) {
|
|
||||||
desiredTunnel = null
|
|
||||||
}
|
|
||||||
|
|
||||||
// Determine current active tunnel (assuming only one can be active)
|
|
||||||
val currentTunnel = activeTunnels.entries.firstOrNull()?.key
|
|
||||||
|
|
||||||
// Handle tunnel start/stop/change
|
|
||||||
if (desiredTunnel != null) {
|
|
||||||
if (currentTunnel != desiredTunnel) {
|
|
||||||
// Start or switch to the desired tunnel (overrides any kill switch)
|
|
||||||
return Start(desiredTunnel)
|
|
||||||
}
|
|
||||||
// If already active and matching, fall through to kill switch check (though
|
|
||||||
// unlikely needed)
|
|
||||||
} else {
|
|
||||||
if (currentTunnel != null) {
|
|
||||||
// Stop the active tunnel (then next emission can handle kill switch if
|
|
||||||
// needed)
|
|
||||||
return AutoTunnelEvent.Stop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Handle kill switch only if no user tunnel is or will be active
|
|
||||||
if (stopKillSwitchOnTrusted()) {
|
|
||||||
return AutoTunnelEvent.StopKillSwitch
|
|
||||||
}
|
|
||||||
if (startKillSwitch()) {
|
|
||||||
val allowedIps =
|
|
||||||
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
|
||||||
else emptyList()
|
|
||||||
return StartKillSwitch(allowedIps)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
is StateChange.MonitoringChange -> {
|
|
||||||
val bounceTunnels = bounceOnPingFailed()
|
|
||||||
if (bounceTunnels.isNotEmpty()) {
|
|
||||||
return Bounce(bounceTunnels)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
is StateChange.ActiveTunnelsChange -> Unit
|
|
||||||
}
|
|
||||||
return DoNothing
|
|
||||||
}
|
|
||||||
|
|
||||||
// also need to check for Wi-Fi state as there is some overlap when they are both connected
|
// also need to check for Wi-Fi state as there is some overlap when they are both connected
|
||||||
private fun isMobileDataActive(): Boolean {
|
private fun isMobileDataActive(): Boolean {
|
||||||
return !networkState.isEthernetConnected &&
|
return !networkState.isEthernetConnected &&
|
||||||
@@ -83,22 +23,32 @@ data class AutoTunnelState(
|
|||||||
networkState.isMobileDataConnected
|
networkState.isMobileDataConnected
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun isMobileTunnelDataChangeNeeded(): Boolean {
|
||||||
|
val preferredTunnel = preferredMobileDataTunnel()
|
||||||
|
return preferredTunnel != null &&
|
||||||
|
activeTunnels.isNotEmpty() &&
|
||||||
|
!activeTunnels.isUp(preferredTunnel)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isEthernetTunnelChangeNeeded(): Boolean {
|
||||||
|
val preferredTunnel = preferredEthernetTunnel()
|
||||||
|
return preferredTunnel != null &&
|
||||||
|
activeTunnels.isNotEmpty() &&
|
||||||
|
!activeTunnels.isUp(preferredTunnel)
|
||||||
|
}
|
||||||
|
|
||||||
private fun preferredMobileDataTunnel(): TunnelConf? {
|
private fun preferredMobileDataTunnel(): TunnelConf? {
|
||||||
return tunnels.firstOrNull { it.isMobileDataTunnel }
|
return tunnels.firstOrNull { it.isMobileDataTunnel }
|
||||||
?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
||||||
?: tunnels.firstOrNull()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun preferredEthernetTunnel(): TunnelConf? {
|
private fun preferredEthernetTunnel(): TunnelConf? {
|
||||||
return tunnels.firstOrNull { it.isEthernetTunnel }
|
return tunnels.firstOrNull { it.isEthernetTunnel }
|
||||||
?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
||||||
?: tunnels.firstOrNull()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun preferredWifiTunnel(): TunnelConf? {
|
private fun preferredWifiTunnel(): TunnelConf? {
|
||||||
return getTunnelWithMatchingTunnelNetwork()
|
return getTunnelWithMatchingTunnelNetwork() ?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
||||||
?: tunnels.firstOrNull { it.isPrimaryTunnel }
|
|
||||||
?: tunnels.firstOrNull()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ignore cellular state as there is overlap where it may still be active, but not prioritized
|
// ignore cellular state as there is overlap where it may still be active, but not prioritized
|
||||||
@@ -106,6 +56,19 @@ data class AutoTunnelState(
|
|||||||
return !networkState.isEthernetConnected && networkState.isWifiConnected
|
return !networkState.isEthernetConnected && networkState.isWifiConnected
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun startOnEthernet(): Boolean {
|
||||||
|
return networkState.isEthernetConnected &&
|
||||||
|
settings.isTunnelOnEthernetEnabled &&
|
||||||
|
activeTunnels.allDown()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopOnEthernet(): Boolean {
|
||||||
|
return networkState.isEthernetConnected &&
|
||||||
|
!settings.isTunnelOnEthernetEnabled &&
|
||||||
|
activeTunnels.hasActive()
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO test removed kill switch state check
|
||||||
private fun stopKillSwitchOnTrusted(): Boolean {
|
private fun stopKillSwitchOnTrusted(): Boolean {
|
||||||
return networkState.isWifiConnected &&
|
return networkState.isWifiConnected &&
|
||||||
settings.isVpnKillSwitchEnabled &&
|
settings.isVpnKillSwitchEnabled &&
|
||||||
@@ -113,6 +76,7 @@ data class AutoTunnelState(
|
|||||||
isCurrentSSIDTrusted()
|
isCurrentSSIDTrusted()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO test, removed kill switch state check
|
||||||
private fun startKillSwitch(): Boolean {
|
private fun startKillSwitch(): Boolean {
|
||||||
return settings.isVpnKillSwitchEnabled &&
|
return settings.isVpnKillSwitchEnabled &&
|
||||||
(!settings.isDisableKillSwitchOnTrustedEnabled || !isCurrentSSIDTrusted())
|
(!settings.isDisableKillSwitchOnTrustedEnabled || !isCurrentSSIDTrusted())
|
||||||
@@ -124,21 +88,93 @@ data class AutoTunnelState(
|
|||||||
!networkState.isMobileDataConnected
|
!networkState.isMobileDataConnected
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun bounceOnPingFailed(): List<Pair<TunnelConf, Map<String, String?>>> {
|
private fun stopOnMobileData(): Boolean {
|
||||||
return activeTunnels.entries
|
return isMobileDataActive() &&
|
||||||
.filter { (tunnel, state) ->
|
!settings.isTunnelOnMobileDataEnabled &&
|
||||||
tunnel.restartOnPingFailure &&
|
activeTunnels.hasActive()
|
||||||
(state.pingStates?.any { (key, pingState) ->
|
}
|
||||||
pingState.failureReason == FailureReason.PingFailed
|
|
||||||
} ?: false)
|
private fun startOnMobileData(): Boolean {
|
||||||
}
|
return isMobileDataActive() &&
|
||||||
.map { (tunnel, state) ->
|
settings.isTunnelOnMobileDataEnabled &&
|
||||||
val peerMap =
|
activeTunnels.allDown()
|
||||||
(state.statistics?.getPeers()?.associate { peerKey ->
|
}
|
||||||
peerKey.toBase64() to state.statistics.peerStats(peerKey)?.resolvedEndpoint
|
|
||||||
} ?: emptyMap())
|
private fun changeOnMobileData(): Boolean {
|
||||||
Pair(tunnel, peerMap)
|
return isMobileDataActive() &&
|
||||||
|
settings.isTunnelOnMobileDataEnabled &&
|
||||||
|
isMobileTunnelDataChangeNeeded()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun changeOnEthernet(): Boolean {
|
||||||
|
return networkState.isEthernetConnected &&
|
||||||
|
settings.isTunnelOnEthernetEnabled &&
|
||||||
|
isEthernetTunnelChangeNeeded()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopOnWifi(): Boolean {
|
||||||
|
return isWifiActive() && !settings.isTunnelOnWifiEnabled && activeTunnels.hasActive()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopOnTrustedWifi(): Boolean {
|
||||||
|
return isWifiActive() &&
|
||||||
|
settings.isTunnelOnWifiEnabled &&
|
||||||
|
activeTunnels.hasActive() &&
|
||||||
|
isCurrentSSIDTrusted()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startOnUntrustedWifi(): Boolean {
|
||||||
|
return isWifiActive() &&
|
||||||
|
settings.isTunnelOnWifiEnabled &&
|
||||||
|
activeTunnels.allDown() &&
|
||||||
|
!isCurrentSSIDTrusted()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun changeOnUntrustedWifi(): Boolean {
|
||||||
|
return isWifiActive() &&
|
||||||
|
settings.isTunnelOnWifiEnabled &&
|
||||||
|
activeTunnels.hasActive() &&
|
||||||
|
!isCurrentSSIDTrusted() &&
|
||||||
|
!isWifiTunnelPreferred()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isWifiTunnelPreferred(): Boolean {
|
||||||
|
val preferred = preferredWifiTunnel()
|
||||||
|
return preferred?.let { activeTunnels.isUp(it) } ?: true
|
||||||
|
}
|
||||||
|
|
||||||
|
fun asAutoTunnelEvent(): AutoTunnelEvent {
|
||||||
|
return when {
|
||||||
|
// ethernet scenarios
|
||||||
|
stopOnEthernet() -> AutoTunnelEvent.Stop
|
||||||
|
startOnEthernet() || changeOnEthernet() ->
|
||||||
|
AutoTunnelEvent.Start(preferredEthernetTunnel())
|
||||||
|
// mobile data scenarios
|
||||||
|
stopOnMobileData() -> AutoTunnelEvent.Stop
|
||||||
|
startOnMobileData() || changeOnMobileData() ->
|
||||||
|
AutoTunnelEvent.Start(preferredMobileDataTunnel())
|
||||||
|
// wifi scenarios
|
||||||
|
stopOnWifi() -> AutoTunnelEvent.Stop
|
||||||
|
stopOnTrustedWifi() -> AutoTunnelEvent.Stop
|
||||||
|
startOnUntrustedWifi() || changeOnUntrustedWifi() ->
|
||||||
|
AutoTunnelEvent.Start(preferredWifiTunnel())
|
||||||
|
// no connectivity
|
||||||
|
isNoConnectivity() && settings.isStopOnNoInternetEnabled -> AutoTunnelEvent.Stop
|
||||||
|
else -> AutoTunnelEvent.DoNothing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun asKillSwitchEvent(): KillSwitchEvent {
|
||||||
|
return when {
|
||||||
|
stopKillSwitchOnTrusted() -> KillSwitchEvent.Stop
|
||||||
|
startKillSwitch() -> {
|
||||||
|
val allowedIps =
|
||||||
|
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
||||||
|
else emptyList()
|
||||||
|
KillSwitchEvent.Start(allowedIps)
|
||||||
}
|
}
|
||||||
|
else -> KillSwitchEvent.DoNothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun isCurrentSSIDTrusted(): Boolean {
|
private fun isCurrentSSIDTrusted(): Boolean {
|
||||||
|
|||||||
@@ -1,38 +1,12 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.state
|
package com.zaneschepke.wireguardautotunnel.domain.state
|
||||||
|
|
||||||
import com.zaneschepke.networkmonitor.ConnectivityState
|
|
||||||
import com.zaneschepke.networkmonitor.util.WifiSecurityType
|
|
||||||
|
|
||||||
data class NetworkState(
|
data class NetworkState(
|
||||||
val isWifiConnected: Boolean = false,
|
val isWifiConnected: Boolean = false,
|
||||||
val isMobileDataConnected: Boolean = false,
|
val isMobileDataConnected: Boolean = false,
|
||||||
val isEthernetConnected: Boolean = false,
|
val isEthernetConnected: Boolean = false,
|
||||||
val wifiName: String? = null,
|
val wifiName: String? = null,
|
||||||
val isWifiSecure: Boolean? = null,
|
|
||||||
val locationServicesEnabled: Boolean? = null,
|
|
||||||
val locationPermissionGranted: Boolean? = null,
|
|
||||||
) {
|
) {
|
||||||
fun hasNoCapabilities(): Boolean {
|
fun hasNoCapabilities(): Boolean {
|
||||||
return !isWifiConnected && !isMobileDataConnected && !isEthernetConnected
|
return !isWifiConnected && !isMobileDataConnected && !isEthernetConnected
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun from(connectivityState: ConnectivityState): NetworkState {
|
|
||||||
return NetworkState(
|
|
||||||
isWifiSecure =
|
|
||||||
when (connectivityState.wifiState.securityType) {
|
|
||||||
WifiSecurityType.OPEN,
|
|
||||||
WifiSecurityType.UNKNOWN -> false
|
|
||||||
null -> null
|
|
||||||
else -> true
|
|
||||||
},
|
|
||||||
isWifiConnected = connectivityState.wifiState.connected,
|
|
||||||
isMobileDataConnected = connectivityState.cellularConnected,
|
|
||||||
isEthernetConnected = connectivityState.ethernetConnected,
|
|
||||||
wifiName = connectivityState.wifiState.ssid,
|
|
||||||
locationPermissionGranted = connectivityState.wifiState.locationPermissionsGranted,
|
|
||||||
locationServicesEnabled = connectivityState.wifiState.locationServicesEnabled,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.state
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelMonitor.Companion.CLOUDFLARE_IPV4_IP
|
|
||||||
|
|
||||||
enum class FailureReason {
|
|
||||||
NoConnectivity,
|
|
||||||
PingFailed,
|
|
||||||
NoResolvedEndpoint,
|
|
||||||
Timeout,
|
|
||||||
Unknown,
|
|
||||||
}
|
|
||||||
|
|
||||||
data class PingState(
|
|
||||||
val transmitted: Int = 0,
|
|
||||||
val received: Int = 0,
|
|
||||||
val packetLoss: Double = 0.0,
|
|
||||||
val rttMin: Double = 0.0,
|
|
||||||
val rttMax: Double = 0.0,
|
|
||||||
val rttAvg: Double = 0.0,
|
|
||||||
val rttStddev: Double = 0.0,
|
|
||||||
val isReachable: Boolean = false,
|
|
||||||
val lastSuccessfulPingMillis: Long? = null,
|
|
||||||
val lastPingAttemptMillis: Long? = null,
|
|
||||||
val failureReason: FailureReason? = null,
|
|
||||||
val pingTarget: String = CLOUDFLARE_IPV4_IP,
|
|
||||||
)
|
|
||||||
@@ -1,13 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.domain.state
|
package com.zaneschepke.wireguardautotunnel.domain.state
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import org.amnezia.awg.crypto.Key
|
|
||||||
|
|
||||||
data class TunnelState(
|
data class TunnelState(
|
||||||
val status: TunnelStatus = TunnelStatus.Down,
|
val status: TunnelStatus = TunnelStatus.Down,
|
||||||
val backendState: BackendStatus = BackendStatus.Inactive,
|
val backendState: BackendState = BackendState.INACTIVE,
|
||||||
val statistics: TunnelStatistics? = null,
|
val statistics: TunnelStatistics? = null,
|
||||||
val pingStates: Map<Key, PingState>? = null,
|
|
||||||
val handshakeSuccessLogs: Boolean? = null,
|
|
||||||
)
|
)
|
||||||
|
|||||||
+3
-14
@@ -3,24 +3,13 @@ package com.zaneschepke.wireguardautotunnel.domain.state
|
|||||||
import org.amnezia.awg.crypto.Key
|
import org.amnezia.awg.crypto.Key
|
||||||
|
|
||||||
abstract class TunnelStatistics {
|
abstract class TunnelStatistics {
|
||||||
open class PeerStats(
|
@JvmRecord
|
||||||
|
data class PeerStats(
|
||||||
val rxBytes: Long,
|
val rxBytes: Long,
|
||||||
val txBytes: Long,
|
val txBytes: Long,
|
||||||
val latestHandshakeEpochMillis: Long,
|
val latestHandshakeEpochMillis: Long,
|
||||||
val resolvedEndpoint: String,
|
val resolvedEndpoint: String,
|
||||||
) {
|
)
|
||||||
// mimic data class copy
|
|
||||||
open fun copy(
|
|
||||||
rxBytes: Long = this.rxBytes,
|
|
||||||
txBytes: Long = this.txBytes,
|
|
||||||
latestHandshakeEpochMillis: Long = this.latestHandshakeEpochMillis,
|
|
||||||
resolvedEndpoint: String = this.resolvedEndpoint,
|
|
||||||
): PeerStats = PeerStats(rxBytes, txBytes, latestHandshakeEpochMillis, resolvedEndpoint)
|
|
||||||
|
|
||||||
// Manual toString: Format like data class
|
|
||||||
override fun toString(): String =
|
|
||||||
"PeerStats(rxBytes=$rxBytes, txBytes=$txBytes, latestHandshakeEpochMillis=$latestHandshakeEpochMillis, resolvedEndpoint=$resolvedEndpoint)"
|
|
||||||
}
|
|
||||||
|
|
||||||
abstract fun peerStats(peer: Key): PeerStats?
|
abstract fun peerStats(peer: Key): PeerStats?
|
||||||
|
|
||||||
|
|||||||
@@ -45,8 +45,4 @@ sealed class Route {
|
|||||||
@Serializable data class TunnelAutoTunnel(val id: Int) : Route()
|
@Serializable data class TunnelAutoTunnel(val id: Int) : Route()
|
||||||
|
|
||||||
@Serializable data object Logs : Route()
|
@Serializable data object Logs : Route()
|
||||||
|
|
||||||
@Serializable data object Sort : Route()
|
|
||||||
|
|
||||||
@Serializable data object TunnelMonitoring : Route()
|
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-19
@@ -1,4 +1,4 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.dropdown
|
package com.zaneschepke.wireguardautotunnel.ui.common
|
||||||
|
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
@@ -6,7 +6,11 @@ import androidx.compose.foundation.layout.height
|
|||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.filled.ArrowDropDown
|
import androidx.compose.material.icons.filled.ArrowDropDown
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.DropdownMenu
|
||||||
|
import androidx.compose.material3.DropdownMenuItem
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
@@ -16,9 +20,9 @@ import com.zaneschepke.wireguardautotunnel.R
|
|||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun <T> DropdownSelector(
|
fun <T> DropdownSelector(
|
||||||
currentValue: T?,
|
currentValue: T,
|
||||||
options: List<T?>,
|
options: List<T>,
|
||||||
onValueSelected: (T?) -> Unit,
|
onValueSelected: (T) -> Unit,
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier = Modifier,
|
||||||
label: @Composable (() -> Unit)? = null,
|
label: @Composable (() -> Unit)? = null,
|
||||||
isExpanded: Boolean = false,
|
isExpanded: Boolean = false,
|
||||||
@@ -29,10 +33,7 @@ fun <T> DropdownSelector(
|
|||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
) {
|
) {
|
||||||
if (label != null) label()
|
if (label != null) label()
|
||||||
Text(
|
Text(text = currentValue.toString(), style = MaterialTheme.typography.bodyMedium)
|
||||||
text = currentValue?.toString() ?: stringResource(R.string._default),
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
)
|
|
||||||
Icon(Icons.Default.ArrowDropDown, contentDescription = stringResource(R.string.dropdown))
|
Icon(Icons.Default.ArrowDropDown, contentDescription = stringResource(R.string.dropdown))
|
||||||
}
|
}
|
||||||
DropdownMenu(
|
DropdownMenu(
|
||||||
@@ -43,20 +44,11 @@ fun <T> DropdownSelector(
|
|||||||
onDismissRequest = onDismiss,
|
onDismissRequest = onDismiss,
|
||||||
) {
|
) {
|
||||||
options.forEach { option ->
|
options.forEach { option ->
|
||||||
if (option == null) {
|
|
||||||
return@forEach DropdownMenuItem(
|
|
||||||
text = { Text(text = stringResource(R.string._default)) },
|
|
||||||
onClick = {
|
|
||||||
onValueSelected(null)
|
|
||||||
onDismiss()
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
DropdownMenuItem(
|
DropdownMenuItem(
|
||||||
text = { Text(text = option.toString()) },
|
text = { Text(text = option.toString()) },
|
||||||
onClick = {
|
onClick = {
|
||||||
onValueSelected(option)
|
onValueSelected(option)
|
||||||
onDismiss()
|
onDismiss() // Close dropdown after selection
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
+33
-6
@@ -3,41 +3,68 @@ package com.zaneschepke.wireguardautotunnel.ui.common
|
|||||||
import androidx.compose.animation.animateContentSize
|
import androidx.compose.animation.animateContentSize
|
||||||
import androidx.compose.foundation.ExperimentalFoundationApi
|
import androidx.compose.foundation.ExperimentalFoundationApi
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.combinedClickable
|
||||||
|
import androidx.compose.foundation.indication
|
||||||
|
import androidx.compose.foundation.interaction.MutableInteractionSource
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.*
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.ripple
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.hapticfeedback.HapticFeedbackType
|
||||||
|
import androidx.compose.ui.platform.LocalHapticFeedback
|
||||||
import androidx.compose.ui.text.style.TextOverflow
|
import androidx.compose.ui.text.style.TextOverflow
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalIsAndroidTV
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class)
|
@OptIn(ExperimentalFoundationApi::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun ExpandingRowListItem(
|
fun ExpandingRowListItem(
|
||||||
leading: @Composable () -> Unit,
|
leading: @Composable () -> Unit,
|
||||||
text: String,
|
text: String,
|
||||||
|
onHold: () -> Unit,
|
||||||
|
onClick: () -> Unit,
|
||||||
|
onDoubleClick: () -> Unit,
|
||||||
trailing: @Composable () -> Unit,
|
trailing: @Composable () -> Unit,
|
||||||
isSelected: Boolean,
|
isSelected: Boolean,
|
||||||
expanded: @Composable () -> Unit,
|
expanded: (@Composable () -> Unit)?,
|
||||||
modifier: Modifier = Modifier,
|
|
||||||
) {
|
) {
|
||||||
|
val isTv = LocalIsAndroidTV.current
|
||||||
|
val haptic = LocalHapticFeedback.current
|
||||||
|
val interactionSource = remember { MutableInteractionSource() }
|
||||||
|
|
||||||
Box(
|
Box(
|
||||||
modifier =
|
modifier =
|
||||||
modifier
|
Modifier.animateContentSize()
|
||||||
.animateContentSize()
|
|
||||||
.clip(RoundedCornerShape(8.dp))
|
.clip(RoundedCornerShape(8.dp))
|
||||||
.background(
|
.background(
|
||||||
if (isSelected) MaterialTheme.colorScheme.primary.copy(alpha = 0.1f)
|
if (isSelected) MaterialTheme.colorScheme.primary.copy(alpha = 0.1f)
|
||||||
else Color.Transparent
|
else Color.Transparent
|
||||||
)
|
)
|
||||||
|
.then(
|
||||||
|
if (!isTv) {
|
||||||
|
Modifier.combinedClickable(
|
||||||
|
interactionSource = interactionSource,
|
||||||
|
indication = ripple(),
|
||||||
|
onClick = onClick,
|
||||||
|
onLongClick = {
|
||||||
|
haptic.performHapticFeedback(HapticFeedbackType.LongPress)
|
||||||
|
onHold()
|
||||||
|
},
|
||||||
|
onDoubleClick = onDoubleClick,
|
||||||
|
)
|
||||||
|
} else Modifier
|
||||||
|
)
|
||||||
) {
|
) {
|
||||||
Column {
|
Column {
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier.fillMaxWidth().padding(horizontal = 12.dp).height(48.dp),
|
modifier = Modifier.fillMaxWidth().padding(horizontal = 12.dp),
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.SpaceBetween,
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
) {
|
) {
|
||||||
@@ -57,7 +84,7 @@ fun ExpandingRowListItem(
|
|||||||
}
|
}
|
||||||
trailing()
|
trailing()
|
||||||
}
|
}
|
||||||
expanded()
|
expanded?.invoke()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-1
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.animation
|
package com.zaneschepke.wireguardautotunnel.ui.common.animation
|
||||||
|
|
||||||
import androidx.compose.animation.core.*
|
import androidx.compose.animation.core.LinearEasing
|
||||||
|
import androidx.compose.animation.core.animateFloat
|
||||||
|
import androidx.compose.animation.core.infiniteRepeatable
|
||||||
|
import androidx.compose.animation.core.rememberInfiniteTransition
|
||||||
|
import androidx.compose.animation.core.tween
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
|||||||
-74
@@ -1,74 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.banner
|
|
||||||
|
|
||||||
import androidx.compose.animation.AnimatedVisibility
|
|
||||||
import androidx.compose.animation.expandVertically
|
|
||||||
import androidx.compose.animation.shrinkVertically
|
|
||||||
import androidx.compose.foundation.layout.*
|
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
|
||||||
import androidx.compose.material.icons.Icons
|
|
||||||
import androidx.compose.material.icons.outlined.Warning
|
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
|
||||||
import androidx.compose.material3.Surface
|
|
||||||
import androidx.compose.material3.Text
|
|
||||||
import androidx.compose.runtime.Composable
|
|
||||||
import androidx.compose.ui.Alignment
|
|
||||||
import androidx.compose.ui.Modifier
|
|
||||||
import androidx.compose.ui.draw.clip
|
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.unit.dp
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.Straw
|
|
||||||
|
|
||||||
@Composable
|
|
||||||
fun WarningBanner(
|
|
||||||
title: String,
|
|
||||||
visible: Boolean,
|
|
||||||
modifier: Modifier = Modifier,
|
|
||||||
trailing: (@Composable () -> Unit)? = null,
|
|
||||||
) {
|
|
||||||
AnimatedVisibility(visible = visible, enter = expandVertically(), exit = shrinkVertically()) {
|
|
||||||
Surface(
|
|
||||||
color = MaterialTheme.colorScheme.secondary,
|
|
||||||
modifier = modifier.fillMaxWidth().clip(RoundedCornerShape(8.dp)),
|
|
||||||
) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
modifier = Modifier.fillMaxWidth().padding(horizontal = 12.dp).padding(start = 2.dp),
|
|
||||||
) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(12.dp, Alignment.Start),
|
|
||||||
modifier = Modifier.weight(4f, false).fillMaxWidth(),
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
Icons.Outlined.Warning,
|
|
||||||
stringResource(R.string.warning),
|
|
||||||
Modifier.size(18.dp),
|
|
||||||
tint = Straw,
|
|
||||||
)
|
|
||||||
Column(
|
|
||||||
horizontalAlignment = Alignment.Start,
|
|
||||||
verticalArrangement =
|
|
||||||
Arrangement.spacedBy(2.dp, Alignment.CenterVertically),
|
|
||||||
modifier = Modifier.fillMaxWidth().weight(1f).padding(start = 6.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
title,
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
color = MaterialTheme.colorScheme.onSurface,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
trailing?.let {
|
|
||||||
Box(
|
|
||||||
contentAlignment = Alignment.CenterEnd,
|
|
||||||
modifier = Modifier.padding(start = 16.dp),
|
|
||||||
) {
|
|
||||||
it()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+5
-1
@@ -3,7 +3,11 @@ package com.zaneschepke.wireguardautotunnel.ui.common.button
|
|||||||
import androidx.compose.foundation.clickable
|
import androidx.compose.foundation.clickable
|
||||||
import androidx.compose.foundation.layout.Spacer
|
import androidx.compose.foundation.layout.Spacer
|
||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.ButtonDefaults
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TextButton
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.graphics.vector.ImageVector
|
import androidx.compose.ui.graphics.vector.ImageVector
|
||||||
|
|||||||
+23
-4
@@ -2,23 +2,34 @@ package com.zaneschepke.wireguardautotunnel.ui.common.button
|
|||||||
|
|
||||||
import androidx.compose.foundation.BorderStroke
|
import androidx.compose.foundation.BorderStroke
|
||||||
import androidx.compose.foundation.clickable
|
import androidx.compose.foundation.clickable
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.IntrinsicSize
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.Card
|
import androidx.compose.material3.Card
|
||||||
import androidx.compose.material3.CardDefaults
|
import androidx.compose.material3.CardDefaults
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.vector.ImageVector
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
|
||||||
|
|
||||||
@androidx.compose.runtime.Composable
|
@androidx.compose.runtime.Composable
|
||||||
fun IconSurfaceButton(
|
fun IconSurfaceButton(
|
||||||
title: String,
|
title: String,
|
||||||
onClick: () -> Unit,
|
onClick: () -> Unit,
|
||||||
selected: Boolean,
|
selected: Boolean,
|
||||||
leading: (@Composable () -> Unit)? = null,
|
leadingIcon: ImageVector? = null,
|
||||||
description: String? = null,
|
description: String? = null,
|
||||||
) {
|
) {
|
||||||
val border: BorderStroke? =
|
val border: BorderStroke? =
|
||||||
@@ -53,7 +64,15 @@ fun IconSurfaceButton(
|
|||||||
modifier =
|
modifier =
|
||||||
Modifier.padding(vertical = if (description == null) 10.dp else 0.dp),
|
Modifier.padding(vertical = if (description == null) 10.dp else 0.dp),
|
||||||
) {
|
) {
|
||||||
leading?.invoke()
|
leadingIcon?.let {
|
||||||
|
Icon(
|
||||||
|
leadingIcon,
|
||||||
|
leadingIcon.name,
|
||||||
|
Modifier.size(iconSize),
|
||||||
|
if (selected) MaterialTheme.colorScheme.primary
|
||||||
|
else MaterialTheme.colorScheme.onSurface,
|
||||||
|
)
|
||||||
|
}
|
||||||
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
|
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
|
||||||
Text(title, style = MaterialTheme.typography.titleMedium)
|
Text(title, style = MaterialTheme.typography.titleMedium)
|
||||||
description?.let {
|
description?.let {
|
||||||
|
|||||||
+11
-2
@@ -2,9 +2,18 @@ package com.zaneschepke.wireguardautotunnel.ui.common.button
|
|||||||
|
|
||||||
import androidx.compose.foundation.clickable
|
import androidx.compose.foundation.clickable
|
||||||
import androidx.compose.foundation.interaction.MutableInteractionSource
|
import androidx.compose.foundation.interaction.MutableInteractionSource
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.Card
|
||||||
|
import androidx.compose.material3.CardDefaults
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.ripple
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.remember
|
import androidx.compose.runtime.remember
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
|
|||||||
+3
-5
@@ -1,15 +1,13 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.button.surface
|
package com.zaneschepke.wireguardautotunnel.ui.common.button.surface
|
||||||
|
|
||||||
import androidx.compose.foundation.layout.height
|
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.graphics.vector.ImageVector
|
||||||
import androidx.compose.ui.unit.dp
|
|
||||||
|
|
||||||
data class SelectionItem(
|
data class SelectionItem(
|
||||||
val leading: (@Composable () -> Unit)? = null,
|
val leadingIcon: ImageVector? = null,
|
||||||
val trailing: (@Composable () -> Unit)? = null,
|
val trailing: (@Composable () -> Unit)? = null,
|
||||||
val title: (@Composable () -> Unit),
|
val title: (@Composable () -> Unit),
|
||||||
val description: (@Composable () -> Unit)? = null,
|
val description: (@Composable () -> Unit)? = null,
|
||||||
val onClick: (() -> Unit)? = null,
|
val onClick: (() -> Unit)? = null,
|
||||||
val modifier: Modifier = Modifier.height(64.dp),
|
val height: Int = 64,
|
||||||
)
|
)
|
||||||
|
|||||||
+15
-8
@@ -5,18 +5,19 @@ import androidx.compose.foundation.layout.*
|
|||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.Card
|
import androidx.compose.material3.Card
|
||||||
import androidx.compose.material3.CardDefaults
|
import androidx.compose.material3.CardDefaults
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun SurfaceSelectionGroupButton(items: List<SelectionItem>, modifier: Modifier = Modifier) {
|
fun SurfaceSelectionGroupButton(items: List<SelectionItem>) {
|
||||||
|
|
||||||
Card(
|
Card(
|
||||||
modifier = modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
shape = RoundedCornerShape(8.dp),
|
shape = RoundedCornerShape(8.dp),
|
||||||
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surface),
|
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surface),
|
||||||
) {
|
) {
|
||||||
@@ -24,10 +25,9 @@ fun SurfaceSelectionGroupButton(items: List<SelectionItem>, modifier: Modifier =
|
|||||||
Box(
|
Box(
|
||||||
contentAlignment = Alignment.Center,
|
contentAlignment = Alignment.Center,
|
||||||
modifier =
|
modifier =
|
||||||
modifier
|
Modifier.fillMaxWidth()
|
||||||
.fillMaxWidth()
|
|
||||||
.clip(RoundedCornerShape(8.dp))
|
.clip(RoundedCornerShape(8.dp))
|
||||||
.then(item.onClick?.let { modifier.clickable { it() } } ?: modifier),
|
.then(item.onClick?.let { Modifier.clickable { it() } } ?: Modifier),
|
||||||
) {
|
) {
|
||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
@@ -37,14 +37,21 @@ fun SurfaceSelectionGroupButton(items: List<SelectionItem>, modifier: Modifier =
|
|||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
modifier = Modifier.weight(4f, false).fillMaxWidth(),
|
modifier = Modifier.weight(4f, false).fillMaxWidth(),
|
||||||
) {
|
) {
|
||||||
item.leading?.invoke()
|
item.leadingIcon?.let { icon ->
|
||||||
|
Icon(
|
||||||
|
icon,
|
||||||
|
icon.name,
|
||||||
|
modifier = Modifier.size(iconSize),
|
||||||
|
tint = MaterialTheme.colorScheme.onSurface,
|
||||||
|
)
|
||||||
|
}
|
||||||
Column(
|
Column(
|
||||||
horizontalAlignment = Alignment.Start,
|
horizontalAlignment = Alignment.Start,
|
||||||
verticalArrangement =
|
verticalArrangement =
|
||||||
Arrangement.spacedBy(2.dp, Alignment.CenterVertically),
|
Arrangement.spacedBy(2.dp, Alignment.CenterVertically),
|
||||||
modifier =
|
modifier =
|
||||||
Modifier.fillMaxWidth()
|
Modifier.fillMaxWidth()
|
||||||
.padding(start = if (item.leading != null) 16.dp else 0.dp)
|
.padding(start = if (item.leadingIcon != null) 16.dp else 0.dp)
|
||||||
.weight(1f)
|
.weight(1f)
|
||||||
.padding(
|
.padding(
|
||||||
vertical = if (item.description == null) 16.dp else 6.dp
|
vertical = if (item.description == null) 16.dp else 6.dp
|
||||||
|
|||||||
+5
-3
@@ -12,7 +12,11 @@ import androidx.compose.material3.Icon
|
|||||||
import androidx.compose.material3.IconButton
|
import androidx.compose.material3.IconButton
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalFocusManager
|
import androidx.compose.ui.platform.LocalFocusManager
|
||||||
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
||||||
@@ -28,7 +32,6 @@ fun SubmitConfigurationTextBox(
|
|||||||
hint: String,
|
hint: String,
|
||||||
isErrorValue: (value: String?) -> Boolean,
|
isErrorValue: (value: String?) -> Boolean,
|
||||||
onSubmit: (value: String) -> Unit,
|
onSubmit: (value: String) -> Unit,
|
||||||
supportingText: @Composable (() -> Unit)? = null,
|
|
||||||
keyboardOptions: KeyboardOptions =
|
keyboardOptions: KeyboardOptions =
|
||||||
KeyboardOptions(capitalization = KeyboardCapitalization.None, imeAction = ImeAction.Done),
|
KeyboardOptions(capitalization = KeyboardCapitalization.None, imeAction = ImeAction.Done),
|
||||||
) {
|
) {
|
||||||
@@ -46,7 +49,6 @@ fun SubmitConfigurationTextBox(
|
|||||||
value = stateValue,
|
value = stateValue,
|
||||||
onValueChange = { stateValue = it },
|
onValueChange = { stateValue = it },
|
||||||
interactionSource = interactionSource,
|
interactionSource = interactionSource,
|
||||||
supportingText = supportingText,
|
|
||||||
label = {
|
label = {
|
||||||
Text(
|
Text(
|
||||||
label,
|
label,
|
||||||
|
|||||||
+5
-1
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.dialog
|
package com.zaneschepke.wireguardautotunnel.ui.common.dialog
|
||||||
|
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.AlertDialog
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Surface
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TextButton
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
|||||||
-36
@@ -1,36 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.dropdown
|
|
||||||
|
|
||||||
import androidx.compose.runtime.*
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
|
||||||
|
|
||||||
@Composable
|
|
||||||
fun LabelledNumberDropdown(
|
|
||||||
title: @Composable () -> Unit,
|
|
||||||
description: (@Composable () -> Unit)? = null,
|
|
||||||
leading: @Composable () -> Unit,
|
|
||||||
onSelected: (Int?) -> Unit,
|
|
||||||
options: List<Int?>,
|
|
||||||
currentValue: Int?,
|
|
||||||
) {
|
|
||||||
var isDropDownExpanded by remember { mutableStateOf(false) }
|
|
||||||
SurfaceSelectionGroupButton(
|
|
||||||
listOf(
|
|
||||||
SelectionItem(
|
|
||||||
leading = leading,
|
|
||||||
title = title,
|
|
||||||
description = description,
|
|
||||||
onClick = { isDropDownExpanded = true },
|
|
||||||
trailing = {
|
|
||||||
DropdownSelector(
|
|
||||||
currentValue = currentValue,
|
|
||||||
options = options,
|
|
||||||
onValueSelected = { num -> onSelected(num) },
|
|
||||||
isExpanded = isDropDownExpanded,
|
|
||||||
onDismiss = { isDropDownExpanded = false },
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
+7
-1
@@ -1,6 +1,12 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.common.snackbar
|
package com.zaneschepke.wireguardautotunnel.ui.common.snackbar
|
||||||
|
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.IntrinsicSize
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.width
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.rounded.Info
|
import androidx.compose.material.icons.rounded.Info
|
||||||
|
|||||||
+47
-34
@@ -10,6 +10,7 @@ import androidx.compose.material.icons.rounded.QuestionMark
|
|||||||
import androidx.compose.material.icons.rounded.Settings
|
import androidx.compose.material.icons.rounded.Settings
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.*
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.CompositionLocalProvider
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.runtime.remember
|
import androidx.compose.runtime.remember
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
@@ -20,6 +21,7 @@ import androidx.navigation.compose.currentBackStackEntryAsState
|
|||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.Route
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.BottomNavItem
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.BottomNavItem
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalIsAndroidTV
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.isCurrentRoute
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.isCurrentRoute
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
||||||
@@ -30,6 +32,7 @@ import com.zaneschepke.wireguardautotunnel.util.extensions.goFromRoot
|
|||||||
@Composable
|
@Composable
|
||||||
fun BottomNavbar(appUiState: AppUiState) {
|
fun BottomNavbar(appUiState: AppUiState) {
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
|
val isTv = LocalIsAndroidTV.current
|
||||||
val navBackStackEntry by navController.currentBackStackEntryAsState()
|
val navBackStackEntry by navController.currentBackStackEntryAsState()
|
||||||
|
|
||||||
val items =
|
val items =
|
||||||
@@ -46,9 +49,8 @@ fun BottomNavbar(appUiState: AppUiState) {
|
|||||||
icon = Icons.Rounded.Bolt,
|
icon = Icons.Rounded.Bolt,
|
||||||
onClick = {
|
onClick = {
|
||||||
val route =
|
val route =
|
||||||
if (appUiState.appState.isLocationDisclosureShown) {
|
if (appUiState.appState.isLocationDisclosureShown) Route.AutoTunnel
|
||||||
Route.AutoTunnel
|
else Route.LocationDisclosure
|
||||||
} else Route.LocationDisclosure
|
|
||||||
navController.goFromRoot(route)
|
navController.goFromRoot(route)
|
||||||
},
|
},
|
||||||
active = appUiState.isAutoTunnelActive,
|
active = appUiState.isAutoTunnelActive,
|
||||||
@@ -66,42 +68,53 @@ fun BottomNavbar(appUiState: AppUiState) {
|
|||||||
onClick = { navController.goFromRoot(Route.Support) },
|
onClick = { navController.goFromRoot(Route.Support) },
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
// Define ripple configuration based on platform
|
||||||
|
val rippleConfiguration =
|
||||||
|
if (isTv) {
|
||||||
|
RippleConfiguration()
|
||||||
|
} else {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
NavigationBar(containerColor = MaterialTheme.colorScheme.surface) {
|
// Apply ripple configuration only if needed
|
||||||
items.forEach { item ->
|
CompositionLocalProvider(LocalRippleConfiguration provides rippleConfiguration) {
|
||||||
val isSelected = navBackStackEntry.isCurrentRoute(item.route::class)
|
NavigationBar(containerColor = MaterialTheme.colorScheme.surface) {
|
||||||
val interactionSource = remember { MutableInteractionSource() }
|
items.forEach { item ->
|
||||||
|
val isSelected = navBackStackEntry.isCurrentRoute(item.route::class)
|
||||||
|
val interactionSource = remember { MutableInteractionSource() }
|
||||||
|
|
||||||
NavigationBarItem(
|
NavigationBarItem(
|
||||||
icon = {
|
icon = {
|
||||||
if (item.active) {
|
if (item.active) {
|
||||||
BadgedBox(
|
BadgedBox(
|
||||||
badge = {
|
badge = {
|
||||||
Badge(
|
Badge(
|
||||||
modifier = Modifier.offset(x = 8.dp, y = (-8).dp).size(6.dp),
|
modifier =
|
||||||
containerColor = SilverTree,
|
Modifier.offset(x = 8.dp, y = (-8).dp).size(6.dp),
|
||||||
)
|
containerColor = SilverTree,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
Icon(imageVector = item.icon, contentDescription = item.name)
|
||||||
}
|
}
|
||||||
) {
|
} else {
|
||||||
Icon(imageVector = item.icon, contentDescription = item.name)
|
Icon(imageVector = item.icon, contentDescription = item.name)
|
||||||
}
|
}
|
||||||
} else {
|
},
|
||||||
Icon(imageVector = item.icon, contentDescription = item.name)
|
onClick = { navController.goFromRoot(item.route) },
|
||||||
}
|
selected = isSelected,
|
||||||
},
|
enabled = true,
|
||||||
onClick = item.onClick,
|
label = null,
|
||||||
selected = isSelected,
|
alwaysShowLabel = false,
|
||||||
enabled = true,
|
colors =
|
||||||
label = null,
|
NavigationBarItemDefaults.colors(
|
||||||
alwaysShowLabel = false,
|
selectedIconColor = MaterialTheme.colorScheme.primary,
|
||||||
colors =
|
unselectedIconColor = MaterialTheme.colorScheme.onBackground,
|
||||||
NavigationBarItemDefaults.colors(
|
indicatorColor = Color.Transparent,
|
||||||
selectedIconColor = MaterialTheme.colorScheme.primary,
|
),
|
||||||
unselectedIconColor = MaterialTheme.colorScheme.onBackground,
|
interactionSource = interactionSource,
|
||||||
indicatorColor = Color.Transparent,
|
)
|
||||||
),
|
}
|
||||||
interactionSource = interactionSource,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+60
-63
@@ -4,7 +4,6 @@ import android.os.Build
|
|||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.automirrored.rounded.Sort
|
|
||||||
import androidx.compose.material.icons.rounded.*
|
import androidx.compose.material.icons.rounded.*
|
||||||
import androidx.compose.material3.Icon
|
import androidx.compose.material3.Icon
|
||||||
import androidx.compose.material3.IconButton
|
import androidx.compose.material3.IconButton
|
||||||
@@ -12,7 +11,6 @@ import androidx.compose.material3.Text
|
|||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.State
|
import androidx.compose.runtime.State
|
||||||
import androidx.compose.runtime.produceState
|
import androidx.compose.runtime.produceState
|
||||||
import androidx.compose.runtime.remember
|
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.graphics.vector.ImageVector
|
import androidx.compose.ui.graphics.vector.ImageVector
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
@@ -25,10 +23,11 @@ import com.zaneschepke.wireguardautotunnel.ui.navigation.isCurrentRoute
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppViewState
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppViewState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.NavBarState
|
import com.zaneschepke.wireguardautotunnel.ui.state.NavBarState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.theme.Brick
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.theme.SilverTree
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
|
import com.zaneschepke.wireguardautotunnel.ui.theme.iconSize
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.UiEvent
|
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun currentNavBackStackEntryAsNavBarState(
|
fun currentNavBackStackEntryAsNavBarState(
|
||||||
@@ -61,40 +60,35 @@ fun currentNavBackStackEntryAsNavBarState(
|
|||||||
|
|
||||||
Row {
|
Row {
|
||||||
if (selectedCount == 0) {
|
if (selectedCount == 0) {
|
||||||
val showSort = remember(uiState.tunnels) { uiState.tunnels.size > 1 }
|
|
||||||
if (showSort)
|
|
||||||
ActionIconButton(Icons.AutoMirrored.Rounded.Sort, R.string.sort) {
|
|
||||||
navController.navigate(Route.Sort)
|
|
||||||
}
|
|
||||||
ActionIconButton(Icons.Rounded.Add, R.string.add_tunnel) {
|
ActionIconButton(Icons.Rounded.Add, R.string.add_tunnel) {
|
||||||
viewModel.handleEvent(
|
viewModel.handleEvent(
|
||||||
AppEvent.SetBottomSheet(AppViewState.BottomSheet.IMPORT_TUNNELS)
|
AppEvent.SetBottomSheet(AppViewState.BottomSheet.IMPORT_TUNNELS)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return@Row
|
} else {
|
||||||
}
|
ActionIconButton(Icons.Rounded.SelectAll, R.string.select_all) {
|
||||||
ActionIconButton(Icons.Rounded.SelectAll, R.string.select_all) {
|
viewModel.handleEvent(AppEvent.ToggleSelectAllTunnels)
|
||||||
viewModel.handleEvent(AppEvent.ToggleSelectAllTunnels)
|
|
||||||
}
|
|
||||||
// due to permissions, and SAF issues on TV, not support less than Android 10 on
|
|
||||||
// Android TV for file exports
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
|
||||||
ActionIconButton(Icons.Rounded.Download, R.string.download) {
|
|
||||||
viewModel.handleEvent(
|
|
||||||
AppEvent.SetBottomSheet(AppViewState.BottomSheet.EXPORT_TUNNELS)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
// due to permissions, and SAF issues on TV, not support less than Android 10 on
|
||||||
|
// Android TV for file exports
|
||||||
if (selectedCount == 1) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
ActionIconButton(Icons.Rounded.CopyAll, R.string.copy) {
|
ActionIconButton(Icons.Rounded.Download, R.string.download) {
|
||||||
viewModel.handleEvent(AppEvent.CopySelectedTunnel)
|
viewModel.handleEvent(
|
||||||
|
AppEvent.SetBottomSheet(AppViewState.BottomSheet.EXPORT_TUNNELS)
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (showDelete) {
|
if (selectedCount == 1) {
|
||||||
ActionIconButton(Icons.Rounded.Delete, R.string.delete_tunnel) {
|
ActionIconButton(Icons.Rounded.CopyAll, R.string.copy) {
|
||||||
viewModel.handleEvent(AppEvent.SetShowModal(AppViewState.ModalType.DELETE))
|
viewModel.handleEvent(AppEvent.CopySelectedTunnel)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showDelete) {
|
||||||
|
ActionIconButton(Icons.Rounded.Delete, R.string.delete_tunnel) {
|
||||||
|
viewModel.handleEvent(AppEvent.SetShowModal(AppViewState.ModalType.DELETE))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -110,6 +104,8 @@ fun currentNavBackStackEntryAsNavBarState(
|
|||||||
when {
|
when {
|
||||||
backStackEntry.isCurrentRoute(Route.Main::class) -> {
|
backStackEntry.isCurrentRoute(Route.Main::class) -> {
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.tunnels)) },
|
topTitle = { Text(stringResource(R.string.tunnels)) },
|
||||||
topTrailing = { TunnelActionBar() },
|
topTrailing = { TunnelActionBar() },
|
||||||
route = Route.Main,
|
route = Route.Main,
|
||||||
@@ -117,15 +113,36 @@ fun currentNavBackStackEntryAsNavBarState(
|
|||||||
}
|
}
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.AutoTunnel::class) -> {
|
backStackEntry.isCurrentRoute(Route.AutoTunnel::class) -> {
|
||||||
|
val (icon, label, tint) =
|
||||||
|
if (uiState.appSettings.isAutoTunnelEnabled) {
|
||||||
|
Triple(Icons.Rounded.Stop, R.string.stop_auto, Brick)
|
||||||
|
} else {
|
||||||
|
Triple(Icons.Rounded.PlayArrow, R.string.start_auto, SilverTree)
|
||||||
|
}
|
||||||
|
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.auto_tunnel)) },
|
topTitle = { Text(stringResource(R.string.auto_tunnel)) },
|
||||||
|
topTrailing = {
|
||||||
|
IconButton(
|
||||||
|
onClick = { viewModel.handleEvent(AppEvent.ToggleAutoTunnel) }
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
icon,
|
||||||
|
stringResource(label),
|
||||||
|
tint = tint,
|
||||||
|
modifier = Modifier.size(iconSize),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
},
|
||||||
route = Route.AutoTunnel,
|
route = Route.AutoTunnel,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Logs::class) -> {
|
backStackEntry.isCurrentRoute(Route.Logs::class) -> {
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
showBottom = false,
|
showBottom = false,
|
||||||
topTitle = { Text(stringResource(R.string.logs)) },
|
topTitle = { Text(stringResource(R.string.logs)) },
|
||||||
topTrailing = {
|
topTrailing = {
|
||||||
@@ -141,80 +158,60 @@ fun currentNavBackStackEntryAsNavBarState(
|
|||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Settings::class) ->
|
backStackEntry.isCurrentRoute(Route.Settings::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.settings)) },
|
topTitle = { Text(stringResource(R.string.settings)) },
|
||||||
route = Route.Settings,
|
route = Route.Settings,
|
||||||
topTrailing = {
|
|
||||||
ActionIconButton(Icons.Rounded.Menu, R.string.quick_actions) {
|
|
||||||
viewModel.handleEvent(
|
|
||||||
AppEvent.SetBottomSheet(
|
|
||||||
AppViewState.BottomSheet.BACKUP_AND_RESTORE
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Appearance::class) ->
|
backStackEntry.isCurrentRoute(Route.Appearance::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.appearance)) },
|
topTitle = { Text(stringResource(R.string.appearance)) },
|
||||||
route = Route.Appearance,
|
route = Route.Appearance,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Language::class) ->
|
backStackEntry.isCurrentRoute(Route.Language::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.language)) },
|
topTitle = { Text(stringResource(R.string.language)) },
|
||||||
route = Route.Language,
|
route = Route.Language,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Display::class) ->
|
backStackEntry.isCurrentRoute(Route.Display::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.display_theme)) },
|
topTitle = { Text(stringResource(R.string.display_theme)) },
|
||||||
route = Route.Display,
|
route = Route.Display,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.TunnelMonitoring::class) ->
|
|
||||||
NavBarState(
|
|
||||||
topTitle = { Text(stringResource(R.string.tunnel_monitoring)) },
|
|
||||||
route = Route.TunnelMonitoring,
|
|
||||||
)
|
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.WifiDetectionMethod::class) ->
|
backStackEntry.isCurrentRoute(Route.WifiDetectionMethod::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.wifi_detection_method)) },
|
topTitle = { Text(stringResource(R.string.wifi_detection_method)) },
|
||||||
route = Route.WifiDetectionMethod,
|
route = Route.WifiDetectionMethod,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.KillSwitch::class) ->
|
backStackEntry.isCurrentRoute(Route.KillSwitch::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.kill_switch)) },
|
topTitle = { Text(stringResource(R.string.kill_switch)) },
|
||||||
route = Route.KillSwitch,
|
route = Route.KillSwitch,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Support::class) ->
|
backStackEntry.isCurrentRoute(Route.Support::class) ->
|
||||||
NavBarState(
|
NavBarState(
|
||||||
|
showTop = true,
|
||||||
|
showBottom = true,
|
||||||
topTitle = { Text(stringResource(R.string.support)) },
|
topTitle = { Text(stringResource(R.string.support)) },
|
||||||
route = Route.Support,
|
route = Route.Support,
|
||||||
)
|
)
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.Sort::class) -> {
|
|
||||||
NavBarState(
|
|
||||||
showTop = true,
|
|
||||||
showBottom = true,
|
|
||||||
topTitle = { Text(stringResource(R.string.sort)) },
|
|
||||||
topTrailing = {
|
|
||||||
Row {
|
|
||||||
ActionIconButton(Icons.Rounded.SortByAlpha, R.string.sort) {
|
|
||||||
viewModel.handleUiEvent(UiEvent.SortTunnels)
|
|
||||||
}
|
|
||||||
ActionIconButton(Icons.Rounded.Save, R.string.save) {
|
|
||||||
viewModel.handleEvent(AppEvent.InvokeScreenAction)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
route = Route.Sort,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
backStackEntry.isCurrentRoute(Route.License::class) -> {
|
backStackEntry.isCurrentRoute(Route.License::class) -> {
|
||||||
NavBarState(
|
NavBarState(
|
||||||
showTop = true,
|
showTop = true,
|
||||||
|
|||||||
+60
-106
@@ -1,89 +1,93 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel
|
package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.os.Build
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.verticalScroll
|
import androidx.compose.foundation.verticalScroll
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.material.icons.outlined.CheckCircle
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
import androidx.compose.material.icons.outlined.Info
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.runtime.mutableStateOf
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.google.accompanist.permissions.isGranted
|
||||||
|
import com.google.accompanist.permissions.rememberPermissionState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.Route
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.SectionDivider
|
import com.zaneschepke.wireguardautotunnel.ui.common.SectionDivider
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.banner.WarningBanner
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.InfoDialog
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalIsAndroidTV
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.AdvancedSettingsItem
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.AdvancedSettingsItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.NetworkTunnelingItems
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.NetworkTunnelingItems
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.WifiTunnelingItems
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components.WifiTunnelingItems
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.components.BackgroundLocationDialog
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.components.LocationServicesDialog
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.launchAppSettings
|
import com.zaneschepke.wireguardautotunnel.util.extensions.isLocationServicesEnabled
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.launchLocationServicesSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|
||||||
|
|
||||||
@OptIn(ExperimentalPermissionsApi::class)
|
@OptIn(ExperimentalPermissionsApi::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun AutoTunnelScreen(uiState: AppUiState, viewModel: AppViewModel) {
|
fun AutoTunnelScreen(uiState: AppUiState, viewModel: AppViewModel) {
|
||||||
val navController = LocalNavController.current
|
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
|
val navController = LocalNavController.current
|
||||||
|
val isTv = LocalIsAndroidTV.current
|
||||||
|
val fineLocationState = rememberPermissionState(Manifest.permission.ACCESS_FINE_LOCATION)
|
||||||
var currentText by remember { mutableStateOf("") }
|
var currentText by remember { mutableStateOf("") }
|
||||||
|
var isBackgroundLocationGranted by remember { mutableStateOf(true) }
|
||||||
|
var showLocationServicesAlertDialog by remember { mutableStateOf(false) }
|
||||||
var showLocationDialog by remember { mutableStateOf(false) }
|
var showLocationDialog by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
val showLocationServicesWarning by
|
fun checkFineLocationGranted() {
|
||||||
remember(
|
isBackgroundLocationGranted = fineLocationState.status.isGranted
|
||||||
uiState.connectivityState?.wifiState,
|
}
|
||||||
uiState.appSettings.trustedNetworkSSIDs,
|
|
||||||
uiState.appSettings.wifiDetectionMethod,
|
|
||||||
) {
|
|
||||||
derivedStateOf {
|
|
||||||
uiState.connectivityState?.wifiState?.locationServicesEnabled == false &&
|
|
||||||
uiState.appSettings.wifiDetectionMethod.needsLocationPermissions() &&
|
|
||||||
uiState.appSettings.trustedNetworkSSIDs.isNotEmpty()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val showLocationPermissionsWarning by
|
fun isWifiNameReadable(): Boolean {
|
||||||
remember(
|
return when {
|
||||||
uiState.connectivityState?.wifiState,
|
!isBackgroundLocationGranted || !fineLocationState.status.isGranted -> {
|
||||||
uiState.appSettings.trustedNetworkSSIDs,
|
showLocationDialog = true
|
||||||
uiState.appSettings.wifiDetectionMethod,
|
false
|
||||||
) {
|
|
||||||
derivedStateOf {
|
|
||||||
uiState.connectivityState?.wifiState?.locationPermissionsGranted == false &&
|
|
||||||
uiState.appSettings.wifiDetectionMethod.needsLocationPermissions() &&
|
|
||||||
uiState.appSettings.trustedNetworkSSIDs.isNotEmpty()
|
|
||||||
}
|
}
|
||||||
|
!context.isLocationServicesEnabled() -> {
|
||||||
|
showLocationServicesAlertDialog = true
|
||||||
|
false
|
||||||
|
}
|
||||||
|
else -> true
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.P) checkFineLocationGranted()
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
|
if (isTv && Build.VERSION.SDK_INT == Build.VERSION_CODES.Q) {
|
||||||
|
checkFineLocationGranted()
|
||||||
|
} else {
|
||||||
|
val backgroundLocationState =
|
||||||
|
rememberPermissionState(Manifest.permission.ACCESS_BACKGROUND_LOCATION)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
LaunchedEffect(uiState.appSettings.trustedNetworkSSIDs) { currentText = "" }
|
LaunchedEffect(uiState.appSettings.trustedNetworkSSIDs) { currentText = "" }
|
||||||
|
|
||||||
if (showLocationDialog) {
|
LocationServicesDialog(
|
||||||
InfoDialog(
|
showLocationServicesAlertDialog,
|
||||||
onAttest = {
|
onDismiss = { showLocationServicesAlertDialog = false },
|
||||||
context.launchAppSettings()
|
onAttest = { showLocationServicesAlertDialog = false },
|
||||||
showLocationDialog = false
|
)
|
||||||
},
|
|
||||||
onDismiss = { showLocationDialog = false },
|
BackgroundLocationDialog(
|
||||||
title = { Text(stringResource(R.string.location_permissions)) },
|
showLocationDialog,
|
||||||
body = { Text(stringResource(R.string.location_justification)) },
|
onDismiss = { showLocationDialog = false },
|
||||||
confirmText = { Text(stringResource(R.string.open_settings)) },
|
onAttest = { showLocationDialog = false },
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
horizontalAlignment = Alignment.Start,
|
horizontalAlignment = Alignment.Start,
|
||||||
@@ -94,66 +98,16 @@ fun AutoTunnelScreen(uiState: AppUiState, viewModel: AppViewModel) {
|
|||||||
.padding(vertical = 24.dp)
|
.padding(vertical = 24.dp)
|
||||||
.padding(horizontal = 12.dp),
|
.padding(horizontal = 12.dp),
|
||||||
) {
|
) {
|
||||||
WarningBanner(
|
|
||||||
stringResource(R.string.location_services_not_detected),
|
|
||||||
showLocationServicesWarning,
|
|
||||||
trailing = {
|
|
||||||
TextButton({ context.launchLocationServicesSettings() }) {
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.fix),
|
|
||||||
color = MaterialTheme.colorScheme.primary,
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
WarningBanner(
|
|
||||||
stringResource(R.string.location_permissions_missing),
|
|
||||||
showLocationPermissionsWarning,
|
|
||||||
trailing = {
|
|
||||||
TextButton({ showLocationDialog = true }) {
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.fix),
|
|
||||||
color = MaterialTheme.colorScheme.primary,
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
val (title, buttonText, icon) =
|
|
||||||
remember(uiState.isAutoTunnelActive) {
|
|
||||||
when (uiState.isAutoTunnelActive) {
|
|
||||||
true ->
|
|
||||||
Triple(
|
|
||||||
context.getString(R.string.auto_tunnel_running),
|
|
||||||
context.getString(R.string.stop),
|
|
||||||
Icons.Outlined.CheckCircle,
|
|
||||||
)
|
|
||||||
false ->
|
|
||||||
Triple(
|
|
||||||
context.getString(R.string.auto_tunnel_not_running),
|
|
||||||
context.getString(R.string.start),
|
|
||||||
Icons.Outlined.Info,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
SurfaceSelectionGroupButton(
|
SurfaceSelectionGroupButton(
|
||||||
items =
|
items =
|
||||||
listOf(
|
WifiTunnelingItems(
|
||||||
SelectionItem(
|
uiState,
|
||||||
leading = { Icon(icon, null) },
|
viewModel,
|
||||||
title = { Text(title) },
|
currentText,
|
||||||
trailing = {
|
{ currentText = it },
|
||||||
Button({ viewModel.handleEvent(AppEvent.ToggleAutoTunnel) }) {
|
{ isWifiNameReadable() },
|
||||||
Text(buttonText, fontWeight = FontWeight.Bold)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
SurfaceSelectionGroupButton(
|
|
||||||
items = WifiTunnelingItems(uiState, viewModel, currentText) { currentText = it }
|
|
||||||
)
|
|
||||||
SectionDivider()
|
SectionDivider()
|
||||||
SurfaceSelectionGroupButton(items = NetworkTunnelingItems(uiState, viewModel))
|
SurfaceSelectionGroupButton(items = NetworkTunnelingItems(uiState, viewModel))
|
||||||
SectionDivider()
|
SectionDivider()
|
||||||
|
|||||||
+4
-25
@@ -6,21 +6,13 @@ import androidx.compose.foundation.layout.fillMaxSize
|
|||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.verticalScroll
|
import androidx.compose.foundation.verticalScroll
|
||||||
import androidx.compose.material.icons.Icons
|
|
||||||
import androidx.compose.material.icons.outlined.PauseCircle
|
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
|
||||||
import androidx.compose.material3.Text
|
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.advanced.components.DebounceDelaySelector
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.dropdown.LabelledNumberDropdown
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun AutoTunnelAdvancedScreen(appUiState: AppUiState, viewModel: AppViewModel) {
|
fun AutoTunnelAdvancedScreen(appUiState: AppUiState, viewModel: AppViewModel) {
|
||||||
@@ -33,22 +25,9 @@ fun AutoTunnelAdvancedScreen(appUiState: AppUiState, viewModel: AppViewModel) {
|
|||||||
.padding(vertical = 24.dp)
|
.padding(vertical = 24.dp)
|
||||||
.padding(horizontal = 12.dp),
|
.padding(horizontal = 12.dp),
|
||||||
) {
|
) {
|
||||||
LabelledNumberDropdown(
|
DebounceDelaySelector(
|
||||||
title = {
|
currentDelay = appUiState.appSettings.debounceDelaySeconds,
|
||||||
Text(
|
onEvent = viewModel::handleEvent,
|
||||||
stringResource(R.string.debounce_delay),
|
|
||||||
style =
|
|
||||||
MaterialTheme.typography.bodyMedium.copy(
|
|
||||||
color = MaterialTheme.colorScheme.onSurface
|
|
||||||
),
|
|
||||||
)
|
|
||||||
},
|
|
||||||
leading = { Icon(Icons.Outlined.PauseCircle, null) },
|
|
||||||
onSelected = { selected ->
|
|
||||||
viewModel.handleEvent(AppEvent.SetDebounceDelay(selected!!))
|
|
||||||
},
|
|
||||||
options = (0..10).toList(),
|
|
||||||
currentValue = appUiState.appSettings.debounceDelaySeconds,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+49
@@ -0,0 +1,49 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.advanced.components
|
||||||
|
|
||||||
|
import androidx.compose.material.icons.Icons
|
||||||
|
import androidx.compose.material.icons.outlined.PauseCircle
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.common.DropdownSelector
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
||||||
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun DebounceDelaySelector(currentDelay: Int, onEvent: (AppEvent) -> Unit) {
|
||||||
|
var isDropDownExpanded by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
|
SurfaceSelectionGroupButton(
|
||||||
|
listOf(
|
||||||
|
SelectionItem(
|
||||||
|
leadingIcon = Icons.Outlined.PauseCircle,
|
||||||
|
title = {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.debounce_delay),
|
||||||
|
style =
|
||||||
|
MaterialTheme.typography.bodyMedium.copy(
|
||||||
|
color = MaterialTheme.colorScheme.onSurface
|
||||||
|
),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
onClick = { isDropDownExpanded = true },
|
||||||
|
trailing = {
|
||||||
|
DropdownSelector(
|
||||||
|
currentValue = currentDelay,
|
||||||
|
options = (0..10).toList(),
|
||||||
|
onValueSelected = { num -> onEvent(AppEvent.SetDebounceDelay(num)) },
|
||||||
|
isExpanded = isDropDownExpanded,
|
||||||
|
onDismiss = { isDropDownExpanded = false },
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
+1
-2
@@ -2,7 +2,6 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components
|
|||||||
|
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.Settings
|
import androidx.compose.material.icons.outlined.Settings
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -14,7 +13,7 @@ import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionIte
|
|||||||
@Composable
|
@Composable
|
||||||
fun AdvancedSettingsItem(onClick: () -> Unit): SelectionItem {
|
fun AdvancedSettingsItem(onClick: () -> Unit): SelectionItem {
|
||||||
return SelectionItem(
|
return SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.Settings, contentDescription = null) },
|
leadingIcon = Icons.Outlined.Settings,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.advanced_settings),
|
stringResource(R.string.advanced_settings),
|
||||||
|
|||||||
+7
-8
@@ -4,7 +4,6 @@ import androidx.compose.material.icons.Icons
|
|||||||
import androidx.compose.material.icons.outlined.PublicOff
|
import androidx.compose.material.icons.outlined.PublicOff
|
||||||
import androidx.compose.material.icons.outlined.SettingsEthernet
|
import androidx.compose.material.icons.outlined.SettingsEthernet
|
||||||
import androidx.compose.material.icons.outlined.SignalCellular4Bar
|
import androidx.compose.material.icons.outlined.SignalCellular4Bar
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -22,7 +21,7 @@ import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|||||||
fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<SelectionItem> {
|
fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<SelectionItem> {
|
||||||
return listOf(
|
return listOf(
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.SignalCellular4Bar, contentDescription = null) },
|
leadingIcon = Icons.Outlined.SignalCellular4Bar,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.tunnel_mobile_data),
|
stringResource(R.string.tunnel_mobile_data),
|
||||||
@@ -41,8 +40,8 @@ fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<Se
|
|||||||
},
|
},
|
||||||
description = {
|
description = {
|
||||||
val cellularActive =
|
val cellularActive =
|
||||||
remember(uiState.connectivityState) {
|
remember(uiState.networkStatus) {
|
||||||
uiState.connectivityState?.cellularConnected ?: false
|
uiState.networkStatus?.cellularConnected ?: false
|
||||||
}
|
}
|
||||||
Text(
|
Text(
|
||||||
text =
|
text =
|
||||||
@@ -59,7 +58,7 @@ fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<Se
|
|||||||
onClick = { viewModel.handleEvent(AppEvent.ToggleAutoTunnelOnCellular) },
|
onClick = { viewModel.handleEvent(AppEvent.ToggleAutoTunnelOnCellular) },
|
||||||
),
|
),
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.SettingsEthernet, contentDescription = null) },
|
leadingIcon = Icons.Outlined.SettingsEthernet,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.tunnel_on_ethernet),
|
stringResource(R.string.tunnel_on_ethernet),
|
||||||
@@ -78,8 +77,8 @@ fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<Se
|
|||||||
},
|
},
|
||||||
description = {
|
description = {
|
||||||
val ethernetActive =
|
val ethernetActive =
|
||||||
remember(uiState.connectivityState) {
|
remember(uiState.networkStatus) {
|
||||||
uiState.connectivityState?.ethernetConnected ?: false
|
uiState.networkStatus?.ethernetConnected ?: false
|
||||||
}
|
}
|
||||||
Text(
|
Text(
|
||||||
text =
|
text =
|
||||||
@@ -96,7 +95,7 @@ fun NetworkTunnelingItems(uiState: AppUiState, viewModel: AppViewModel): List<Se
|
|||||||
onClick = { viewModel.handleEvent(AppEvent.ToggleAutoTunnelOnEthernet) },
|
onClick = { viewModel.handleEvent(AppEvent.ToggleAutoTunnelOnEthernet) },
|
||||||
),
|
),
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.PublicOff, contentDescription = null) },
|
leadingIcon = Icons.Outlined.PublicOff,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.stop_on_no_internet),
|
stringResource(R.string.stop_on_no_internet),
|
||||||
|
|||||||
+6
-1
@@ -1,7 +1,12 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components
|
package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.components
|
||||||
|
|
||||||
import androidx.compose.foundation.interaction.MutableInteractionSource
|
import androidx.compose.foundation.interaction.MutableInteractionSource
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.ExperimentalLayoutApi
|
||||||
|
import androidx.compose.foundation.layout.FlowRow
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.text.KeyboardActions
|
import androidx.compose.foundation.text.KeyboardActions
|
||||||
import androidx.compose.foundation.text.KeyboardOptions
|
import androidx.compose.foundation.text.KeyboardOptions
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
|
|||||||
+20
-10
@@ -17,6 +17,8 @@ import androidx.compose.ui.platform.LocalContext
|
|||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.text.style.TextOverflow
|
import androidx.compose.ui.text.style.TextOverflow
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import com.zaneschepke.networkmonitor.AndroidNetworkMonitor
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.Route
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
||||||
@@ -38,6 +40,7 @@ fun WifiTunnelingItems(
|
|||||||
viewModel: AppViewModel,
|
viewModel: AppViewModel,
|
||||||
currentText: String,
|
currentText: String,
|
||||||
onTextChange: (String) -> Unit,
|
onTextChange: (String) -> Unit,
|
||||||
|
isWifiNameReadable: () -> Boolean,
|
||||||
): List<SelectionItem> {
|
): List<SelectionItem> {
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
@@ -46,7 +49,7 @@ fun WifiTunnelingItems(
|
|||||||
val baseItems =
|
val baseItems =
|
||||||
listOf(
|
listOf(
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.Wifi, contentDescription = null) },
|
leadingIcon = Icons.Outlined.Wifi,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.tunnel_on_wifi),
|
stringResource(R.string.tunnel_on_wifi),
|
||||||
@@ -65,12 +68,11 @@ fun WifiTunnelingItems(
|
|||||||
},
|
},
|
||||||
description = {
|
description = {
|
||||||
val wifiInfo by
|
val wifiInfo by
|
||||||
remember(uiState.connectivityState) {
|
remember(uiState.networkStatus) {
|
||||||
derivedStateOf {
|
derivedStateOf {
|
||||||
uiState.connectivityState
|
(uiState.networkStatus as? NetworkStatus.Connected)
|
||||||
?.wifiState
|
?.takeIf { it.wifiConnected }
|
||||||
?.takeIf { it.connected }
|
.let { Pair(it?.wifiSsid, it?.securityType) }
|
||||||
.let { Pair(it?.ssid, it?.securityType) }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val (wifiName, securityType) = wifiInfo
|
val (wifiName, securityType) = wifiInfo
|
||||||
@@ -109,7 +111,7 @@ fun WifiTunnelingItems(
|
|||||||
baseItems +
|
baseItems +
|
||||||
listOf(
|
listOf(
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.WifiFind, contentDescription = null) },
|
leadingIcon = Icons.Outlined.WifiFind,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.wifi_detection_method),
|
stringResource(R.string.wifi_detection_method),
|
||||||
@@ -137,7 +139,7 @@ fun WifiTunnelingItems(
|
|||||||
onClick = { navController.navigate(Route.WifiDetectionMethod) },
|
onClick = { navController.navigate(Route.WifiDetectionMethod) },
|
||||||
),
|
),
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.Filter1, contentDescription = null) },
|
leadingIcon = Icons.Outlined.Filter1,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.use_wildcards),
|
stringResource(R.string.use_wildcards),
|
||||||
@@ -199,7 +201,15 @@ fun WifiTunnelingItems(
|
|||||||
onDelete = { viewModel.handleEvent(AppEvent.DeleteTrustedSSID(it)) },
|
onDelete = { viewModel.handleEvent(AppEvent.DeleteTrustedSSID(it)) },
|
||||||
currentText = currentText,
|
currentText = currentText,
|
||||||
onSave = { ssid ->
|
onSave = { ssid ->
|
||||||
viewModel.handleEvent(AppEvent.SaveTrustedSSID(ssid))
|
if (
|
||||||
|
uiState.appSettings.wifiDetectionMethod ==
|
||||||
|
AndroidNetworkMonitor.WifiDetectionMethod.ROOT ||
|
||||||
|
uiState.appSettings.wifiDetectionMethod ==
|
||||||
|
AndroidNetworkMonitor.WifiDetectionMethod.SHIZUKU ||
|
||||||
|
isWifiNameReadable()
|
||||||
|
) {
|
||||||
|
viewModel.handleEvent(AppEvent.SaveTrustedSSID(ssid))
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onValueChange = onTextChange,
|
onValueChange = onTextChange,
|
||||||
supporting = {
|
supporting = {
|
||||||
@@ -209,7 +219,7 @@ fun WifiTunnelingItems(
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
SelectionItem(
|
SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.VpnKeyOff, contentDescription = null) },
|
leadingIcon = Icons.Outlined.VpnKeyOff,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.kill_switch_off),
|
stringResource(R.string.kill_switch_off),
|
||||||
+14
-7
@@ -9,17 +9,24 @@ import androidx.compose.runtime.LaunchedEffect
|
|||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.AppSettingsItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.LocationDisclosureHeader
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.LocationDisclosureHeader
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.appSettingsItem
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.SkipItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.components.skipItem
|
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.goFromRoot
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun LocationDisclosureScreen(viewModel: AppViewModel) {
|
fun LocationDisclosureScreen(appUiState: AppUiState, viewModel: AppViewModel) {
|
||||||
|
val navController = LocalNavController.current
|
||||||
|
|
||||||
LaunchedEffect(Unit) { viewModel.handleEvent(AppEvent.SetLocationDisclosureShown) }
|
LaunchedEffect(Unit, appUiState) {
|
||||||
|
if (appUiState.appState.isLocationDisclosureShown)
|
||||||
|
navController.goFromRoot(Route.AutoTunnel)
|
||||||
|
}
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
horizontalAlignment = Alignment.CenterHorizontally,
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
@@ -27,7 +34,7 @@ fun LocationDisclosureScreen(viewModel: AppViewModel) {
|
|||||||
modifier = Modifier.fillMaxSize().padding(top = 18.dp).padding(horizontal = 24.dp),
|
modifier = Modifier.fillMaxSize().padding(top = 18.dp).padding(horizontal = 24.dp),
|
||||||
) {
|
) {
|
||||||
LocationDisclosureHeader()
|
LocationDisclosureHeader()
|
||||||
SurfaceSelectionGroupButton(items = listOf(appSettingsItem()))
|
SurfaceSelectionGroupButton(items = listOf(AppSettingsItem(viewModel)))
|
||||||
SurfaceSelectionGroupButton(items = listOf(skipItem()))
|
SurfaceSelectionGroupButton(items = listOf(SkipItem(viewModel)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+16
-6
@@ -2,7 +2,6 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.com
|
|||||||
|
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.LocationOn
|
import androidx.compose.material.icons.outlined.LocationOn
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -12,20 +11,31 @@ import com.zaneschepke.wireguardautotunnel.R
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.launchAppSettings
|
import com.zaneschepke.wireguardautotunnel.util.extensions.launchAppSettings
|
||||||
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun appSettingsItem(): SelectionItem {
|
fun AppSettingsItem(viewModel: AppViewModel): SelectionItem {
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
|
|
||||||
return SelectionItem(
|
return SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.LocationOn, contentDescription = null) },
|
leadingIcon = Icons.Outlined.LocationOn,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(R.string.launch_app_settings),
|
text = stringResource(R.string.launch_app_settings),
|
||||||
style = MaterialTheme.typography.bodyLarge.copy(MaterialTheme.colorScheme.onSurface),
|
style = MaterialTheme.typography.bodyLarge.copy(MaterialTheme.colorScheme.onSurface),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
trailing = { ForwardButton { context.launchAppSettings() } },
|
trailing = {
|
||||||
onClick = { context.launchAppSettings() },
|
ForwardButton {
|
||||||
|
context.launchAppSettings().also {
|
||||||
|
viewModel.handleEvent(AppEvent.SetLocationDisclosureShown)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onClick = {
|
||||||
|
context.launchAppSettings().also {
|
||||||
|
viewModel.handleEvent(AppEvent.SetLocationDisclosureShown)
|
||||||
|
}
|
||||||
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-7
@@ -5,15 +5,13 @@ import androidx.compose.material3.Text
|
|||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.Route
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.ForwardButton
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SelectionItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.goFromRoot
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun skipItem(): SelectionItem {
|
fun SkipItem(viewModel: AppViewModel): SelectionItem {
|
||||||
val navController = LocalNavController.current
|
|
||||||
return SelectionItem(
|
return SelectionItem(
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
@@ -21,7 +19,7 @@ fun skipItem(): SelectionItem {
|
|||||||
style = MaterialTheme.typography.bodyLarge.copy(MaterialTheme.colorScheme.onSurface),
|
style = MaterialTheme.typography.bodyLarge.copy(MaterialTheme.colorScheme.onSurface),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
trailing = { ForwardButton { navController.goFromRoot(Route.AutoTunnel) } },
|
trailing = { ForwardButton { viewModel.handleEvent(AppEvent.SetLocationDisclosureShown) } },
|
||||||
onClick = { navController.goFromRoot(Route.AutoTunnel) },
|
onClick = { viewModel.handleEvent(AppEvent.SetLocationDisclosureShown) },
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-7
@@ -6,17 +6,21 @@ import androidx.compose.foundation.layout.fillMaxSize
|
|||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.verticalScroll
|
import androidx.compose.foundation.verticalScroll
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
import com.zaneschepke.wireguardautotunnel.ui.common.button.surface.SurfaceSelectionGroupButton
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.EthernetTunnelItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.MobileDataTunnelItem
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.MobileDataTunnelItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.PingRestartItem
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.WifiTunnelItem
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.WifiTunnelItem
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components.ethernetTunnelItem
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
@@ -41,11 +45,8 @@ fun TunnelAutoTunnelScreen(
|
|||||||
SurfaceSelectionGroupButton(
|
SurfaceSelectionGroupButton(
|
||||||
items =
|
items =
|
||||||
buildList {
|
buildList {
|
||||||
if (appSettings.isPingEnabled) {
|
|
||||||
add(PingRestartItem(tunnelConf, viewModel))
|
|
||||||
}
|
|
||||||
add(MobileDataTunnelItem(tunnelConf, viewModel))
|
add(MobileDataTunnelItem(tunnelConf, viewModel))
|
||||||
add(ethernetTunnelItem(tunnelConf, viewModel))
|
add(EthernetTunnelItem(tunnelConf, viewModel))
|
||||||
add(
|
add(
|
||||||
WifiTunnelItem(tunnelConf, appSettings, viewModel, currentText) {
|
WifiTunnelItem(tunnelConf, appSettings, viewModel, currentText) {
|
||||||
currentText = it
|
currentText = it
|
||||||
|
|||||||
+2
-3
@@ -2,7 +2,6 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.component
|
|||||||
|
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.SettingsEthernet
|
import androidx.compose.material.icons.outlined.SettingsEthernet
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -15,9 +14,9 @@ import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
|||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ethernetTunnelItem(tunnelConf: TunnelConf, viewModel: AppViewModel): SelectionItem {
|
fun EthernetTunnelItem(tunnelConf: TunnelConf, viewModel: AppViewModel): SelectionItem {
|
||||||
return SelectionItem(
|
return SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.SettingsEthernet, contentDescription = null) },
|
leadingIcon = Icons.Outlined.SettingsEthernet,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(R.string.ethernet_tunnel),
|
text = stringResource(R.string.ethernet_tunnel),
|
||||||
+1
-2
@@ -2,7 +2,6 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.component
|
|||||||
|
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.PhoneAndroid
|
import androidx.compose.material.icons.outlined.PhoneAndroid
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -17,7 +16,7 @@ import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|||||||
@Composable
|
@Composable
|
||||||
fun MobileDataTunnelItem(tunnelConf: TunnelConf, viewModel: AppViewModel): SelectionItem {
|
fun MobileDataTunnelItem(tunnelConf: TunnelConf, viewModel: AppViewModel): SelectionItem {
|
||||||
return SelectionItem(
|
return SelectionItem(
|
||||||
leading = { Icon(Icons.Outlined.PhoneAndroid, contentDescription = null) },
|
leadingIcon = Icons.Outlined.PhoneAndroid,
|
||||||
title = {
|
title = {
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(R.string.mobile_tunnel),
|
text = stringResource(R.string.mobile_tunnel),
|
||||||
|
|||||||
+5
-1
@@ -1,6 +1,10 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components
|
package com.zaneschepke.wireguardautotunnel.ui.screens.main.autotunnel.components
|
||||||
|
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.Security
|
import androidx.compose.material.icons.outlined.Security
|
||||||
import androidx.compose.material3.Icon
|
import androidx.compose.material3.Icon
|
||||||
|
|||||||
+14
-4
@@ -5,9 +5,19 @@ import androidx.compose.foundation.layout.Row
|
|||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.outlined.FolderZip
|
import androidx.compose.material.icons.filled.FolderZip
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.material3.HorizontalDivider
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
@@ -111,7 +121,7 @@ fun ExportTunnelsBottomSheet(viewModel: AppViewModel) {
|
|||||||
private fun ExportOptionRow(label: String, onClick: () -> Unit) {
|
private fun ExportOptionRow(label: String, onClick: () -> Unit) {
|
||||||
Row(modifier = Modifier.fillMaxWidth().clickable(onClick = onClick).padding(10.dp)) {
|
Row(modifier = Modifier.fillMaxWidth().clickable(onClick = onClick).padding(10.dp)) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Outlined.FolderZip,
|
imageVector = Icons.Filled.FolderZip,
|
||||||
contentDescription = label,
|
contentDescription = label,
|
||||||
modifier = Modifier.padding(10.dp),
|
modifier = Modifier.padding(10.dp),
|
||||||
)
|
)
|
||||||
|
|||||||
+12
-2
@@ -5,8 +5,18 @@ import androidx.compose.foundation.layout.Row
|
|||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.filled.*
|
import androidx.compose.material.icons.filled.ContentPasteGo
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material.icons.filled.Create
|
||||||
|
import androidx.compose.material.icons.filled.FileOpen
|
||||||
|
import androidx.compose.material.icons.filled.Link
|
||||||
|
import androidx.compose.material.icons.filled.QrCode
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.HorizontalDivider
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
|||||||
+26
-29
@@ -1,9 +1,7 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.components
|
package com.zaneschepke.wireguardautotunnel.ui.screens.main.components
|
||||||
|
|
||||||
import androidx.compose.foundation.ExperimentalFoundationApi
|
import androidx.compose.foundation.ExperimentalFoundationApi
|
||||||
import androidx.compose.foundation.combinedClickable
|
|
||||||
import androidx.compose.foundation.gestures.ScrollableDefaults
|
import androidx.compose.foundation.gestures.ScrollableDefaults
|
||||||
import androidx.compose.foundation.interaction.MutableInteractionSource
|
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.lazy.LazyColumn
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
import androidx.compose.foundation.lazy.items
|
import androidx.compose.foundation.lazy.items
|
||||||
@@ -27,6 +25,8 @@ import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
|||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
|
import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
|
import java.text.Collator
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class)
|
@OptIn(ExperimentalFoundationApi::class)
|
||||||
@Composable
|
@Composable
|
||||||
@@ -40,8 +40,17 @@ fun TunnelList(
|
|||||||
val isTv = LocalIsAndroidTV.current
|
val isTv = LocalIsAndroidTV.current
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
|
val collator = Collator.getInstance(Locale.getDefault())
|
||||||
val lazyListState = rememberLazyListState()
|
val sortedTunnels =
|
||||||
|
remember(appUiState.tunnels) {
|
||||||
|
appUiState.tunnels.sortedWith(
|
||||||
|
compareBy(
|
||||||
|
// primary tunnel first
|
||||||
|
{ !it.isPrimaryTunnel },
|
||||||
|
{ collator.compare(it.tunName, "") },
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
horizontalAlignment = Alignment.Start,
|
horizontalAlignment = Alignment.Start,
|
||||||
@@ -50,7 +59,7 @@ fun TunnelList(
|
|||||||
modifier
|
modifier
|
||||||
.pointerInput(Unit) { if (appUiState.tunnels.isEmpty()) return@pointerInput }
|
.pointerInput(Unit) { if (appUiState.tunnels.isEmpty()) return@pointerInput }
|
||||||
.overscroll(rememberOverscrollEffect()),
|
.overscroll(rememberOverscrollEffect()),
|
||||||
state = lazyListState,
|
state = rememberLazyListState(0, appUiState.tunnels.count()),
|
||||||
userScrollEnabled = true,
|
userScrollEnabled = true,
|
||||||
reverseLayout = false,
|
reverseLayout = false,
|
||||||
flingBehavior = ScrollableDefaults.flingBehavior(),
|
flingBehavior = ScrollableDefaults.flingBehavior(),
|
||||||
@@ -58,7 +67,7 @@ fun TunnelList(
|
|||||||
if (appUiState.tunnels.isEmpty()) {
|
if (appUiState.tunnels.isEmpty()) {
|
||||||
item { GettingStartedLabel(onClick = { context.openWebUrl(it) }) }
|
item { GettingStartedLabel(onClick = { context.openWebUrl(it) }) }
|
||||||
}
|
}
|
||||||
items(appUiState.tunnels, key = { it.id }) { tunnel ->
|
items(sortedTunnels, key = { it.id }) { tunnel ->
|
||||||
val tunnelState =
|
val tunnelState =
|
||||||
remember(appUiState.activeTunnels) {
|
remember(appUiState.activeTunnels) {
|
||||||
appUiState.activeTunnels.getValueById(tunnel.id) ?: TunnelState()
|
appUiState.activeTunnels.getValueById(tunnel.id) ?: TunnelState()
|
||||||
@@ -66,38 +75,26 @@ fun TunnelList(
|
|||||||
val selected = remember(selectedTunnels) { selectedTunnels.any { it.id == tunnel.id } }
|
val selected = remember(selectedTunnels) { selectedTunnels.any { it.id == tunnel.id } }
|
||||||
TunnelRowItem(
|
TunnelRowItem(
|
||||||
state = tunnelState,
|
state = tunnelState,
|
||||||
|
expanded = appUiState.appState.expandedTunnelIds.contains(tunnel.id),
|
||||||
isSelected = selected,
|
isSelected = selected,
|
||||||
tunnel = tunnel,
|
tunnel = tunnel,
|
||||||
tunnelState = tunnelState,
|
tunnelState = tunnelState,
|
||||||
appSettings = appUiState.appSettings,
|
onClick = {
|
||||||
onTvClick = {
|
if (selectedTunnels.isNotEmpty() && !isTv) {
|
||||||
navController.navigate(Route.TunnelOptions(tunnel.id))
|
viewModel.handleEvent(AppEvent.ToggleSelectedTunnel(tunnel))
|
||||||
viewModel.handleEvent(AppEvent.ClearSelectedTunnels)
|
} else {
|
||||||
|
navController.navigate(Route.TunnelOptions(tunnel.id))
|
||||||
|
viewModel.handleEvent(AppEvent.ClearSelectedTunnels)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onDoubleClick = {
|
||||||
|
viewModel.handleEvent(AppEvent.ToggleTunnelStatsExpanded(tunnel.id))
|
||||||
},
|
},
|
||||||
onToggleSelectedTunnel = {
|
onToggleSelectedTunnel = {
|
||||||
viewModel.handleEvent(AppEvent.ToggleSelectedTunnel(it))
|
viewModel.handleEvent(AppEvent.ToggleSelectedTunnel(it))
|
||||||
},
|
},
|
||||||
onSwitchClick = { checked -> onToggleTunnel(tunnel, checked) },
|
onSwitchClick = { checked -> onToggleTunnel(tunnel, checked) },
|
||||||
isTv = isTv,
|
isTv = isTv,
|
||||||
showDetailedStats = appUiState.appState.showDetailedPingStats,
|
|
||||||
modifier =
|
|
||||||
if (!isTv)
|
|
||||||
Modifier.combinedClickable(
|
|
||||||
onClick = {
|
|
||||||
if (selectedTunnels.isNotEmpty()) {
|
|
||||||
viewModel.handleEvent(AppEvent.ToggleSelectedTunnel(tunnel))
|
|
||||||
} else {
|
|
||||||
navController.navigate(Route.TunnelOptions(tunnel.id))
|
|
||||||
viewModel.handleEvent(AppEvent.ClearSelectedTunnels)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onLongClick = {
|
|
||||||
viewModel.handleEvent(AppEvent.ToggleSelectedTunnel(tunnel))
|
|
||||||
},
|
|
||||||
interactionSource = remember { MutableInteractionSource() },
|
|
||||||
indication = null,
|
|
||||||
)
|
|
||||||
else Modifier,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+29
-57
@@ -4,7 +4,12 @@ import androidx.compose.foundation.layout.Arrangement
|
|||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.rounded.*
|
import androidx.compose.material.icons.rounded.Circle
|
||||||
|
import androidx.compose.material.icons.rounded.KeyboardArrowDown
|
||||||
|
import androidx.compose.material.icons.rounded.Settings
|
||||||
|
import androidx.compose.material.icons.rounded.SettingsEthernet
|
||||||
|
import androidx.compose.material.icons.rounded.Smartphone
|
||||||
|
import androidx.compose.material.icons.rounded.Star
|
||||||
import androidx.compose.material3.Checkbox
|
import androidx.compose.material3.Checkbox
|
||||||
import androidx.compose.material3.Icon
|
import androidx.compose.material3.Icon
|
||||||
import androidx.compose.material3.IconButton
|
import androidx.compose.material3.IconButton
|
||||||
@@ -14,13 +19,9 @@ import androidx.compose.runtime.remember
|
|||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.platform.LocalContext
|
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.semantics.semantics
|
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.ExpandingRowListItem
|
import com.zaneschepke.wireguardautotunnel.ui.common.ExpandingRowListItem
|
||||||
@@ -31,64 +32,31 @@ import com.zaneschepke.wireguardautotunnel.util.extensions.asColor
|
|||||||
fun TunnelRowItem(
|
fun TunnelRowItem(
|
||||||
state: TunnelState,
|
state: TunnelState,
|
||||||
isSelected: Boolean,
|
isSelected: Boolean,
|
||||||
|
expanded: Boolean,
|
||||||
tunnel: TunnelConf,
|
tunnel: TunnelConf,
|
||||||
tunnelState: TunnelState,
|
tunnelState: TunnelState,
|
||||||
appSettings: AppSettings,
|
onClick: () -> Unit,
|
||||||
onTvClick: () -> Unit,
|
onDoubleClick: () -> Unit,
|
||||||
onToggleSelectedTunnel: (TunnelConf) -> Unit,
|
onToggleSelectedTunnel: (TunnelConf) -> Unit,
|
||||||
onSwitchClick: (Boolean) -> Unit,
|
onSwitchClick: (Boolean) -> Unit,
|
||||||
isTv: Boolean,
|
isTv: Boolean,
|
||||||
showDetailedStats: Boolean,
|
|
||||||
modifier: Modifier = Modifier,
|
|
||||||
) {
|
) {
|
||||||
val context = LocalContext.current
|
|
||||||
val leadingIconColor =
|
val leadingIconColor =
|
||||||
remember(state) {
|
remember(state) {
|
||||||
if (state.status.isUp()) tunnelState.statistics.asColor() else Color.Gray
|
if (state.status.isUp()) tunnelState.statistics.asColor() else Color.Gray
|
||||||
}
|
}
|
||||||
|
|
||||||
val (leadingIcon, size, typeDescription) =
|
val (leadingIcon, size) =
|
||||||
remember(tunnel) {
|
remember(tunnel) {
|
||||||
when {
|
when {
|
||||||
tunnel.isPrimaryTunnel ->
|
tunnel.isPrimaryTunnel -> Pair(Icons.Rounded.Star, 16.dp)
|
||||||
Triple(Icons.Rounded.Star, 16.dp, context.getString(R.string.primary_tunnel))
|
tunnel.isMobileDataTunnel -> Pair(Icons.Rounded.Smartphone, 16.dp)
|
||||||
tunnel.isMobileDataTunnel ->
|
tunnel.isEthernetTunnel -> Pair(Icons.Rounded.SettingsEthernet, 16.dp)
|
||||||
Triple(
|
else -> Pair(Icons.Rounded.Circle, 14.dp)
|
||||||
Icons.Rounded.Smartphone,
|
|
||||||
16.dp,
|
|
||||||
context.getString(R.string.mobile_data_tunnel),
|
|
||||||
)
|
|
||||||
tunnel.isEthernetTunnel ->
|
|
||||||
Triple(
|
|
||||||
Icons.Rounded.SettingsEthernet,
|
|
||||||
16.dp,
|
|
||||||
context.getString(R.string.ethernet_tunnel),
|
|
||||||
)
|
|
||||||
else -> Triple(Icons.Rounded.Circle, 14.dp, context.getString(R.string.tunnel))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Status description based on tunnel state
|
|
||||||
val statusDescription =
|
|
||||||
remember(state) {
|
|
||||||
if (state.status.isUpOrStarting()) {
|
|
||||||
context.getString(R.string.active)
|
|
||||||
} else {
|
|
||||||
context.getString(R.string.inactive)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Combined content description for accessibility
|
|
||||||
val combinedContentDescription =
|
|
||||||
stringResource(
|
|
||||||
R.string.tunnel_item_description,
|
|
||||||
tunnel.tunName,
|
|
||||||
typeDescription,
|
|
||||||
statusDescription,
|
|
||||||
)
|
|
||||||
|
|
||||||
ExpandingRowListItem(
|
ExpandingRowListItem(
|
||||||
modifier = modifier.semantics(mergeDescendants = true) { combinedContentDescription },
|
|
||||||
leading = {
|
leading = {
|
||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
@@ -96,29 +64,27 @@ fun TunnelRowItem(
|
|||||||
) {
|
) {
|
||||||
if (isTv) {
|
if (isTv) {
|
||||||
Checkbox(
|
Checkbox(
|
||||||
checked = isSelected,
|
isSelected,
|
||||||
onCheckedChange = { onToggleSelectedTunnel(tunnel) },
|
onCheckedChange = { onToggleSelectedTunnel(tunnel) },
|
||||||
modifier = Modifier.minimumInteractiveComponentSize().size(12.dp),
|
modifier = Modifier.minimumInteractiveComponentSize().size(12.dp),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Icon(
|
Icon(
|
||||||
leadingIcon,
|
leadingIcon,
|
||||||
contentDescription = null,
|
stringResource(R.string.status),
|
||||||
tint = leadingIconColor,
|
tint = leadingIconColor,
|
||||||
modifier = Modifier.size(size),
|
modifier = Modifier.size(size),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
text = tunnel.tunName,
|
text = tunnel.tunName,
|
||||||
|
onHold = { if (!isTv) onToggleSelectedTunnel(tunnel) },
|
||||||
|
onClick = { if (!isTv) onClick() },
|
||||||
|
onDoubleClick = { if (!isTv) onDoubleClick() },
|
||||||
expanded = {
|
expanded = {
|
||||||
if (tunnelState.status != TunnelStatus.Down) {
|
if (expanded) {
|
||||||
TunnelStatisticsRow(
|
TunnelStatisticsRow(tunnelState.statistics, tunnel)
|
||||||
tunnelState,
|
} else null
|
||||||
tunnel,
|
|
||||||
appSettings.isPingEnabled,
|
|
||||||
showDetailedStats,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
trailing = {
|
trailing = {
|
||||||
Row(
|
Row(
|
||||||
@@ -126,7 +92,13 @@ fun TunnelRowItem(
|
|||||||
horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.End),
|
horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.End),
|
||||||
) {
|
) {
|
||||||
if (isTv) {
|
if (isTv) {
|
||||||
IconButton(onClick = onTvClick) {
|
IconButton(onClick = onDoubleClick) {
|
||||||
|
Icon(
|
||||||
|
Icons.Rounded.KeyboardArrowDown,
|
||||||
|
contentDescription = stringResource(R.string.info),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
IconButton(onClick = onClick) {
|
||||||
Icon(
|
Icon(
|
||||||
Icons.Rounded.Settings,
|
Icons.Rounded.Settings,
|
||||||
contentDescription = stringResource(R.string.settings),
|
contentDescription = stringResource(R.string.settings),
|
||||||
|
|||||||
+85
-187
@@ -1,214 +1,112 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.components
|
package com.zaneschepke.wireguardautotunnel.ui.screens.main.components
|
||||||
|
|
||||||
import androidx.compose.animation.AnimatedVisibility
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.derivedStateOf
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import com.zaneschepke.wireguardautotunnel.util.NumberUtils
|
import com.zaneschepke.wireguardautotunnel.util.NumberUtils
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toThreeDecimalPlaceString
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toThreeDecimalPlaceString
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun TunnelStatisticsRow(
|
fun TunnelStatisticsRow(statistics: TunnelStatistics?, tunnelConf: TunnelConf) {
|
||||||
tunnelState: TunnelState,
|
val config = TunnelConf.configFromAmQuick(tunnelConf.wgQuick)
|
||||||
tunnelConf: TunnelConf,
|
|
||||||
pingEnabled: Boolean,
|
|
||||||
showDetailedStats: Boolean,
|
|
||||||
) {
|
|
||||||
val config = remember(tunnelConf) { TunnelConf.configFromAmQuick(tunnelConf.wgQuick) }
|
|
||||||
val peerText = stringResource(R.string.peer)
|
|
||||||
val handshakeText = stringResource(R.string.handshake)
|
|
||||||
val endpointText = stringResource(R.string.endpoint)
|
|
||||||
val neverText = stringResource(R.string.never)
|
|
||||||
val textStyle = MaterialTheme.typography.bodySmall
|
|
||||||
val textColor = MaterialTheme.colorScheme.outline
|
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier.fillMaxWidth().padding(start = 45.dp, bottom = 10.dp, end = 10.dp),
|
modifier = Modifier.fillMaxWidth().padding(start = 45.dp, bottom = 10.dp, end = 10.dp),
|
||||||
verticalArrangement = Arrangement.spacedBy(10.dp),
|
verticalArrangement = Arrangement.spacedBy(10.dp, Alignment.CenterVertically),
|
||||||
horizontalAlignment = Alignment.Start,
|
horizontalAlignment = Alignment.Start,
|
||||||
) {
|
) {
|
||||||
config.peers.forEachIndexed { index, peer ->
|
config.peers.forEach { peer ->
|
||||||
key(peer.publicKey.toBase64()) { // Key by peer ID to skip recomposition if unchanged
|
val peerId = remember { peer.publicKey.toBase64().subSequence(0, 3).toString() + "***" }
|
||||||
val peerStats =
|
val endpoint =
|
||||||
remember(tunnelState.statistics, peer, tunnelConf) {
|
remember(statistics) { statistics?.peerStats(peer.publicKey)?.resolvedEndpoint }
|
||||||
tunnelState.statistics?.peerStats(peer.publicKey)
|
val peerRxMB by
|
||||||
|
remember(statistics) {
|
||||||
|
derivedStateOf {
|
||||||
|
statistics
|
||||||
|
?.peerStats(peer.publicKey)
|
||||||
|
?.rxBytes
|
||||||
|
?.let { NumberUtils.bytesToMB(it) }
|
||||||
|
?.toThreeDecimalPlaceString()
|
||||||
}
|
}
|
||||||
val peerId =
|
}
|
||||||
remember(peer) {
|
val peerTxMB by
|
||||||
peer.publicKey.toBase64().subSequence(0, 3).toString() + "***"
|
remember(statistics) {
|
||||||
|
derivedStateOf {
|
||||||
|
statistics
|
||||||
|
?.peerStats(peer.publicKey)
|
||||||
|
?.txBytes
|
||||||
|
?.let { NumberUtils.bytesToMB(it) }
|
||||||
|
?.toThreeDecimalPlaceString()
|
||||||
}
|
}
|
||||||
val endpoint by
|
}
|
||||||
remember(peerStats) { derivedStateOf { peerStats?.resolvedEndpoint } }
|
val handshake by
|
||||||
val peerRxMB by
|
remember(statistics) {
|
||||||
remember(peerStats) {
|
derivedStateOf {
|
||||||
derivedStateOf {
|
statistics?.peerStats(peer.publicKey)?.latestHandshakeEpochMillis?.let {
|
||||||
peerStats
|
if (it == 0L) {
|
||||||
?.rxBytes
|
null
|
||||||
?.let { NumberUtils.bytesToMB(it) }
|
} else {
|
||||||
?.toThreeDecimalPlaceString() ?: "0.00"
|
"${NumberUtils.getSecondsBetweenTimestampAndNow(it)}"
|
||||||
}
|
|
||||||
}
|
|
||||||
val peerTxMB by
|
|
||||||
remember(peerStats) {
|
|
||||||
derivedStateOf {
|
|
||||||
peerStats
|
|
||||||
?.txBytes
|
|
||||||
?.let { NumberUtils.bytesToMB(it) }
|
|
||||||
?.toThreeDecimalPlaceString() ?: "0.00"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val handshake by
|
|
||||||
remember(peerStats) {
|
|
||||||
derivedStateOf {
|
|
||||||
peerStats?.latestHandshakeEpochMillis?.let {
|
|
||||||
if (it == 0L) null
|
|
||||||
else NumberUtils.getSecondsBetweenTimestampAndNow(it).toString()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val pingState by
|
|
||||||
remember(tunnelState.pingStates) {
|
|
||||||
derivedStateOf {
|
|
||||||
tunnelState.pingStates?.getOrDefault(peer.publicKey, null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val lastPingedSeconds by
|
|
||||||
remember(peerStats) {
|
|
||||||
derivedStateOf {
|
|
||||||
pingState?.lastSuccessfulPingMillis?.let {
|
|
||||||
NumberUtils.getSecondsBetweenTimestampAndNow(it)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Group peer stats in a column with internal spacing
|
|
||||||
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text("$peerText: $peerId", style = textStyle, color = textColor)
|
|
||||||
Text(
|
|
||||||
"$handshakeText: ${handshake?.let { stringResource(R.string.sec_ago_template, it)} ?: neverText}",
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.rx_template, peerRxMB),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.tx_template, peerTxMB),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
AnimatedVisibility(visible = endpoint != null) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text("$endpointText: $endpoint", style = textStyle, color = textColor)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
AnimatedVisibility(visible = pingState != null && pingEnabled) {
|
|
||||||
pingState?.let {
|
|
||||||
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
stringResource(
|
|
||||||
R.string.reachable_template,
|
|
||||||
stringResource(
|
|
||||||
if (it.isReachable) R.string._true
|
|
||||||
else R.string._false
|
|
||||||
),
|
|
||||||
),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
Text(
|
|
||||||
stringResource(
|
|
||||||
R.string.ping_target_template,
|
|
||||||
it.pingTarget,
|
|
||||||
),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (showDetailedStats) {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.latency_template, it.rttAvg),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
Text(
|
|
||||||
stringResource(R.string.jitter_template, it.rttStddev),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
stringResource(
|
|
||||||
R.string.packets_sent_template,
|
|
||||||
it.transmitted,
|
|
||||||
),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
Text(
|
|
||||||
stringResource(
|
|
||||||
R.string.packet_loss_template,
|
|
||||||
it.packetLoss,
|
|
||||||
),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
stringResource(
|
|
||||||
R.string.ping_success_template,
|
|
||||||
lastPingedSeconds?.let { sec ->
|
|
||||||
stringResource(R.string.sec_ago_template, sec)
|
|
||||||
} ?: neverText,
|
|
||||||
),
|
|
||||||
style = textStyle,
|
|
||||||
color = textColor,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(16.dp, Alignment.Start),
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.peer).lowercase() + ": $peerId",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.outline,
|
||||||
|
)
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.handshake) +
|
||||||
|
": ${if(handshake == null) stringResource(R.string.never) else handshake + " " + stringResource(R.string.sec)}",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.outline,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(16.dp, Alignment.Start),
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
"rx: ${peerRxMB ?: 0.00} MB",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.outline,
|
||||||
|
)
|
||||||
|
Text(
|
||||||
|
"tx: ${peerTxMB ?: 0.00} MB",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.outline,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (endpoint != null) {
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(16.dp, Alignment.Start),
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
"endpoint: $endpoint",
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
color = MaterialTheme.colorScheme.outline,
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-1
@@ -7,7 +7,11 @@ import androidx.compose.material3.AlertDialog
|
|||||||
import androidx.compose.material3.OutlinedTextField
|
import androidx.compose.material3.OutlinedTextField
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.material3.TextButton
|
import androidx.compose.material3.TextButton
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
|||||||
+19
-37
@@ -7,7 +7,10 @@ import androidx.compose.foundation.layout.fillMaxSize
|
|||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.verticalScroll
|
import androidx.compose.foundation.verticalScroll
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.DisposableEffect
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
@@ -22,7 +25,6 @@ import com.zaneschepke.wireguardautotunnel.ui.common.prompt.AuthorizationPrompt
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.AddPeerButton
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.AddPeerButton
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.InterfaceSection
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.InterfaceSection
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.PeersSection
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components.PeersSection
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
@@ -30,7 +32,6 @@ import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|||||||
@Composable
|
@Composable
|
||||||
fun ConfigScreen(
|
fun ConfigScreen(
|
||||||
tunnelConf: TunnelConf?,
|
tunnelConf: TunnelConf?,
|
||||||
appUiState: AppUiState,
|
|
||||||
appViewModel: AppViewModel,
|
appViewModel: AppViewModel,
|
||||||
viewModel: ConfigViewModel = hiltViewModel(),
|
viewModel: ConfigViewModel = hiltViewModel(),
|
||||||
) {
|
) {
|
||||||
@@ -41,17 +42,6 @@ fun ConfigScreen(
|
|||||||
|
|
||||||
val activity = context as? MainActivity
|
val activity = context as? MainActivity
|
||||||
|
|
||||||
var save by remember { mutableStateOf(false) }
|
|
||||||
|
|
||||||
val isTunnelNameTaken by
|
|
||||||
remember(uiState.tunnelName, appUiState.tunnels) {
|
|
||||||
derivedStateOf {
|
|
||||||
appUiState.tunnels
|
|
||||||
.filter { it.id != tunnelConf?.id }
|
|
||||||
.any { it.name == uiState.tunnelName }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Secure screen due to sensitive information
|
// Secure screen due to sensitive information
|
||||||
DisposableEffect(Unit) {
|
DisposableEffect(Unit) {
|
||||||
activity
|
activity
|
||||||
@@ -68,34 +58,26 @@ fun ConfigScreen(
|
|||||||
appViewModel.handleEvent(
|
appViewModel.handleEvent(
|
||||||
AppEvent.SetScreenAction {
|
AppEvent.SetScreenAction {
|
||||||
keyboardController?.hide()
|
keyboardController?.hide()
|
||||||
if (!isTunnelNameTaken) {
|
viewModel.save(tunnelConf)
|
||||||
save = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
LaunchedEffect(tunnelConf) { viewModel.initFromTunnel(tunnelConf) }
|
LaunchedEffect(tunnelConf) { viewModel.initFromTunnel(tunnelConf) }
|
||||||
|
|
||||||
// TODO improve error messages
|
LaunchedEffect(uiState.success) {
|
||||||
LaunchedEffect(save) {
|
if (uiState.success == true) {
|
||||||
if (save) {
|
appViewModel.handleEvent(
|
||||||
try {
|
AppEvent.ShowMessage(StringValue.StringResource(R.string.config_changes_saved))
|
||||||
appViewModel.handleEvent(
|
)
|
||||||
AppEvent.SaveTunnelUniquely(
|
appViewModel.handleEvent(AppEvent.PopBackStack(true))
|
||||||
uiState.configProxy.buildTunnelConfFromState(uiState.tunnelName, tunnelConf)
|
}
|
||||||
)
|
}
|
||||||
)
|
|
||||||
appViewModel.handleEvent(
|
LaunchedEffect(uiState.message) {
|
||||||
AppEvent.ShowMessage(StringValue.StringResource(R.string.config_changes_saved))
|
uiState.message?.let { message ->
|
||||||
)
|
appViewModel.handleEvent(AppEvent.ShowMessage(message))
|
||||||
appViewModel.handleEvent(AppEvent.PopBackStack(true))
|
viewModel.setMessage(null)
|
||||||
} catch (e: Exception) {
|
|
||||||
val message = e.message ?: context.resources.getString(R.string.unknown_error)
|
|
||||||
appViewModel.handleEvent(AppEvent.ShowMessage(StringValue.DynamicString(message)))
|
|
||||||
} finally {
|
|
||||||
save = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,7 +111,7 @@ fun ConfigScreen(
|
|||||||
modifier =
|
modifier =
|
||||||
Modifier.fillMaxSize().verticalScroll(rememberScrollState()).padding(horizontal = 24.dp),
|
Modifier.fillMaxSize().verticalScroll(rememberScrollState()).padding(horizontal = 24.dp),
|
||||||
) {
|
) {
|
||||||
InterfaceSection(isTunnelNameTaken, uiState, viewModel)
|
InterfaceSection(uiState, viewModel)
|
||||||
PeersSection(uiState, viewModel)
|
PeersSection(uiState, viewModel)
|
||||||
AddPeerButton(viewModel)
|
AddPeerButton(viewModel)
|
||||||
}
|
}
|
||||||
|
|||||||
+48
-1
@@ -1,20 +1,32 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.config
|
package com.zaneschepke.wireguardautotunnel.ui.screens.main.config
|
||||||
|
|
||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
|
import androidx.lifecycle.viewModelScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.state.ConfigUiState
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.state.ConfigUiState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.ConfigProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.ConfigProxy
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.InterfaceProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.InterfaceProxy
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.PeerProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.PeerProxy
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
import kotlinx.coroutines.flow.asStateFlow
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.flow.update
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
class ConfigViewModel @Inject constructor() : ViewModel() {
|
class ConfigViewModel
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
private val tunnelRepository: TunnelRepository,
|
||||||
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
|
) : ViewModel() {
|
||||||
|
|
||||||
private val _uiState = MutableStateFlow(ConfigUiState())
|
private val _uiState = MutableStateFlow(ConfigUiState())
|
||||||
val uiState: StateFlow<ConfigUiState> = _uiState.asStateFlow()
|
val uiState: StateFlow<ConfigUiState> = _uiState.asStateFlow()
|
||||||
@@ -109,6 +121,41 @@ class ConfigViewModel @Inject constructor() : ViewModel() {
|
|||||||
updatePeer(index, updated)
|
updatePeer(index, updated)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun setMessage(message: StringValue?) {
|
||||||
|
_uiState.update { it.copy(message = message) }
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO improve error messaging
|
||||||
|
fun save(tunnelConf: TunnelConf?) =
|
||||||
|
viewModelScope.launch(ioDispatcher) {
|
||||||
|
val message =
|
||||||
|
try {
|
||||||
|
val saveConfig = buildTunnelConfFromState(tunnelConf)
|
||||||
|
tunnelRepository.save(saveConfig)
|
||||||
|
_uiState.update { it.copy(success = true) }
|
||||||
|
} catch (e: Exception) {
|
||||||
|
setMessage(
|
||||||
|
e.message?.let { message -> (StringValue.DynamicString(message)) }
|
||||||
|
?: StringValue.StringResource(R.string.unknown_error)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildTunnelConfFromState(tunnelConf: TunnelConf?): TunnelConf {
|
||||||
|
val (wg, am) = _uiState.value.configProxy.buildConfigs()
|
||||||
|
val name = _uiState.value.tunnelName
|
||||||
|
return tunnelConf?.copyWithCallback(
|
||||||
|
tunName = name,
|
||||||
|
amQuick = am.toAwgQuickString(true),
|
||||||
|
wgQuick = wg.toWgQuickString(true),
|
||||||
|
)
|
||||||
|
?: TunnelConf(
|
||||||
|
tunName = name,
|
||||||
|
amQuick = am.toAwgQuickString(true),
|
||||||
|
wgQuick = wg.toWgQuickString(true),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
fun onAuthenticated() {
|
fun onAuthenticated() {
|
||||||
_uiState.update { it.copy(isAuthenticated = true) }
|
_uiState.update { it.copy(isAuthenticated = true) }
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-1
@@ -5,7 +5,12 @@ import androidx.compose.foundation.layout.Column
|
|||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.rounded.MoreVert
|
import androidx.compose.material.icons.rounded.MoreVert
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.DropdownMenu
|
||||||
|
import androidx.compose.material3.DropdownMenuItem
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.IconButton
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.shadow
|
import androidx.compose.ui.draw.shadow
|
||||||
|
|||||||
+5
-1
@@ -9,7 +9,11 @@ import androidx.compose.foundation.text.KeyboardOptions
|
|||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.rounded.ContentCopy
|
import androidx.compose.material.icons.rounded.ContentCopy
|
||||||
import androidx.compose.material.icons.rounded.Refresh
|
import androidx.compose.material.icons.rounded.Refresh
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.IconButton
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
||||||
|
|||||||
+11
-8
@@ -1,11 +1,19 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components
|
package com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components
|
||||||
|
|
||||||
import androidx.compose.foundation.focusGroup
|
import androidx.compose.foundation.focusGroup
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Surface
|
import androidx.compose.material3.Surface
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
@@ -17,11 +25,7 @@ import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.ConfigViewMode
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.state.ConfigUiState
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.config.state.ConfigUiState
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun InterfaceSection(
|
fun InterfaceSection(uiState: ConfigUiState, viewModel: ConfigViewModel) {
|
||||||
isTunnelNameTaken: Boolean,
|
|
||||||
uiState: ConfigUiState,
|
|
||||||
viewModel: ConfigViewModel,
|
|
||||||
) {
|
|
||||||
var isDropDownExpanded by remember { mutableStateOf(false) }
|
var isDropDownExpanded by remember { mutableStateOf(false) }
|
||||||
val isAmneziaCompatibilitySet =
|
val isAmneziaCompatibilitySet =
|
||||||
remember(uiState.configProxy.`interface`) {
|
remember(uiState.configProxy.`interface`) {
|
||||||
@@ -54,7 +58,6 @@ fun InterfaceSection(
|
|||||||
value = uiState.tunnelName,
|
value = uiState.tunnelName,
|
||||||
onValueChange = viewModel::updateTunnelName,
|
onValueChange = viewModel::updateTunnelName,
|
||||||
label = stringResource(R.string.name),
|
label = stringResource(R.string.name),
|
||||||
isError = isTunnelNameTaken,
|
|
||||||
hint = stringResource(R.string.tunnel_name).lowercase(),
|
hint = stringResource(R.string.tunnel_name).lowercase(),
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
)
|
)
|
||||||
|
|||||||
+18
-3
@@ -2,13 +2,28 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.main.config.components
|
|||||||
|
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.focusGroup
|
import androidx.compose.foundation.focusGroup
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.rounded.Delete
|
import androidx.compose.material.icons.rounded.Delete
|
||||||
import androidx.compose.material.icons.rounded.MoreVert
|
import androidx.compose.material.icons.rounded.MoreVert
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.DropdownMenu
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.material3.DropdownMenuItem
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.IconButton
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Surface
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.shadow
|
import androidx.compose.ui.draw.shadow
|
||||||
|
|||||||
+3
-1
@@ -3,6 +3,7 @@ package com.zaneschepke.wireguardautotunnel.ui.screens.main.config.state
|
|||||||
import com.zaneschepke.wireguardautotunnel.ui.state.ConfigProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.ConfigProxy
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.InterfaceProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.InterfaceProxy
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.PeerProxy
|
import com.zaneschepke.wireguardautotunnel.ui.state.PeerProxy
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
|
|
||||||
data class ConfigUiState(
|
data class ConfigUiState(
|
||||||
val tunnelName: String = "",
|
val tunnelName: String = "",
|
||||||
@@ -12,5 +13,6 @@ data class ConfigUiState(
|
|||||||
val showScripts: Boolean = false,
|
val showScripts: Boolean = false,
|
||||||
val isAuthenticated: Boolean = true,
|
val isAuthenticated: Boolean = true,
|
||||||
val showAuthPrompt: Boolean = false,
|
val showAuthPrompt: Boolean = false,
|
||||||
val saveChanges: Boolean = false,
|
val message: StringValue? = null,
|
||||||
|
val success: Boolean? = null,
|
||||||
)
|
)
|
||||||
|
|||||||
-168
@@ -1,168 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.ui.screens.main.sort
|
|
||||||
|
|
||||||
import androidx.compose.foundation.gestures.ScrollableDefaults
|
|
||||||
import androidx.compose.foundation.layout.*
|
|
||||||
import androidx.compose.foundation.lazy.LazyColumn
|
|
||||||
import androidx.compose.foundation.lazy.itemsIndexed
|
|
||||||
import androidx.compose.foundation.lazy.rememberLazyListState
|
|
||||||
import androidx.compose.foundation.overscroll
|
|
||||||
import androidx.compose.foundation.rememberOverscrollEffect
|
|
||||||
import androidx.compose.material.icons.Icons
|
|
||||||
import androidx.compose.material.icons.filled.ArrowDownward
|
|
||||||
import androidx.compose.material.icons.filled.ArrowUpward
|
|
||||||
import androidx.compose.material.icons.filled.DragHandle
|
|
||||||
import androidx.compose.material3.Icon
|
|
||||||
import androidx.compose.material3.IconButton
|
|
||||||
import androidx.compose.runtime.*
|
|
||||||
import androidx.compose.ui.Alignment
|
|
||||||
import androidx.compose.ui.Modifier
|
|
||||||
import androidx.compose.ui.hapticfeedback.HapticFeedbackType
|
|
||||||
import androidx.compose.ui.input.pointer.pointerInput
|
|
||||||
import androidx.compose.ui.platform.LocalHapticFeedback
|
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.unit.dp
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.ExpandingRowListItem
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalIsAndroidTV
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.AppUiState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.isSortedBy
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.event.UiEvent
|
|
||||||
import sh.calvin.reorderable.DragGestureDetector
|
|
||||||
import sh.calvin.reorderable.ReorderableItem
|
|
||||||
import sh.calvin.reorderable.rememberReorderableLazyListState
|
|
||||||
|
|
||||||
@Composable
|
|
||||||
fun SortScreen(appUiState: AppUiState, viewModel: AppViewModel) {
|
|
||||||
|
|
||||||
val hapticFeedback = LocalHapticFeedback.current
|
|
||||||
val isTv = LocalIsAndroidTV.current
|
|
||||||
|
|
||||||
var sortAscending by remember { mutableStateOf<Boolean?>(null) }
|
|
||||||
var sortedTunnels by remember { mutableStateOf(appUiState.tunnels.sortedBy { it.position }) }
|
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
|
||||||
viewModel.uiEvent.collect { uiEvent ->
|
|
||||||
when (uiEvent) {
|
|
||||||
UiEvent.SortTunnels -> {
|
|
||||||
sortAscending =
|
|
||||||
when (sortAscending) {
|
|
||||||
null -> !sortedTunnels.isSortedBy { it.name }
|
|
||||||
true -> false
|
|
||||||
false -> null
|
|
||||||
}
|
|
||||||
sortedTunnels =
|
|
||||||
when (sortAscending) {
|
|
||||||
true -> sortedTunnels.sortedBy { it.name }
|
|
||||||
false -> sortedTunnels.sortedByDescending { it.name }
|
|
||||||
null -> sortedTunnels.sortedBy { it.position }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
|
||||||
viewModel.handleEvent(
|
|
||||||
AppEvent.SetScreenAction {
|
|
||||||
viewModel.handleEvent(
|
|
||||||
AppEvent.SaveAllConfigs(
|
|
||||||
sortedTunnels.mapIndexed { index, conf -> conf.copy(position = index) }
|
|
||||||
)
|
|
||||||
)
|
|
||||||
viewModel.handleEvent(AppEvent.PopBackStack(true))
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
val lazyListState = rememberLazyListState()
|
|
||||||
|
|
||||||
val reorderableLazyListState =
|
|
||||||
rememberReorderableLazyListState(
|
|
||||||
lazyListState,
|
|
||||||
scrollThresholdPadding = WindowInsets.systemBars.asPaddingValues(),
|
|
||||||
) { from, to ->
|
|
||||||
sortedTunnels =
|
|
||||||
sortedTunnels.toMutableList().apply { add(to.index, removeAt(from.index)) }
|
|
||||||
hapticFeedback.performHapticFeedback(HapticFeedbackType.SegmentFrequentTick)
|
|
||||||
}
|
|
||||||
|
|
||||||
LazyColumn(
|
|
||||||
horizontalAlignment = Alignment.Start,
|
|
||||||
verticalArrangement = Arrangement.spacedBy(5.dp, Alignment.Top),
|
|
||||||
modifier =
|
|
||||||
Modifier.pointerInput(Unit) { if (appUiState.tunnels.isEmpty()) return@pointerInput }
|
|
||||||
.overscroll(rememberOverscrollEffect())
|
|
||||||
.padding(horizontal = 16.dp, vertical = 24.dp),
|
|
||||||
state = lazyListState,
|
|
||||||
userScrollEnabled = true,
|
|
||||||
reverseLayout = false,
|
|
||||||
flingBehavior = ScrollableDefaults.flingBehavior(),
|
|
||||||
) {
|
|
||||||
itemsIndexed(sortedTunnels, key = { _, tunnel -> tunnel.id }) { index, tunnel ->
|
|
||||||
ReorderableItem(reorderableLazyListState, tunnel.id) { isDragging ->
|
|
||||||
ExpandingRowListItem(
|
|
||||||
leading = {},
|
|
||||||
text = tunnel.name,
|
|
||||||
trailing = {
|
|
||||||
if (!isTv)
|
|
||||||
Icon(
|
|
||||||
Icons.Default.DragHandle,
|
|
||||||
stringResource(
|
|
||||||
com.zaneschepke.wireguardautotunnel.R.string.drag_handle
|
|
||||||
),
|
|
||||||
)
|
|
||||||
else
|
|
||||||
Row {
|
|
||||||
IconButton(
|
|
||||||
onClick = {
|
|
||||||
sortedTunnels =
|
|
||||||
sortedTunnels.toMutableList().apply {
|
|
||||||
add(index - 1, removeAt(index))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
enabled = index != 0,
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
Icons.Default.ArrowUpward,
|
|
||||||
stringResource(
|
|
||||||
com.zaneschepke.wireguardautotunnel.R.string.move_up
|
|
||||||
),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
IconButton(
|
|
||||||
onClick = {
|
|
||||||
sortedTunnels =
|
|
||||||
sortedTunnels.toMutableList().apply {
|
|
||||||
add(index + 1, removeAt(index))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
enabled = index != sortedTunnels.count() - 1,
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
Icons.Default.ArrowDownward,
|
|
||||||
stringResource(R.string.move_down),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
isSelected = isDragging,
|
|
||||||
expanded = {},
|
|
||||||
modifier =
|
|
||||||
Modifier.draggableHandle(
|
|
||||||
onDragStarted = {
|
|
||||||
hapticFeedback.performHapticFeedback(
|
|
||||||
HapticFeedbackType.GestureThresholdActivate
|
|
||||||
)
|
|
||||||
},
|
|
||||||
onDragStopped = {
|
|
||||||
hapticFeedback.performHapticFeedback(HapticFeedbackType.GestureEnd)
|
|
||||||
},
|
|
||||||
dragGestureDetector = DragGestureDetector.LongPress,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user