mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 756d7cbea0 |
@@ -0,0 +1,22 @@
|
|||||||
|
# Contributor Code of Conduct
|
||||||
|
|
||||||
|
## Pledge
|
||||||
|
|
||||||
|
We as individuals involved in this project, pledge to participate in this
|
||||||
|
community in a respectful, constructive, and civil manner as we work towards a common goal
|
||||||
|
of delivering free, open source, and value adding software for all.
|
||||||
|
|
||||||
|
## Standard
|
||||||
|
|
||||||
|
The standard for this community is the Golden Rule.
|
||||||
|
|
||||||
|
> “Do unto others as you would have them do unto you.”
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
This Code of Conduct applies to all spaces related to WG Tunnel.
|
||||||
|
|
||||||
|
## Incidents or Concerns
|
||||||
|
|
||||||
|
For any incidents or concerns, reach out to Zane at
|
||||||
|
<support@zaneschepke.com>.
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
ko_fi: zaneschepke
|
ko_fi: zaneschepke
|
||||||
liberapay: zaneschepke
|
liberapay: zaneschepke
|
||||||
github: zaneschepke
|
github: zaneschepke
|
||||||
custom: ["https://wgtunnel.com/donate/"]
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ A clear and concise description of what the bug is.
|
|||||||
- Device: [e.g. Pixel 4a]
|
- Device: [e.g. Pixel 4a]
|
||||||
- Android Version: [e.g. Android 13]
|
- Android Version: [e.g. Android 13]
|
||||||
- App Version [e.g. 3.3.3]
|
- App Version [e.g. 3.3.3]
|
||||||
- App mode: [e.g. Kernel, VPN, Proxy, Lockdown]
|
- Backend: [e.g. Kernel, Userspace]
|
||||||
|
|
||||||
**To Reproduce**
|
**To Reproduce**
|
||||||
Steps to reproduce the behavior:
|
Steps to reproduce the behavior:
|
||||||
|
|||||||
@@ -1,130 +0,0 @@
|
|||||||
name: build-aab
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
build_type:
|
|
||||||
type: choice
|
|
||||||
description: "Build type"
|
|
||||||
required: true
|
|
||||||
default: release
|
|
||||||
options:
|
|
||||||
- release
|
|
||||||
flavor:
|
|
||||||
type: choice
|
|
||||||
description: "Product flavor"
|
|
||||||
required: true
|
|
||||||
default: google
|
|
||||||
options:
|
|
||||||
- google
|
|
||||||
secrets:
|
|
||||||
SIGNING_KEY_ALIAS:
|
|
||||||
required: false
|
|
||||||
SIGNING_KEY_PASSWORD:
|
|
||||||
required: false
|
|
||||||
SIGNING_STORE_PASSWORD:
|
|
||||||
required: false
|
|
||||||
SERVICE_ACCOUNT_JSON:
|
|
||||||
required: false
|
|
||||||
KEYSTORE:
|
|
||||||
required: false
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
build_type:
|
|
||||||
type: string
|
|
||||||
description: "Build type"
|
|
||||||
required: true
|
|
||||||
default: release
|
|
||||||
flavor:
|
|
||||||
type: string
|
|
||||||
description: "Product flavor"
|
|
||||||
required: false
|
|
||||||
default: google
|
|
||||||
secrets:
|
|
||||||
SIGNING_KEY_ALIAS:
|
|
||||||
required: false
|
|
||||||
SIGNING_KEY_PASSWORD:
|
|
||||||
required: false
|
|
||||||
SIGNING_STORE_PASSWORD:
|
|
||||||
required: false
|
|
||||||
SERVICE_ACCOUNT_JSON:
|
|
||||||
required: false
|
|
||||||
KEYSTORE:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
env:
|
|
||||||
UPLOAD_DIR_ANDROID: android_artifacts
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
|
|
||||||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
|
||||||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
|
||||||
KEY_STORE_FILE: 'android_keystore.jks'
|
|
||||||
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
|
||||||
outputs:
|
|
||||||
UPLOAD_DIR_ANDROID: ${{ env.UPLOAD_DIR_ANDROID }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Set up JDK 17
|
|
||||||
uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
distribution: 'temurin'
|
|
||||||
java-version: '17'
|
|
||||||
cache: gradle
|
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
|
||||||
run: chmod +x gradlew
|
|
||||||
|
|
||||||
- name: Decode Keystore
|
|
||||||
id: decode_keystore
|
|
||||||
uses: timheuer/base64-to-file@v1.2
|
|
||||||
with:
|
|
||||||
fileName: ${{ env.KEY_STORE_FILE }}
|
|
||||||
fileDir: ${{ env.KEY_STORE_LOCATION }}
|
|
||||||
encodedString: ${{ secrets.KEYSTORE }}
|
|
||||||
|
|
||||||
- name: Create keystore path env var
|
|
||||||
if: ${{ inputs.build_type != 'debug' }}
|
|
||||||
run: |
|
|
||||||
store_path=${{ env.KEY_STORE_LOCATION }}${{ env.KEY_STORE_FILE }}
|
|
||||||
echo "KEY_STORE_PATH=$store_path" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Build AAB (noSplits=true)
|
|
||||||
run: |
|
|
||||||
flavor=${{ inputs.flavor }}
|
|
||||||
build_type=${{ inputs.build_type }}
|
|
||||||
case $build_type in
|
|
||||||
"release")
|
|
||||||
./gradlew :app:bundle${flavor^}Release \
|
|
||||||
-PnoSplits=true \
|
|
||||||
--info
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
- name: Get release AAB path
|
|
||||||
id: aab-path
|
|
||||||
run: |
|
|
||||||
AAB_PATH=$(find app/build/outputs/bundle -iname "*google*release*.aab" -type f | head -1)
|
|
||||||
if [ -z "$AAB_PATH" ]; then
|
|
||||||
echo "Error: AAB not found!" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Found AAB: $AAB_PATH"
|
|
||||||
echo "path=$AAB_PATH" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Upload AAB Artifact
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
|
||||||
name: google-play-aab
|
|
||||||
path: ${{ steps.aab-path.outputs.path }}
|
|
||||||
retention-days: 7
|
|
||||||
if-no-files-found: error
|
|
||||||
@@ -72,7 +72,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
UPLOAD_DIR_ANDROID: ${{ env.UPLOAD_DIR_ANDROID }}
|
UPLOAD_DIR_ANDROID: ${{ env.UPLOAD_DIR_ANDROID }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
@@ -114,11 +114,15 @@ jobs:
|
|||||||
- name: Get release apk path
|
- name: Get release apk path
|
||||||
id: apk-path
|
id: apk-path
|
||||||
run: echo "path=$(find . -regex '^.*/build/outputs/apk/${{ inputs.flavor }}/${{ inputs.build_type }}/.*\.apk$' -type f | head -1 | tail -c+2)" >> $GITHUB_OUTPUT
|
run: echo "path=$(find . -regex '^.*/build/outputs/apk/${{ inputs.flavor }}/${{ inputs.build_type }}/.*\.apk$' -type f | head -1 | tail -c+2)" >> $GITHUB_OUTPUT
|
||||||
- name: Upload All APK Artifacts
|
- name: Upload APK
|
||||||
uses: actions/upload-artifact@v7
|
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 }}/*.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
|
||||||
@@ -16,19 +16,16 @@ jobs:
|
|||||||
has_new_commits: ${{ steps.check.outputs.new_commits }}
|
has_new_commits: ${{ steps.check.outputs.new_commits }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v4
|
||||||
- name: Check for new commits
|
- name: Check for new commits
|
||||||
id: check
|
id: check
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
NEW_COMMITS=$(git rev-list --count --after="$(date -Iseconds -d '23 hours ago')" ${{ github.sha }})
|
NEW_COMMITS=$(git rev-list --count --after="$(date -Iseconds -d '23 hours ago')" ${{ github.sha }})
|
||||||
echo "new_commits=$NEW_COMMITS" >> $GITHUB_OUTPUT
|
echo "new_commits=$NEW_COMMITS" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
build-standalone-nightly:
|
build-standalone-nightly:
|
||||||
needs:
|
|
||||||
- check_commits
|
|
||||||
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@@ -37,13 +34,14 @@ jobs:
|
|||||||
|
|
||||||
publish:
|
publish:
|
||||||
needs:
|
needs:
|
||||||
|
- check_commits
|
||||||
- build-standalone-nightly
|
- build-standalone-nightly
|
||||||
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
||||||
name: publish-nightly
|
name: publish-nightly
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
@@ -55,14 +53,14 @@ jobs:
|
|||||||
tag: "latest"
|
tag: "latest"
|
||||||
message: "Automated tag for HEAD commit"
|
message: "Automated tag for HEAD commit"
|
||||||
force_push_tag: true
|
force_push_tag: true
|
||||||
github_token: ${{ github.token }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
tag_exists_error: false
|
tag_exists_error: false
|
||||||
|
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
id: changelog
|
id: changelog
|
||||||
uses: requarks/changelog-action@v1
|
uses: requarks/changelog-action@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
toTag: "nightly"
|
toTag: "nightly"
|
||||||
fromTag: "latest"
|
fromTag: "latest"
|
||||||
writeToFile: false
|
writeToFile: false
|
||||||
@@ -71,7 +69,7 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/temp
|
run: mkdir ${{ github.workspace }}/temp
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v8
|
uses: actions/download-artifact@v5
|
||||||
with:
|
with:
|
||||||
pattern: android_artifacts_*
|
pattern: android_artifacts_*
|
||||||
path: ${{ github.workspace }}/temp
|
path: ${{ github.workspace }}/temp
|
||||||
@@ -86,7 +84,7 @@ jobs:
|
|||||||
tag_name: "nightly"
|
tag_name: "nightly"
|
||||||
delete_release: true
|
delete_release: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Get checksum
|
- name: Get checksum
|
||||||
id: checksum
|
id: checksum
|
||||||
@@ -126,4 +124,4 @@ jobs:
|
|||||||
files: |
|
files: |
|
||||||
${{ github.workspace }}/temp/**/*.apk
|
${{ github.workspace }}/temp/**/*.apk
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
name: notifications
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened, closed]
|
|
||||||
release:
|
|
||||||
types: [published, prereleased]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
notify:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Send to Telegram - New Issue
|
|
||||||
if: github.event_name == 'issues' && github.event.action == 'opened'
|
|
||||||
env:
|
|
||||||
TITLE: ${{ github.event.issue.title }}
|
|
||||||
NUMBER: ${{ github.event.issue.number }}
|
|
||||||
USER: ${{ github.event.issue.user.login }}
|
|
||||||
BODY: ${{ github.event.issue.body || 'No body provided' }}
|
|
||||||
URL: ${{ github.event.issue.html_url }}
|
|
||||||
run: |
|
|
||||||
BODY_TRUNC="${BODY:0:200}" # Truncate to avoid spam
|
|
||||||
TEXT=$(echo -e "🆕 New Issue #$NUMBER: *$TITLE* by $USER\n\n$BODY_TRUNC\n\n[View Issue]($URL)")
|
|
||||||
curl -s -X POST "https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage" \
|
|
||||||
-d chat_id="${{ vars.TELEGRAM_CHAT_ID }}" \
|
|
||||||
${{ vars.TELEGRAM_THREAD_ID && format('-d message_thread_id="{0}"', vars.TELEGRAM_THREAD_ID) || '' }} \
|
|
||||||
-d parse_mode="Markdown" \
|
|
||||||
--data-urlencode "text=$TEXT"
|
|
||||||
|
|
||||||
- name: Send to Telegram - Closed Issue
|
|
||||||
if: github.event_name == 'issues' && github.event.action == 'closed'
|
|
||||||
env:
|
|
||||||
TITLE: ${{ github.event.issue.title }}
|
|
||||||
NUMBER: ${{ github.event.issue.number }}
|
|
||||||
USER: ${{ github.event.issue.user.login }}
|
|
||||||
URL: ${{ github.event.issue.html_url }}
|
|
||||||
run: |
|
|
||||||
TEXT=$(echo -e "✅ Issue Closed #$NUMBER: *$TITLE* by $USER\n\n[View Issue]($URL)")
|
|
||||||
curl -s -X POST "https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage" \
|
|
||||||
-d chat_id="${{ vars.TELEGRAM_CHAT_ID }}" \
|
|
||||||
${{ vars.TELEGRAM_THREAD_ID && format('-d message_thread_id="{0}"', vars.TELEGRAM_THREAD_ID) || '' }} \
|
|
||||||
-d parse_mode="Markdown" \
|
|
||||||
--data-urlencode "text=$TEXT"
|
|
||||||
|
|
||||||
- name: Send to Telegram - New Release
|
|
||||||
if: github.event_name == 'release' && ((github.event.action == 'published' && !github.event.release.prerelease) || (github.event.action == 'prereleased' && github.event.release.prerelease && github.event.release.name == 'nightly'))
|
|
||||||
env:
|
|
||||||
NAME: ${{ github.event.release.name }}
|
|
||||||
TAG: ${{ github.event.release.tag_name }}
|
|
||||||
BODY: ${{ github.event.release.body || 'No notes provided' }}
|
|
||||||
URL: ${{ github.event.release.html_url }}
|
|
||||||
ACTION: ${{ github.event.action }}
|
|
||||||
run: |
|
|
||||||
BODY_TRUNC="${BODY:0:200}" # Truncate to avoid spam
|
|
||||||
if [ "$ACTION" == "prereleased" ]; then
|
|
||||||
ICON="🌙"
|
|
||||||
PREFIX="New Nightly Release"
|
|
||||||
else
|
|
||||||
ICON="🚀"
|
|
||||||
PREFIX="New Release"
|
|
||||||
fi
|
|
||||||
TEXT=$(echo -e "$ICON $PREFIX *$NAME* ($TAG)\n\n$BODY_TRUNC\n\n[View Release]($URL)")
|
|
||||||
curl -s -X POST "https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage" \
|
|
||||||
-d chat_id="${{ vars.TELEGRAM_CHAT_ID }}" \
|
|
||||||
${{ vars.TELEGRAM_THREAD_ID && format('-d message_thread_id="{0}"', vars.TELEGRAM_THREAD_ID) || '' }} \
|
|
||||||
-d parse_mode="Markdown" \
|
|
||||||
--data-urlencode "text=$TEXT"
|
|
||||||
|
|
||||||
- name: Send to Matrix - New Issue
|
|
||||||
if: github.event_name == 'issues' && github.event.action == 'opened'
|
|
||||||
env:
|
|
||||||
NUMBER: ${{ github.event.issue.number }}
|
|
||||||
TITLE: ${{ github.event.issue.title }}
|
|
||||||
USER: ${{ github.event.issue.user.login }}
|
|
||||||
BODY: ${{ github.event.issue.body || 'No body provided' }}
|
|
||||||
URL: ${{ github.event.issue.html_url }}
|
|
||||||
run: |
|
|
||||||
PLAIN_MESSAGE=$(echo -e "🆕 New Issue #$NUMBER: $TITLE by $USER\n\n$BODY\n\nView Issue: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>🆕 New Issue #$NUMBER: <strong>$TITLE</strong> by $USER</p><p>$BODY</p><p><a href=\"$URL\">View Issue</a></p>")
|
|
||||||
PLAIN_MESSAGE="${PLAIN_MESSAGE:0:220}"
|
|
||||||
PAYLOAD=$(jq -n --arg body "$PLAIN_MESSAGE" --arg formatted "$HTML_MESSAGE" '{
|
|
||||||
"msgtype": "m.text",
|
|
||||||
"body": $body,
|
|
||||||
"format": "org.matrix.custom.html",
|
|
||||||
"formatted_body": $formatted
|
|
||||||
}')
|
|
||||||
TXN_ID="${{ github.run_id }}-${{ github.run_attempt }}"
|
|
||||||
curl -s -X PUT "https://${{ vars.MATRIX_HOMESERVER }}/_matrix/client/v3/rooms/${{ vars.MATRIX_ROOM_ID }}/send/m.room.message/$TXN_ID" \
|
|
||||||
-H "Authorization: Bearer ${{ secrets.MATRIX_ACCESS_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "$PAYLOAD"
|
|
||||||
|
|
||||||
- name: Send to Matrix - Closed Issue
|
|
||||||
if: github.event_name == 'issues' && github.event.action == 'closed'
|
|
||||||
env:
|
|
||||||
NUMBER: ${{ github.event.issue.number }}
|
|
||||||
TITLE: ${{ github.event.issue.title }}
|
|
||||||
USER: ${{ github.event.issue.user.login }}
|
|
||||||
URL: ${{ github.event.issue.html_url }}
|
|
||||||
run: |
|
|
||||||
PLAIN_MESSAGE=$(echo -e "✅ Issue Closed #$NUMBER: $TITLE by $USER\n\nView Issue: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>✅ Issue Closed #$NUMBER: <strong>$TITLE</strong> by $USER</p><p><a href=\"$URL\">View Issue</a></p>")
|
|
||||||
PLAIN_MESSAGE="${PLAIN_MESSAGE:0:220}"
|
|
||||||
PAYLOAD=$(jq -n --arg body "$PLAIN_MESSAGE" --arg formatted "$HTML_MESSAGE" '{
|
|
||||||
"msgtype": "m.text",
|
|
||||||
"body": $body,
|
|
||||||
"format": "org.matrix.custom.html",
|
|
||||||
"formatted_body": $formatted
|
|
||||||
}')
|
|
||||||
TXN_ID="${{ github.run_id }}-${{ github.run_attempt }}"
|
|
||||||
curl -s -X PUT "https://${{ vars.MATRIX_HOMESERVER }}/_matrix/client/v3/rooms/${{ vars.MATRIX_ROOM_ID }}/send/m.room.message/$TXN_ID" \
|
|
||||||
-H "Authorization: Bearer ${{ secrets.MATRIX_ACCESS_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "$PAYLOAD"
|
|
||||||
|
|
||||||
- name: Send to Matrix - New Release
|
|
||||||
if: github.event_name == 'release' && ((github.event.action == 'published' && !github.event.release.prerelease) || (github.event.action == 'prereleased' && github.event.release.prerelease && github.event.release.name == 'nightly'))
|
|
||||||
env:
|
|
||||||
NAME: ${{ github.event.release.name }}
|
|
||||||
TAG: ${{ github.event.release.tag_name }}
|
|
||||||
BODY: ${{ github.event.release.body || 'No notes provided' }}
|
|
||||||
URL: ${{ github.event.release.html_url }}
|
|
||||||
ACTION: ${{ github.event.action }}
|
|
||||||
run: |
|
|
||||||
if [ "$ACTION" == "prereleased" ]; then
|
|
||||||
ICON="🌙"
|
|
||||||
PREFIX="New Nightly Release"
|
|
||||||
else
|
|
||||||
ICON="🚀"
|
|
||||||
PREFIX="New Release"
|
|
||||||
fi
|
|
||||||
PLAIN_MESSAGE=$(echo -e "$ICON $PREFIX $NAME ($TAG)\n\n$BODY\n\nView Release: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>$ICON $PREFIX <strong>$NAME</strong> ($TAG)</p><p>$BODY</p><p><a href=\"$URL\">View Release</a></p>")
|
|
||||||
PLAIN_MESSAGE="${PLAIN_MESSAGE:0:220}"
|
|
||||||
PAYLOAD=$(jq -n --arg body "$PLAIN_MESSAGE" --arg formatted "$HTML_MESSAGE" '{
|
|
||||||
"msgtype": "m.text",
|
|
||||||
"body": $body,
|
|
||||||
"format": "org.matrix.custom.html",
|
|
||||||
"formatted_body": $formatted
|
|
||||||
}')
|
|
||||||
TXN_ID="${{ github.run_id }}-${{ github.run_attempt }}"
|
|
||||||
curl -s -X PUT "https://${{ vars.MATRIX_HOMESERVER }}/_matrix/client/v3/rooms/${{ vars.MATRIX_ROOM_ID }}/send/m.room.message/$TXN_ID" \
|
|
||||||
-H "Authorization: Bearer ${{ secrets.MATRIX_ACCESS_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "$PAYLOAD"
|
|
||||||
@@ -10,7 +10,7 @@ jobs:
|
|||||||
format_check:
|
format_check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v5
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -32,6 +32,14 @@ on:
|
|||||||
description: "Tag name for release"
|
description: "Tag name for release"
|
||||||
required: false
|
required: false
|
||||||
default: 1.1.1
|
default: 1.1.1
|
||||||
|
flavor:
|
||||||
|
type: choice
|
||||||
|
description: "Product flavor"
|
||||||
|
required: true
|
||||||
|
default: standalone
|
||||||
|
options:
|
||||||
|
- fdroid
|
||||||
|
- standalone
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
flavor:
|
flavor:
|
||||||
@@ -43,11 +51,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build-fdroid:
|
build-fdroid:
|
||||||
if: >-
|
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' || inputs.flavor == 'fdroid' }}
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@@ -55,32 +59,22 @@ jobs:
|
|||||||
flavor: fdroid
|
flavor: fdroid
|
||||||
|
|
||||||
build-standalone:
|
build-standalone:
|
||||||
if: >-
|
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' || inputs.release_type == 'debug' || inputs.flavor == 'standalone' }}
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
build_type: ${{ github.event_name == 'push' && 'release' || inputs.release_type }}
|
build_type: ${{ github.event_name == 'push' && 'release' || inputs.release_type }}
|
||||||
flavor: standalone
|
flavor: standalone
|
||||||
|
|
||||||
publish-github:
|
publish:
|
||||||
if: >-
|
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
needs:
|
needs:
|
||||||
- build-fdroid
|
- build-standalone
|
||||||
- build-standalone
|
|
||||||
name: publish-github
|
name: publish-github
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'push' && github.ref || 'master' }}
|
ref: ${{ github.event_name == 'push' && github.ref || 'main' }}
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt update && sudo apt install -y gh apksigner
|
sudo apt update && sudo apt install -y gh apksigner
|
||||||
@@ -92,21 +86,20 @@ jobs:
|
|||||||
tag: "latest"
|
tag: "latest"
|
||||||
message: "Automated tag for HEAD commit"
|
message: "Automated tag for HEAD commit"
|
||||||
force_push_tag: true
|
force_push_tag: true
|
||||||
github_token: ${{ github.token }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
tag_exists_error: false
|
tag_exists_error: false
|
||||||
|
|
||||||
- name: Get latest release
|
- name: Get latest release
|
||||||
id: latest_release
|
id: latest_release
|
||||||
uses: kaliber5/action-get-release@v1
|
uses: kaliber5/action-get-release@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
latest: true
|
latest: true
|
||||||
|
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
id: changelog
|
id: changelog
|
||||||
uses: requarks/changelog-action@v1
|
uses: requarks/changelog-action@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
toTag: ${{ steps.latest_release.outputs.tag_name }}
|
toTag: ${{ steps.latest_release.outputs.tag_name }}
|
||||||
fromTag: "latest"
|
fromTag: "latest"
|
||||||
writeToFile: false
|
writeToFile: false
|
||||||
@@ -115,7 +108,7 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/temp
|
run: mkdir ${{ github.workspace }}/temp
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v8
|
uses: actions/download-artifact@v5
|
||||||
with:
|
with:
|
||||||
pattern: android_artifacts_*
|
pattern: android_artifacts_*
|
||||||
path: ${{ github.workspace }}/temp
|
path: ${{ github.workspace }}/temp
|
||||||
@@ -124,8 +117,8 @@ jobs:
|
|||||||
- name: Set version release notes
|
- name: Set version release notes
|
||||||
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }}
|
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }}
|
||||||
run: |
|
run: |
|
||||||
VERSION_CODE=$(sed -nE 's/.*const val VERSION_CODE[[:space:]]*=[[:space:]]*([0-9]+).*/\1/p' buildSrc/src/main/kotlin/Constants.kt)
|
VERSION_NAME=$(grep "const val VERSION_NAME" buildSrc/src/main/kotlin/Constants.kt | awk -F'"' '{print $2}')
|
||||||
RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_CODE}.txt || echo "No changelog found for ${VERSION_CODE}")"
|
RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_NAME}.txt || echo "No changelog found for ${VERSION_NAME}")"
|
||||||
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
|
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
|
||||||
echo "$RELEASE_NOTES" >> $GITHUB_ENV
|
echo "$RELEASE_NOTES" >> $GITHUB_ENV
|
||||||
echo "EOF" >> $GITHUB_ENV
|
echo "EOF" >> $GITHUB_ENV
|
||||||
@@ -168,22 +161,18 @@ jobs:
|
|||||||
files: |
|
files: |
|
||||||
${{ github.workspace }}/temp/**/*.apk
|
${{ github.workspace }}/temp/**/*.apk
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
publish-fdroid-public:
|
publish-fdroid-public:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: >-
|
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
needs:
|
needs:
|
||||||
- publish-github
|
- build-fdroid
|
||||||
|
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Dispatch update for fdroid repo
|
- name: Dispatch update for fdroid repo
|
||||||
uses: peter-evans/repository-dispatch@v4
|
uses: peter-evans/repository-dispatch@v3
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.PAT }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
repository: wgtunnel/fdroid
|
repository: wgtunnel/fdroid
|
||||||
event-type: fdroid-update
|
event-type: fdroid-update
|
||||||
|
|
||||||
@@ -200,7 +189,7 @@ jobs:
|
|||||||
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v5
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ WG Tunnel
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
An alternative FOSS Android client for [WireGuard](https://www.wireguard.com/)
|
An alternative Android client app for [WireGuard](https://www.wireguard.com/)
|
||||||
and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/)
|
and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/)
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
@@ -21,7 +21,8 @@ and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/)
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[](https://play.google.com/store/apps/details?id=com.zaneschepke.wireguardautotunnel)
|
[](https://play.google.com/store/apps/details?id=com.zaneschepke.wireguardautotunnel)
|
||||||
[](https://github.com/zaneschepke/fdroid)
|
[](https://f-droid.org/packages/com.zaneschepke.wireguardautotunnel/)
|
||||||
|
[](https://github.com/zaneschepke/fdroid)
|
||||||
[](https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22com.zaneschepke.wireguardautotunnel%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fzaneschepke%2Fwgtunnel%22%2C%22author%22%3A%22zaneschepke%22%2C%22name%22%3A%22WG%20Tunnel%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Atrue%2C%5C%22sortMethodChoice%5C%22%3A%5C%22date%5C%22%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22WG%20Tunnel%5C%22%2C%5C%22appAuthor%5C%22%3A%5C%22Zane%20Schepke%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%2C%5C%22refreshBeforeDownload%5C%22%3Afalse%7D%22%2C%22overrideSource%22%3Anull%7D)
|
[](https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22com.zaneschepke.wireguardautotunnel%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fzaneschepke%2Fwgtunnel%22%2C%22author%22%3A%22zaneschepke%22%2C%22name%22%3A%22WG%20Tunnel%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Atrue%2C%5C%22sortMethodChoice%5C%22%3A%5C%22date%5C%22%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22WG%20Tunnel%5C%22%2C%5C%22appAuthor%5C%22%3A%5C%22Zane%20Schepke%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%2C%5C%22refreshBeforeDownload%5C%22%3Afalse%7D%22%2C%22overrideSource%22%3Anull%7D)
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -36,11 +37,11 @@ and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/)
|
|||||||
<summary>Table of Contents</summary>
|
<summary>Table of Contents</summary>
|
||||||
|
|
||||||
- [About](#about)
|
- [About](#about)
|
||||||
|
- [Acknowledgements](#acknowledgements)
|
||||||
- [Screenshots](#screenshots)
|
- [Screenshots](#screenshots)
|
||||||
- [Features](#features)
|
- [Features](#features)
|
||||||
- [Building](#building)
|
- [Building](#building)
|
||||||
- [Translation](#translation)
|
- [Translation](#translation)
|
||||||
- [Acknowledgements](#acknowledgements)
|
|
||||||
- [Contributing](#contributing)
|
- [Contributing](#contributing)
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
@@ -48,45 +49,56 @@ and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/)
|
|||||||
<div style="text-align: left;">
|
<div style="text-align: left;">
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
Inspired by the official [wireguard-android](https://github.com/WireGuard/wireguard-android) app, WG Tunnel was created to address features and support missing from the official app. This app combines support for both [WireGuard](https://www.wireguard.com/)
|
||||||
WG Tunnel is an alternative Android client for WireGuard and AmneziaWG, inspired by the official WireGuard Android app. It fills gaps in the official client by adding advanced features like auto-tunneling (on-demand VPN activation), while seamlessly supporting both protocols across app modes—including Kernel (for direct WireGuard kernel integration; AmneziaWG not supported), VPN (standard system-level tunneling), Lockdown (a custom kill switch for leak prevention), and Proxy (built-in HTTP/SOCKS5 forwarding)—for enhanced privacy, censorship resistance, and flexibility.
|
and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/), with its primary feature of auto-tunneling (on-demand tunneling).
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="text-align: left;">
|
<div style="text-align: left;">
|
||||||
|
|
||||||
|
## Acknowledgements
|
||||||
|
|
||||||
|
Thank you to the following:
|
||||||
|
|
||||||
|
- All of the users that have helped contribute to the project with ideas, translations, feedback, bug reports, testing, and donations.
|
||||||
|
- [WireGuard](https://www.wireguard.com/) - Jason A. Donenfeld (https://github.com/WireGuard/wireguard-android)
|
||||||
|
|
||||||
|
- [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/) - Amnezia Team (https://github.com/amnezia-vpn/amneziawg-android)
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="display: flex; flex-wrap: wrap; justify-content: left; gap: 10px;">
|
<div style="display: flex; flex-wrap: wrap; justify-content: left; gap: 10px;">
|
||||||
<img label="Main" src="fastlane/metadata/android/en-US/images/phoneScreenshots/main_screen.png" width="200" alt="Main"/>
|
<img label="Main" src="fastlane/metadata/android/en-US/images/phoneScreenshots/main_screen.png" width="200" />
|
||||||
<img label="Config" src="fastlane/metadata/android/en-US/images/phoneScreenshots/config_screen.png" width="200" alt="Config"/>
|
<img label="Settings" src="fastlane/metadata/android/en-US/images/phoneScreenshots/settings_screen.png" width="200" />
|
||||||
<img label="Settings" src="fastlane/metadata/android/en-US/images/phoneScreenshots/settings_screen.png" width="200" alt="Settings"/>
|
<img label="Auto" src="fastlane/metadata/android/en-US/images/phoneScreenshots/auto_screen.png" width="200" />
|
||||||
<img label="Auto-tunnel" src="fastlane/metadata/android/en-US/images/phoneScreenshots/auto_screen.png" width="200" alt="Auto-tunnel"/>
|
<img label="Config" src="fastlane/metadata/android/en-US/images/phoneScreenshots/config_screen.png" width="200" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div style="text-align: left;">
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- **Tunnel Import Methods**: Easily add tunnels using .conf files, ZIP archives, manual entry, or QR code scanning.
|
* Add tunnels via .conf file, zip, manual entry, clipboard, or QR code
|
||||||
- **Auto-Tunneling**: Automatically activate tunnels based on Wi-Fi SSID, Ethernet connections, or mobile data networks.
|
* Auto-tunnel based on Wi-Fi SSID, ethernet, or mobile data
|
||||||
- **Split Tunneling**: Flexible support for routing specific apps or traffic through the VPN.
|
* Split tunneling by application with search
|
||||||
- **WireGuard Modes**: Full compatibility with WireGuard in both kernel and userspace implementations.
|
* Support for kernel and userspace modes
|
||||||
- **AmneziaWG Integration**: Userspace mode for AmneziaWG, providing robust censorship evasion.
|
* Amnezia support for userspace mode for DPI/censorship protection
|
||||||
- **Always-On VPN**: Ensures continuous protection with Android's Always-On VPN feature.
|
* Pre/Post Up/Down scripts support for all modes on a rooted device
|
||||||
- **Quick Controls**: Quick Settings tile and home screen shortcuts for easy VPN toggling.
|
* Always-On VPN support
|
||||||
- **Automation Support**: Intent-based automation for controlling tunnels.
|
* Export tunnels to zip
|
||||||
- **Auto-Restore**: Seamlessly restores auto-tunneling and active tunnels after device restarts or app updates.
|
* Quick tile support for tunnel toggling, auto-tunneling
|
||||||
- **Proxying Options**: Built-in HTTP and SOCKS5 proxy support within tunnels.
|
* Shortcuts support for tunnel toggling, auto-tunneling
|
||||||
- **Lockdown Mode**: Custom kill switch for maximum leak prevention and security.
|
* Intent automation support for all tunnels
|
||||||
- **Dynamic DNS Handling**: Detects and updates DNS changes without tunnel restarts.
|
* In app VPN kill switch with LAN bypass
|
||||||
- **Monitoring Tools**: Advanced tunnel monitoring features for tunnel performance monitoring.
|
* Automatic auto-tunneling service and/or tunnel restart after reboot or app update
|
||||||
- **Android TV Support**: Android TV support for secure streaming and browsing.
|
* Battery preservation measures
|
||||||
- **Advanced DNS**: DNS over HTTPS support for tunnel endpoint resolutions.
|
* Restart tunnel on ping failure
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/wgtunnel/wgtunnel
|
git clone https://github.com/zaneschepke/wgtunnel
|
||||||
cd wgtunnel
|
cd wgtunnel
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -102,15 +114,6 @@ Help translate WG Tunnel into your language
|
|||||||
at [Hosted Weblate](https://hosted.weblate.org/engage/wg-tunnel/).\
|
at [Hosted Weblate](https://hosted.weblate.org/engage/wg-tunnel/).\
|
||||||
[](https://hosted.weblate.org/engage/wg-tunnel/)
|
[](https://hosted.weblate.org/engage/wg-tunnel/)
|
||||||
|
|
||||||
## Acknowledgements
|
|
||||||
|
|
||||||
Thank you to the following:
|
|
||||||
|
|
||||||
- All of the users that have helped contribute to the project with ideas, translations, feedback, bug reports, testing, and donations.
|
|
||||||
- [WireGuard](https://www.wireguard.com/) - Jason A. Donenfeld (https://github.com/WireGuard/wireguard-android)
|
|
||||||
- [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/) - Amnezia Team (https://github.com/amnezia-vpn/amneziawg-android)
|
|
||||||
- [JetBrains](https://jetbrains.com) - For supporting open-source developers with free software licenses.
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Any contributions in the form of feedback, issues, code, or translations are welcome and much
|
Any contributions in the form of feedback, issues, code, or translations are welcome and much
|
||||||
|
|||||||
+80
-106
@@ -1,9 +1,9 @@
|
|||||||
import com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
||||||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
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)
|
||||||
|
alias(libs.plugins.hilt.android)
|
||||||
alias(libs.plugins.kotlinxSerialization)
|
alias(libs.plugins.kotlinxSerialization)
|
||||||
alias(libs.plugins.ksp)
|
alias(libs.plugins.ksp)
|
||||||
alias(libs.plugins.compose.compiler)
|
alias(libs.plugins.compose.compiler)
|
||||||
@@ -24,18 +24,6 @@ android {
|
|||||||
|
|
||||||
ksp { arg("room.schemaLocation", "$projectDir/schemas") }
|
ksp { arg("room.schemaLocation", "$projectDir/schemas") }
|
||||||
|
|
||||||
// fix okhttp proguard issue
|
|
||||||
packaging { resources { pickFirsts.add("okhttp3/internal/publicsuffix/publicsuffixes.gz") } }
|
|
||||||
|
|
||||||
splits {
|
|
||||||
abi {
|
|
||||||
isEnable = !project.hasProperty("noSplits")
|
|
||||||
reset()
|
|
||||||
include("armeabi-v7a", "arm64-v8a")
|
|
||||||
isUniversalApk = !project.hasProperty("noSplits")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = Constants.APP_ID
|
applicationId = Constants.APP_ID
|
||||||
minSdk = Constants.MIN_SDK
|
minSdk = Constants.MIN_SDK
|
||||||
@@ -135,37 +123,21 @@ android {
|
|||||||
licensee {
|
licensee {
|
||||||
allowedLicenses().forEach { allow(it) }
|
allowedLicenses().forEach { allow(it) }
|
||||||
allowedLicenseUrls().forEach { allowUrl(it) }
|
allowedLicenseUrls().forEach { allowUrl(it) }
|
||||||
// foss, but missing license
|
|
||||||
ignoreDependencies("com.github.T8RIN.QuickieExtended")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
android.applicationVariants.all {
|
applicationVariants.all {
|
||||||
val variant = this
|
val variant = this
|
||||||
|
variant.outputs
|
||||||
val abiNameMap =
|
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
|
||||||
mapOf(
|
.forEach { output ->
|
||||||
"armeabi-v7a" to "armv7",
|
val outputFileName =
|
||||||
"arm64-v8a" to "arm64",
|
if (variant.flavorName == "fdroid" && variant.buildType.name == "release") {
|
||||||
"x86" to "x86",
|
"${Constants.APP_NAME}-fdroid-release-${variant.versionName}.apk"
|
||||||
"x86_64" to "x64",
|
} else {
|
||||||
)
|
"${Constants.APP_NAME}-${variant.flavorName}-v${variant.versionName}.apk"
|
||||||
|
}
|
||||||
variant.outputs.all {
|
output.outputFileName = outputFileName
|
||||||
val output = this as BaseVariantOutputImpl
|
}
|
||||||
val abi = output.getFilter("ABI")
|
|
||||||
|
|
||||||
val baseFileName = "${Constants.APP_NAME}-${variant.flavorName}-v${variant.versionName}"
|
|
||||||
|
|
||||||
val outputFileName =
|
|
||||||
if (!abi.isNullOrEmpty()) {
|
|
||||||
val shortAbiName = abiNameMap.getOrDefault(abi, abi)
|
|
||||||
"${baseFileName}-${shortAbiName}.apk"
|
|
||||||
} else {
|
|
||||||
"${baseFileName}.apk"
|
|
||||||
}
|
|
||||||
|
|
||||||
output.outputFileName = outputFileName
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -173,61 +145,19 @@ dependencies {
|
|||||||
implementation(project(":logcatter"))
|
implementation(project(":logcatter"))
|
||||||
implementation(project(":networkmonitor"))
|
implementation(project(":networkmonitor"))
|
||||||
|
|
||||||
// Core foundations
|
implementation(libs.androidx.core.ktx)
|
||||||
implementation(libs.bundles.androidx.core.full)
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
||||||
implementation(libs.bundles.androidx.lifecycle.core)
|
implementation(libs.androidx.lifecycle.service)
|
||||||
implementation(libs.bundles.androidx.appcompat)
|
|
||||||
implementation(libs.bundles.androidx.storage)
|
|
||||||
|
|
||||||
// Compose setup
|
|
||||||
implementation(platform(libs.androidx.compose.bom))
|
|
||||||
implementation(libs.bundles.androidx.compose.ui)
|
|
||||||
implementation(libs.bundles.androidx.compose.material)
|
|
||||||
implementation(libs.androidx.activity.compose)
|
implementation(libs.androidx.activity.compose)
|
||||||
|
implementation(platform(libs.androidx.compose.bom))
|
||||||
|
implementation(libs.androidx.compose.ui)
|
||||||
|
implementation(libs.androidx.compose.ui.graphics)
|
||||||
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
||||||
|
implementation(libs.androidx.material3)
|
||||||
|
implementation(libs.androidx.appcompat)
|
||||||
|
implementation(libs.material)
|
||||||
|
implementation(libs.androidx.storage)
|
||||||
|
|
||||||
// Navigation
|
|
||||||
implementation(libs.bundles.androidx.navigation3)
|
|
||||||
implementation(libs.bundles.navigation.lifecycle)
|
|
||||||
|
|
||||||
// Material and icons
|
|
||||||
implementation(libs.bundles.google.material)
|
|
||||||
implementation(libs.bundles.material.icons)
|
|
||||||
|
|
||||||
// Database
|
|
||||||
implementation(libs.bundles.androidx.room)
|
|
||||||
implementation(libs.bundles.androidx.datastore)
|
|
||||||
ksp(libs.androidx.room.compiler)
|
|
||||||
|
|
||||||
implementation(libs.bundles.androidx.work)
|
|
||||||
|
|
||||||
// Networking and serialization
|
|
||||||
implementation(libs.bundles.ktor.client)
|
|
||||||
implementation(libs.bundles.kotlinx.serialization)
|
|
||||||
implementation(libs.ipaddress)
|
|
||||||
|
|
||||||
// State management
|
|
||||||
implementation(libs.bundles.orbit.mvi)
|
|
||||||
|
|
||||||
// Tunnel
|
|
||||||
implementation(libs.bundles.wireguard.tunnel)
|
|
||||||
|
|
||||||
// Shizuku
|
|
||||||
implementation(libs.bundles.shizuku)
|
|
||||||
|
|
||||||
// UI utilities
|
|
||||||
implementation(libs.bundles.ui.utilities)
|
|
||||||
|
|
||||||
// Misc utilities
|
|
||||||
implementation(libs.bundles.misc.utilities)
|
|
||||||
coreLibraryDesugaring(libs.desugar.jdk.libs)
|
|
||||||
|
|
||||||
// Accompanist
|
|
||||||
implementation(libs.bundles.accompanist)
|
|
||||||
|
|
||||||
// Lifecycle Compose
|
|
||||||
implementation(libs.lifecycle.runtime.compose)
|
|
||||||
|
|
||||||
// Testing
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(libs.junit)
|
||||||
testImplementation(libs.androidx.junit)
|
testImplementation(libs.androidx.junit)
|
||||||
androidTestImplementation(libs.androidx.junit)
|
androidTestImplementation(libs.androidx.junit)
|
||||||
@@ -238,22 +168,66 @@ dependencies {
|
|||||||
debugImplementation(libs.androidx.compose.ui.tooling)
|
debugImplementation(libs.androidx.compose.ui.tooling)
|
||||||
debugImplementation(libs.androidx.compose.manifest)
|
debugImplementation(libs.androidx.compose.manifest)
|
||||||
|
|
||||||
debugImplementation(libs.leakcanary.android)
|
implementation(libs.tunnel)
|
||||||
|
implementation(libs.amneziawg.android)
|
||||||
|
coreLibraryDesugaring(libs.desugar.jdk.libs)
|
||||||
|
|
||||||
// Room database backup
|
implementation(libs.timber)
|
||||||
|
|
||||||
|
implementation(libs.androidx.navigation.compose)
|
||||||
|
implementation(libs.androidx.hilt.navigation.compose)
|
||||||
|
|
||||||
|
implementation(libs.hilt.android)
|
||||||
|
ksp(libs.hilt.android.compiler)
|
||||||
|
ksp(libs.androidx.hilt.compiler)
|
||||||
|
|
||||||
|
implementation(libs.accompanist.permissions)
|
||||||
|
implementation(libs.accompanist.drawablepainter)
|
||||||
|
|
||||||
|
implementation(libs.androidx.room.runtime)
|
||||||
|
ksp(libs.androidx.room.compiler)
|
||||||
|
implementation(libs.androidx.room.ktx)
|
||||||
|
implementation(libs.androidx.datastore.preferences)
|
||||||
|
|
||||||
|
implementation(libs.lifecycle.runtime.compose)
|
||||||
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
||||||
|
implementation(libs.androidx.lifecycle.process)
|
||||||
|
|
||||||
|
implementation(libs.kotlinx.serialization.json)
|
||||||
|
|
||||||
|
implementation(libs.zxing.android.embedded)
|
||||||
|
|
||||||
|
implementation(libs.material.icons.extended)
|
||||||
|
|
||||||
|
implementation(libs.androidx.biometric.ktx)
|
||||||
|
implementation(libs.pin.lock.compose)
|
||||||
|
|
||||||
|
implementation(libs.androidx.core)
|
||||||
|
|
||||||
|
implementation(libs.androidx.core.splashscreen)
|
||||||
|
|
||||||
|
implementation(libs.androidx.work.runtime)
|
||||||
|
implementation(libs.androidx.hilt.work)
|
||||||
|
|
||||||
|
implementation(libs.qrose)
|
||||||
|
implementation(libs.semver4j)
|
||||||
|
|
||||||
|
implementation(libs.ktor.client.core)
|
||||||
|
implementation(libs.ktor.client.okhttp)
|
||||||
|
implementation(libs.ktor.client.cio)
|
||||||
|
implementation(libs.ktor.client.content.negotiation)
|
||||||
|
implementation(libs.ktor.serialization.kotlinx.json)
|
||||||
|
implementation(libs.slf4j.android)
|
||||||
|
implementation(libs.icmp4a)
|
||||||
|
|
||||||
|
// shizuku
|
||||||
|
implementation(libs.shizuku.api)
|
||||||
|
implementation(libs.shizuku.provider)
|
||||||
|
|
||||||
|
implementation(libs.reorderable)
|
||||||
implementation(libs.roomdatabasebackup) {
|
implementation(libs.roomdatabasebackup) {
|
||||||
exclude(group = "org.reactivestreams", module = "reactive-streams")
|
exclude(group = "org.reactivestreams", module = "reactive-streams")
|
||||||
}
|
}
|
||||||
|
|
||||||
// DI
|
|
||||||
implementation(platform(libs.koin.bom))
|
|
||||||
implementation(libs.koin.core)
|
|
||||||
implementation(libs.koin.android)
|
|
||||||
implementation(libs.koin.compose.viewmodel)
|
|
||||||
implementation(libs.koin.androidx.compose)
|
|
||||||
implementation(libs.koin.androidx.navigation)
|
|
||||||
implementation(libs.koin.lazy)
|
|
||||||
implementation(libs.koin.worker)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register<Copy>("copyLicenseeJsonToAssets") {
|
tasks.register<Copy>("copyLicenseeJsonToAssets") {
|
||||||
|
|||||||
Vendored
-1
@@ -1 +0,0 @@
|
|||||||
-dontwarn javax.lang.model.**
|
|
||||||
@@ -1,359 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 20,
|
|
||||||
"identityHash": "51f828868c0ea2f0f5c987410ff5c5a1",
|
|
||||||
"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_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_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_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, `app_mode` INTEGER NOT NULL DEFAULT 0, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"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": "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": "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": "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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT false, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT false, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '51f828868c0ea2f0f5c987410ff5c5a1')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,359 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 21,
|
|
||||||
"identityHash": "51f828868c0ea2f0f5c987410ff5c5a1",
|
|
||||||
"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_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_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_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, `app_mode` INTEGER NOT NULL DEFAULT 0, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"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": "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": "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": "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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT false, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT false, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '51f828868c0ea2f0f5c987410ff5c5a1')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,364 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 22,
|
|
||||||
"identityHash": "db93d0490401ccbef25ca39f27bafa29",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `app_mode` INTEGER NOT NULL DEFAULT 0, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, 'db93d0490401ccbef25ca39f27bafa29')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,371 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 23,
|
|
||||||
"identityHash": "c94fe51e6c318edf8bda81ab854c85e5",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `app_mode` INTEGER NOT NULL DEFAULT 0, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT, `is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelGlobalsEnabled",
|
|
||||||
"columnName": "is_tunnel_globals_enabled",
|
|
||||||
"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, `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`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, 'c94fe51e6c318edf8bda81ab854c85e5')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,463 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 24,
|
|
||||||
"identityHash": "545fe5e4cfa7f19ec10911ab5c603339",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelGlobalsEnabled",
|
|
||||||
"columnName": "is_tunnel_globals_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `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,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '545fe5e4cfa7f19ec10911ab5c603339')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,477 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 25,
|
|
||||||
"identityHash": "2ea437642cca24af74dc57904899909a",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT 0, `custom_split_packages` TEXT NOT NULL DEFAULT '{}')",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelGlobalsEnabled",
|
|
||||||
"columnName": "is_tunnel_globals_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "customSplitPackages",
|
|
||||||
"columnName": "custom_split_packages",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'{}'"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `start_on_boot` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "startOnBoot",
|
|
||||||
"columnName": "start_on_boot",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '2ea437642cca24af74dc57904899909a')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,509 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 26,
|
|
||||||
"identityHash": "a420594a08fff58ecda3e0424fb43e47",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `custom_split_packages` TEXT NOT NULL DEFAULT '{}')",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelGlobalsEnabled",
|
|
||||||
"columnName": "is_tunnel_globals_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "customSplitPackages",
|
|
||||||
"columnName": "custom_split_packages",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'{}'"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `start_on_boot` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "startOnBoot",
|
|
||||||
"columnName": "start_on_boot",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "lockdown_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `bypass_lan` INTEGER NOT NULL DEFAULT 0, `metered` INTEGER NOT NULL DEFAULT 0, `dual_stack` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "bypassLan",
|
|
||||||
"columnName": "bypass_lan",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "metered",
|
|
||||||
"columnName": "metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dualStack",
|
|
||||||
"columnName": "dual_stack",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, 'a420594a08fff58ecda3e0424fb43e47')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,523 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 27,
|
|
||||||
"identityHash": "98452d8160a1ae66c852ec8cd739e675",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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 '[]', `is_metered` INTEGER NOT NULL DEFAULT true)",
|
|
||||||
"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": "'[]'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMetered",
|
|
||||||
"columnName": "is_metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `global_split_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `custom_split_packages` TEXT NOT NULL DEFAULT '{}')",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "customSplitPackages",
|
|
||||||
"columnName": "custom_split_packages",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'{}'"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `start_on_boot` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "startOnBoot",
|
|
||||||
"columnName": "start_on_boot",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT, `global_tunnel_dns_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalTunnelDnsEnabled",
|
|
||||||
"columnName": "global_tunnel_dns_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "lockdown_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `bypass_lan` INTEGER NOT NULL DEFAULT 0, `metered` INTEGER NOT NULL DEFAULT 0, `dual_stack` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "bypassLan",
|
|
||||||
"columnName": "bypass_lan",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "metered",
|
|
||||||
"columnName": "metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dualStack",
|
|
||||||
"columnName": "dual_stack",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '98452d8160a1ae66c852ec8cd739e675')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,523 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 28,
|
|
||||||
"identityHash": "4792d0cc61a527c69962b5e58463e6da",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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 '[]', `is_metered` INTEGER NOT NULL DEFAULT true)",
|
|
||||||
"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": "'[]'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMetered",
|
|
||||||
"columnName": "is_metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `global_split_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `already_donated` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "alreadyDonated",
|
|
||||||
"columnName": "already_donated",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `start_on_boot` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "startOnBoot",
|
|
||||||
"columnName": "start_on_boot",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT, `global_tunnel_dns_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalTunnelDnsEnabled",
|
|
||||||
"columnName": "global_tunnel_dns_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "lockdown_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `bypass_lan` INTEGER NOT NULL DEFAULT 0, `metered` INTEGER NOT NULL DEFAULT 0, `dual_stack` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "bypassLan",
|
|
||||||
"columnName": "bypass_lan",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "metered",
|
|
||||||
"columnName": "metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dualStack",
|
|
||||||
"columnName": "dual_stack",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '4792d0cc61a527c69962b5e58463e6da')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,523 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 29,
|
|
||||||
"identityHash": "345471c118dee1b7688afa81d835e62c",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"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 '[]', `is_metered` INTEGER NOT NULL DEFAULT false)",
|
|
||||||
"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": "'[]'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMetered",
|
|
||||||
"columnName": "is_metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_tunnel_config_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "proxy_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `socks5_proxy_enabled` INTEGER NOT NULL DEFAULT 0, `socks5_proxy_bind_address` TEXT, `http_proxy_enable` INTEGER NOT NULL DEFAULT 0, `http_proxy_bind_address` TEXT, `proxy_username` TEXT, `proxy_password` TEXT)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyEnabled",
|
|
||||||
"columnName": "socks5_proxy_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "socks5ProxyBindAddress",
|
|
||||||
"columnName": "socks5_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyEnabled",
|
|
||||||
"columnName": "http_proxy_enable",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "httpProxyBindAddress",
|
|
||||||
"columnName": "http_proxy_bind_address",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyUsername",
|
|
||||||
"columnName": "proxy_username",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "proxyPassword",
|
|
||||||
"columnName": "proxy_password",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "general_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `global_split_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `app_mode` INTEGER NOT NULL DEFAULT 0, `theme` TEXT NOT NULL DEFAULT 'AUTOMATIC', `locale` TEXT, `remote_key` TEXT, `is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0, `is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0, `is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0, `already_donated` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "appMode",
|
|
||||||
"columnName": "app_mode",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "theme",
|
|
||||||
"columnName": "theme",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'AUTOMATIC'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "locale",
|
|
||||||
"columnName": "locale",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "remoteKey",
|
|
||||||
"columnName": "remote_key",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRemoteControlEnabled",
|
|
||||||
"columnName": "is_remote_control_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinLockEnabled",
|
|
||||||
"columnName": "is_pin_lock_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "alreadyDonated",
|
|
||||||
"columnName": "already_donated",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "auto_tunnel_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0, `trusted_network_ssids` TEXT NOT NULL DEFAULT '', `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `start_on_boot` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "startOnBoot",
|
|
||||||
"columnName": "start_on_boot",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_ping_enabled` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER, `show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "showDetailedPingStats",
|
|
||||||
"columnName": "show_detailed_ping_stats",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "dns_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `dns_protocol` INTEGER NOT NULL DEFAULT 0, `dns_endpoint` TEXT, `global_tunnel_dns_enabled` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsProtocol",
|
|
||||||
"columnName": "dns_protocol",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dnsEndpoint",
|
|
||||||
"columnName": "dns_endpoint",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalTunnelDnsEnabled",
|
|
||||||
"columnName": "global_tunnel_dns_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "lockdown_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `bypass_lan` INTEGER NOT NULL DEFAULT 0, `metered` INTEGER NOT NULL DEFAULT 0, `dual_stack` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "bypassLan",
|
|
||||||
"columnName": "bypass_lan",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "metered",
|
|
||||||
"columnName": "metered",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dualStack",
|
|
||||||
"columnName": "dual_stack",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '345471c118dee1b7688afa81d835e62c')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,6 +4,7 @@ import androidx.room.testing.MigrationTestHelper
|
|||||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
import androidx.test.platform.app.InstrumentationRegistry
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
import com.zaneschepke.wireguardautotunnel.data.AppDatabase
|
import com.zaneschepke.wireguardautotunnel.data.AppDatabase
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.Queries
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import org.junit.Rule
|
import org.junit.Rule
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
@@ -23,6 +24,8 @@ class MigrationTest {
|
|||||||
helper.createDatabase(dbName, 6).apply {
|
helper.createDatabase(dbName, 6).apply {
|
||||||
// Database has schema version 1. Insert some data using SQL queries.
|
// Database has schema version 1. Insert some data using SQL queries.
|
||||||
// You can't use DAO classes because they expect the latest schema.
|
// You can't use DAO classes because they expect the latest schema.
|
||||||
|
execSQL(Queries.createDefaultSettings())
|
||||||
|
execSQL(Queries.createTunnelConfig())
|
||||||
// Prepare for the next version.
|
// Prepare for the next version.
|
||||||
close()
|
close()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,19 +5,14 @@
|
|||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
|
|
||||||
<!--for split tunneling-->
|
<!--foreground service exempt android 14-->
|
||||||
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
|
||||||
|
|
||||||
<!--foreground service special use for non VPN service tunnels, android 14-->
|
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
|
||||||
<!--foreground service special use for VPN service tunnels, android 14-->
|
|
||||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" />
|
||||||
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"
|
||||||
|
tools:ignore="ProtectedPermissions" />
|
||||||
|
|
||||||
<!--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.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" />
|
||||||
|
|
||||||
@@ -46,6 +41,17 @@
|
|||||||
|
|
||||||
<uses-feature android:name="android.hardware.wifi"
|
<uses-feature android:name="android.hardware.wifi"
|
||||||
android:required="false"/>
|
android:required="false"/>
|
||||||
|
|
||||||
|
<queries>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||||
|
</intent>
|
||||||
|
</queries>
|
||||||
<application
|
<application
|
||||||
android:name=".WireGuardAutoTunnel"
|
android:name=".WireGuardAutoTunnel"
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
@@ -59,20 +65,17 @@
|
|||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.App.Start"
|
android:theme="@style/Theme.App.Start"
|
||||||
tools:targetApi="tiramisu">
|
tools:targetApi="tiramisu">
|
||||||
|
<activity
|
||||||
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
tools:replace="screenOrientation" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:windowSoftInputMode="adjustResize"
|
android:windowSoftInputMode="adjustNothing"
|
||||||
android:theme="@style/Theme.WireguardAutoTunnel"
|
android:theme="@style/Theme.WireguardAutoTunnel"
|
||||||
android:configChanges="orientation|screenSize|keyboardHidden"
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
||||||
>
|
>
|
||||||
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
</intent-filter>
|
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<action android:name="android.intent.action.SHOW_APP_INFO" />
|
<action android:name="android.intent.action.SHOW_APP_INFO" />
|
||||||
@@ -103,50 +106,13 @@
|
|||||||
android:resource="@xml/file_paths" />
|
android:resource="@xml/file_paths" />
|
||||||
</provider>
|
</provider>
|
||||||
|
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.startup.InitializationProvider"
|
android:name="androidx.startup.InitializationProvider"
|
||||||
android:authorities="${applicationId}.androidx-startup"
|
android:authorities="${applicationId}.androidx-startup"
|
||||||
android:exported="false"
|
android:multiprocess="true"
|
||||||
tools:node="merge">
|
tools:node="remove">
|
||||||
<meta-data
|
</provider>
|
||||||
android:name="androidx.work.WorkManagerInitializer"
|
|
||||||
android:value="androidx.startup"
|
|
||||||
tools:node="remove" />
|
|
||||||
</provider>
|
|
||||||
<service
|
|
||||||
android:name=".core.service.tile.TunnelControlTile"
|
|
||||||
android:exported="true"
|
|
||||||
android:icon="@drawable/ic_notification"
|
|
||||||
android:label="@string/tunnel_control"
|
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.service.quicksettings.ACTIVE_TILE"
|
|
||||||
android:value="true" />
|
|
||||||
<meta-data
|
|
||||||
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
|
|
||||||
android:value="true" />
|
|
||||||
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service
|
|
||||||
android:name=".core.service.tile.AutoTunnelControlTile"
|
|
||||||
android:exported="true"
|
|
||||||
android:icon="@drawable/ic_notification"
|
|
||||||
android:label="@string/auto_tunnel"
|
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.service.quicksettings.ACTIVE_TILE"
|
|
||||||
android:value="true" />
|
|
||||||
<meta-data
|
|
||||||
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
|
|
||||||
android:value="true" />
|
|
||||||
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
||||||
</intent-filter>
|
|
||||||
</service>
|
|
||||||
<service
|
<service
|
||||||
android:name=".core.service.tile.TunnelControlTile"
|
android:name=".core.service.tile.TunnelControlTile"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
@@ -185,45 +151,21 @@
|
|||||||
android:name=".core.service.autotunnel.AutoTunnelService"
|
android:name=".core.service.autotunnel.AutoTunnelService"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:foregroundServiceType="specialUse"
|
android:foregroundServiceType="systemExempted"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:stopWithTask="false"
|
android:stopWithTask="false"
|
||||||
tools:node="merge">
|
tools:node="merge" />
|
||||||
<property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
||||||
android:value="This service monitors network changes to automatically
|
|
||||||
establish and maintain WireGuard VPN tunnels on demand, ensuring seamless connectivity.
|
|
||||||
It requires persistent foreground execution to detect real-time events,
|
|
||||||
which cannot be achieved with standard background APIs due to timing and reliability needs for
|
|
||||||
network connectivity monitoring."/>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service
|
|
||||||
android:name=".core.service.TunnelForegroundService"
|
|
||||||
android:enabled="true"
|
|
||||||
android:exported="false"
|
|
||||||
android:foregroundServiceType="specialUse"
|
|
||||||
android:persistent="true"
|
|
||||||
android:stopWithTask="false"
|
|
||||||
tools:node="merge">
|
|
||||||
<property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
||||||
android:value="This service sustains non-VpnService virtual tunnels (using gVisor/netstack for
|
|
||||||
isolated networking), keeping connections alive for continuous secure data routing.
|
|
||||||
Persistent foreground operation is essential to handle
|
|
||||||
low-level tunnel maintenance and avoid interruptions, beyond the capabilities of other
|
|
||||||
service types or background work."/>
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name=".core.service.VpnForegroundService"
|
android:name=".core.service.TunnelForegroundService"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:foregroundServiceType="systemExempted"
|
android:foregroundServiceType="systemExempted"
|
||||||
android:permission="android.permission.BIND_VPN_SERVICE">
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.net.VpnService" />
|
<action android:name="android.net.VpnService" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".core.broadcast.RestartReceiver"
|
android:name=".core.broadcast.RestartReceiver"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
@@ -232,10 +174,7 @@
|
|||||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||||
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
||||||
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
|
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
|
||||||
</intent-filter>
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
||||||
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
<receiver
|
<receiver
|
||||||
|
|||||||
@@ -1,195 +1,145 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel
|
package com.zaneschepke.wireguardautotunnel
|
||||||
|
|
||||||
import ProxySettingsScreen
|
import android.annotation.SuppressLint
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.graphics.Color
|
import android.graphics.Color
|
||||||
import android.net.VpnService
|
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.provider.Settings
|
||||||
import androidx.activity.SystemBarStyle
|
import androidx.activity.SystemBarStyle
|
||||||
import androidx.activity.compose.rememberLauncherForActivityResult
|
import androidx.activity.compose.rememberLauncherForActivityResult
|
||||||
import androidx.activity.compose.setContent
|
import androidx.activity.compose.setContent
|
||||||
import androidx.activity.enableEdgeToEdge
|
import androidx.activity.enableEdgeToEdge
|
||||||
|
import androidx.activity.result.ActivityResult
|
||||||
import androidx.activity.result.contract.ActivityResultContracts
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
|
import androidx.activity.viewModels
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.compose.animation.fadeIn
|
import androidx.compose.animation.AnimatedVisibility
|
||||||
import androidx.compose.animation.fadeOut
|
import androidx.compose.animation.slideInVertically
|
||||||
import androidx.compose.animation.slideInHorizontally
|
import androidx.compose.animation.slideOutVertically
|
||||||
import androidx.compose.animation.slideOutHorizontally
|
|
||||||
import androidx.compose.animation.togetherWith
|
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.gestures.detectTapGestures
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.*
|
||||||
import androidx.compose.foundation.layout.consumeWindowInsets
|
import androidx.compose.material3.*
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.runtime.*
|
||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
|
||||||
import androidx.compose.foundation.layout.imePadding
|
|
||||||
import androidx.compose.foundation.layout.padding
|
|
||||||
import androidx.compose.foundation.layout.wrapContentHeight
|
|
||||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
|
||||||
import androidx.compose.material3.MaterialTheme
|
|
||||||
import androidx.compose.material3.Scaffold
|
|
||||||
import androidx.compose.material3.surfaceColorAtElevation
|
|
||||||
import androidx.compose.runtime.CompositionLocalProvider
|
|
||||||
import androidx.compose.runtime.LaunchedEffect
|
|
||||||
import androidx.compose.runtime.derivedStateOf
|
|
||||||
import androidx.compose.runtime.getValue
|
|
||||||
import androidx.compose.runtime.mutableStateOf
|
|
||||||
import androidx.compose.runtime.remember
|
|
||||||
import androidx.compose.runtime.rememberCoroutineScope
|
|
||||||
import androidx.compose.runtime.setValue
|
|
||||||
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.input.pointer.pointerInput
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.text.LinkAnnotation
|
|
||||||
import androidx.compose.ui.text.SpanStyle
|
|
||||||
import androidx.compose.ui.text.TextLinkStyles
|
|
||||||
import androidx.compose.ui.text.buildAnnotatedString
|
|
||||||
import androidx.compose.ui.text.intl.Locale
|
|
||||||
import androidx.compose.ui.text.style.TextDecoration
|
|
||||||
import androidx.compose.ui.text.withLink
|
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.zIndex
|
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.lifecycle.lifecycleScope
|
||||||
import androidx.lifecycle.viewmodel.navigation3.rememberViewModelStoreNavEntryDecorator
|
import androidx.navigation.compose.NavHost
|
||||||
import androidx.navigation3.runtime.entryProvider
|
import androidx.navigation.compose.composable
|
||||||
import androidx.navigation3.runtime.rememberNavBackStack
|
import androidx.navigation.compose.currentBackStackEntryAsState
|
||||||
import androidx.navigation3.runtime.rememberSaveableStateHolderNavEntryDecorator
|
import androidx.navigation.compose.rememberNavController
|
||||||
import androidx.navigation3.ui.NavDisplay
|
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.data.AppDatabase
|
import com.zaneschepke.wireguardautotunnel.data.AppDatabase
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
import com.zaneschepke.wireguardautotunnel.ui.Route
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.sideeffect.GlobalSideEffect
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.LocalIsAndroidTV
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.LocalNavController
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.banner.AppAlertBanner
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.VpnDeniedDialog
|
import com.zaneschepke.wireguardautotunnel.ui.common.dialog.VpnDeniedDialog
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.snackbar.CustomSnackBar
|
import com.zaneschepke.wireguardautotunnel.ui.common.snackbar.CustomSnackBar
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.snackbar.SnackbarInfo
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalIsAndroidTV
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.snackbar.SnackbarType
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.LocalNavController
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.common.snackbar.rememberCustomSnackbarState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.Route
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.Tab
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.BottomNavbar
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.BottomNavbar
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.DynamicTopAppBar
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.DynamicTopAppBar
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.currentRouteAsNavbarState
|
import com.zaneschepke.wireguardautotunnel.ui.navigation.components.currentNavBackStackEntryAsNavBarState
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.navigation.functions.rememberNavController
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.AutoTunnelScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.AutoTunnelScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.advanced.AutoTunnelAdvancedScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.advanced.AutoTunnelAdvancedScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.detection.WifiDetectionMethodScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.detection.WifiDetectionMethodScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.LocationDisclosureScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.disclosure.LocationDisclosureScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.preferred.PreferredTunnelScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.MainScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.autotunnel.wifi.WifiSettingsScreen
|
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.sort.SortScreen
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.main.splittunnel.SplitTunnelScreen
|
||||||
|
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
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.SettingsScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.SettingsScreen
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.advanced.SettingsAdvancedScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.AppearanceScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.AppearanceScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.display.DisplayScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.appearance.display.DisplayScreen
|
||||||
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.dns.DnsSettingsScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.killswitch.KillSwitchScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.integrations.AndroidIntegrationsScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.logs.LogsScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.lockdown.LockdownSettingsScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.TunnelMonitoringScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.TunnelMonitoringScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.logs.LogsScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.settings.monitoring.ping.PingTargetScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.SupportScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.support.SupportScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.DonateScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.donate.crypto.AddressesScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.support.license.LicenseScreen
|
import com.zaneschepke.wireguardautotunnel.ui.screens.support.license.LicenseScreen
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.TunnelsScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.config.ConfigScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.settings.TunnelSettingsScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.sort.SortScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.screens.tunnels.splittunnel.SplitTunnelScreen
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.AlertRed
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.OffWhite
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.WireguardAutoTunnelTheme
|
import com.zaneschepke.wireguardautotunnel.ui.theme.WireguardAutoTunnelTheme
|
||||||
import com.zaneschepke.wireguardautotunnel.util.LocaleUtil
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.installApk
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.isRunningOnTv
|
import com.zaneschepke.wireguardautotunnel.util.extensions.isRunningOnTv
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.openWebUrl
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.restartApp
|
import com.zaneschepke.wireguardautotunnel.util.extensions.restartApp
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.showToast
|
import com.zaneschepke.wireguardautotunnel.util.extensions.showToast
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.ConfigViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.AppViewModel
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.SharedAppViewModel
|
import com.zaneschepke.wireguardautotunnel.viewmodel.event.AppEvent
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.SplitTunnelViewModel
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import com.zaneschepke.wireguardautotunnel.viewmodel.TunnelViewModel
|
|
||||||
import de.raphaelebner.roomdatabasebackup.core.RoomBackup
|
import de.raphaelebner.roomdatabasebackup.core.RoomBackup
|
||||||
import kotlinx.coroutines.flow.collectLatest
|
import javax.inject.Inject
|
||||||
|
import kotlin.system.exitProcess
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.android.ext.android.inject
|
import org.amnezia.awg.backend.GoBackend.VpnService
|
||||||
import org.koin.androidx.compose.koinViewModel
|
|
||||||
import org.koin.androidx.viewmodel.ext.android.viewModel
|
|
||||||
import org.koin.core.parameter.parametersOf
|
|
||||||
import xyz.teamgravity.pin_lock_compose.PinManager
|
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class MainActivity : AppCompatActivity() {
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
private val appStateRepository: AppStateRepository by inject()
|
@Inject lateinit var appStateRepository: AppStateRepository
|
||||||
private val tunnelRepository: TunnelRepository by inject()
|
|
||||||
private val appDatabase: AppDatabase by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
private val networkMonitor: NetworkMonitor by inject()
|
|
||||||
|
@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
|
||||||
|
|
||||||
val viewModel by viewModel<SharedAppViewModel>()
|
|
||||||
private lateinit var roomBackup: RoomBackup
|
private lateinit var roomBackup: RoomBackup
|
||||||
|
|
||||||
@OptIn(ExperimentalMaterial3Api::class)
|
val REQUEST_CODE = 123
|
||||||
|
|
||||||
|
@SuppressLint("BatteryLife")
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
enableEdgeToEdge(
|
enableEdgeToEdge(
|
||||||
statusBarStyle = SystemBarStyle.auto(Color.TRANSPARENT, Color.TRANSPARENT),
|
statusBarStyle = SystemBarStyle.Companion.auto(Color.TRANSPARENT, Color.TRANSPARENT),
|
||||||
navigationBarStyle = SystemBarStyle.auto(Color.TRANSPARENT, Color.TRANSPARENT),
|
navigationBarStyle = SystemBarStyle.Companion.auto(Color.TRANSPARENT, Color.TRANSPARENT),
|
||||||
)
|
)
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
window.isNavigationBarContrastEnforced = false
|
window.isNavigationBarContrastEnforced = false
|
||||||
}
|
}
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
roomBackup = RoomBackup(this)
|
roomBackup = RoomBackup(this)
|
||||||
|
|
||||||
|
val viewModel by viewModels<AppViewModel>()
|
||||||
|
|
||||||
installSplashScreen().apply {
|
installSplashScreen().apply {
|
||||||
setKeepOnScreenCondition { !viewModel.container.stateFlow.value.isAppLoaded }
|
setKeepOnScreenCondition { !viewModel.appViewState.value.isAppReady }
|
||||||
}
|
}
|
||||||
|
|
||||||
setContent {
|
setContent {
|
||||||
val context = LocalContext.current
|
|
||||||
val isTv = isRunningOnTv()
|
val isTv = isRunningOnTv()
|
||||||
val uiState by viewModel.container.stateFlow.collectAsStateWithLifecycle()
|
val appUiState by viewModel.uiState.collectAsStateWithLifecycle()
|
||||||
val scope = rememberCoroutineScope()
|
val appViewState by viewModel.appViewState.collectAsStateWithLifecycle()
|
||||||
|
|
||||||
LaunchedEffect(uiState.isAppLoaded) {
|
val navController = rememberNavController()
|
||||||
if (uiState.isAppLoaded) {
|
val backStackEntry by navController.currentBackStackEntryAsState()
|
||||||
uiState.locale.let { LocaleUtil.changeLocale(it) }
|
val navBarState by
|
||||||
}
|
currentNavBackStackEntryAsNavBarState(
|
||||||
}
|
navController,
|
||||||
|
backStackEntry,
|
||||||
val snackbarState = rememberCustomSnackbarState()
|
viewModel,
|
||||||
|
appUiState,
|
||||||
|
appViewState,
|
||||||
|
)
|
||||||
|
val snackbar = remember { SnackbarHostState() }
|
||||||
var showVpnPermissionDialog by remember { mutableStateOf(false) }
|
var showVpnPermissionDialog by remember { mutableStateOf(false) }
|
||||||
var vpnPermissionDenied by remember { mutableStateOf(false) }
|
var vpnPermissionDenied by remember { mutableStateOf(false) }
|
||||||
var requestingAppMode by remember {
|
|
||||||
mutableStateOf<Pair<AppMode?, TunnelConfig?>>(Pair(null, null))
|
|
||||||
}
|
|
||||||
|
|
||||||
val startingStack = buildList {
|
|
||||||
add(Route.Tunnels)
|
|
||||||
if (intent?.action == Intent.ACTION_APPLICATION_PREFERENCES) add(Route.Settings)
|
|
||||||
if (uiState.pinLockEnabled) add(Route.Lock)
|
|
||||||
}
|
|
||||||
|
|
||||||
val backStack = rememberNavBackStack(*startingStack.toTypedArray())
|
|
||||||
var previousRoute by remember { mutableStateOf<Route?>(null) }
|
|
||||||
|
|
||||||
val navController =
|
|
||||||
rememberNavController(
|
|
||||||
backStack,
|
|
||||||
uiState.isLocationDisclosureShown,
|
|
||||||
onChange = { previousKey -> previousRoute = previousKey as? Route },
|
|
||||||
onExitApp = { finish() },
|
|
||||||
)
|
|
||||||
|
|
||||||
val vpnActivity =
|
val vpnActivity =
|
||||||
rememberLauncherForActivityResult(
|
rememberLauncherForActivityResult(
|
||||||
@@ -201,311 +151,193 @@ class MainActivity : AppCompatActivity() {
|
|||||||
} else {
|
} else {
|
||||||
vpnPermissionDenied = false
|
vpnPermissionDenied = false
|
||||||
showVpnPermissionDialog = false
|
showVpnPermissionDialog = false
|
||||||
val (appMode, config) = requestingAppMode
|
|
||||||
when (appMode) {
|
|
||||||
AppMode.VPN -> if (config != null) viewModel.startTunnel(config)
|
|
||||||
AppMode.LOCK_DOWN -> viewModel.setAppMode(AppMode.LOCK_DOWN)
|
|
||||||
else -> Unit
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
requestingAppMode = Pair(null, null)
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
LaunchedEffect(appUiState.tunnels) {
|
||||||
viewModel.globalSideEffect.collectLatest { sideEffect ->
|
if (!appViewState.isAppReady) {
|
||||||
when (sideEffect) {
|
viewModel.handleEvent(AppEvent.AppReadyCheck(appUiState.tunnels))
|
||||||
GlobalSideEffect.ConfigChanged -> restartApp()
|
}
|
||||||
GlobalSideEffect.PopBackStack -> navController.pop()
|
}
|
||||||
is GlobalSideEffect.RequestVpnPermission -> {
|
|
||||||
requestingAppMode = Pair(sideEffect.requestingMode, sideEffect.config)
|
val batteryActivity =
|
||||||
|
rememberLauncherForActivityResult(
|
||||||
|
ActivityResultContracts.StartActivityForResult()
|
||||||
|
) { _: ActivityResult ->
|
||||||
|
viewModel.handleEvent(AppEvent.SetBatteryOptimizeDisableShown)
|
||||||
|
}
|
||||||
|
|
||||||
|
with(appViewState) {
|
||||||
|
LaunchedEffect(isConfigChanged) {
|
||||||
|
if (isConfigChanged) {
|
||||||
|
Intent(this@MainActivity, MainActivity::class.java).also {
|
||||||
|
startActivity(it)
|
||||||
|
exitProcess(0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LaunchedEffect(errorMessage) {
|
||||||
|
errorMessage?.let {
|
||||||
|
snackbar.showSnackbar(it.asString(this@MainActivity))
|
||||||
|
viewModel.handleEvent(AppEvent.MessageShown)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LaunchedEffect(popBackStack) {
|
||||||
|
if (popBackStack) {
|
||||||
|
navController.popBackStack()
|
||||||
|
viewModel.handleEvent(AppEvent.PopBackStack(false))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LaunchedEffect(requestVpnPermission) {
|
||||||
|
if (requestVpnPermission) {
|
||||||
|
if (!vpnPermissionDenied) {
|
||||||
vpnActivity.launch(VpnService.prepare(this@MainActivity))
|
vpnActivity.launch(VpnService.prepare(this@MainActivity))
|
||||||
|
} else {
|
||||||
|
showVpnPermissionDialog = true
|
||||||
}
|
}
|
||||||
|
viewModel.handleEvent(AppEvent.VpnPermissionRequested)
|
||||||
is GlobalSideEffect.Snackbar -> {
|
}
|
||||||
scope.launch {
|
}
|
||||||
snackbarState.showSnackbar(
|
LaunchedEffect(requestBatteryPermission) {
|
||||||
SnackbarInfo(
|
if (requestBatteryPermission) {
|
||||||
message =
|
batteryActivity.launch(
|
||||||
buildAnnotatedString {
|
Intent().apply {
|
||||||
append(sideEffect.message.asString(context))
|
action = Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS
|
||||||
},
|
data = "package:${this@MainActivity.packageName}".toUri()
|
||||||
type = sideEffect.type ?: SnackbarType.INFO,
|
|
||||||
durationMs = sideEffect.durationMs ?: 4000L,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
)
|
||||||
|
|
||||||
is GlobalSideEffect.Toast ->
|
|
||||||
scope.launch { context.showToast(sideEffect.message.asString(context)) }
|
|
||||||
|
|
||||||
is GlobalSideEffect.LaunchUrl -> context.openWebUrl(sideEffect.url)
|
|
||||||
is GlobalSideEffect.InstallApk -> context.installApk(sideEffect.apk)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!uiState.isAppLoaded) return@setContent
|
CompositionLocalProvider(LocalIsAndroidTV provides isTv) {
|
||||||
|
CompositionLocalProvider(LocalNavController provides navController) {
|
||||||
|
WireguardAutoTunnelTheme(theme = appUiState.appState.theme) {
|
||||||
|
VpnDeniedDialog(
|
||||||
|
showVpnPermissionDialog,
|
||||||
|
onDismiss = {
|
||||||
|
showVpnPermissionDialog = false
|
||||||
|
vpnPermissionDenied = false
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
var showLock by remember {
|
Scaffold(
|
||||||
mutableStateOf(uiState.pinLockEnabled && !uiState.isPinVerified)
|
modifier =
|
||||||
}
|
Modifier.pointerInput(Unit) {
|
||||||
LaunchedEffect(uiState.isPinVerified) { if (uiState.isPinVerified) showLock = false }
|
detectTapGestures {
|
||||||
|
viewModel.handleEvent(AppEvent.ClearSelectedTunnels)
|
||||||
CompositionLocalProvider(
|
|
||||||
LocalIsAndroidTV provides isTv,
|
|
||||||
LocalNavController provides navController,
|
|
||||||
) {
|
|
||||||
WireguardAutoTunnelTheme(theme = uiState.theme) {
|
|
||||||
VpnDeniedDialog(
|
|
||||||
showVpnPermissionDialog,
|
|
||||||
onDismiss = {
|
|
||||||
showVpnPermissionDialog = false
|
|
||||||
vpnPermissionDenied = false
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
val annotatedMessage = buildAnnotatedString {
|
|
||||||
append(context.getString(R.string.donation_prompt_prefix))
|
|
||||||
append(" ")
|
|
||||||
withLink(
|
|
||||||
LinkAnnotation.Clickable(
|
|
||||||
tag = context.getString(R.string.support),
|
|
||||||
styles =
|
|
||||||
TextLinkStyles(
|
|
||||||
style =
|
|
||||||
SpanStyle(
|
|
||||||
textDecoration = TextDecoration.Underline,
|
|
||||||
color = MaterialTheme.colorScheme.primary,
|
|
||||||
),
|
|
||||||
focusedStyle =
|
|
||||||
SpanStyle(
|
|
||||||
textDecoration = TextDecoration.Underline,
|
|
||||||
color = MaterialTheme.colorScheme.primary,
|
|
||||||
background =
|
|
||||||
MaterialTheme.colorScheme.primary.copy(
|
|
||||||
alpha = 0.2f
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
) {
|
|
||||||
snackbarState.dismissCurrent()
|
|
||||||
navController.push(Route.Donate)
|
|
||||||
}
|
|
||||||
) {
|
|
||||||
append(context.getString(R.string.donation_prompt_link))
|
|
||||||
}
|
|
||||||
append(" ")
|
|
||||||
append(context.getString(R.string.donation_prompt_suffix))
|
|
||||||
}
|
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
|
||||||
if (uiState.shouldShowDonationSnackbar && !uiState.alreadyDonated) {
|
|
||||||
viewModel.setShouldShowDonationSnackbar(false)
|
|
||||||
snackbarState.showSnackbar(
|
|
||||||
SnackbarInfo(
|
|
||||||
message = annotatedMessage,
|
|
||||||
type = SnackbarType.THANK_YOU,
|
|
||||||
durationMs = 30_000L,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (showLock) {
|
|
||||||
PinManager.initialize(context = this@MainActivity)
|
|
||||||
PinLockScreen()
|
|
||||||
} else {
|
|
||||||
val currentRoute by remember {
|
|
||||||
derivedStateOf { backStack.lastOrNull() as? Route }
|
|
||||||
}
|
|
||||||
val currentTab by remember {
|
|
||||||
derivedStateOf { Tab.fromRoute(currentRoute ?: Route.Tunnels) }
|
|
||||||
}
|
|
||||||
val navState by
|
|
||||||
currentRouteAsNavbarState(
|
|
||||||
uiState,
|
|
||||||
viewModel,
|
|
||||||
currentRoute,
|
|
||||||
navController,
|
|
||||||
)
|
|
||||||
|
|
||||||
Box(modifier = Modifier.fillMaxSize()) {
|
|
||||||
if (uiState.appMode == AppMode.LOCK_DOWN) {
|
|
||||||
AppAlertBanner(
|
|
||||||
stringResource(R.string.locked_down)
|
|
||||||
.uppercase(Locale.current.platformLocale),
|
|
||||||
OffWhite,
|
|
||||||
AlertRed,
|
|
||||||
modifier = Modifier.fillMaxWidth().zIndex(2f),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Scaffold(
|
|
||||||
snackbarHost = {
|
|
||||||
snackbarState.SnackbarHost(
|
|
||||||
modifier =
|
|
||||||
Modifier.align(Alignment.BottomCenter)
|
|
||||||
.padding(
|
|
||||||
bottom =
|
|
||||||
if (LocalIsAndroidTV.current) 120.dp
|
|
||||||
else 80.dp
|
|
||||||
)
|
|
||||||
) { info ->
|
|
||||||
CustomSnackBar(
|
|
||||||
message = info.message,
|
|
||||||
type = info.type,
|
|
||||||
onDismiss = { snackbarState.dismissCurrent() },
|
|
||||||
containerColor =
|
|
||||||
MaterialTheme.colorScheme.surfaceColorAtElevation(
|
|
||||||
2.dp
|
|
||||||
),
|
|
||||||
modifier =
|
|
||||||
Modifier.wrapContentHeight(align = Alignment.Top),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
topBar = { DynamicTopAppBar(navState) },
|
snackbarHost = {
|
||||||
bottomBar = {
|
SnackbarHost(snackbar) { snackbarData: SnackbarData ->
|
||||||
if (navState.showBottomItems) {
|
CustomSnackBar(
|
||||||
BottomNavbar(
|
snackbarData.visuals.message,
|
||||||
uiState.isAutoTunnelActive,
|
isRtl = false,
|
||||||
currentTab,
|
containerColor =
|
||||||
onTabSelected = { tab ->
|
MaterialTheme.colorScheme.surfaceColorAtElevation(2.dp),
|
||||||
navController.popUpTo(tab.startRoute)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
) { padding ->
|
|
||||||
Column(
|
|
||||||
modifier =
|
|
||||||
Modifier.fillMaxSize()
|
|
||||||
.background(MaterialTheme.colorScheme.surface)
|
|
||||||
.padding(
|
|
||||||
top = padding.calculateTopPadding().plus(8.dp),
|
|
||||||
bottom = padding.calculateBottomPadding(),
|
|
||||||
)
|
|
||||||
.consumeWindowInsets(padding)
|
|
||||||
.imePadding()
|
|
||||||
) {
|
|
||||||
NavDisplay(
|
|
||||||
backStack = backStack,
|
|
||||||
modifier = Modifier.fillMaxSize(),
|
|
||||||
onBack = { navController.pop() },
|
|
||||||
transitionSpec = {
|
|
||||||
val initialIndex =
|
|
||||||
previousRoute?.let(Tab::fromRoute)?.index ?: 0
|
|
||||||
val targetIndex =
|
|
||||||
currentRoute?.let(Tab::fromRoute)?.index ?: 0
|
|
||||||
if (initialIndex != targetIndex) {
|
|
||||||
val dir = if (targetIndex > initialIndex) 1 else -1
|
|
||||||
(slideInHorizontally { dir * it } +
|
|
||||||
fadeIn()) togetherWith
|
|
||||||
(slideOutHorizontally { dir * -it } + fadeOut())
|
|
||||||
} else {
|
|
||||||
(slideInHorizontally { it } + fadeIn()) togetherWith
|
|
||||||
(slideOutHorizontally { -it } + fadeOut())
|
|
||||||
}
|
|
||||||
},
|
|
||||||
popTransitionSpec = {
|
|
||||||
(slideInHorizontally { -it } + fadeIn()) togetherWith
|
|
||||||
(slideOutHorizontally { it } + fadeOut())
|
|
||||||
},
|
|
||||||
predictivePopTransitionSpec = {
|
|
||||||
(slideInHorizontally { -it } + fadeIn()) togetherWith
|
|
||||||
(slideOutHorizontally { it } + fadeOut())
|
|
||||||
},
|
|
||||||
entryDecorators =
|
|
||||||
listOf(
|
|
||||||
rememberSaveableStateHolderNavEntryDecorator(),
|
|
||||||
rememberViewModelStoreNavEntryDecorator(),
|
|
||||||
),
|
|
||||||
entryProvider =
|
|
||||||
entryProvider {
|
|
||||||
entry<Route.Lock> {
|
|
||||||
PinManager.initialize(
|
|
||||||
context = this@MainActivity
|
|
||||||
)
|
|
||||||
PinLockScreen()
|
|
||||||
}
|
|
||||||
entry<Route.Tunnels> { TunnelsScreen() }
|
|
||||||
entry<Route.Sort> { SortScreen() }
|
|
||||||
entry<Route.TunnelSettings> { key ->
|
|
||||||
val viewModel: TunnelViewModel =
|
|
||||||
koinViewModel(
|
|
||||||
parameters = { parametersOf(key.id) }
|
|
||||||
)
|
|
||||||
TunnelSettingsScreen(viewModel)
|
|
||||||
}
|
|
||||||
entry<Route.SplitTunnel> { key ->
|
|
||||||
val viewModel: SplitTunnelViewModel =
|
|
||||||
koinViewModel(
|
|
||||||
parameters = { parametersOf(key.id) }
|
|
||||||
)
|
|
||||||
SplitTunnelScreen(viewModel)
|
|
||||||
}
|
|
||||||
entry<Route.Config> { key ->
|
|
||||||
val viewModel: ConfigViewModel =
|
|
||||||
koinViewModel(
|
|
||||||
parameters = { parametersOf(key.id) }
|
|
||||||
)
|
|
||||||
ConfigScreen(viewModel)
|
|
||||||
}
|
|
||||||
entry<Route.LocationDisclosure> {
|
|
||||||
LocationDisclosureScreen()
|
|
||||||
}
|
|
||||||
entry<Route.AutoTunnel> { AutoTunnelScreen() }
|
|
||||||
entry<Route.WifiPreferences> {
|
|
||||||
WifiSettingsScreen()
|
|
||||||
}
|
|
||||||
entry<Route.AdvancedAutoTunnel> {
|
|
||||||
AutoTunnelAdvancedScreen()
|
|
||||||
}
|
|
||||||
entry<Route.WifiDetectionMethod> {
|
|
||||||
WifiDetectionMethodScreen()
|
|
||||||
}
|
|
||||||
entry<Route.Settings> { SettingsScreen() }
|
|
||||||
entry<Route.TunnelMonitoring> {
|
|
||||||
TunnelMonitoringScreen()
|
|
||||||
}
|
|
||||||
entry<Route.AndroidIntegrations> {
|
|
||||||
AndroidIntegrationsScreen()
|
|
||||||
}
|
|
||||||
entry<Route.Dns> { DnsSettingsScreen() }
|
|
||||||
entry<Route.ConfigGlobal> { key ->
|
|
||||||
val viewModel: ConfigViewModel =
|
|
||||||
koinViewModel(
|
|
||||||
parameters = { parametersOf(key.id) }
|
|
||||||
)
|
|
||||||
ConfigScreen(viewModel)
|
|
||||||
}
|
|
||||||
entry<Route.SplitTunnelGlobal> { key ->
|
|
||||||
val viewModel: SplitTunnelViewModel =
|
|
||||||
koinViewModel(
|
|
||||||
parameters = { parametersOf(key.id) }
|
|
||||||
)
|
|
||||||
SplitTunnelScreen(viewModel)
|
|
||||||
}
|
|
||||||
entry<Route.LockdownSettings> {
|
|
||||||
LockdownSettingsScreen()
|
|
||||||
}
|
|
||||||
entry<Route.ProxySettings> { ProxySettingsScreen() }
|
|
||||||
entry<Route.Appearance> { AppearanceScreen() }
|
|
||||||
entry<Route.Language> { LanguageScreen() }
|
|
||||||
entry<Route.Display> { DisplayScreen() }
|
|
||||||
entry<Route.Logs> { LogsScreen() }
|
|
||||||
entry<Route.Support> { SupportScreen() }
|
|
||||||
entry<Route.License> { LicenseScreen() }
|
|
||||||
entry<Route.Donate> { DonateScreen() }
|
|
||||||
entry<Route.Addresses> { AddressesScreen() }
|
|
||||||
entry<Route.PreferredTunnel> { key ->
|
|
||||||
PreferredTunnelScreen(key.tunnelNetwork)
|
|
||||||
}
|
|
||||||
entry<Route.PingTarget> { PingTargetScreen() }
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
topBar = { DynamicTopAppBar(navBarState) },
|
||||||
|
bottomBar = {
|
||||||
|
AnimatedVisibility(
|
||||||
|
visible = navBarState.showBottom,
|
||||||
|
enter = slideInVertically(initialOffsetY = { it }),
|
||||||
|
exit = slideOutVertically(targetOffsetY = { it }),
|
||||||
|
) {
|
||||||
|
BottomNavbar(appUiState = appUiState)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
) { padding ->
|
||||||
|
Box(
|
||||||
|
modifier =
|
||||||
|
Modifier.fillMaxSize()
|
||||||
|
.background(MaterialTheme.colorScheme.surface)
|
||||||
|
.padding(padding)
|
||||||
|
.consumeWindowInsets(padding)
|
||||||
|
.imePadding()
|
||||||
|
) {
|
||||||
|
NavHost(
|
||||||
|
navController,
|
||||||
|
startDestination =
|
||||||
|
(if (appUiState.appState.isPinLockEnabled) Route.Lock
|
||||||
|
else Route.Main),
|
||||||
|
) {
|
||||||
|
composable<Route.Main> {
|
||||||
|
MainScreen(appUiState, appViewState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.Settings> {
|
||||||
|
SettingsScreen(appUiState, appViewState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.SettingsAdvanced> {
|
||||||
|
SettingsAdvancedScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.LocationDisclosure> {
|
||||||
|
LocationDisclosureScreen(viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.AutoTunnel> {
|
||||||
|
AutoTunnelScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.Appearance> { AppearanceScreen() }
|
||||||
|
composable<Route.Language> {
|
||||||
|
LanguageScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.Display> {
|
||||||
|
DisplayScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.Support> {
|
||||||
|
SupportScreen(appViewModel = viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.License> { LicenseScreen() }
|
||||||
|
composable<Route.AutoTunnelAdvanced> {
|
||||||
|
AutoTunnelAdvancedScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.WifiDetectionMethod> {
|
||||||
|
WifiDetectionMethodScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.Logs> { LogsScreen(appViewState, viewModel) }
|
||||||
|
composable<Route.Config> { backStack ->
|
||||||
|
val args = backStack.toRoute<Route.Config>()
|
||||||
|
val config =
|
||||||
|
appUiState.tunnels.firstOrNull { it.id == args.id }
|
||||||
|
ConfigScreen(config, appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.TunnelOptions> { backStack ->
|
||||||
|
val args = backStack.toRoute<Route.TunnelOptions>()
|
||||||
|
appUiState.tunnels
|
||||||
|
.firstOrNull { it.id == args.id }
|
||||||
|
?.let { config ->
|
||||||
|
TunnelOptionsScreen(
|
||||||
|
config,
|
||||||
|
viewModel,
|
||||||
|
appViewState,
|
||||||
|
appUiState.appSettings,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable<Route.Lock> { PinLockScreen(viewModel) }
|
||||||
|
composable<Route.KillSwitch> {
|
||||||
|
KillSwitchScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
composable<Route.SplitTunnel> { SplitTunnelScreen(viewModel) }
|
||||||
|
composable<Route.TunnelAutoTunnel> { backStack ->
|
||||||
|
val args = backStack.toRoute<Route.TunnelOptions>()
|
||||||
|
appUiState.tunnels
|
||||||
|
.firstOrNull { it.id == args.id }
|
||||||
|
?.let {
|
||||||
|
TunnelAutoTunnelScreen(
|
||||||
|
it,
|
||||||
|
appUiState.appSettings,
|
||||||
|
viewModel,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable<Route.Sort> { SortScreen(appUiState, viewModel) }
|
||||||
|
composable<Route.TunnelMonitoring> {
|
||||||
|
TunnelMonitoringScreen(appUiState, viewModel)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -516,8 +348,8 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
networkMonitor.checkPermissionsAndUpdateState()
|
|
||||||
WireGuardAutoTunnel.setUiActive(true)
|
WireGuardAutoTunnel.setUiActive(true)
|
||||||
|
networkMonitor.checkPermissionsAndUpdateState()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onPause() {
|
override fun onPause() {
|
||||||
@@ -526,18 +358,15 @@ class MainActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun performBackup() =
|
fun performBackup() =
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
// reset active tuns before backup to prevent trying to start them without permission on
|
|
||||||
// restore
|
|
||||||
tunnelRepository.resetActiveTunnels()
|
|
||||||
roomBackup
|
roomBackup
|
||||||
.database(appDatabase)
|
.database(appDatabase)
|
||||||
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
||||||
.enableLogDebug(true)
|
.enableLogDebug(true)
|
||||||
.maxFileCount(5)
|
.maxFileCount(5)
|
||||||
.apply {
|
.apply {
|
||||||
onCompleteListener { success, _, _ ->
|
onCompleteListener { success, message, exitCode ->
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch(mainDispatcher) {
|
||||||
if (success) {
|
if (success) {
|
||||||
showToast(
|
showToast(
|
||||||
getString(
|
getString(
|
||||||
@@ -546,9 +375,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
restartApp()
|
restartApp()
|
||||||
} else {
|
} else showToast(R.string.backup_failed)
|
||||||
showToast(R.string.backup_failed)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -562,8 +389,8 @@ class MainActivity : AppCompatActivity() {
|
|||||||
.enableLogDebug(true)
|
.enableLogDebug(true)
|
||||||
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
.backupLocation(RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG)
|
||||||
.apply {
|
.apply {
|
||||||
onCompleteListener { success, _, _ ->
|
onCompleteListener { success, message, exitCode ->
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch(mainDispatcher) {
|
||||||
if (success) {
|
if (success) {
|
||||||
showToast(
|
showToast(
|
||||||
getString(
|
getString(
|
||||||
@@ -572,9 +399,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
restartApp()
|
restartApp()
|
||||||
} else {
|
} else showToast(R.string.restore_failed)
|
||||||
showToast(R.string.restore_failed)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,87 +2,101 @@ package com.zaneschepke.wireguardautotunnel
|
|||||||
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.os.StrictMode
|
import android.os.StrictMode
|
||||||
|
import android.os.StrictMode.ThreadPolicy
|
||||||
|
import androidx.hilt.work.HiltWorkerFactory
|
||||||
|
import androidx.work.Configuration
|
||||||
|
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.notification.NotificationMonitor
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Dispatcher
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.core.worker.ServiceWorker
|
||||||
import com.zaneschepke.wireguardautotunnel.di.appModule
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.di.databaseModule
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.di.dispatchersModule
|
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
||||||
import com.zaneschepke.wireguardautotunnel.di.networkModule
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.di.tunnelModule
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.di.workerModule
|
import com.zaneschepke.wireguardautotunnel.util.LocaleUtil
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.MonitoringSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import dagger.hilt.android.HiltAndroidApp
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.flow.distinctUntilChangedBy
|
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.flow.update
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import org.koin.android.ext.koin.androidContext
|
|
||||||
import org.koin.android.ext.koin.androidLogger
|
|
||||||
import org.koin.androidx.workmanager.koin.workManagerFactory
|
|
||||||
import org.koin.core.component.KoinComponent
|
|
||||||
import org.koin.core.context.GlobalContext.startKoin
|
|
||||||
import org.koin.core.lazyModules
|
|
||||||
import org.koin.core.option.viewModelScopeFactory
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class WireGuardAutoTunnel : Application(), KoinComponent {
|
@HiltAndroidApp
|
||||||
|
class WireGuardAutoTunnel : Application(), Configuration.Provider {
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope by inject(named(Scope.APPLICATION))
|
@Inject lateinit var workerFactory: HiltWorkerFactory
|
||||||
private val ioDispatcher: CoroutineDispatcher by inject(named(Dispatcher.IO))
|
|
||||||
private val logReader: LogReader by inject()
|
|
||||||
|
|
||||||
private val monitoringRepository: MonitoringSettingsRepository by inject()
|
override val workManagerConfiguration: Configuration
|
||||||
private val notificationMonitor: NotificationMonitor by inject()
|
get() = Configuration.Builder().setWorkerFactory(workerFactory).build()
|
||||||
|
|
||||||
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
|
@Inject lateinit var logReader: LogReader
|
||||||
|
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
|
@Inject @MainDispatcher lateinit var mainDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
|
@Inject lateinit var notificationMonitor: NotificationMonitor
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
startKoin {
|
|
||||||
androidContext(this@WireGuardAutoTunnel)
|
|
||||||
if (BuildConfig.DEBUG) androidLogger()
|
|
||||||
workManagerFactory()
|
|
||||||
modules(dispatchersModule, appModule, databaseModule, tunnelModule, workerModule)
|
|
||||||
options(viewModelScopeFactory())
|
|
||||||
lazyModules(networkModule)
|
|
||||||
}
|
|
||||||
instance = this
|
instance = this
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
Timber.plant(Timber.DebugTree())
|
Timber.plant(Timber.DebugTree())
|
||||||
StrictMode.setThreadPolicy(
|
StrictMode.setThreadPolicy(
|
||||||
StrictMode.ThreadPolicy.Builder()
|
ThreadPolicy.Builder()
|
||||||
.detectAll()
|
.detectDiskReads()
|
||||||
|
.detectDiskWrites()
|
||||||
|
.detectNetwork()
|
||||||
.penaltyLog()
|
.penaltyLog()
|
||||||
.penaltyFlashScreen()
|
|
||||||
.build()
|
.build()
|
||||||
)
|
)
|
||||||
StrictMode.setVmPolicy(StrictMode.VmPolicy.Builder().detectAll().penaltyLog().build())
|
|
||||||
} else {
|
} else {
|
||||||
Timber.plant(ReleaseTree())
|
Timber.plant(ReleaseTree())
|
||||||
}
|
}
|
||||||
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
GoBackend.setAlwaysOnCallback {
|
||||||
launch {
|
applicationScope.launch {
|
||||||
monitoringRepository.flow
|
val settings = appDataRepository.settings.get()
|
||||||
.distinctUntilChangedBy { it.isLocalLogsEnabled }
|
if (settings.isAlwaysOnVpnEnabled) {
|
||||||
.collect { settings ->
|
val tunnel = appDataRepository.getPrimaryOrFirstTunnel()
|
||||||
if (settings.isLocalLogsEnabled) {
|
tunnel?.let { tunnelManager.startTunnel(it) }
|
||||||
logReader.start()
|
} else {
|
||||||
} else {
|
Timber.w("Always-on VPN is not enabled in app settings")
|
||||||
logReader.stop()
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ServiceWorker.start(this)
|
||||||
|
|
||||||
|
applicationScope.launch {
|
||||||
launch { notificationMonitor.handleApplicationNotifications() }
|
launch { notificationMonitor.handleApplicationNotifications() }
|
||||||
|
appDataRepository.appState.getLocale()?.let {
|
||||||
|
withContext(mainDispatcher) { LocaleUtil.changeLocale(it) }
|
||||||
|
}
|
||||||
|
appDataRepository.appState.isLocalLogsEnabled().let { enabled ->
|
||||||
|
if (enabled) logReader.start()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onTerminate() {
|
||||||
|
applicationScope.cancel()
|
||||||
|
tunnelManager.setBackendStatus(BackendStatus.Inactive)
|
||||||
|
super.onTerminate()
|
||||||
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
private val _uiActive = MutableStateFlow(false)
|
private val _uiActive = MutableStateFlow(false)
|
||||||
|
|
||||||
val uiActive: StateFlow<Boolean>
|
val uiActive: StateFlow<Boolean>
|
||||||
|
|||||||
+14
-8
@@ -3,20 +3,25 @@ package com.zaneschepke.wireguardautotunnel.core.broadcast
|
|||||||
import android.content.BroadcastReceiver
|
import android.content.BroadcastReceiver
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
|
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.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.core.component.KoinComponent
|
|
||||||
import org.koin.core.component.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
|
|
||||||
class KernelReceiver : BroadcastReceiver(), KoinComponent {
|
@AndroidEntryPoint
|
||||||
|
class KernelReceiver : BroadcastReceiver() {
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope by inject(named(Scope.APPLICATION))
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
private val tunnelRepository: TunnelRepository by inject()
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
@Inject lateinit var tunnelRepository: TunnelRepository
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
val action = intent.action ?: return
|
val action = intent.action ?: return
|
||||||
@@ -26,6 +31,7 @@ class KernelReceiver : BroadcastReceiver(), KoinComponent {
|
|||||||
val tunnel = tunnelRepository.findByTunnelName(name)
|
val tunnel = tunnelRepository.findByTunnelName(name)
|
||||||
tunnel?.let { tunnelRepository.save(it.copy(isActive = true)) }
|
tunnel?.let { tunnelRepository.save(it.copy(isActive = true)) }
|
||||||
}
|
}
|
||||||
|
serviceManager.updateTunnelTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+18
-15
@@ -4,33 +4,36 @@ import android.content.BroadcastReceiver
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
|
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.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.core.component.KoinComponent
|
|
||||||
import org.koin.core.component.get
|
|
||||||
import org.koin.core.component.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
|
|
||||||
class NotificationActionReceiver : BroadcastReceiver(), KoinComponent {
|
@AndroidEntryPoint
|
||||||
|
class NotificationActionReceiver : BroadcastReceiver() {
|
||||||
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
private val autoTunnelRepository: AutoTunnelSettingsRepository by inject()
|
|
||||||
private val applicationScope: CoroutineScope = get(named(Scope.APPLICATION))
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelRepository: TunnelRepository
|
||||||
|
|
||||||
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
applicationScope.launch {
|
applicationScope.launch {
|
||||||
when (intent.action) {
|
when (intent.action) {
|
||||||
NotificationAction.AUTO_TUNNEL_OFF.name ->
|
NotificationAction.AUTO_TUNNEL_OFF.name -> serviceManager.stopAutoTunnel()
|
||||||
autoTunnelRepository.updateAutoTunnelEnabled(false)
|
|
||||||
NotificationAction.TUNNEL_OFF.name -> {
|
NotificationAction.TUNNEL_OFF.name -> {
|
||||||
val tunnelId = intent.getIntExtra(NotificationManager.EXTRA_ID, 0)
|
val tunnelId = intent.getIntExtra(NotificationManager.EXTRA_ID, 0)
|
||||||
if (tunnelId == STOP_ALL_TUNNELS_ID)
|
if (tunnelId == STOP_ALL_TUNNELS_ID) return@launch tunnelManager.stopTunnel()
|
||||||
return@launch tunnelManager.stopActiveTunnels()
|
val tunnel = tunnelRepository.getById(tunnelId)
|
||||||
tunnelManager.stopTunnel(tunnelId)
|
tunnelManager.stopTunnel(tunnel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+29
-26
@@ -3,26 +3,27 @@ package com.zaneschepke.wireguardautotunnel.core.broadcast
|
|||||||
import android.content.BroadcastReceiver
|
import android.content.BroadcastReceiver
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
|
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.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.Constants
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.core.component.KoinComponent
|
|
||||||
import org.koin.core.component.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class RemoteControlReceiver : BroadcastReceiver(), KoinComponent {
|
@AndroidEntryPoint
|
||||||
|
class RemoteControlReceiver : BroadcastReceiver() {
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope by inject(named(Scope.APPLICATION))
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
private val settingsRepository: GeneralSettingRepository by inject()
|
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository by inject()
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
enum class Action(private val suffix: String) {
|
enum class Action(private val suffix: String) {
|
||||||
START_TUNNEL("START_TUNNEL"),
|
START_TUNNEL("START_TUNNEL"),
|
||||||
@@ -51,9 +52,11 @@ class RemoteControlReceiver : BroadcastReceiver(), KoinComponent {
|
|||||||
val action = intent.action ?: return
|
val action = intent.action ?: return
|
||||||
val appAction = Action.fromAction(action) ?: return Timber.w("Unknown action $action")
|
val appAction = Action.fromAction(action) ?: return Timber.w("Unknown action $action")
|
||||||
applicationScope.launch {
|
applicationScope.launch {
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
if (!appDataRepository.appState.isRemoteControlEnabled())
|
||||||
if (!settings.isRemoteControlEnabled) return@launch Timber.w("Remote control disabled")
|
return@launch Timber.w("Remote control disabled")
|
||||||
val key = settings.remoteKey ?: return@launch Timber.w("Remote control key missing")
|
val key =
|
||||||
|
appDataRepository.appState.getRemoteKey()
|
||||||
|
?: return@launch Timber.w("Remote control key missing")
|
||||||
if (key != intent.getStringExtra(EXTRA_KEY)?.trim())
|
if (key != intent.getStringExtra(EXTRA_KEY)?.trim())
|
||||||
return@launch Timber.w("Invalid remote control key")
|
return@launch Timber.w("Invalid remote control key")
|
||||||
when (appAction) {
|
when (appAction) {
|
||||||
@@ -61,29 +64,29 @@ class RemoteControlReceiver : BroadcastReceiver(), KoinComponent {
|
|||||||
val tunnelName =
|
val tunnelName =
|
||||||
intent.getStringExtra(EXTRA_TUN_NAME) ?: return@launch startDefaultTunnel()
|
intent.getStringExtra(EXTRA_TUN_NAME) ?: return@launch startDefaultTunnel()
|
||||||
val tunnel =
|
val tunnel =
|
||||||
tunnelsRepository.findByTunnelName(tunnelName)
|
appDataRepository.tunnels.findByTunnelName(tunnelName)
|
||||||
?: return@launch startDefaultTunnel()
|
?: return@launch startDefaultTunnel()
|
||||||
tunnelManager.startTunnel(tunnel)
|
tunnelManager.startTunnel(tunnel)
|
||||||
}
|
}
|
||||||
Action.STOP_TUNNEL -> {
|
Action.STOP_TUNNEL -> {
|
||||||
val tunnelName =
|
val tunnelName =
|
||||||
intent.getStringExtra(EXTRA_TUN_NAME)
|
intent.getStringExtra(EXTRA_TUN_NAME)
|
||||||
?: return@launch tunnelManager.stopActiveTunnels()
|
?: return@launch tunnelManager.stopTunnel()
|
||||||
val tunnel =
|
val tunnel =
|
||||||
tunnelsRepository.findByTunnelName(tunnelName)
|
appDataRepository.tunnels.findByTunnelName(tunnelName)
|
||||||
?: return@launch tunnelManager.stopActiveTunnels()
|
?: return@launch tunnelManager.stopTunnel()
|
||||||
tunnelManager.stopTunnel(tunnel.id)
|
tunnelManager.stopTunnel(tunnel)
|
||||||
}
|
}
|
||||||
Action.START_AUTO_TUNNEL ->
|
Action.START_AUTO_TUNNEL -> serviceManager.startAutoTunnel()
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(true)
|
Action.STOP_AUTO_TUNNEL -> serviceManager.stopAutoTunnel()
|
||||||
Action.STOP_AUTO_TUNNEL ->
|
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(false)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun startDefaultTunnel() {
|
private suspend fun startDefaultTunnel() {
|
||||||
tunnelsRepository.getDefaultTunnel()?.let { tunnel -> tunnelManager.startTunnel(tunnel) }
|
appDataRepository.getPrimaryOrFirstTunnel()?.let { tunnel ->
|
||||||
|
tunnelManager.startTunnel(tunnel)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|||||||
+32
-23
@@ -4,43 +4,52 @@ import android.content.BroadcastReceiver
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import com.zaneschepke.logcatter.LogReader
|
import com.zaneschepke.logcatter.LogReader
|
||||||
|
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.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AppStateRepository
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.core.component.KoinComponent
|
|
||||||
import org.koin.core.component.get
|
|
||||||
import org.koin.core.component.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class RestartReceiver : BroadcastReceiver(), KoinComponent {
|
@AndroidEntryPoint
|
||||||
|
class RestartReceiver : BroadcastReceiver() {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope = get(named(Scope.APPLICATION))
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val appStateRepository: AppStateRepository by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
private val logReader: LogReader by inject()
|
@Inject lateinit var logReader: LogReader
|
||||||
|
|
||||||
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
Timber.d("RestartReceiver triggered with action: ${intent.action}")
|
Timber.d("RestartReceiver triggered with action: ${intent.action}")
|
||||||
applicationScope.launch {
|
serviceManager.updateTunnelTile()
|
||||||
when (intent.action) {
|
serviceManager.updateAutoTunnelTile()
|
||||||
Intent.ACTION_BOOT_COMPLETED,
|
applicationScope.launch(ioDispatcher) {
|
||||||
"android.intent.action.QUICKBOOT_POWERON",
|
val settings = appDataRepository.settings.get()
|
||||||
"com.htc.intent.action.QUICKBOOT_POWERON" -> {
|
if (settings.isRestoreOnBootEnabled) {
|
||||||
tunnelManager.handleReboot()
|
if (
|
||||||
}
|
settings.isAutoTunnelEnabled && serviceManager.autoTunnelService.value == null
|
||||||
Intent.ACTION_MY_PACKAGE_REPLACED -> {
|
) {
|
||||||
Timber.i("Restoring state on package upgrade")
|
Timber.d("Starting auto-tunnel on boot/update")
|
||||||
tunnelManager.handleRestore()
|
serviceManager.startAutoTunnel()
|
||||||
logReader.deleteAndClearLogs()
|
} else {
|
||||||
appStateRepository.setShouldShowDonationSnackbar(true)
|
Timber.d("Restoring previous tunnel state")
|
||||||
|
tunnelManager.restorePreviousState()
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
Timber.d("Restore on boot disabled, skipping")
|
||||||
}
|
}
|
||||||
|
if (intent.action == Intent.ACTION_MY_PACKAGE_REPLACED) logReader.deleteAndClearLogs()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-14
@@ -14,29 +14,23 @@ interface NotificationManager {
|
|||||||
fun createNotification(
|
fun createNotification(
|
||||||
channel: NotificationChannels,
|
channel: NotificationChannels,
|
||||||
title: String = "",
|
title: String = "",
|
||||||
subText: String? = null,
|
|
||||||
actions: Collection<NotificationCompat.Action> = emptyList(),
|
actions: Collection<NotificationCompat.Action> = emptyList(),
|
||||||
description: String = "",
|
description: String = "",
|
||||||
showTimestamp: Boolean = true,
|
showTimestamp: Boolean = false,
|
||||||
importance: Int = NotificationManager.IMPORTANCE_LOW,
|
importance: Int = NotificationManager.IMPORTANCE_HIGH,
|
||||||
onGoing: Boolean = false,
|
onGoing: Boolean = true,
|
||||||
onlyAlertOnce: Boolean = true,
|
onlyAlertOnce: Boolean = true,
|
||||||
groupKey: String? = null,
|
|
||||||
isGroupSummary: Boolean = false,
|
|
||||||
): Notification
|
): Notification
|
||||||
|
|
||||||
fun createNotification(
|
fun createNotification(
|
||||||
channel: NotificationChannels,
|
channel: NotificationChannels,
|
||||||
title: StringValue,
|
title: StringValue,
|
||||||
subText: String? = null,
|
|
||||||
actions: Collection<NotificationCompat.Action> = emptyList(),
|
actions: Collection<NotificationCompat.Action> = emptyList(),
|
||||||
description: StringValue,
|
description: StringValue,
|
||||||
showTimestamp: Boolean = true,
|
showTimestamp: Boolean = false,
|
||||||
importance: Int = NotificationManager.IMPORTANCE_LOW,
|
importance: Int = NotificationManager.IMPORTANCE_HIGH,
|
||||||
onGoing: Boolean = false,
|
onGoing: Boolean = true,
|
||||||
onlyAlertOnce: Boolean = true,
|
onlyAlertOnce: Boolean = true,
|
||||||
groupKey: String? = null,
|
|
||||||
isGroupSummary: Boolean = false,
|
|
||||||
): Notification
|
): Notification
|
||||||
|
|
||||||
fun createNotificationAction(
|
fun createNotificationAction(
|
||||||
@@ -49,8 +43,6 @@ interface NotificationManager {
|
|||||||
fun show(notificationId: Int, notification: Notification)
|
fun show(notificationId: Int, notification: Notification)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val VPN_GROUP_KEY = "VPN_GROUP"
|
|
||||||
const val AUTO_TUNNEL_GROUP_KEY = "AUTO_TUNNEL_GROUP"
|
|
||||||
const val AUTO_TUNNEL_LOCATION_PERMISSION_ID = 123
|
const val AUTO_TUNNEL_LOCATION_PERMISSION_ID = 123
|
||||||
const val AUTO_TUNNEL_LOCATION_SERVICES_ID = 124
|
const val AUTO_TUNNEL_LOCATION_SERVICES_ID = 124
|
||||||
// For auto tunnel foreground notification
|
// For auto tunnel foreground notification
|
||||||
|
|||||||
+17
-15
@@ -3,12 +3,16 @@ package com.zaneschepke.wireguardautotunnel.core.notification
|
|||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
|
import jakarta.inject.Inject
|
||||||
import kotlinx.coroutines.coroutineScope
|
import kotlinx.coroutines.coroutineScope
|
||||||
import kotlinx.coroutines.flow.collectLatest
|
import kotlinx.coroutines.flow.collectLatest
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
class NotificationMonitor(
|
class NotificationMonitor
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
private val tunnelManager: TunnelManager,
|
private val tunnelManager: TunnelManager,
|
||||||
private val notificationManager: NotificationManager,
|
private val notificationManager: NotificationManager,
|
||||||
) {
|
) {
|
||||||
@@ -18,20 +22,21 @@ class NotificationMonitor(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun handleTunnelErrors() =
|
private suspend fun handleTunnelErrors() =
|
||||||
tunnelManager.errorEvents.collectLatest { (tunName, error) ->
|
tunnelManager.errorEvents.collectLatest { (tunnelConf, error) ->
|
||||||
if (!WireGuardAutoTunnel.uiActive.value) {
|
if (!WireGuardAutoTunnel.uiActive.value) {
|
||||||
val notification =
|
val notification =
|
||||||
notificationManager.createNotification(
|
notificationManager.createNotification(
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
WireGuardNotification.NotificationChannels.VPN,
|
||||||
title =
|
title = StringValue.DynamicString(tunnelConf.name),
|
||||||
tunName?.let { StringValue.DynamicString(it) }
|
|
||||||
?: StringValue.StringResource(R.string.tunnel),
|
|
||||||
description =
|
description =
|
||||||
StringValue.StringResource(
|
when (error) {
|
||||||
R.string.tunnel_error_template,
|
is BackendError.BounceFailed -> error.toStringValue()
|
||||||
error.stringRes,
|
else ->
|
||||||
),
|
StringValue.StringResource(
|
||||||
groupKey = NotificationManager.VPN_GROUP_KEY,
|
R.string.tunnel_error_template,
|
||||||
|
error.toStringRes(),
|
||||||
|
)
|
||||||
|
},
|
||||||
)
|
)
|
||||||
notificationManager.show(
|
notificationManager.show(
|
||||||
NotificationManager.TUNNEL_ERROR_NOTIFICATION_ID,
|
NotificationManager.TUNNEL_ERROR_NOTIFICATION_ID,
|
||||||
@@ -41,16 +46,13 @@ class NotificationMonitor(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun handleTunnelMessages() =
|
private suspend fun handleTunnelMessages() =
|
||||||
tunnelManager.messageEvents.collectLatest { (tunName, message) ->
|
tunnelManager.messageEvents.collectLatest { (tunnelConf, message) ->
|
||||||
if (!WireGuardAutoTunnel.uiActive.value) {
|
if (!WireGuardAutoTunnel.uiActive.value) {
|
||||||
val notification =
|
val notification =
|
||||||
notificationManager.createNotification(
|
notificationManager.createNotification(
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
WireGuardNotification.NotificationChannels.VPN,
|
||||||
title =
|
title = StringValue.DynamicString(tunnelConf.name),
|
||||||
tunName?.let { StringValue.DynamicString(it) }
|
|
||||||
?: StringValue.StringResource(R.string.tunnel),
|
|
||||||
description = message.toStringValue(),
|
description = message.toStringValue(),
|
||||||
groupKey = NotificationManager.VPN_GROUP_KEY,
|
|
||||||
)
|
)
|
||||||
notificationManager.show(
|
notificationManager.show(
|
||||||
NotificationManager.TUNNEL_MESSAGES_NOTIFICATION_ID,
|
NotificationManager.TUNNEL_MESSAGES_NOTIFICATION_ID,
|
||||||
|
|||||||
+26
-28
@@ -3,10 +3,12 @@ package com.zaneschepke.wireguardautotunnel.core.notification
|
|||||||
import android.Manifest
|
import android.Manifest
|
||||||
import android.app.Notification
|
import android.app.Notification
|
||||||
import android.app.NotificationChannel
|
import android.app.NotificationChannel
|
||||||
|
import android.app.NotificationManager
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
|
import android.graphics.Color
|
||||||
import androidx.core.app.ActivityCompat
|
import androidx.core.app.ActivityCompat
|
||||||
import androidx.core.app.NotificationCompat
|
import androidx.core.app.NotificationCompat
|
||||||
import androidx.core.app.NotificationManagerCompat
|
import androidx.core.app.NotificationManagerCompat
|
||||||
@@ -16,8 +18,11 @@ import com.zaneschepke.wireguardautotunnel.core.broadcast.NotificationActionRece
|
|||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager.Companion.EXTRA_ID
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager.Companion.EXTRA_ID
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
class WireGuardNotification(override val context: Context) : NotificationManager {
|
class WireGuardNotification @Inject constructor(@ApplicationContext override val context: Context) :
|
||||||
|
com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager {
|
||||||
|
|
||||||
enum class NotificationChannels {
|
enum class NotificationChannels {
|
||||||
VPN,
|
VPN,
|
||||||
@@ -29,44 +34,33 @@ class WireGuardNotification(override val context: Context) : NotificationManager
|
|||||||
override fun createNotification(
|
override fun createNotification(
|
||||||
channel: NotificationChannels,
|
channel: NotificationChannels,
|
||||||
title: String,
|
title: String,
|
||||||
subText: String?,
|
|
||||||
actions: Collection<NotificationCompat.Action>,
|
actions: Collection<NotificationCompat.Action>,
|
||||||
description: String,
|
description: String,
|
||||||
showTimestamp: Boolean,
|
showTimestamp: Boolean,
|
||||||
importance: Int,
|
importance: Int,
|
||||||
onGoing: Boolean,
|
onGoing: Boolean,
|
||||||
onlyAlertOnce: Boolean,
|
onlyAlertOnce: Boolean,
|
||||||
groupKey: String?,
|
|
||||||
isGroupSummary: Boolean,
|
|
||||||
): Notification {
|
): Notification {
|
||||||
notificationManager.createNotificationChannel(channel.asChannel(importance))
|
notificationManager.createNotificationChannel(channel.asChannel())
|
||||||
return channel
|
return channel
|
||||||
.asBuilder()
|
.asBuilder()
|
||||||
.apply {
|
.apply {
|
||||||
actions.forEach { addAction(it) }
|
actions.forEach { addAction(it) }
|
||||||
setContentTitle(title)
|
setContentTitle(title)
|
||||||
setSubText(subText)
|
|
||||||
setContentIntent(
|
setContentIntent(
|
||||||
PendingIntent.getActivity(
|
PendingIntent.getActivity(
|
||||||
context,
|
context,
|
||||||
0,
|
0,
|
||||||
Intent(context, MainActivity::class.java)
|
Intent(context, MainActivity::class.java),
|
||||||
.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP),
|
|
||||||
PendingIntent.FLAG_IMMUTABLE,
|
PendingIntent.FLAG_IMMUTABLE,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
setContentText(description)
|
setContentText(description)
|
||||||
setOnlyAlertOnce(onlyAlertOnce)
|
setOnlyAlertOnce(onlyAlertOnce)
|
||||||
setOngoing(onGoing)
|
setOngoing(onGoing)
|
||||||
setPriority(NotificationCompat.PRIORITY_LOW)
|
setPriority(NotificationCompat.PRIORITY_HIGH)
|
||||||
setShowWhen(showTimestamp)
|
setShowWhen(showTimestamp)
|
||||||
setSmallIcon(R.drawable.ic_notification)
|
setSmallIcon(R.drawable.ic_notification)
|
||||||
if (groupKey != null) {
|
|
||||||
setGroup(groupKey)
|
|
||||||
if (isGroupSummary) {
|
|
||||||
setGroupSummary(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
@@ -74,20 +68,16 @@ class WireGuardNotification(override val context: Context) : NotificationManager
|
|||||||
override fun createNotification(
|
override fun createNotification(
|
||||||
channel: NotificationChannels,
|
channel: NotificationChannels,
|
||||||
title: StringValue,
|
title: StringValue,
|
||||||
subText: String?,
|
|
||||||
actions: Collection<NotificationCompat.Action>,
|
actions: Collection<NotificationCompat.Action>,
|
||||||
description: StringValue,
|
description: StringValue,
|
||||||
showTimestamp: Boolean,
|
showTimestamp: Boolean,
|
||||||
importance: Int,
|
importance: Int,
|
||||||
onGoing: Boolean,
|
onGoing: Boolean,
|
||||||
onlyAlertOnce: Boolean,
|
onlyAlertOnce: Boolean,
|
||||||
groupKey: String?,
|
|
||||||
isGroupSummary: Boolean,
|
|
||||||
): Notification {
|
): Notification {
|
||||||
return createNotification(
|
return createNotification(
|
||||||
channel,
|
channel,
|
||||||
title.asString(context),
|
title.asString(context),
|
||||||
subText,
|
|
||||||
actions,
|
actions,
|
||||||
description.asString(context),
|
description.asString(context),
|
||||||
showTimestamp,
|
showTimestamp,
|
||||||
@@ -104,16 +94,16 @@ class WireGuardNotification(override val context: Context) : NotificationManager
|
|||||||
val pendingIntent =
|
val pendingIntent =
|
||||||
PendingIntent.getBroadcast(
|
PendingIntent.getBroadcast(
|
||||||
context,
|
context,
|
||||||
extraId ?: 0,
|
0,
|
||||||
Intent(context, NotificationActionReceiver::class.java).apply {
|
Intent(context, NotificationActionReceiver::class.java).apply {
|
||||||
action = notificationAction.name
|
action = notificationAction.name
|
||||||
if (extraId != null) putExtra(EXTRA_ID, extraId)
|
if (extraId != null) putExtra(EXTRA_ID, extraId)
|
||||||
},
|
},
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT,
|
PendingIntent.FLAG_IMMUTABLE,
|
||||||
)
|
)
|
||||||
return NotificationCompat.Action.Builder(
|
return NotificationCompat.Action.Builder(
|
||||||
R.drawable.ic_notification,
|
R.drawable.ic_notification,
|
||||||
notificationAction.title(context),
|
notificationAction.title(context).uppercase(),
|
||||||
pendingIntent,
|
pendingIntent,
|
||||||
)
|
)
|
||||||
.build()
|
.build()
|
||||||
@@ -145,32 +135,40 @@ class WireGuardNotification(override val context: Context) : NotificationManager
|
|||||||
context.getString(R.string.auto_tunnel_channel_id),
|
context.getString(R.string.auto_tunnel_channel_id),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationChannels.VPN -> {
|
NotificationChannels.VPN -> {
|
||||||
NotificationCompat.Builder(context, context.getString(R.string.vpn_channel_id))
|
NotificationCompat.Builder(context, context.getString(R.string.vpn_channel_id))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun NotificationChannels.asChannel(importance: Int): NotificationChannel {
|
private fun NotificationChannels.asChannel(): NotificationChannel {
|
||||||
return when (this) {
|
return when (this) {
|
||||||
NotificationChannels.VPN -> {
|
NotificationChannels.VPN -> {
|
||||||
NotificationChannel(
|
NotificationChannel(
|
||||||
context.getString(R.string.vpn_channel_id),
|
context.getString(R.string.vpn_channel_id),
|
||||||
context.getString(R.string.vpn_channel_name),
|
context.getString(R.string.vpn_channel_name),
|
||||||
importance,
|
NotificationManager.IMPORTANCE_HIGH,
|
||||||
)
|
)
|
||||||
.apply { description = context.getString(R.string.vpn_channel_description) }
|
.apply {
|
||||||
|
description = context.getString(R.string.vpn_channel_description)
|
||||||
|
enableLights(true)
|
||||||
|
lightColor = Color.WHITE
|
||||||
|
enableVibration(false)
|
||||||
|
vibrationPattern = longArrayOf(100, 200, 300)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationChannels.AUTO_TUNNEL -> {
|
NotificationChannels.AUTO_TUNNEL -> {
|
||||||
NotificationChannel(
|
NotificationChannel(
|
||||||
context.getString(R.string.auto_tunnel_channel_id),
|
context.getString(R.string.auto_tunnel_channel_id),
|
||||||
context.getString(R.string.auto_tunnel_channel_name),
|
context.getString(R.string.auto_tunnel_channel_name),
|
||||||
importance,
|
NotificationManager.IMPORTANCE_HIGH,
|
||||||
)
|
)
|
||||||
.apply {
|
.apply {
|
||||||
description = context.getString(R.string.auto_tunnel_channel_description)
|
description = context.getString(R.string.auto_tunnel_channel_description)
|
||||||
|
enableLights(true)
|
||||||
|
lightColor = Color.WHITE
|
||||||
|
enableVibration(false)
|
||||||
|
vibrationPattern = longArrayOf(100, 200, 300)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
-232
@@ -1,232 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service
|
|
||||||
|
|
||||||
import android.app.Notification
|
|
||||||
import android.content.Intent
|
|
||||||
import android.os.IBinder
|
|
||||||
import android.text.format.Formatter
|
|
||||||
import androidx.core.app.ServiceCompat
|
|
||||||
import androidx.lifecycle.LifecycleService
|
|
||||||
import androidx.lifecycle.lifecycleScope
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Dispatcher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.distinctByKeys
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.delay
|
|
||||||
import kotlinx.coroutines.isActive
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
abstract class BaseTunnelForegroundService : LifecycleService(), TunnelService {
|
|
||||||
|
|
||||||
private val notificationManager: NotificationManager by inject()
|
|
||||||
private val serviceManager: ServiceManager by inject()
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
|
||||||
private val ioDispatcher: CoroutineDispatcher by inject(named(Dispatcher.IO))
|
|
||||||
private val settingsRepository: GeneralSettingRepository by inject()
|
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
|
||||||
|
|
||||||
protected abstract val fgsType: Int
|
|
||||||
|
|
||||||
private var currentSingleTunnelId: Int? = null
|
|
||||||
|
|
||||||
private var statsJob: Job? = null
|
|
||||||
|
|
||||||
override fun onBind(intent: Intent): IBinder {
|
|
||||||
super.onBind(intent)
|
|
||||||
return LocalBinder(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreate() {
|
|
||||||
super.onCreate()
|
|
||||||
ServiceCompat.startForeground(
|
|
||||||
this,
|
|
||||||
NotificationManager.VPN_NOTIFICATION_ID,
|
|
||||||
onCreateNotification(),
|
|
||||||
fgsType,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
|
||||||
super.onStartCommand(intent, flags, startId)
|
|
||||||
|
|
||||||
ServiceCompat.startForeground(
|
|
||||||
this,
|
|
||||||
NotificationManager.VPN_NOTIFICATION_ID,
|
|
||||||
onCreateNotification(),
|
|
||||||
fgsType,
|
|
||||||
)
|
|
||||||
|
|
||||||
if (
|
|
||||||
intent == null ||
|
|
||||||
intent.component == null ||
|
|
||||||
(intent.component?.packageName != this.packageName)
|
|
||||||
) {
|
|
||||||
Timber.d("Service started by Always-on VPN feature")
|
|
||||||
lifecycleScope.launch {
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
if (settings.isAlwaysOnVpnEnabled) {
|
|
||||||
val tunnel = tunnelsRepository.getDefaultTunnel()
|
|
||||||
tunnel?.let { tunnelManager.startTunnel(it) }
|
|
||||||
} else {
|
|
||||||
Timber.w("Always-on VPN is not enabled in app settings")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
start()
|
|
||||||
}
|
|
||||||
|
|
||||||
return START_STICKY
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun start() {
|
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
|
||||||
tunnelManager.activeTunnels.distinctByKeys().collect { activeTunnels ->
|
|
||||||
val activeTunIds = activeTunnels.keys
|
|
||||||
val tunnels = tunnelsRepository.getAll()
|
|
||||||
val activeConfigs = tunnels.filter { activeTunIds.contains(it.id) }
|
|
||||||
|
|
||||||
updateServiceNotification(activeConfigs)
|
|
||||||
restartStatsUpdaterIfNeeded(activeConfigs)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun restartStatsUpdaterIfNeeded(activeConfigs: List<TunnelConfig>) {
|
|
||||||
val single = activeConfigs.singleOrNull()
|
|
||||||
|
|
||||||
if (single == null) {
|
|
||||||
statsJob?.cancel()
|
|
||||||
statsJob = null
|
|
||||||
currentSingleTunnelId = null
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (currentSingleTunnelId == single.id && statsJob?.isActive == true) return
|
|
||||||
|
|
||||||
statsJob?.cancel()
|
|
||||||
statsJob = null
|
|
||||||
currentSingleTunnelId = single.id
|
|
||||||
|
|
||||||
statsJob =
|
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
|
||||||
while (isActive) {
|
|
||||||
val traffic = readTraffic(single.id)
|
|
||||||
|
|
||||||
notificationManager.show(
|
|
||||||
NotificationManager.VPN_NOTIFICATION_ID,
|
|
||||||
createTunnelNotification(single, consumedTraffic = traffic),
|
|
||||||
)
|
|
||||||
|
|
||||||
delay(1000)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun readTraffic(tunnelId: Int): Pair<Long, Long>? {
|
|
||||||
val active = tunnelManager.activeTunnels.value[tunnelId] ?: return null
|
|
||||||
val stats = active.statistics ?: return null
|
|
||||||
return stats.rx() to stats.tx()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateServiceNotification(activeConfigs: List<TunnelConfig>) {
|
|
||||||
val notification =
|
|
||||||
when (activeConfigs.size) {
|
|
||||||
0 -> onCreateNotification()
|
|
||||||
1 -> createTunnelNotification(activeConfigs.first(), consumedTraffic = null)
|
|
||||||
else -> createTunnelsNotification()
|
|
||||||
}
|
|
||||||
|
|
||||||
ServiceCompat.startForeground(
|
|
||||||
this,
|
|
||||||
NotificationManager.VPN_NOTIFICATION_ID,
|
|
||||||
notification,
|
|
||||||
fgsType,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun stop() {
|
|
||||||
Timber.d("Stop called")
|
|
||||||
statsJob?.cancel()
|
|
||||||
statsJob = null
|
|
||||||
currentSingleTunnelId = null
|
|
||||||
|
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
|
||||||
stopSelf()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDestroy() {
|
|
||||||
serviceManager.handleTunnelServiceDestroy()
|
|
||||||
|
|
||||||
statsJob?.cancel()
|
|
||||||
statsJob = null
|
|
||||||
currentSingleTunnelId = null
|
|
||||||
|
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
|
||||||
Timber.d("onDestroy")
|
|
||||||
super.onDestroy()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun createTunnelNotification(
|
|
||||||
tunnelConfig: TunnelConfig,
|
|
||||||
consumedTraffic: Pair<Long, Long>?,
|
|
||||||
): Notification {
|
|
||||||
|
|
||||||
val subText =
|
|
||||||
consumedTraffic?.let { traffic ->
|
|
||||||
val formattedRx = "↓ ${formatBytes(traffic.first)}"
|
|
||||||
val formattedTx = "↑ ${formatBytes(traffic.second)}"
|
|
||||||
"$formattedRx $formattedTx"
|
|
||||||
}
|
|
||||||
|
|
||||||
return notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
|
||||||
title = tunnelConfig.name,
|
|
||||||
description = getString(R.string.tunnel_running),
|
|
||||||
subText = subText,
|
|
||||||
actions =
|
|
||||||
listOf(
|
|
||||||
notificationManager.createNotificationAction(
|
|
||||||
NotificationAction.TUNNEL_OFF,
|
|
||||||
tunnelConfig.id,
|
|
||||||
)
|
|
||||||
),
|
|
||||||
onGoing = true,
|
|
||||||
groupKey = NotificationManager.VPN_GROUP_KEY,
|
|
||||||
isGroupSummary = true,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun createTunnelsNotification(): Notification {
|
|
||||||
return notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
|
||||||
title = "${getString(R.string.tunnel_running)} - ${getString(R.string.multiple)}",
|
|
||||||
actions =
|
|
||||||
listOf(
|
|
||||||
notificationManager.createNotificationAction(NotificationAction.TUNNEL_OFF, 0)
|
|
||||||
),
|
|
||||||
groupKey = NotificationManager.VPN_GROUP_KEY,
|
|
||||||
isGroupSummary = true,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun onCreateNotification(): Notification {
|
|
||||||
return notificationManager.createNotification(
|
|
||||||
WireGuardNotification.NotificationChannels.VPN,
|
|
||||||
title = getString(R.string.tunnel_starting),
|
|
||||||
groupKey = NotificationManager.VPN_GROUP_KEY,
|
|
||||||
isGroupSummary = true,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun formatBytes(bytes: Long) = Formatter.formatFileSize(this, bytes)
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service
|
|
||||||
|
|
||||||
import android.os.Binder
|
|
||||||
import java.lang.ref.WeakReference
|
|
||||||
|
|
||||||
class LocalBinder(service: TunnelService) : Binder() {
|
|
||||||
private val serviceRef = WeakReference(service)
|
|
||||||
|
|
||||||
val service: TunnelService?
|
|
||||||
get() = serviceRef.get()
|
|
||||||
}
|
|
||||||
+68
-109
@@ -7,97 +7,48 @@ 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.data.model.AppMode
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
|
||||||
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
|
||||||
|
import jakarta.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
import kotlinx.coroutines.flow.asStateFlow
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChanged
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.launchIn
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.onEach
|
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.flow.update
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import kotlinx.coroutines.withTimeoutOrNull
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class ServiceManager(
|
class ServiceManager
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
ioDispatcher: CoroutineDispatcher,
|
private val ioDispatcher: CoroutineDispatcher,
|
||||||
applicationScope: CoroutineScope,
|
private val applicationScope: CoroutineScope,
|
||||||
private val mainDispatcher: CoroutineDispatcher,
|
private val mainDispatcher: CoroutineDispatcher,
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository,
|
private val appDataRepository: AppDataRepository,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
private val autoTunnelMutex = Mutex()
|
private val autoTunnelMutex = Mutex()
|
||||||
private val tunnelMutex = Mutex()
|
|
||||||
|
|
||||||
private val _tunnelService = MutableStateFlow<TunnelService?>(null)
|
private val _tunnelService = MutableStateFlow<TunnelForegroundService?>(null)
|
||||||
private val _autoTunnelService = MutableStateFlow<AutoTunnelService?>(null)
|
private val _autoTunnelService = MutableStateFlow<AutoTunnelService?>(null)
|
||||||
val autoTunnelService = _autoTunnelService.asStateFlow()
|
val autoTunnelService = _autoTunnelService.asStateFlow()
|
||||||
val tunnelService = _tunnelService.asStateFlow()
|
|
||||||
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
_autoTunnelService
|
|
||||||
.onEach { _ -> withContext(mainDispatcher) { updateAutoTunnelTile() } }
|
|
||||||
.launchIn(this)
|
|
||||||
}
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
combine(
|
|
||||||
autoTunnelSettingsRepository.flow
|
|
||||||
.map { it.isAutoTunnelEnabled }
|
|
||||||
.distinctUntilChanged(),
|
|
||||||
_autoTunnelService,
|
|
||||||
) { enabled, service ->
|
|
||||||
enabled to (service != null)
|
|
||||||
}
|
|
||||||
.collect { (enabled, isRunning) ->
|
|
||||||
when {
|
|
||||||
enabled && !isRunning -> {
|
|
||||||
autoTunnelMutex.withLock { startServiceInternal() }
|
|
||||||
}
|
|
||||||
!enabled && isRunning -> {
|
|
||||||
autoTunnelMutex.withLock { stopServiceInternal() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val tunnelServiceConnection =
|
private val tunnelServiceConnection =
|
||||||
object : ServiceConnection {
|
object : ServiceConnection {
|
||||||
override fun onServiceConnected(name: ComponentName, service: IBinder) {
|
override fun onServiceConnected(name: ComponentName, service: IBinder) {
|
||||||
val binder = service as? LocalBinder
|
val binder = service as? TunnelForegroundService.LocalBinder
|
||||||
_tunnelService.update { binder?.service }
|
_tunnelService.value = binder?.service
|
||||||
val serviceClass =
|
Timber.d("TunnelForegroundService connected")
|
||||||
when {
|
|
||||||
name.className.contains("VpnForegroundService") -> "VpnForegroundService"
|
|
||||||
name.className.contains("TunnelForegroundService") ->
|
|
||||||
"TunnelForegroundService"
|
|
||||||
else -> "Unknown"
|
|
||||||
}
|
|
||||||
Timber.d("$serviceClass connected")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onServiceDisconnected(name: ComponentName) {
|
override fun onServiceDisconnected(name: ComponentName) {
|
||||||
_tunnelService.update { null }
|
_tunnelService.value = null
|
||||||
val serviceClass =
|
Timber.d("TunnelForegroundService disconnected")
|
||||||
when {
|
|
||||||
name.className.contains("VpnForegroundService") -> "VpnForegroundService"
|
|
||||||
name.className.contains("TunnelForegroundService") ->
|
|
||||||
"TunnelForegroundService"
|
|
||||||
else -> "Unknown"
|
|
||||||
}
|
|
||||||
Timber.d("$serviceClass disconnected")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,12 +56,12 @@ class ServiceManager(
|
|||||||
object : ServiceConnection {
|
object : ServiceConnection {
|
||||||
override fun onServiceConnected(name: ComponentName, service: IBinder) {
|
override fun onServiceConnected(name: ComponentName, service: IBinder) {
|
||||||
val binder = service as? AutoTunnelService.LocalBinder
|
val binder = service as? AutoTunnelService.LocalBinder
|
||||||
_autoTunnelService.update { binder?.service }
|
_autoTunnelService.value = binder?.service
|
||||||
Timber.d("AutoTunnelService connected")
|
Timber.d("AutoTunnelService connected")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onServiceDisconnected(name: ComponentName) {
|
override fun onServiceDisconnected(name: ComponentName) {
|
||||||
_autoTunnelService.update { null }
|
_autoTunnelService.value = null
|
||||||
Timber.d("AutoTunnelService disconnected")
|
Timber.d("AutoTunnelService disconnected")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -119,60 +70,68 @@ class ServiceManager(
|
|||||||
return VpnService.prepare(context) == null
|
return VpnService.prepare(context) == null
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startServiceInternal() {
|
suspend fun startAutoTunnel() {
|
||||||
if (autoTunnelService.value == null) {
|
autoTunnelMutex.withLock {
|
||||||
val intent = Intent(context, AutoTunnelService::class.java)
|
val settings = appDataRepository.settings.get()
|
||||||
context.startForegroundService(intent)
|
appDataRepository.settings.save(settings.copy(isAutoTunnelEnabled = true))
|
||||||
context.bindService(intent, autoTunnelServiceConnection, Context.BIND_AUTO_CREATE)
|
if (_autoTunnelService.value != null) return
|
||||||
}
|
withContext(ioDispatcher) {
|
||||||
}
|
val intent = Intent(context, AutoTunnelService::class.java)
|
||||||
|
|
||||||
suspend fun startAutoTunnelService() = autoTunnelMutex.withLock { startServiceInternal() }
|
|
||||||
|
|
||||||
private fun stopServiceInternal() {
|
|
||||||
_autoTunnelService.value?.stop()
|
|
||||||
try {
|
|
||||||
context.unbindService(autoTunnelServiceConnection)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to unbind AutoTunnelService")
|
|
||||||
}
|
|
||||||
_autoTunnelService.update { null }
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun startTunnelService(appMode: AppMode) =
|
|
||||||
tunnelMutex.withLock {
|
|
||||||
if (_tunnelService.value != null) {
|
|
||||||
Timber.d("Service already exists, waiting for disconnect")
|
|
||||||
withTimeoutOrNull(2000L) { _tunnelService.first { it == null } }
|
|
||||||
?: Timber.w("Timeout waiting for existing service to disconnect")
|
|
||||||
}
|
|
||||||
if (_tunnelService.value == null) {
|
|
||||||
val serviceClass =
|
|
||||||
when (appMode) {
|
|
||||||
AppMode.VPN,
|
|
||||||
AppMode.LOCK_DOWN -> VpnForegroundService::class.java
|
|
||||||
AppMode.KERNEL,
|
|
||||||
AppMode.PROXY -> TunnelForegroundService::class.java
|
|
||||||
}
|
|
||||||
val intent = Intent(context, serviceClass)
|
|
||||||
context.startForegroundService(intent)
|
context.startForegroundService(intent)
|
||||||
context.bindService(intent, tunnelServiceConnection, Context.BIND_AUTO_CREATE)
|
context.bindService(intent, autoTunnelServiceConnection, Context.BIND_AUTO_CREATE)
|
||||||
} else {
|
withContext(mainDispatcher) { updateAutoTunnelTile() }
|
||||||
Timber.e("Service still not null after timeout")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
suspend fun stopTunnelService() =
|
suspend fun stopAutoTunnel() {
|
||||||
tunnelMutex.withLock {
|
autoTunnelMutex.withLock {
|
||||||
_tunnelService.value?.let { service ->
|
val settings = appDataRepository.settings.get()
|
||||||
|
appDataRepository.settings.save(settings.copy(isAutoTunnelEnabled = false))
|
||||||
|
if (_autoTunnelService.value == null) return
|
||||||
|
_autoTunnelService.value?.let { service ->
|
||||||
service.stop()
|
service.stop()
|
||||||
try {
|
try {
|
||||||
context.unbindService(tunnelServiceConnection)
|
context.unbindService(autoTunnelServiceConnection)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e, "Failed to unbind Tunnel Service")
|
Timber.e(e, "Failed to unbind AutoTunnelService")
|
||||||
|
} finally {
|
||||||
|
_tunnelService.value = null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
withContext(mainDispatcher) { updateAutoTunnelTile() }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun startTunnelForegroundService() {
|
||||||
|
if (_tunnelService.value != null) return
|
||||||
|
withContext(ioDispatcher) {
|
||||||
|
applicationScope.launch(ioDispatcher) {
|
||||||
|
val intent = Intent(context, TunnelForegroundService::class.java)
|
||||||
|
context.startForegroundService(intent)
|
||||||
|
context.bindService(intent, tunnelServiceConnection, Context.BIND_AUTO_CREATE)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stopTunnelForegroundService() {
|
||||||
|
_tunnelService.value?.let { service ->
|
||||||
|
service.stop()
|
||||||
|
try {
|
||||||
|
context.unbindService(tunnelServiceConnection)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e, "Failed to stop TunnelForegroundService")
|
||||||
|
} finally {
|
||||||
|
_tunnelService.value = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun toggleAutoTunnel() {
|
||||||
|
applicationScope.launch(ioDispatcher) {
|
||||||
|
if (_autoTunnelService.value != null) stopAutoTunnel() else startAutoTunnel()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun updateAutoTunnelTile() {
|
fun updateAutoTunnelTile() {
|
||||||
context.requestAutoTunnelTileServiceUpdate()
|
context.requestAutoTunnelTileServiceUpdate()
|
||||||
|
|||||||
+150
-2
@@ -1,6 +1,154 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service
|
package com.zaneschepke.wireguardautotunnel.core.service
|
||||||
|
|
||||||
|
import android.app.Notification
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Binder
|
||||||
|
import android.os.IBinder
|
||||||
|
import androidx.core.app.ServiceCompat
|
||||||
|
import androidx.lifecycle.LifecycleService
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelMonitor
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
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 dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import io.ktor.util.collections.*
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
class TunnelForegroundService(override val fgsType: Int = Constants.SPECIAL_USE_SERVICE_TYPE_ID) :
|
@AndroidEntryPoint
|
||||||
BaseTunnelForegroundService()
|
class TunnelForegroundService : LifecycleService() {
|
||||||
|
|
||||||
|
@Inject lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelMonitor: TunnelMonitor
|
||||||
|
|
||||||
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
|
class LocalBinder(val service: TunnelForegroundService) : Binder()
|
||||||
|
|
||||||
|
private val tunnelJobs = ConcurrentMap<TunnelConf, Job>()
|
||||||
|
|
||||||
|
private val binder = LocalBinder(this)
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
ServiceCompat.startForeground(
|
||||||
|
this@TunnelForegroundService,
|
||||||
|
NotificationManager.VPN_NOTIFICATION_ID,
|
||||||
|
onCreateNotification(),
|
||||||
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBind(intent: Intent): IBinder {
|
||||||
|
super.onBind(intent)
|
||||||
|
return binder
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
super.onStartCommand(intent, flags, startId)
|
||||||
|
ServiceCompat.startForeground(
|
||||||
|
this@TunnelForegroundService,
|
||||||
|
NotificationManager.VPN_NOTIFICATION_ID,
|
||||||
|
onCreateNotification(),
|
||||||
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
|
)
|
||||||
|
start()
|
||||||
|
return START_STICKY
|
||||||
|
}
|
||||||
|
|
||||||
|
fun start() =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
tunnelManager.activeTunnels.distinctByKeys().collect { activeTunnels ->
|
||||||
|
val activeTunConfigs = activeTunnels.keys
|
||||||
|
val obsoleteJobs = tunnelJobs.keys - activeTunConfigs
|
||||||
|
obsoleteJobs.forEach { tunnelConf -> tunnelJobs[tunnelConf]?.cancel() }
|
||||||
|
activeTunConfigs.forEach { tun ->
|
||||||
|
if (tunnelJobs.containsKey(tun)) return@forEach
|
||||||
|
tunnelJobs[tun] = launch { tunnelMonitor.startMonitoring(tun, true) }
|
||||||
|
}
|
||||||
|
updateServiceNotification(activeTunnels)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO Would be cool to have this include kill switch
|
||||||
|
private fun updateServiceNotification(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
val notification =
|
||||||
|
when (activeTunnels.size) {
|
||||||
|
0 -> onCreateNotification()
|
||||||
|
1 -> createTunnelNotification(activeTunnels.keys.first())
|
||||||
|
else -> createTunnelsNotification()
|
||||||
|
}
|
||||||
|
ServiceCompat.startForeground(
|
||||||
|
this@TunnelForegroundService,
|
||||||
|
NotificationManager.VPN_NOTIFICATION_ID,
|
||||||
|
notification,
|
||||||
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stop() {
|
||||||
|
Timber.d("Stop called")
|
||||||
|
tunnelJobs.forEach { it.value.cancel() }
|
||||||
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
|
stopSelf()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
tunnelJobs.forEach { it.value.cancel() }
|
||||||
|
serviceManager.handleTunnelServiceDestroy()
|
||||||
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
|
Timber.d("onDestroy")
|
||||||
|
super.onDestroy()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createTunnelNotification(tunnelConf: TunnelConf): Notification {
|
||||||
|
return notificationManager.createNotification(
|
||||||
|
WireGuardNotification.NotificationChannels.VPN,
|
||||||
|
title = "${getString(R.string.tunnel_running)} - ${tunnelConf.tunName}",
|
||||||
|
actions =
|
||||||
|
listOf(
|
||||||
|
notificationManager.createNotificationAction(
|
||||||
|
NotificationAction.TUNNEL_OFF,
|
||||||
|
tunnelConf.id,
|
||||||
|
)
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createTunnelsNotification(): Notification {
|
||||||
|
return notificationManager.createNotification(
|
||||||
|
WireGuardNotification.NotificationChannels.VPN,
|
||||||
|
title = "${getString(R.string.tunnel_running)} - ${getString(R.string.multiple)}",
|
||||||
|
actions =
|
||||||
|
listOf(
|
||||||
|
notificationManager.createNotificationAction(NotificationAction.TUNNEL_OFF, 0)
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun onCreateNotification(): Notification {
|
||||||
|
return notificationManager.createNotification(
|
||||||
|
WireGuardNotification.NotificationChannels.VPN,
|
||||||
|
title = getString(R.string.tunnel_starting),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service
|
|
||||||
|
|
||||||
interface TunnelService {
|
|
||||||
fun start()
|
|
||||||
|
|
||||||
fun stop()
|
|
||||||
}
|
|
||||||
-6
@@ -1,6 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.Constants
|
|
||||||
|
|
||||||
class VpnForegroundService(override val fgsType: Int = Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID) :
|
|
||||||
BaseTunnelForegroundService()
|
|
||||||
+182
-113
@@ -14,59 +14,46 @@ 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.data.model.AppMode
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelMonitor
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Dispatcher
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
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.model.AutoTunnelSettings
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.AutoTunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.AutoTunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.toDomain
|
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.to
|
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toMillis
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toMillis
|
||||||
import java.lang.ref.WeakReference
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
import javax.inject.Provider
|
||||||
import kotlinx.coroutines.FlowPreview
|
import kotlin.math.pow
|
||||||
import kotlinx.coroutines.Job
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.debounce
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChanged
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.flatMapLatest
|
|
||||||
import kotlinx.coroutines.flow.flowOn
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.merge
|
|
||||||
import kotlinx.coroutines.flow.update
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class AutoTunnelService : LifecycleService() {
|
class AutoTunnelService : LifecycleService() {
|
||||||
|
|
||||||
private val networkMonitor: NetworkMonitor by inject()
|
@Inject lateinit var networkMonitor: NetworkMonitor
|
||||||
|
|
||||||
private val notificationManager: NotificationManager by inject()
|
@Inject lateinit var appDataRepository: Provider<AppDataRepository>
|
||||||
|
|
||||||
private val ioDispatcher: CoroutineDispatcher by inject(named(Dispatcher.IO))
|
@Inject lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
private val serviceManager: ServiceManager by inject()
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val autoTunnelRepository: AutoTunnelSettingsRepository by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
private val settingsRepository: GeneralSettingRepository by inject()
|
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
@Inject lateinit var tunnelMonitor: TunnelMonitor
|
||||||
|
|
||||||
private val defaultState = AutoTunnelState()
|
private val defaultState = AutoTunnelState()
|
||||||
|
|
||||||
@@ -74,16 +61,13 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
|
|
||||||
private val autoTunnelStateFlow = MutableStateFlow(defaultState)
|
private val autoTunnelStateFlow = MutableStateFlow(defaultState)
|
||||||
|
|
||||||
private var autoTunnelJob: Job? = null
|
private val bounceCounts = MutableStateFlow<Map<Int, Int>>(emptyMap())
|
||||||
private var permissionsJob: Job? = null
|
|
||||||
private var autoTunnelFailoverJob: Job? = null
|
|
||||||
|
|
||||||
class LocalBinder(service: AutoTunnelService) : Binder() {
|
private var eventHandlerJob: Job? = null
|
||||||
private val serviceRef = WeakReference(service)
|
|
||||||
|
|
||||||
val service: AutoTunnelService?
|
private val lastBounceTimes = mutableMapOf<Int, Long>()
|
||||||
get() = serviceRef.get()
|
|
||||||
}
|
class LocalBinder(val service: AutoTunnelService) : Binder()
|
||||||
|
|
||||||
private val binder = LocalBinder(this)
|
private val binder = LocalBinder(this)
|
||||||
|
|
||||||
@@ -106,10 +90,8 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
|
|
||||||
fun start() {
|
fun start() {
|
||||||
launchWatcherNotification()
|
launchWatcherNotification()
|
||||||
autoTunnelJob?.cancel()
|
startAutoTunnelStateJob()
|
||||||
autoTunnelJob = startAutoTunnelStateJob()
|
startLocationPermissionsNotificationJob()
|
||||||
permissionsJob?.cancel()
|
|
||||||
permissionsJob = startLocationPermissionsNotificationJob()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun stop() {
|
fun stop() {
|
||||||
@@ -118,10 +100,26 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
serviceManager.handleAutoTunnelServiceDestroy()
|
serviceManager.handleAutoTunnelServiceDestroy()
|
||||||
|
restoreVpnKillSwitch()
|
||||||
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun restoreVpnKillSwitch() {
|
||||||
|
with(autoTunnelStateFlow.value) {
|
||||||
|
if (
|
||||||
|
settings.isVpnKillSwitchEnabled &&
|
||||||
|
tunnelManager.getBackendStatus() !is BackendStatus.KillSwitch
|
||||||
|
) {
|
||||||
|
eventHandlerJob?.cancel()
|
||||||
|
val allowedIps =
|
||||||
|
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
||||||
|
else emptyList()
|
||||||
|
tunnelManager.setBackendStatus(BackendStatus.KillSwitch(allowedIps))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun launchWatcherNotification(
|
private fun launchWatcherNotification(
|
||||||
description: String = getString(R.string.monitoring_state_changes)
|
description: String = getString(R.string.monitoring_state_changes)
|
||||||
) {
|
) {
|
||||||
@@ -136,38 +134,44 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
NotificationAction.AUTO_TUNNEL_OFF
|
NotificationAction.AUTO_TUNNEL_OFF
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
onGoing = true,
|
|
||||||
groupKey = NotificationManager.AUTO_TUNNEL_GROUP_KEY,
|
|
||||||
isGroupSummary = true,
|
|
||||||
)
|
)
|
||||||
ServiceCompat.startForeground(
|
ServiceCompat.startForeground(
|
||||||
this,
|
this,
|
||||||
NotificationManager.AUTO_TUNNEL_NOTIFICATION_ID,
|
NotificationManager.AUTO_TUNNEL_NOTIFICATION_ID,
|
||||||
notification,
|
notification,
|
||||||
Constants.SPECIAL_USE_SERVICE_TYPE_ID,
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startAutoTunnelStateJob(): Job =
|
private fun startAutoTunnelStateJob() =
|
||||||
lifecycleScope.launch(ioDispatcher) {
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
val networkFlow =
|
val networkFlow =
|
||||||
debouncedConnectivityStateFlow
|
debouncedConnectivityStateFlow
|
||||||
.flowOn(ioDispatcher)
|
.flowOn(ioDispatcher)
|
||||||
.map { it.toDomain() }
|
.map(NetworkState::from)
|
||||||
.map(::NetworkChange)
|
.map { StateChange.NetworkChange(it) }
|
||||||
.distinctUntilChanged()
|
.distinctUntilChanged()
|
||||||
|
|
||||||
val settingsFlow =
|
val settingsFlow =
|
||||||
combineSettings().map { (appMode, settings, tunnels) ->
|
combineSettings().map { StateChange.SettingsChange(it.first, it.second) }
|
||||||
SettingsChange(appMode, settings, tunnels)
|
|
||||||
}
|
|
||||||
|
|
||||||
val tunnelsFlow = tunnelManager.activeTunnels.map(::ActiveTunnelsChange)
|
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
|
var reevaluationJob: Job? = null
|
||||||
|
|
||||||
// get everything in sync before we use merge
|
// get everything in sync before we use merge
|
||||||
combine(networkFlow, settingsFlow, tunnelsFlow) { network, settings, tunnels ->
|
combine(networkFlow, settingsFlow, tunnelsFlow, monitoringFlow) {
|
||||||
|
network,
|
||||||
|
settings,
|
||||||
|
tunnels,
|
||||||
|
monitoring ->
|
||||||
autoTunnelStateFlow.update {
|
autoTunnelStateFlow.update {
|
||||||
it.copy(
|
it.copy(
|
||||||
activeTunnels = tunnels.activeTunnels,
|
activeTunnels = tunnels.activeTunnels,
|
||||||
@@ -179,83 +183,108 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
}
|
}
|
||||||
.first()
|
.first()
|
||||||
|
|
||||||
val initialState = autoTunnelStateFlow.value
|
|
||||||
if (initialState != defaultState) {
|
|
||||||
handleAutoTunnelEvent(
|
|
||||||
initialState.determineAutoTunnelEvent(NetworkChange(initialState.networkState))
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// use merge to limit the noise of a combine and also increase the scalability of auto
|
// use merge to limit the noise of a combine and also increase the scalability of auto
|
||||||
// tunnel handling new states
|
// tunnel handling new states
|
||||||
merge(networkFlow, settingsFlow, tunnelsFlow).collect { change ->
|
merge(networkFlow, settingsFlow, tunnelsFlow, monitoringFlow).collect { change ->
|
||||||
if (change !is ActiveTunnelsChange) {
|
if (change !is StateChange.ActiveTunnelsChange) {
|
||||||
Timber.d("New state changed to ${change.javaClass.simpleName}")
|
Timber.d("New state changed to ${change.javaClass.simpleName}")
|
||||||
}
|
}
|
||||||
|
|
||||||
val previousState = autoTunnelStateFlow.value
|
|
||||||
|
|
||||||
when (change) {
|
when (change) {
|
||||||
is NetworkChange -> {
|
is StateChange.NetworkChange -> {
|
||||||
Timber.d("Network change: ${change.networkState}")
|
|
||||||
reevaluationJob?.cancel()
|
reevaluationJob?.cancel()
|
||||||
|
val previousState = autoTunnelStateFlow.value
|
||||||
autoTunnelStateFlow.update { it.copy(networkState = change.networkState) }
|
autoTunnelStateFlow.update { it.copy(networkState = change.networkState) }
|
||||||
if (previousState.networkState == change.networkState) {
|
// Android late mobile data state change, we can ignore handling this
|
||||||
Timber.d("Duplicate network state change detected, ignoring")
|
if (
|
||||||
|
isAndroidLateCellularActiveChange(
|
||||||
|
previousState.networkState,
|
||||||
|
change.networkState,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
Timber.d("Android late cellular active state change")
|
||||||
return@collect
|
return@collect
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
is SettingsChange -> {
|
is StateChange.SettingsChange -> {
|
||||||
reevaluationJob?.cancel()
|
reevaluationJob?.cancel()
|
||||||
autoTunnelStateFlow.update {
|
autoTunnelStateFlow.update {
|
||||||
it.copy(settings = change.settings, tunnels = change.tunnels)
|
it.copy(settings = change.settings, tunnels = change.tunnels)
|
||||||
}
|
}
|
||||||
if (
|
|
||||||
previousState.settings == change.settings &&
|
|
||||||
previousState.tunnels == change.tunnels
|
|
||||||
) {
|
|
||||||
Timber.d("Duplicate settings change detected, ignoring")
|
|
||||||
return@collect
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
is ActiveTunnelsChange -> {
|
is StateChange.ActiveTunnelsChange -> {
|
||||||
autoTunnelStateFlow.update { it.copy(activeTunnels = change.activeTunnels) }
|
autoTunnelStateFlow.update { it.copy(activeTunnels = change.activeTunnels) }
|
||||||
return@collect
|
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))
|
handleAutoTunnelEvent(autoTunnelStateFlow.value.determineAutoTunnelEvent(change))
|
||||||
|
|
||||||
// re-evaluate network state after a short duration to prevent missed state changes
|
|
||||||
reevaluationJob = launch {
|
reevaluationJob = launch {
|
||||||
val snapshotNetwork = autoTunnelStateFlow.value.networkState
|
|
||||||
delay(REEVALUATE_CHECK_DELAY)
|
delay(REEVALUATE_CHECK_DELAY)
|
||||||
val currentState = autoTunnelStateFlow.value
|
val currentState = autoTunnelStateFlow.value
|
||||||
if (
|
if (currentState != defaultState) {
|
||||||
currentState != defaultState && currentState.networkState != snapshotNetwork
|
Timber.d("Re-evaluating auto-tunnel state..")
|
||||||
) {
|
|
||||||
Timber.d(
|
|
||||||
"Re-evaluating auto-tunnel state.. (network changed since snapshot)"
|
|
||||||
)
|
|
||||||
handleAutoTunnelEvent(currentState.determineAutoTunnelEvent(change))
|
handleAutoTunnelEvent(currentState.determineAutoTunnelEvent(change))
|
||||||
} else {
|
|
||||||
Timber.d("Skipping re-eval: network unchanged or default state")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun combineSettings(): Flow<Triple<AppMode, AutoTunnelSettings, List<TunnelConfig>>> {
|
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
|
||||||
|
private fun areAutoTunnelSettingsTheSame(old: AppSettings, new: AppSettings): Boolean {
|
||||||
|
return (old.isTunnelOnWifiEnabled == new.isTunnelOnWifiEnabled &&
|
||||||
|
old.isTunnelOnMobileDataEnabled == new.isTunnelOnMobileDataEnabled &&
|
||||||
|
old.isTunnelOnEthernetEnabled == new.isTunnelOnEthernetEnabled &&
|
||||||
|
old.trustedNetworkSSIDs == new.trustedNetworkSSIDs &&
|
||||||
|
old.isPingEnabled == new.isPingEnabled &&
|
||||||
|
old.debounceDelaySeconds == new.debounceDelaySeconds &&
|
||||||
|
old.wifiDetectionMethod == new.wifiDetectionMethod &&
|
||||||
|
old.isVpnKillSwitchEnabled == new.isVpnKillSwitchEnabled &&
|
||||||
|
old.isLanOnKillSwitchEnabled == new.isLanOnKillSwitchEnabled &&
|
||||||
|
old.isDisableKillSwitchOnTrustedEnabled == new.isDisableKillSwitchOnTrustedEnabled &&
|
||||||
|
old.isStopOnNoInternetEnabled == new.isStopOnNoInternetEnabled)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun combineSettings(): Flow<Pair<AppSettings, Tunnels>> {
|
||||||
return combine(
|
return combine(
|
||||||
settingsRepository.flow.map { it.appMode }.distinctUntilChanged(),
|
appDataRepository
|
||||||
autoTunnelRepository.flow,
|
.get()
|
||||||
tunnelsRepository.userTunnelsFlow.map { tunnels ->
|
.settings
|
||||||
|
.flow
|
||||||
|
.distinctUntilChanged(::areAutoTunnelSettingsTheSame),
|
||||||
|
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
|
||||||
tunnels.map { it.copy(isActive = false) }
|
tunnels.map { it.copy(isActive = false) }
|
||||||
},
|
},
|
||||||
) { appMode, autoTunnel, tunnels ->
|
) { settings, tunnels ->
|
||||||
Triple(appMode, autoTunnel, tunnels)
|
Pair(settings, tunnels)
|
||||||
}
|
}
|
||||||
.distinctUntilChanged()
|
.distinctUntilChanged()
|
||||||
}
|
}
|
||||||
@@ -290,9 +319,9 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
.distinctUntilChanged(::areAutoTunnelPermissionsRequiredTheSame)
|
.distinctUntilChanged(::areAutoTunnelPermissionsRequiredTheSame)
|
||||||
.map {
|
.map {
|
||||||
NetworkPermissionState(
|
NetworkPermissionState(
|
||||||
it.settings.wifiDetectionMethod.to(),
|
it.settings.wifiDetectionMethod,
|
||||||
it.networkState.locationServicesEnabled,
|
it.networkState.locationServicesEnabled == true,
|
||||||
it.networkState.locationPermissionGranted,
|
it.networkState.locationPermissionGranted == true,
|
||||||
(it.tunnels.any { tunnel -> tunnel.tunnelNetworks.isNotEmpty() } ||
|
(it.tunnels.any { tunnel -> tunnel.tunnelNetworks.isNotEmpty() } ||
|
||||||
it.settings.trustedNetworkSSIDs.isNotEmpty()),
|
it.settings.trustedNetworkSSIDs.isNotEmpty()),
|
||||||
)
|
)
|
||||||
@@ -364,22 +393,60 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
is AutoTunnelEvent.Start ->
|
is AutoTunnelEvent.Start ->
|
||||||
(event.tunnelConfig ?: tunnelsRepository.getDefaultTunnel())?.let {
|
(event.tunnelConf ?: appDataRepository.get().getPrimaryOrFirstTunnel())?.let {
|
||||||
tunnelManager.startTunnel(it).onFailure { e ->
|
tunnelManager.startTunnel(it)
|
||||||
Timber.e(e, "Auto-tunnel start failed for ${it.name}")
|
|
||||||
// TODO notify or retry
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
is AutoTunnelEvent.Stop -> tunnelManager.stopActiveTunnels()
|
is AutoTunnelEvent.Stop -> tunnelManager.stopTunnel()
|
||||||
AutoTunnelEvent.DoNothing -> Timber.i("Auto-tunneling: nothing to do")
|
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(
|
||||||
|
configsPeerKeyResolvedMap: List<Pair<TunnelConf, Map<String, String?>>>
|
||||||
|
) { // Simplified param: no failureCount
|
||||||
|
val settings = appDataRepository.get().settings.get()
|
||||||
|
val pingIntervalMillis = settings.tunnelPingIntervalSeconds.toMillis()
|
||||||
|
configsPeerKeyResolvedMap.forEach { (config, peerMap) ->
|
||||||
|
val bounceCount = bounceCounts.value.getOrDefault(config.id, 0)
|
||||||
|
val exponent = bounceCount.toDouble()
|
||||||
|
val backoffDelay =
|
||||||
|
(pingIntervalMillis * 2.0.pow(exponent)).toLong().coerceAtMost(MAX_BACKOFF_MS)
|
||||||
|
val currentTime = System.currentTimeMillis()
|
||||||
|
val lastTime = lastBounceTimes.getOrDefault(config.id, 0L)
|
||||||
|
if (currentTime - lastTime >= backoffDelay) {
|
||||||
|
Timber.d(
|
||||||
|
"Bouncing tunnel ${config.name} after detecting failure, with bounce count $bounceCount and calculated backoff delay $backoffDelay ms"
|
||||||
|
)
|
||||||
|
tunnelManager.bounceTunnel(config, Ping(peerMap))
|
||||||
|
lastBounceTimes[config.id] = currentTime
|
||||||
|
bounceCounts.update { current ->
|
||||||
|
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)"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// restart network flow on debounce changes
|
|
||||||
@OptIn(FlowPreview::class, ExperimentalCoroutinesApi::class)
|
@OptIn(FlowPreview::class, ExperimentalCoroutinesApi::class)
|
||||||
private val debouncedConnectivityStateFlow: Flow<ConnectivityState> by lazy {
|
private val debouncedConnectivityStateFlow: Flow<ConnectivityState> by lazy {
|
||||||
autoTunnelRepository.flow
|
appDataRepository
|
||||||
|
.get()
|
||||||
|
.settings
|
||||||
|
.flow
|
||||||
.map { it.debounceDelaySeconds.toMillis() }
|
.map { it.debounceDelaySeconds.toMillis() }
|
||||||
.distinctUntilChanged()
|
.distinctUntilChanged()
|
||||||
.flatMapLatest { debounceMillis ->
|
.flatMapLatest { debounceMillis ->
|
||||||
@@ -388,6 +455,8 @@ class AutoTunnelService : LifecycleService() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val REEVALUATE_CHECK_DELAY = 3_000L
|
// try to keep this window short as it will interrupt manual overrides
|
||||||
|
const val REEVALUATE_CHECK_DELAY = 2_000L
|
||||||
|
const val MAX_BACKOFF_MS = 300_000L // 5 minutes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+12
-11
@@ -1,19 +1,20 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.service.autotunnel
|
package com.zaneschepke.wireguardautotunnel.core.service.autotunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AutoTunnelSettings
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.NetworkState
|
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.domain.state.TunnelState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
||||||
|
import org.amnezia.awg.crypto.Key
|
||||||
|
|
||||||
sealed interface StateChange
|
sealed class StateChange {
|
||||||
|
data class NetworkChange(val networkState: NetworkState) : StateChange()
|
||||||
|
|
||||||
data class NetworkChange(val networkState: NetworkState) : StateChange
|
data class SettingsChange(val settings: AppSettings, val tunnels: Tunnels) : StateChange()
|
||||||
|
|
||||||
data class SettingsChange(
|
data class ActiveTunnelsChange(val activeTunnels: Map<TunnelConf, TunnelState>) : StateChange()
|
||||||
val appMode: AppMode,
|
|
||||||
val settings: AutoTunnelSettings,
|
|
||||||
val tunnels: List<TunnelConfig>,
|
|
||||||
) : StateChange
|
|
||||||
|
|
||||||
data class ActiveTunnelsChange(val activeTunnels: Map<Int, TunnelState>) : StateChange
|
data class MonitoringChange(val pingStates: Map<TunnelConf, Map<Key, PingState>?>) :
|
||||||
|
StateChange()
|
||||||
|
}
|
||||||
|
|||||||
+38
-43
@@ -4,22 +4,22 @@ import android.content.Intent
|
|||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import android.service.quicksettings.Tile
|
import android.service.quicksettings.Tile
|
||||||
import android.service.quicksettings.TileService
|
import android.service.quicksettings.TileService
|
||||||
import androidx.lifecycle.*
|
import androidx.lifecycle.Lifecycle
|
||||||
|
import androidx.lifecycle.LifecycleOwner
|
||||||
|
import androidx.lifecycle.LifecycleRegistry
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import kotlin.concurrent.atomics.AtomicBoolean
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import kotlin.concurrent.atomics.ExperimentalAtomicApi
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val serviceManager: ServiceManager by inject()
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class) val isCollecting = AtomicBoolean(false)
|
|
||||||
|
|
||||||
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
||||||
|
|
||||||
@@ -33,46 +33,34 @@ class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTileAdded() {
|
override fun onStartListening() {
|
||||||
super.onTileAdded()
|
super.onStartListening()
|
||||||
initTileState()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onStopListening() {
|
|
||||||
super.onStopListening()
|
|
||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_STOP)
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class)
|
|
||||||
private fun initTileState() {
|
|
||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
||||||
Timber.d("Start listening called for auto tunnel tile")
|
Timber.d("Start listening called for auto tunnel tile")
|
||||||
if (isCollecting.compareAndSet(expectedValue = false, newValue = true)) {
|
lifecycleScope.launch {
|
||||||
lifecycleScope.launch {
|
serviceManager.autoTunnelService.collect {
|
||||||
repeatOnLifecycle(Lifecycle.State.STARTED) {
|
if (it != null) return@collect setActive()
|
||||||
serviceManager.autoTunnelService.collect {
|
setInactive()
|
||||||
if (it != null) return@collect setActive()
|
}
|
||||||
setInactive()
|
}
|
||||||
}
|
lifecycleScope.launch {
|
||||||
|
appDataRepository.tunnels.flow.collect {
|
||||||
|
if (it.isEmpty()) {
|
||||||
|
setUnavailable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onStartListening() {
|
|
||||||
super.onStartListening()
|
|
||||||
initTileState()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onClick() {
|
override fun onClick() {
|
||||||
super.onClick()
|
super.onClick()
|
||||||
unlockAndRun {
|
unlockAndRun {
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
if (serviceManager.autoTunnelService.value != null) {
|
if (serviceManager.autoTunnelService.value != null) {
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(false)
|
serviceManager.stopAutoTunnel()
|
||||||
setInactive()
|
setInactive()
|
||||||
} else {
|
} else {
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(true)
|
serviceManager.startAutoTunnel()
|
||||||
setActive()
|
setActive()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -80,16 +68,16 @@ class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setActive() {
|
private fun setActive() {
|
||||||
qsTile?.let {
|
runCatching {
|
||||||
it.state = Tile.STATE_ACTIVE
|
qsTile.state = Tile.STATE_ACTIVE
|
||||||
it.updateTile()
|
qsTile.updateTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setInactive() {
|
private fun setInactive() {
|
||||||
qsTile?.let {
|
runCatching {
|
||||||
it.state = Tile.STATE_INACTIVE
|
qsTile.state = Tile.STATE_INACTIVE
|
||||||
it.updateTile()
|
qsTile.updateTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,11 +87,18 @@ class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
try {
|
try {
|
||||||
ret = super.onBind(intent)
|
ret = super.onBind(intent)
|
||||||
} catch (_: Throwable) {
|
} catch (_: Throwable) {
|
||||||
Timber.e("Failed to bind to AutoTunnelControlTile")
|
Timber.e("Failed to bind to TunnelControlTile")
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun setUnavailable() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_UNAVAILABLE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override val lifecycle: Lifecycle
|
override val lifecycle: Lifecycle
|
||||||
get() = lifecycleRegistry
|
get() = lifecycleRegistry
|
||||||
}
|
}
|
||||||
|
|||||||
+61
-90
@@ -9,35 +9,30 @@ import androidx.lifecycle.Lifecycle
|
|||||||
import androidx.lifecycle.LifecycleOwner
|
import androidx.lifecycle.LifecycleOwner
|
||||||
import androidx.lifecycle.LifecycleRegistry
|
import androidx.lifecycle.LifecycleRegistry
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
import androidx.lifecycle.repeatOnLifecycle
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
||||||
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.domain.repository.TunnelRepository
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import kotlin.concurrent.atomics.AtomicBoolean
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import kotlin.concurrent.atomics.ExperimentalAtomicApi
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import kotlinx.coroutines.flow.distinctUntilChangedBy
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class TunnelControlTile : TileService(), LifecycleOwner {
|
class TunnelControlTile : TileService(), LifecycleOwner {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val serviceManager: ServiceManager by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
private val tunnelManager: TunnelManager by inject()
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class) val isCollecting = AtomicBoolean(false)
|
|
||||||
|
|
||||||
private val startLock = Mutex()
|
|
||||||
|
|
||||||
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
||||||
|
|
||||||
|
private var isCollecting = false
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_CREATE)
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_CREATE)
|
||||||
@@ -48,39 +43,18 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTileAdded() {
|
|
||||||
super.onTileAdded()
|
|
||||||
initTileState()
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class)
|
|
||||||
private fun initTileState() {
|
|
||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
|
||||||
Timber.d("Start listening called for tunnel tile")
|
|
||||||
if (isCollecting.compareAndSet(expectedValue = false, newValue = true)) {
|
|
||||||
lifecycleScope.launch {
|
|
||||||
repeatOnLifecycle(Lifecycle.State.STARTED) {
|
|
||||||
tunnelManager.activeTunnels
|
|
||||||
.distinctUntilChangedBy { it.size }
|
|
||||||
.collect { updateTileState() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onStartListening() {
|
override fun onStartListening() {
|
||||||
super.onStartListening()
|
super.onStartListening()
|
||||||
initTileState()
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
||||||
}
|
Timber.d("Start listening called for tunnel tile")
|
||||||
|
if (isCollecting) return
|
||||||
override fun onStopListening() {
|
isCollecting = true
|
||||||
super.onStopListening()
|
lifecycleScope.launch { tunnelManager.activeTunnels.collect { updateTileState() } }
|
||||||
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_STOP)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun updateTileState() {
|
private suspend fun updateTileState() {
|
||||||
try {
|
try {
|
||||||
val tunnels = tunnelsRepository.getAll()
|
val tunnels = appDataRepository.tunnels.getAll()
|
||||||
if (tunnels.isEmpty()) {
|
if (tunnels.isEmpty()) {
|
||||||
setUnavailable()
|
setUnavailable()
|
||||||
return
|
return
|
||||||
@@ -91,27 +65,24 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
|
|
||||||
when {
|
when {
|
||||||
activeTunnels.isNotEmpty() -> {
|
activeTunnels.isNotEmpty() -> {
|
||||||
val activeIds = activeTunnels.map { it.key }
|
val activeIds = activeTunnels.map { it.key.id }
|
||||||
// TODO improvements would be needed to make this work well with toggling
|
// TODO improvements would be needed to make this work well with toggling
|
||||||
// multiple tunnels
|
// multiple tunnels
|
||||||
// this would be better managed elsewhere
|
// this would be better managed elsewhere
|
||||||
WireGuardAutoTunnel.setLastActiveTunnels(activeIds)
|
WireGuardAutoTunnel.setLastActiveTunnels(activeIds)
|
||||||
val activeTunNames =
|
updateTileForActiveTunnels(activeTunnels)
|
||||||
tunnels.filter { activeTunnels.keys.contains(it.id) }.map { it.name }
|
|
||||||
updateTileForActiveTunnels(activeTunNames)
|
|
||||||
}
|
}
|
||||||
else -> updateTileForLastActiveTunnels()
|
else -> updateTileForLastActiveTunnels()
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e, "Failed to update tunnel state")
|
|
||||||
setUnavailable()
|
setUnavailable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateTileForActiveTunnels(activeTunnelNames: List<String>) {
|
private fun updateTileForActiveTunnels(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
val tileName =
|
val tileName =
|
||||||
when (activeTunnelNames.size) {
|
when (activeTunnels.size) {
|
||||||
1 -> activeTunnelNames[0]
|
1 -> activeTunnels.keys.first().tunName
|
||||||
else -> getString(R.string.multiple)
|
else -> getString(R.string.multiple)
|
||||||
}
|
}
|
||||||
updateTile(tileName, true)
|
updateTile(tileName, true)
|
||||||
@@ -121,14 +92,15 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
val lastActiveIds = WireGuardAutoTunnel.getLastActiveTunnels()
|
val lastActiveIds = WireGuardAutoTunnel.getLastActiveTunnels()
|
||||||
when {
|
when {
|
||||||
lastActiveIds.isEmpty() -> {
|
lastActiveIds.isEmpty() -> {
|
||||||
tunnelsRepository.getStartTunnel()?.let { config -> updateTile(config.name, false) }
|
appDataRepository.getStartTunnelConfig()?.let { config ->
|
||||||
?: setUnavailable()
|
updateTile(config.tunName, false)
|
||||||
|
} ?: setUnavailable()
|
||||||
}
|
}
|
||||||
lastActiveIds.size > 1 -> updateTile(getString(R.string.multiple), false)
|
lastActiveIds.size > 1 -> updateTile(getString(R.string.multiple), false)
|
||||||
else -> {
|
else -> {
|
||||||
val tunnelId = lastActiveIds.first()
|
val tunnelId = lastActiveIds.first()
|
||||||
tunnelsRepository.getById(tunnelId)?.let { tunnel ->
|
appDataRepository.tunnels.getById(tunnelId)?.let { tunnel ->
|
||||||
updateTile(tunnel.name, false)
|
updateTile(tunnel.tunName, false)
|
||||||
} ?: setUnavailable()
|
} ?: setUnavailable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -138,16 +110,14 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
super.onClick()
|
super.onClick()
|
||||||
unlockAndRun {
|
unlockAndRun {
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
startLock.withLock {
|
if (tunnelManager.activeTunnels.value.isNotEmpty())
|
||||||
if (tunnelManager.activeTunnels.value.isNotEmpty())
|
return@launch tunnelManager.stopTunnel()
|
||||||
return@launch tunnelManager.stopActiveTunnels()
|
val lastActive = WireGuardAutoTunnel.getLastActiveTunnels()
|
||||||
val lastActive = WireGuardAutoTunnel.getLastActiveTunnels()
|
if (lastActive.isEmpty()) {
|
||||||
if (lastActive.isEmpty()) {
|
appDataRepository.getStartTunnelConfig()?.let { tunnelManager.startTunnel(it) }
|
||||||
tunnelsRepository.getStartTunnel()?.let { tunnelManager.startTunnel(it) }
|
} else {
|
||||||
} else {
|
lastActive.forEach { id ->
|
||||||
lastActive.forEach { id ->
|
appDataRepository.tunnels.getById(id)?.let { tunnelManager.startTunnel(it) }
|
||||||
tunnelsRepository.getById(id)?.let { tunnelManager.startTunnel(it) }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -155,46 +125,38 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setActive() {
|
private fun setActive() {
|
||||||
qsTile?.let {
|
runCatching {
|
||||||
it.state = Tile.STATE_ACTIVE
|
qsTile.state = Tile.STATE_ACTIVE
|
||||||
it.updateTile()
|
qsTile.updateTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setInactive() {
|
private fun setInactive() {
|
||||||
qsTile?.let {
|
runCatching {
|
||||||
it.state = Tile.STATE_INACTIVE
|
qsTile.state = Tile.STATE_INACTIVE
|
||||||
it.updateTile()
|
qsTile.updateTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setUnavailable() {
|
private fun setUnavailable() {
|
||||||
qsTile?.let {
|
runCatching {
|
||||||
it.state = Tile.STATE_UNAVAILABLE
|
qsTile.state = Tile.STATE_UNAVAILABLE
|
||||||
setTileDescription("")
|
setTileDescription("")
|
||||||
it.updateTile()
|
qsTile.updateTile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setTileDescription(description: String) {
|
private fun setTileDescription(description: String) {
|
||||||
qsTile?.let {
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
|
||||||
it.subtitle = description
|
|
||||||
it.stateDescription = description
|
|
||||||
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
|
||||||
it.subtitle = description
|
|
||||||
}
|
|
||||||
it.updateTile()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateTile(name: String, active: Boolean) {
|
|
||||||
runCatching {
|
runCatching {
|
||||||
setTileDescription(name)
|
if (qsTile == null) return@runCatching
|
||||||
if (active) return setActive()
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
setInactive()
|
qsTile.subtitle = description
|
||||||
|
qsTile.stateDescription = description
|
||||||
|
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
|
qsTile.subtitle = description
|
||||||
}
|
}
|
||||||
.onFailure { Timber.e(it) }
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This works around an annoying unsolved frameworks bug some people are hitting. */
|
/* This works around an annoying unsolved frameworks bug some people are hitting. */
|
||||||
@@ -208,6 +170,15 @@ class TunnelControlTile : TileService(), LifecycleOwner {
|
|||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun updateTile(name: String, active: Boolean) {
|
||||||
|
runCatching {
|
||||||
|
setTileDescription(name)
|
||||||
|
if (active) return setActive()
|
||||||
|
setInactive()
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
}
|
||||||
|
|
||||||
override val lifecycle: Lifecycle
|
override val lifecycle: Lifecycle
|
||||||
get() = lifecycleRegistry
|
get() = lifecycleRegistry
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-1
@@ -6,12 +6,13 @@ import androidx.core.content.pm.ShortcutInfoCompat
|
|||||||
import androidx.core.content.pm.ShortcutManagerCompat
|
import androidx.core.content.pm.ShortcutManagerCompat
|
||||||
import androidx.core.graphics.drawable.IconCompat
|
import androidx.core.graphics.drawable.IconCompat
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class DynamicShortcutManager(
|
class DynamicShortcutManager(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
) : ShortcutManager {
|
) : ShortcutManager {
|
||||||
override suspend fun addShortcuts() {
|
override suspend fun addShortcuts() {
|
||||||
withContext(ioDispatcher) {
|
withContext(ioDispatcher) {
|
||||||
|
|||||||
+22
-20
@@ -2,31 +2,32 @@ package com.zaneschepke.wireguardautotunnel.core.shortcut
|
|||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.activity.ComponentActivity
|
import androidx.activity.ComponentActivity
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.android.ext.android.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class ShortcutsActivity : ComponentActivity() {
|
class ShortcutsActivity : ComponentActivity() {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val settingsRepository: GeneralSettingRepository by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository by inject()
|
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
private val tunnelManager: TunnelManager by inject()
|
|
||||||
private val applicationScope: CoroutineScope by inject(named(Scope.APPLICATION))
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
applicationScope.launch {
|
applicationScope.launch {
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
val settings = appDataRepository.settings.get()
|
||||||
if (settings.isShortcutsEnabled) {
|
if (settings.isShortcutsEnabled) {
|
||||||
when (intent.getStringExtra(CLASS_NAME_EXTRA_KEY)) {
|
when (intent.getStringExtra(CLASS_NAME_EXTRA_KEY)) {
|
||||||
LEGACY_TUNNEL_SERVICE_NAME,
|
LEGACY_TUNNEL_SERVICE_NAME,
|
||||||
@@ -34,13 +35,16 @@ class ShortcutsActivity : ComponentActivity() {
|
|||||||
val tunnelName = intent.getStringExtra(TUNNEL_NAME_EXTRA_KEY)
|
val tunnelName = intent.getStringExtra(TUNNEL_NAME_EXTRA_KEY)
|
||||||
Timber.d("Tunnel name extra: $tunnelName")
|
Timber.d("Tunnel name extra: $tunnelName")
|
||||||
val tunnelConfig =
|
val tunnelConfig =
|
||||||
tunnelName?.let { tunnelsRepository.findByTunnelName(it) }
|
tunnelName?.let {
|
||||||
?: tunnelsRepository.getDefaultTunnel()
|
appDataRepository.tunnels.getAll().firstOrNull {
|
||||||
Timber.d("Shortcut action on name: ${tunnelConfig?.name}")
|
it.tunName == tunnelName
|
||||||
|
}
|
||||||
|
} ?: appDataRepository.getStartTunnelConfig()
|
||||||
|
Timber.d("Shortcut action on name: ${tunnelConfig?.tunName}")
|
||||||
tunnelConfig?.let {
|
tunnelConfig?.let {
|
||||||
when (intent.action) {
|
when (intent.action) {
|
||||||
Action.START.name -> tunnelManager.startTunnel(it)
|
Action.START.name -> tunnelManager.startTunnel(it)
|
||||||
Action.STOP.name -> tunnelManager.stopActiveTunnels()
|
Action.STOP.name -> tunnelManager.stopTunnel()
|
||||||
else -> Unit
|
else -> Unit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -48,10 +52,8 @@ class ShortcutsActivity : ComponentActivity() {
|
|||||||
AutoTunnelService::class.java.simpleName,
|
AutoTunnelService::class.java.simpleName,
|
||||||
LEGACY_AUTO_TUNNEL_SERVICE_NAME -> {
|
LEGACY_AUTO_TUNNEL_SERVICE_NAME -> {
|
||||||
when (intent.action) {
|
when (intent.action) {
|
||||||
Action.START.name ->
|
Action.START.name -> serviceManager.startAutoTunnel()
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(true)
|
Action.STOP.name -> serviceManager.stopAutoTunnel()
|
||||||
Action.STOP.name ->
|
|
||||||
autoTunnelSettingsRepository.updateAutoTunnelEnabled(false)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,292 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.wireguard.android.backend.Tunnel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
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.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.ui.state.ConfigProxy
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
||||||
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
import kotlin.coroutines.cancellation.CancellationException
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.flow.*
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
|
import org.amnezia.awg.crypto.Key
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
abstract class BaseTunnel(
|
||||||
|
private val applicationScope: CoroutineScope,
|
||||||
|
private val appDataRepository: AppDataRepository,
|
||||||
|
private val serviceManager: ServiceManager,
|
||||||
|
) : TunnelProvider {
|
||||||
|
|
||||||
|
private val _errorEvents = MutableSharedFlow<Pair<TunnelConf, BackendError>>()
|
||||||
|
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 tunJobs = ConcurrentHashMap<Int, Job>()
|
||||||
|
override val activeTunnels = activeTuns.asStateFlow()
|
||||||
|
|
||||||
|
private val tunMutex = Mutex()
|
||||||
|
private val tunStatusMutex = Mutex()
|
||||||
|
private val bounceTunnelMutex = Mutex()
|
||||||
|
|
||||||
|
override val bouncingTunnelIds = ConcurrentHashMap<Int, TunnelStatus.StopReason>()
|
||||||
|
|
||||||
|
abstract suspend fun startBackend(tunnel: TunnelConf)
|
||||||
|
|
||||||
|
abstract fun stopBackend(tunnel: TunnelConf)
|
||||||
|
|
||||||
|
override fun hasVpnPermission(): Boolean {
|
||||||
|
return serviceManager.hasVpnPermission()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun updateTunnelStatus(
|
||||||
|
tunnelConf: TunnelConf,
|
||||||
|
status: TunnelStatus?,
|
||||||
|
stats: TunnelStatistics?,
|
||||||
|
pingStates: Map<Key, PingState>?,
|
||||||
|
handshakeSuccessLogs: Boolean?,
|
||||||
|
) {
|
||||||
|
tunStatusMutex.withLock {
|
||||||
|
activeTuns.update { currentTuns ->
|
||||||
|
val originalConf = currentTuns.getKeyById(tunnelConf.id) ?: tunnelConf
|
||||||
|
val existingState = currentTuns.getValueById(tunnelConf.id) ?: TunnelState()
|
||||||
|
val newStatus = status ?: existingState.status
|
||||||
|
if (newStatus == TunnelStatus.Down) {
|
||||||
|
Timber.d("Removing tunnel ${tunnelConf.id} from activeTunnels as state is DOWN")
|
||||||
|
cleanUpTunJob(tunnelConf)
|
||||||
|
currentTuns - originalConf
|
||||||
|
} else if (
|
||||||
|
existingState.status == newStatus &&
|
||||||
|
stats == null &&
|
||||||
|
pingStates == null &&
|
||||||
|
handshakeSuccessLogs == null
|
||||||
|
) {
|
||||||
|
Timber.d("Skipping redundant state update for ${tunnelConf.id}: $newStatus")
|
||||||
|
currentTuns
|
||||||
|
} else {
|
||||||
|
val updated =
|
||||||
|
existingState.copy(
|
||||||
|
status = newStatus,
|
||||||
|
statistics = stats ?: existingState.statistics,
|
||||||
|
pingStates = pingStates ?: existingState.pingStates,
|
||||||
|
handshakeSuccessLogs =
|
||||||
|
handshakeSuccessLogs ?: existingState.handshakeSuccessLogs,
|
||||||
|
)
|
||||||
|
currentTuns + (originalConf to updated)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
handleServiceStateOnChange()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun stopActiveTunnels() {
|
||||||
|
activeTunnels.value.forEach { (config, state) ->
|
||||||
|
if (state.status.isUpOrStarting()) {
|
||||||
|
stopTunnel(config)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun configureTunnelCallbacks(tunnelConf: TunnelConf) {
|
||||||
|
Timber.d("Configuring TunnelConf instance: ${tunnelConf.hashCode()}")
|
||||||
|
tunnelConf.setStateChangeCallback { state ->
|
||||||
|
applicationScope.launch {
|
||||||
|
Timber.d(
|
||||||
|
"State change callback triggered for tunnel ${tunnelConf.id}: ${tunnelConf.tunName} with state $state at ${System.currentTimeMillis()}"
|
||||||
|
)
|
||||||
|
when (state) {
|
||||||
|
is Tunnel.State -> updateTunnelStatus(tunnelConf, state.asTunnelState())
|
||||||
|
is org.amnezia.awg.backend.Tunnel.State ->
|
||||||
|
updateTunnelStatus(tunnelConf, state.asTunnelState())
|
||||||
|
}
|
||||||
|
handleServiceStateOnChange()
|
||||||
|
}
|
||||||
|
serviceManager.updateTunnelTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
|
if (activeTuns.exists(tunnelConf.id) || tunJobs.containsKey(tunnelConf.id))
|
||||||
|
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()
|
||||||
|
tunMutex.withLock {
|
||||||
|
val job =
|
||||||
|
applicationScope.launch {
|
||||||
|
try {
|
||||||
|
Timber.d("Starting tunnel ${tunnelConf.id}...")
|
||||||
|
startTunnelInner(tunnelConf)
|
||||||
|
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"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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) {
|
||||||
|
configureTunnelCallbacks(tunnelConf)
|
||||||
|
Timber.d("Starting backend for tunnel ${tunnelConf.id}...")
|
||||||
|
|
||||||
|
var currentConf = tunnelConf
|
||||||
|
var restoreAttempted = false
|
||||||
|
var originalError: BackendError? = null
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
try {
|
||||||
|
startBackend(currentConf)
|
||||||
|
updateTunnelStatus(currentConf, TunnelStatus.Up)
|
||||||
|
Timber.d("Started for tun ${currentConf.id}...")
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun saveTunnelActiveState(tunnelConf: TunnelConf, active: Boolean) {
|
||||||
|
val tunnelCopy = tunnelConf.copyWithCallback(isActive = active)
|
||||||
|
appDataRepository.tunnels.save(tunnelCopy)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun stopTunnel(tunnelConf: TunnelConf?, reason: TunnelStatus.StopReason) {
|
||||||
|
if (tunnelConf == null) return stopActiveTunnels()
|
||||||
|
tunMutex.withLock {
|
||||||
|
if (activeTuns.isStarting(tunnelConf.id))
|
||||||
|
return handleStuckStartingTunnelShutdown(tunnelConf)
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Stopping(reason))
|
||||||
|
stopTunnelInner(tunnelConf)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun stopTunnelInner(tunnelConf: TunnelConf) {
|
||||||
|
try {
|
||||||
|
val tunnel = activeTuns.findTunnel(tunnelConf.id) ?: return
|
||||||
|
stopBackend(tunnel)
|
||||||
|
saveTunnelActiveState(tunnelConf, false)
|
||||||
|
removeActiveTunnel(tunnel)
|
||||||
|
} catch (e: BackendError) {
|
||||||
|
Timber.e(e, "Failed to stop tunnel ${tunnelConf.id}")
|
||||||
|
_errorEvents.emit(tunnelConf to e)
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Down)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun handleServiceStateOnChange() {
|
||||||
|
if (activeTuns.value.isEmpty()) serviceManager.stopTunnelForegroundService()
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun handleStuckStartingTunnelShutdown(tunnel: TunnelConf) {
|
||||||
|
Timber.d("Stuck in starting state so cancelling job for tunnel ${tunnel.name}")
|
||||||
|
try {
|
||||||
|
tunJobs[tunnel.id]?.cancel() ?: Timber.d("No job found for ${tunnel.name}")
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e, "Failed to cancel job for ${tunnel.name}")
|
||||||
|
} finally {
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Down)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun cleanUpTunJob(tunnel: TunnelConf) {
|
||||||
|
Timber.d("Removing job for ${tunnel.name}")
|
||||||
|
tunJobs -= tunnel.id
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun removeActiveTunnel(tunnelConf: TunnelConf) {
|
||||||
|
activeTuns.update { current -> current.toMutableMap().apply { remove(tunnelConf) } }
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun bounceTunnel(tunnelConf: TunnelConf, reason: TunnelStatus.StopReason) {
|
||||||
|
bounceTunnelMutex.withLock {
|
||||||
|
Timber.i(
|
||||||
|
"Bounce tunnel ${tunnelConf.name} for reason: $reason, current bouncing: ${bouncingTunnelIds.size}"
|
||||||
|
)
|
||||||
|
bouncingTunnelIds[tunnelConf.id] = reason
|
||||||
|
runCatching {
|
||||||
|
stopTunnel(tunnelConf, reason)
|
||||||
|
delay(BOUNCE_DELAY)
|
||||||
|
startTunnel(tunnelConf)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> =
|
||||||
|
activeTuns.value.keys.map { it.tunName }.toSet()
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val BOUNCE_DELAY = 300L
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,44 +1,44 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
|
||||||
fun Map<TunnelConfig, TunnelState>.allDown(): Boolean {
|
fun Map<TunnelConf, TunnelState>.allDown(): Boolean {
|
||||||
return this.all { it.value.status.isDown() }
|
return this.all { it.value.status.isDown() }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Map<TunnelConfig, TunnelState>.hasActive(): Boolean {
|
fun Map<TunnelConf, TunnelState>.hasActive(): Boolean {
|
||||||
return this.any { it.value.status.isUp() }
|
return this.any { it.value.status.isUp() }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Map<TunnelConfig, TunnelState>.getValueById(id: Int): TunnelState? {
|
fun Map<TunnelConf, TunnelState>.getValueById(id: Int): TunnelState? {
|
||||||
val key = this.keys.find { it.id == id }
|
val key = this.keys.find { it.id == id }
|
||||||
return key?.let { this@getValueById[it] }
|
return key?.let { this@getValueById[it] }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Map<TunnelConfig, TunnelState>.getKeyById(id: Int): TunnelConfig? {
|
fun Map<TunnelConf, TunnelState>.getKeyById(id: Int): TunnelConf? {
|
||||||
return this.keys.find { it.id == id }
|
return this.keys.find { it.id == id }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Map<TunnelConfig, TunnelState>.isUp(tunnelConfig: TunnelConfig): Boolean {
|
fun Map<TunnelConf, TunnelState>.isUp(tunnelConf: TunnelConf): Boolean {
|
||||||
return this.getValueById(tunnelConfig.id)?.status?.isUp() ?: false
|
return this.getValueById(tunnelConf.id)?.status?.isUp() ?: false
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableStateFlow<Map<TunnelConfig, TunnelState>>.exists(id: Int): Boolean {
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.exists(id: Int): Boolean {
|
||||||
return this.value.any { it.key.id == id }
|
return this.value.any { it.key.id == id }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableStateFlow<Map<TunnelConfig, TunnelState>>.isUp(id: Int): Boolean {
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.isUp(id: Int): Boolean {
|
||||||
return this.value.any { it.key.id == id && it.value.status is TunnelStatus.Up }
|
return this.value.any { it.key.id == id && it.value.status == TunnelStatus.Up }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableStateFlow<Map<TunnelConfig, TunnelState>>.isStarting(id: Int): Boolean {
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.isStarting(id: Int): Boolean {
|
||||||
return this.value.any { it.key.id == id && it.value.status == TunnelStatus.Starting }
|
return this.value.any { it.key.id == id && it.value.status == TunnelStatus.Starting }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MutableStateFlow<Map<TunnelConfig, TunnelState>>.findTunnel(id: Int): TunnelConfig? {
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.findTunnel(id: Int): TunnelConf? {
|
||||||
return this.value.keys.find { it.id == id }
|
return this.value.keys.find { it.id == id }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,73 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.wireguard.android.backend.Backend
|
||||||
|
import com.wireguard.android.backend.BackendException
|
||||||
|
import com.wireguard.android.backend.Tunnel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
|
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.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.WireGuardStatistics
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendError
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
class KernelTunnel
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
|
serviceManager: ServiceManager,
|
||||||
|
appDataRepository: AppDataRepository,
|
||||||
|
private val backend: Backend,
|
||||||
|
) : BaseTunnel(applicationScope, appDataRepository, serviceManager) {
|
||||||
|
|
||||||
|
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
||||||
|
return try {
|
||||||
|
WireGuardStatistics(backend.getStatistics(tunnelConf))
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e)
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun startBackend(tunnel: TunnelConf) {
|
||||||
|
// name too long for kernel mode
|
||||||
|
if (!tunnel.isNameKernelCompatible) throw BackendError.TunnelNameTooLong
|
||||||
|
try {
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
|
backend.setState(tunnel, Tunnel.State.UP, tunnel.toWgConfig())
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
|
throw e.toBackendError()
|
||||||
|
} catch (e: IllegalArgumentException) {
|
||||||
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
|
throw BackendError.Config
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun stopBackend(tunnel: TunnelConf) {
|
||||||
|
Timber.i("Stopping tunnel ${tunnel.id} kernel")
|
||||||
|
try {
|
||||||
|
backend.setState(tunnel, Tunnel.State.DOWN, tunnel.toWgConfig())
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setBackendStatus(backendStatus: BackendStatus) {
|
||||||
|
Timber.w("Not yet implemented for kernel")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendStatus(): BackendStatus {
|
||||||
|
return BackendStatus.Inactive
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
return backend.runningTunnelNames
|
||||||
|
}
|
||||||
|
}
|
||||||
-187
@@ -1,187 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.backend.TunnelBackend
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendCoreException
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.UnknownError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.LogHealthState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import kotlinx.coroutines.CancellationException
|
|
||||||
import kotlinx.coroutines.CompletableDeferred
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.SharedFlow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.asSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.update
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
import kotlinx.coroutines.withTimeoutOrNull
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class TunnelLifecycleManager(
|
|
||||||
private val backend: TunnelBackend,
|
|
||||||
private val applicationScope: CoroutineScope,
|
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
|
||||||
private val sharedActiveTunnels: MutableStateFlow<Map<Int, TunnelState>>,
|
|
||||||
) : TunnelProvider {
|
|
||||||
|
|
||||||
override val activeTunnels: StateFlow<Map<Int, TunnelState>> = sharedActiveTunnels.asStateFlow()
|
|
||||||
|
|
||||||
private val _errorEvents = MutableSharedFlow<Pair<String?, BackendCoreException>>()
|
|
||||||
override val errorEvents: SharedFlow<Pair<String?, BackendCoreException>> =
|
|
||||||
_errorEvents.asSharedFlow()
|
|
||||||
|
|
||||||
private val _messageEvents = MutableSharedFlow<Pair<String?, BackendMessage>>()
|
|
||||||
override val messageEvents: SharedFlow<Pair<String?, BackendMessage>> =
|
|
||||||
_messageEvents.asSharedFlow()
|
|
||||||
|
|
||||||
private val tunnelJobs = ConcurrentHashMap<Int, Job>()
|
|
||||||
private val tunMutex = Mutex()
|
|
||||||
private val tunStatusMutex = Mutex()
|
|
||||||
|
|
||||||
override suspend fun startTunnel(tunnelConfig: TunnelConfig): Result<Unit> =
|
|
||||||
tunMutex.withLock {
|
|
||||||
val id = tunnelConfig.id
|
|
||||||
if (sharedActiveTunnels.value.containsKey(id)) {
|
|
||||||
Timber.w("Tunnel is already running: ${tunnelConfig.name}")
|
|
||||||
return Result.failure(IllegalStateException("Tunnel already running"))
|
|
||||||
}
|
|
||||||
|
|
||||||
val startupCompleted = CompletableDeferred<Result<Unit>>()
|
|
||||||
|
|
||||||
val job =
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
try {
|
|
||||||
updateTunnelStatus(id, TunnelStatus.Starting)
|
|
||||||
backend.tunnelStateFlow(tunnelConfig).collect { status ->
|
|
||||||
updateTunnelStatus(id, status)
|
|
||||||
|
|
||||||
if (status != TunnelStatus.Starting && !startupCompleted.isCompleted) {
|
|
||||||
if (status is TunnelStatus.Up) {
|
|
||||||
startupCompleted.complete(Result.success(Unit))
|
|
||||||
} else {
|
|
||||||
startupCompleted.complete(Result.failure(UnknownError()))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (e: BackendCoreException) {
|
|
||||||
_errorEvents.emit(tunnelConfig.name to e)
|
|
||||||
updateTunnelStatus(id, TunnelStatus.Down)
|
|
||||||
startupCompleted.complete(Result.failure(e))
|
|
||||||
} catch (_: CancellationException) {} finally {
|
|
||||||
tunnelJobs.remove(id)
|
|
||||||
sharedActiveTunnels.update { it - id }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tunnelJobs[id] = job
|
|
||||||
job.invokeOnCompletion { tunnelJobs.remove(id) }
|
|
||||||
|
|
||||||
try {
|
|
||||||
startupCompleted.await()
|
|
||||||
} catch (e: Throwable) {
|
|
||||||
job.cancel()
|
|
||||||
Result.failure(e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun stopTunnel(tunnelId: Int) =
|
|
||||||
tunMutex.withLock {
|
|
||||||
val currentState = sharedActiveTunnels.value[tunnelId]?.status ?: return@withLock
|
|
||||||
updateTunnelStatus(tunnelId, TunnelStatus.Stopping)
|
|
||||||
tunnelJobs[tunnelId]?.cancel()
|
|
||||||
|
|
||||||
withTimeoutOrNull(STOP_TIMEOUT_MS) {
|
|
||||||
activeTunnels.first {
|
|
||||||
!it.containsKey(tunnelId) || it[tunnelId]!!.status == TunnelStatus.Down
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?: run {
|
|
||||||
Timber.w("Stop timeout for $tunnelId (was $currentState); forcing kill")
|
|
||||||
forceStopTunnel(tunnelId)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun forceStopTunnel(tunnelId: Int) {
|
|
||||||
backend.forceStopTunnel(tunnelId)
|
|
||||||
tunnelJobs[tunnelId]?.cancel()
|
|
||||||
tunnelJobs.remove(tunnelId)
|
|
||||||
sharedActiveTunnels.update { it - tunnelId }
|
|
||||||
updateTunnelStatus(tunnelId, TunnelStatus.Down)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun stopActiveTunnels() {
|
|
||||||
sharedActiveTunnels.value.forEach { (id, state) ->
|
|
||||||
if (state.status.isUpOrStarting()) {
|
|
||||||
stopTunnel(id)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun updateTunnelStatus(
|
|
||||||
tunnelId: Int,
|
|
||||||
status: TunnelStatus?,
|
|
||||||
stats: TunnelStatistics?,
|
|
||||||
pingStates: Map<String, PingState>?,
|
|
||||||
logHealthState: LogHealthState?,
|
|
||||||
) =
|
|
||||||
tunStatusMutex.withLock {
|
|
||||||
sharedActiveTunnels.update { currentTuns ->
|
|
||||||
if (!currentTuns.containsKey(tunnelId) && status != TunnelStatus.Starting) {
|
|
||||||
Timber.d("Ignoring update for inactive tunnel $tunnelId")
|
|
||||||
return@update currentTuns
|
|
||||||
}
|
|
||||||
val existingState = currentTuns[tunnelId] ?: TunnelState()
|
|
||||||
val newStatus = status ?: existingState.status
|
|
||||||
if (newStatus == TunnelStatus.Down) {
|
|
||||||
Timber.d("Removing tunnel $tunnelId from activeTunnels as state is DOWN")
|
|
||||||
currentTuns - tunnelId
|
|
||||||
} else if (
|
|
||||||
existingState.status == newStatus &&
|
|
||||||
stats == null &&
|
|
||||||
pingStates == null &&
|
|
||||||
logHealthState == null
|
|
||||||
) {
|
|
||||||
Timber.d("Skipping redundant state update for ${tunnelId}: $newStatus")
|
|
||||||
currentTuns
|
|
||||||
} else {
|
|
||||||
val updated =
|
|
||||||
existingState.copy(
|
|
||||||
status = newStatus,
|
|
||||||
statistics = stats ?: existingState.statistics,
|
|
||||||
pingStates = pingStates ?: existingState.pingStates,
|
|
||||||
logHealthState = logHealthState ?: existingState.logHealthState,
|
|
||||||
)
|
|
||||||
currentTuns + (tunnelId to updated)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun setBackendMode(backendMode: BackendMode) = backend.setBackendMode(backendMode)
|
|
||||||
|
|
||||||
override fun getBackendMode(): BackendMode = backend.getBackendMode()
|
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> = backend.runningTunnelNames()
|
|
||||||
|
|
||||||
override fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean =
|
|
||||||
backend.handleDnsReresolve(tunnelConfig)
|
|
||||||
|
|
||||||
override fun getStatistics(tunnelId: Int): TunnelStatistics? = backend.getStatistics(tunnelId)
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
const val STOP_TIMEOUT_MS: Long = 5_000L
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+103
-326
@@ -1,359 +1,136 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import android.os.PowerManager
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
import com.zaneschepke.logcatter.LogReader
|
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.backend.TunnelBackend
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.handler.DynamicDnsHandler
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.handler.TunnelActiveStatePersister
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.handler.TunnelMonitorHandler
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.handler.TunnelServiceHandler
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendCoreException
|
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.NotAuthorized
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AutoTunnelSettings
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.LockdownSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.MonitoringSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.LogHealthState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
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.util.network.NetworkUtils
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import kotlin.concurrent.atomics.AtomicBoolean
|
import javax.inject.Inject
|
||||||
import kotlin.concurrent.atomics.AtomicReference
|
|
||||||
import kotlin.concurrent.atomics.ExperimentalAtomicApi
|
|
||||||
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.delay
|
import kotlinx.coroutines.flow.*
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.SharedFlow
|
|
||||||
import kotlinx.coroutines.flow.SharingStarted
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChangedBy
|
|
||||||
import kotlinx.coroutines.flow.filterNot
|
|
||||||
import kotlinx.coroutines.flow.filterNotNull
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import kotlinx.coroutines.flow.merge
|
|
||||||
import kotlinx.coroutines.flow.shareIn
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.plus
|
import kotlinx.coroutines.plus
|
||||||
import kotlinx.coroutines.supervisorScope
|
import org.amnezia.awg.crypto.Key
|
||||||
import kotlinx.coroutines.withContext
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class, ExperimentalAtomicApi::class)
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
class TunnelManager(
|
class TunnelManager
|
||||||
kernelBackend: TunnelBackend,
|
@Inject
|
||||||
userspaceBackend: TunnelBackend,
|
constructor(
|
||||||
proxyUserspaceBackend: TunnelBackend,
|
private val kernelTunnel: TunnelProvider,
|
||||||
networkMonitor: NetworkMonitor,
|
private val userspaceTunnel: TunnelProvider,
|
||||||
networkUtils: NetworkUtils,
|
private val appDataRepository: AppDataRepository,
|
||||||
powerManager: PowerManager,
|
applicationScope: CoroutineScope,
|
||||||
logReader: LogReader,
|
ioDispatcher: CoroutineDispatcher,
|
||||||
monitoringSettingsRepository: MonitoringSettingsRepository,
|
|
||||||
private val serviceManager: ServiceManager,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository,
|
|
||||||
private val lockdownSettingsRepository: LockdownSettingsRepository,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
private val applicationScope: CoroutineScope,
|
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
|
||||||
) : TunnelProvider {
|
) : TunnelProvider {
|
||||||
|
|
||||||
private val _activeTunnels = MutableStateFlow<Map<Int, TunnelState>>(emptyMap())
|
|
||||||
override val activeTunnels: StateFlow<Map<Int, TunnelState>> = _activeTunnels.asStateFlow()
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class) val currentAppMode = AtomicReference(AppMode.VPN)
|
|
||||||
|
|
||||||
private val defaultManager =
|
|
||||||
TunnelLifecycleManager(userspaceBackend, applicationScope, ioDispatcher, _activeTunnels)
|
|
||||||
|
|
||||||
private val lifecycleManagers: Map<AppMode, TunnelLifecycleManager> =
|
|
||||||
mapOf(
|
|
||||||
AppMode.KERNEL to
|
|
||||||
TunnelLifecycleManager(
|
|
||||||
kernelBackend,
|
|
||||||
applicationScope,
|
|
||||||
ioDispatcher,
|
|
||||||
_activeTunnels,
|
|
||||||
),
|
|
||||||
AppMode.VPN to defaultManager,
|
|
||||||
AppMode.PROXY to
|
|
||||||
TunnelLifecycleManager(
|
|
||||||
proxyUserspaceBackend,
|
|
||||||
applicationScope,
|
|
||||||
ioDispatcher,
|
|
||||||
_activeTunnels,
|
|
||||||
),
|
|
||||||
AppMode.LOCK_DOWN to
|
|
||||||
TunnelLifecycleManager(
|
|
||||||
proxyUserspaceBackend,
|
|
||||||
applicationScope,
|
|
||||||
ioDispatcher,
|
|
||||||
_activeTunnels,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
@OptIn(ExperimentalAtomicApi::class)
|
|
||||||
private fun getProvider(): TunnelProvider {
|
|
||||||
return lifecycleManagers[currentAppMode.load()] ?: defaultManager
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun startTunnel(tunnelConfig: TunnelConfig): Result<Unit> =
|
|
||||||
getProvider().startTunnel(tunnelConfig)
|
|
||||||
|
|
||||||
override suspend fun stopTunnel(tunnelId: Int) = getProvider().stopTunnel(tunnelId)
|
|
||||||
|
|
||||||
override suspend fun forceStopTunnel(tunnelId: Int) = getProvider().forceStopTunnel(tunnelId)
|
|
||||||
|
|
||||||
override suspend fun stopActiveTunnels() = getProvider().stopActiveTunnels()
|
|
||||||
|
|
||||||
override fun setBackendMode(backendMode: BackendMode) =
|
|
||||||
getProvider().setBackendMode(backendMode)
|
|
||||||
|
|
||||||
override fun getBackendMode(): BackendMode = getProvider().getBackendMode()
|
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> = getProvider().runningTunnelNames()
|
|
||||||
|
|
||||||
override fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean =
|
|
||||||
getProvider().handleDnsReresolve(tunnelConfig)
|
|
||||||
|
|
||||||
override fun getStatistics(tunnelId: Int): TunnelStatistics? =
|
|
||||||
getProvider().getStatistics(tunnelId)
|
|
||||||
|
|
||||||
override suspend fun updateTunnelStatus(
|
|
||||||
tunnelId: Int,
|
|
||||||
status: TunnelStatus?,
|
|
||||||
stats: TunnelStatistics?,
|
|
||||||
pingStates: Map<String, PingState>?,
|
|
||||||
logHealthState: LogHealthState?,
|
|
||||||
) = getProvider().updateTunnelStatus(tunnelId, status, stats, pingStates, logHealthState)
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
private val localErrorEvents = MutableSharedFlow<Pair<String?, BackendCoreException>>()
|
private val tunnelProviderFlow =
|
||||||
|
appDataRepository.settings.flow
|
||||||
@OptIn(ExperimentalCoroutinesApi::class)
|
.filterNotNull()
|
||||||
private val localMessageEvents = MutableSharedFlow<Pair<String?, BackendMessage>>()
|
.flatMapLatest { settings ->
|
||||||
|
val backend = if (settings.isKernelEnabled) kernelTunnel else userspaceTunnel
|
||||||
override val errorEvents: SharedFlow<Pair<String?, BackendCoreException>> =
|
MutableStateFlow(backend)
|
||||||
merge(localErrorEvents, *lifecycleManagers.values.map { it.errorEvents }.toTypedArray())
|
}
|
||||||
.shareIn(
|
.stateIn(
|
||||||
scope = applicationScope + ioDispatcher,
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
started = SharingStarted.Eagerly,
|
started = SharingStarted.Eagerly,
|
||||||
replay = 0,
|
initialValue = userspaceTunnel,
|
||||||
)
|
)
|
||||||
|
|
||||||
override val messageEvents: SharedFlow<Pair<String?, BackendMessage>> =
|
override val activeTunnels: StateFlow<Map<TunnelConf, TunnelState>> =
|
||||||
merge(localMessageEvents, *lifecycleManagers.values.map { it.messageEvents }.toTypedArray())
|
tunnelProviderFlow.value.activeTunnels
|
||||||
|
|
||||||
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
|
override val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>> =
|
||||||
|
tunnelProviderFlow
|
||||||
|
.flatMapLatest { it.errorEvents }
|
||||||
.shareIn(
|
.shareIn(
|
||||||
scope = applicationScope.plus(ioDispatcher),
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
started = SharingStarted.Eagerly,
|
started = SharingStarted.Eagerly,
|
||||||
replay = 0,
|
replay = 0,
|
||||||
)
|
)
|
||||||
|
|
||||||
private val tunnelServiceHandler =
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
TunnelServiceHandler(
|
override val messageEvents: SharedFlow<Pair<TunnelConf, BackendMessage>> =
|
||||||
activeTunnels = activeTunnels,
|
tunnelProviderFlow
|
||||||
settingsRepository = settingsRepository,
|
.flatMapLatest { it.messageEvents }
|
||||||
serviceManager = serviceManager,
|
.filterNotNull()
|
||||||
applicationScope = applicationScope,
|
.shareIn(
|
||||||
ioDispatcher = ioDispatcher,
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
)
|
started = SharingStarted.Eagerly,
|
||||||
|
replay = 0,
|
||||||
|
)
|
||||||
|
|
||||||
private val tunnelActiveStatePersister =
|
override val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason> =
|
||||||
TunnelActiveStatePersister(
|
tunnelProviderFlow.value.bouncingTunnelIds
|
||||||
activeTunnels = activeTunnels,
|
|
||||||
tunnelsRepository = tunnelsRepository,
|
|
||||||
applicationScope = applicationScope,
|
|
||||||
ioDispatcher = ioDispatcher,
|
|
||||||
)
|
|
||||||
|
|
||||||
private val dynamicDnsHandler =
|
override fun hasVpnPermission(): Boolean {
|
||||||
DynamicDnsHandler(
|
return userspaceTunnel.hasVpnPermission()
|
||||||
activeTunnels = activeTunnels,
|
|
||||||
tunnelsRepository = tunnelsRepository,
|
|
||||||
settingsRepository = settingsRepository,
|
|
||||||
localMessageEvents = localMessageEvents,
|
|
||||||
handleDnsReresolve = { config -> handleDnsReresolve(config) },
|
|
||||||
applicationScope = applicationScope,
|
|
||||||
ioDispatcher = ioDispatcher,
|
|
||||||
)
|
|
||||||
|
|
||||||
private val fullTunnelMonitorHandler =
|
|
||||||
TunnelMonitorHandler(
|
|
||||||
activeTunnels = activeTunnels,
|
|
||||||
tunnelsRepository = tunnelsRepository,
|
|
||||||
settingsRepository = settingsRepository,
|
|
||||||
monitoringSettingsRepository = monitoringSettingsRepository,
|
|
||||||
networkMonitor = networkMonitor,
|
|
||||||
networkUtils = networkUtils,
|
|
||||||
powerManager = powerManager,
|
|
||||||
logReader = logReader,
|
|
||||||
getStatistics = { id -> getStatistics(id) },
|
|
||||||
updateTunnelStatus = { id, status, stats, pings, logHealth ->
|
|
||||||
updateTunnelStatus(id, status, stats, pings, logHealth)
|
|
||||||
},
|
|
||||||
applicationScope = applicationScope,
|
|
||||||
ioDispatcher = ioDispatcher,
|
|
||||||
)
|
|
||||||
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
val initialEmit = AtomicBoolean(true)
|
|
||||||
settingsRepository.flow
|
|
||||||
.filterNotNull()
|
|
||||||
.filterNot { it == GeneralSettings() }
|
|
||||||
.distinctUntilChangedBy { it.appMode }
|
|
||||||
.collect { settings ->
|
|
||||||
val isInitialEmit = initialEmit.exchange(false)
|
|
||||||
val previousMode = currentAppMode.exchange(settings.appMode)
|
|
||||||
|
|
||||||
if (isInitialEmit) {
|
|
||||||
return@collect handleRestore(settings)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (previousMode != settings.appMode) {
|
|
||||||
handleModeChangeCleanup(previousMode)
|
|
||||||
}
|
|
||||||
if (settings.appMode == AppMode.LOCK_DOWN) {
|
|
||||||
handleLockDownModeInit()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO this can crash if we haven't started foreground service yet, especially for
|
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
||||||
// workerManager
|
return tunnelProviderFlow.value.getStatistics(tunnelConf)
|
||||||
private suspend fun handleLockDownModeInit() {
|
}
|
||||||
val lockdownSettings = lockdownSettingsRepository.getLockdownSettings()
|
|
||||||
val allowedIps =
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
if (lockdownSettings.bypassLan) TunnelConfig.IPV4_PUBLIC_NETWORKS else emptySet()
|
tunnelProviderFlow.value.startTunnel(tunnelConf)
|
||||||
try {
|
}
|
||||||
if (serviceManager.hasVpnPermission()) {
|
|
||||||
setBackendMode(
|
override suspend fun stopTunnel(tunnelConf: TunnelConf?, reason: TunnelStatus.StopReason) {
|
||||||
BackendMode.KillSwitch(
|
tunnelProviderFlow.value.stopTunnel(tunnelConf, reason)
|
||||||
allowedIps,
|
}
|
||||||
lockdownSettings.metered,
|
|
||||||
lockdownSettings.dualStack,
|
override suspend fun bounceTunnel(tunnelConf: TunnelConf, reason: TunnelStatus.StopReason) {
|
||||||
)
|
tunnelProviderFlow.value.bounceTunnel(tunnelConf, reason)
|
||||||
)
|
}
|
||||||
|
|
||||||
|
override fun setBackendStatus(backendStatus: BackendStatus) {
|
||||||
|
tunnelProviderFlow.value.setBackendStatus(backendStatus)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendStatus(): BackendStatus {
|
||||||
|
return tunnelProviderFlow.value.getBackendStatus()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
return tunnelProviderFlow.value.runningTunnelNames()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun updateTunnelStatus(
|
||||||
|
tunnelConf: TunnelConf,
|
||||||
|
status: TunnelStatus?,
|
||||||
|
stats: TunnelStatistics?,
|
||||||
|
pingStates: Map<Key, PingState>?,
|
||||||
|
handshakeSuccessLogs: Boolean?,
|
||||||
|
) {
|
||||||
|
tunnelProviderFlow.value.updateTunnelStatus(
|
||||||
|
tunnelConf,
|
||||||
|
status,
|
||||||
|
stats,
|
||||||
|
pingStates,
|
||||||
|
handshakeSuccessLogs,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun restorePreviousState() {
|
||||||
|
val settings = appDataRepository.settings.get()
|
||||||
|
if (settings.isRestoreOnBootEnabled) {
|
||||||
|
val previouslyActiveTuns = appDataRepository.tunnels.getActive()
|
||||||
|
val tunsToStart =
|
||||||
|
previouslyActiveTuns.filterNot { tun ->
|
||||||
|
activeTunnels.value.any { tun.id == it.key.id }
|
||||||
|
}
|
||||||
|
if (settings.isKernelEnabled) {
|
||||||
|
return tunsToStart.forEach { startTunnel(it) }
|
||||||
} else {
|
} else {
|
||||||
throw NotAuthorized()
|
tunsToStart.firstOrNull()?.let { startTunnel(it) }
|
||||||
}
|
|
||||||
} catch (e: BackendCoreException) {
|
|
||||||
localErrorEvents.tryEmit(null to e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleModeChangeCleanup(previousAppMode: AppMode) {
|
|
||||||
lifecycleManagers[previousAppMode]?.stopActiveTunnels()
|
|
||||||
if (previousAppMode == AppMode.LOCK_DOWN) {
|
|
||||||
lifecycleManagers[previousAppMode]?.setBackendMode(BackendMode.Inactive)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun handleRestore(settings: GeneralSettings? = null) =
|
|
||||||
withContext(ioDispatcher) {
|
|
||||||
val currentSettings = settings ?: settingsRepository.getGeneralSettings()
|
|
||||||
val autoTunnelSettings = autoTunnelSettingsRepository.getAutoTunnelSettings()
|
|
||||||
val tunnels = tunnelsRepository.userTunnelsFlow.firstOrNull()
|
|
||||||
if (autoTunnelSettings.isAutoTunnelEnabled)
|
|
||||||
return@withContext restoreAutoTunnel(autoTunnelSettings)
|
|
||||||
if (currentSettings.appMode == AppMode.LOCK_DOWN) handleLockDownModeInit()
|
|
||||||
if (tunnels?.any { it.isActive } == true) {
|
|
||||||
if (currentSettings.appMode == AppMode.VPN && !serviceManager.hasVpnPermission())
|
|
||||||
return@withContext localErrorEvents.emit(null to NotAuthorized())
|
|
||||||
when (currentSettings.appMode) {
|
|
||||||
AppMode.VPN,
|
|
||||||
AppMode.PROXY,
|
|
||||||
AppMode.LOCK_DOWN -> {
|
|
||||||
tunnels.firstOrNull { it.isActive }?.let { startTunnel(it) }
|
|
||||||
}
|
|
||||||
AppMode.KERNEL ->
|
|
||||||
tunnels.filter { it.isActive }.forEach { conf -> startTunnel(conf) }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun restoreAutoTunnel(autoTunnelSettings: AutoTunnelSettings) {
|
|
||||||
autoTunnelSettingsRepository.upsert(autoTunnelSettings.copy(isAutoTunnelEnabled = true))
|
|
||||||
serviceManager.startAutoTunnelService()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun handleReboot() =
|
|
||||||
withContext(ioDispatcher) {
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
val autoTunnelSettings = autoTunnelSettingsRepository.getAutoTunnelSettings()
|
|
||||||
val defaultTunnel = tunnelsRepository.getDefaultTunnel()
|
|
||||||
if (autoTunnelSettings.startOnBoot)
|
|
||||||
return@withContext restoreAutoTunnel(autoTunnelSettings)
|
|
||||||
if (settings.isRestoreOnBootEnabled) {
|
|
||||||
tunnelsRepository.resetActiveTunnels()
|
|
||||||
when (settings.appMode) {
|
|
||||||
AppMode.LOCK_DOWN -> handleLockDownModeInit()
|
|
||||||
AppMode.VPN ->
|
|
||||||
if (!serviceManager.hasVpnPermission())
|
|
||||||
return@withContext localErrorEvents.emit(null to NotAuthorized())
|
|
||||||
AppMode.KERNEL,
|
|
||||||
AppMode.PROXY -> Unit
|
|
||||||
}
|
|
||||||
defaultTunnel?.let { startTunnel(it) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun restartActiveTunnel(id: Int) =
|
|
||||||
withContext(ioDispatcher) {
|
|
||||||
val activeIds = activeTunnels.value.keys.toList()
|
|
||||||
if (activeIds.isEmpty()) return@withContext
|
|
||||||
if (!activeIds.contains(id)) return@withContext
|
|
||||||
val tunnel = tunnelsRepository.getById(id) ?: return@withContext
|
|
||||||
restartTunnel(tunnel)
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun restartActiveTunnels() =
|
|
||||||
withContext(ioDispatcher) {
|
|
||||||
val activeIds = activeTunnels.value.keys.toList()
|
|
||||||
if (activeIds.isEmpty()) return@withContext
|
|
||||||
|
|
||||||
val tunnels = tunnelsRepository.getAll()
|
|
||||||
if (tunnels.isEmpty()) return@withContext
|
|
||||||
|
|
||||||
supervisorScope {
|
|
||||||
activeIds.forEach { id ->
|
|
||||||
val tunnel =
|
|
||||||
tunnels.find { it.id == id }
|
|
||||||
?: run {
|
|
||||||
Timber.w("Tunnel config $id not found; skipping restart")
|
|
||||||
return@forEach
|
|
||||||
}
|
|
||||||
restartTunnel(tunnel)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun restartTunnel(tunnel: TunnelConfig) {
|
|
||||||
runCatching { stopTunnel(tunnel.id) }
|
|
||||||
.onFailure { e -> Timber.e(e, "Failed to stop tunnel ${tunnel.id} during restart") }
|
|
||||||
|
|
||||||
delay(RESTART_TUNNEL_DELAY)
|
|
||||||
|
|
||||||
runCatching { startTunnel(tunnel) }
|
|
||||||
.onFailure { e -> Timber.e(e, "Failed to restart tunnel ${tunnel.id}") }
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
const val RESTART_TUNNEL_DELAY = 300L
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,269 @@
|
|||||||
|
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 =
|
||||||
|
tunnelConf.pingTarget
|
||||||
|
?: {
|
||||||
|
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) {
|
||||||
|
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"
|
||||||
|
}
|
||||||
|
}
|
||||||
+43
-19
@@ -1,45 +1,69 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendCoreException
|
import com.zaneschepke.wireguardautotunnel.domain.events.BackendError
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.LogHealthState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.PingState
|
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 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 {
|
||||||
suspend fun startTunnel(tunnelConfig: TunnelConfig): Result<Unit>
|
/** Starts the specified tunnel configuration. */
|
||||||
|
suspend fun startTunnel(tunnelConf: TunnelConf)
|
||||||
|
|
||||||
suspend fun stopTunnel(tunnelId: Int)
|
/**
|
||||||
|
* Stops the specified tunnel, or all tunnels if none is provided.
|
||||||
|
*
|
||||||
|
* @param tunnelConf The tunnel to stop, or null to stop all active tunnels.
|
||||||
|
* @param reason The reason for stopping, defaults to USER for manual stops. Callers should
|
||||||
|
* override with specific reasons (e.g., PING, CONFIG_CHANGED) when applicable.
|
||||||
|
*/
|
||||||
|
suspend fun stopTunnel(
|
||||||
|
tunnelConf: TunnelConf? = null,
|
||||||
|
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.User,
|
||||||
|
)
|
||||||
|
|
||||||
suspend fun forceStopTunnel(tunnelId: Int)
|
/**
|
||||||
|
* Bounces (stops and restarts) the specified tunnel.
|
||||||
|
*
|
||||||
|
* @param tunnelConf The tunnel to bounce.
|
||||||
|
* @param reason The reason for bouncing, defaults to User for manual actions. Callers should
|
||||||
|
* override with specific reasons (e.g., Ping, ConfigChanged) when applicable.
|
||||||
|
*/
|
||||||
|
suspend fun bounceTunnel(
|
||||||
|
tunnelConf: TunnelConf,
|
||||||
|
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.User,
|
||||||
|
)
|
||||||
|
|
||||||
suspend fun stopActiveTunnels()
|
fun setBackendStatus(backendStatus: BackendStatus)
|
||||||
|
|
||||||
fun setBackendMode(backendMode: BackendMode)
|
fun getBackendStatus(): BackendStatus
|
||||||
|
|
||||||
fun getBackendMode(): BackendMode
|
|
||||||
|
|
||||||
suspend fun runningTunnelNames(): Set<String>
|
suspend fun runningTunnelNames(): Set<String>
|
||||||
|
|
||||||
fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean
|
fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics?
|
||||||
|
|
||||||
fun getStatistics(tunnelId: Int): TunnelStatistics?
|
val activeTunnels: StateFlow<Map<TunnelConf, TunnelState>>
|
||||||
|
|
||||||
val activeTunnels: StateFlow<Map<Int, TunnelState>>
|
val errorEvents: SharedFlow<Pair<TunnelConf, BackendError>>
|
||||||
val errorEvents: SharedFlow<Pair<String?, BackendCoreException>>
|
|
||||||
val messageEvents: SharedFlow<Pair<String?, BackendMessage>>
|
val messageEvents: SharedFlow<Pair<TunnelConf, BackendMessage>>
|
||||||
|
|
||||||
|
val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason>
|
||||||
|
|
||||||
|
fun hasVpnPermission(): Boolean
|
||||||
|
|
||||||
suspend fun updateTunnelStatus(
|
suspend fun updateTunnelStatus(
|
||||||
tunnelId: Int,
|
tunnelConf: TunnelConf,
|
||||||
status: TunnelStatus? = null,
|
status: TunnelStatus? = null,
|
||||||
stats: TunnelStatistics? = null,
|
stats: TunnelStatistics? = null,
|
||||||
pingStates: Map<String, PingState>? = null,
|
pingStates: Map<Key, PingState>? = null,
|
||||||
logHealthState: LogHealthState? = null,
|
handshakeSuccessLogs: Boolean? = null,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,90 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendStatus
|
||||||
|
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.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.AmneziaStatistics
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asAmBackendStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asBackendStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendError
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlin.jvm.optionals.getOrNull
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import org.amnezia.awg.backend.Backend
|
||||||
|
import org.amnezia.awg.backend.BackendException
|
||||||
|
import org.amnezia.awg.backend.Tunnel
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
class UserspaceTunnel
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
applicationScope: CoroutineScope,
|
||||||
|
val serviceManager: ServiceManager,
|
||||||
|
val appDataRepository: AppDataRepository,
|
||||||
|
private val backend: Backend,
|
||||||
|
) : BaseTunnel(applicationScope, appDataRepository, serviceManager) {
|
||||||
|
|
||||||
|
override suspend fun startBackend(tunnel: TunnelConf) {
|
||||||
|
try {
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
|
val amConfig = tunnel.toAmConfig()
|
||||||
|
var previousKillSwitch: Backend.BackendStatus? = null
|
||||||
|
// 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)
|
||||||
|
previousKillSwitch?.let { backend.backendStatus = it }
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
|
throw e.toBackendError()
|
||||||
|
} catch (e: IllegalArgumentException) {
|
||||||
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
|
throw BackendError.Config
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun stopBackend(tunnel: TunnelConf) {
|
||||||
|
Timber.i("Stopping tunnel ${tunnel.name} userspace")
|
||||||
|
try {
|
||||||
|
backend.setState(tunnel, Tunnel.State.DOWN, tunnel.toAmConfig())
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
Timber.e(e, "Failed to stop tunnel ${tunnel.id}")
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setBackendStatus(backendStatus: BackendStatus) {
|
||||||
|
Timber.d("Setting backend state: $backendStatus")
|
||||||
|
try {
|
||||||
|
backend.backendStatus = backendStatus.asAmBackendStatus()
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendStatus(): BackendStatus {
|
||||||
|
return backend.backendStatus.asBackendStatus()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
return backend.runningTunnelNames
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
||||||
|
return try {
|
||||||
|
AmneziaStatistics(backend.getStatistics(tunnelConf))
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e, "Failed to get stats for ${tunnelConf.tunName}")
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
-128
@@ -1,128 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.wireguard.android.backend.Backend
|
|
||||||
import com.wireguard.android.backend.BackendException
|
|
||||||
import com.wireguard.android.backend.Tunnel
|
|
||||||
import com.wireguard.android.backend.WgQuickBackend
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.DnsFailure
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.InvalidConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.KernelTunnelName
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.KernelWireguardNotSupported
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.UnknownError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.WireGuardStatistics
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendCoreException
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import java.util.regex.Pattern
|
|
||||||
import kotlinx.coroutines.TimeoutCancellationException
|
|
||||||
import kotlinx.coroutines.channels.Channel
|
|
||||||
import kotlinx.coroutines.channels.awaitClose
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
import kotlinx.coroutines.flow.callbackFlow
|
|
||||||
import kotlinx.coroutines.flow.consumeAsFlow
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class KernelTunnel(private val runConfigHelper: RunConfigHelper, private val backend: Backend) :
|
|
||||||
TunnelBackend {
|
|
||||||
|
|
||||||
private val runtimeTunnels = ConcurrentHashMap<Int, Tunnel>()
|
|
||||||
|
|
||||||
private fun validateWireGuardInterfaceName(name: String): Result<Unit> {
|
|
||||||
if (name.isEmpty() || name.length > 15)
|
|
||||||
return Result.failure(KernelTunnelName(R.string.kernel_name_error))
|
|
||||||
if (name == "." || name == "..") {
|
|
||||||
return Result.failure(KernelTunnelName(R.string.kernel_name_dots))
|
|
||||||
}
|
|
||||||
val pattern = Pattern.compile("^[a-zA-Z0-9_=+.-]{1,15}$")
|
|
||||||
if (!pattern.matcher(name).matches()) {
|
|
||||||
return Result.failure(KernelTunnelName(R.string.kernel_name_special_characters))
|
|
||||||
}
|
|
||||||
return Result.success(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun tunnelStateFlow(tunnelConfig: TunnelConfig): Flow<TunnelStatus> = callbackFlow {
|
|
||||||
if (!WgQuickBackend.hasKernelSupport()) throw KernelWireguardNotSupported()
|
|
||||||
validateWireGuardInterfaceName(tunnelConfig.name).onFailure { throw it }
|
|
||||||
|
|
||||||
val stateChannel = Channel<Tunnel.State>()
|
|
||||||
|
|
||||||
val runtimeTunnel = RuntimeWgTunnel(tunnelConfig, stateChannel)
|
|
||||||
runtimeTunnels[tunnelConfig.id] = runtimeTunnel
|
|
||||||
|
|
||||||
val consumerJob = launch {
|
|
||||||
stateChannel.consumeAsFlow().collect { state -> trySend(state.asTunnelState()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
val runConfig = runConfigHelper.buildWgRunConfig(tunnelConfig)
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.UP, runConfig)
|
|
||||||
} catch (e: TimeoutCancellationException) {
|
|
||||||
Timber.Forest.e("Startup timed out for ${tunnelConfig.name}")
|
|
||||||
throw DnsFailure()
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
throw e.toBackendCoreException()
|
|
||||||
} catch (e: IllegalArgumentException) {
|
|
||||||
Timber.Forest.e(e, "Invalid backend arguments")
|
|
||||||
throw InvalidConfig()
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.Forest.e(e, "Error while setting tunnel state")
|
|
||||||
throw UnknownError()
|
|
||||||
}
|
|
||||||
|
|
||||||
awaitClose {
|
|
||||||
try {
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.DOWN, null)
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
// Errors are emitted by caller (lifecycle manager)
|
|
||||||
} finally {
|
|
||||||
consumerJob.cancel()
|
|
||||||
stateChannel.close()
|
|
||||||
runtimeTunnels.remove(tunnelConfig.id)
|
|
||||||
trySend(TunnelStatus.Down)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getStatistics(tunnelId: Int): TunnelStatistics? {
|
|
||||||
return try {
|
|
||||||
val runtimeTunnel = runtimeTunnels[tunnelId] ?: return null
|
|
||||||
WireGuardStatistics(backend.getStatistics(runtimeTunnel))
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.Forest.e(e, "Failed to get stats for $tunnelId")
|
|
||||||
null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun setBackendMode(backendMode: BackendMode) {
|
|
||||||
Timber.Forest.w("Not yet implemented for kernel")
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getBackendMode(): BackendMode {
|
|
||||||
return BackendMode.Inactive
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean {
|
|
||||||
throw NotImplementedError()
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> {
|
|
||||||
return backend.runningTunnelNames
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun forceStopTunnel(tunnelId: Int) {
|
|
||||||
val runtimeTunnel = runtimeTunnels[tunnelId] ?: return
|
|
||||||
try {
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.DOWN, null)
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
Timber.Forest.e(e, "Force stop failed for $tunnelId")
|
|
||||||
} finally {
|
|
||||||
runtimeTunnels.remove(tunnelId)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-101
@@ -1,101 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.DnsProtocol
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.InvalidConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.DnsSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.ProxySettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.DnsSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.ProxySettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import java.util.Optional
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import org.amnezia.awg.config.Config
|
|
||||||
import org.amnezia.awg.config.proxy.HttpProxy
|
|
||||||
import org.amnezia.awg.config.proxy.Socks5Proxy
|
|
||||||
|
|
||||||
class RunConfigHelper(
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val proxySettingsRepository: ProxySettingsRepository,
|
|
||||||
private val dnsSettingsRepository: DnsSettingsRepository,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
) {
|
|
||||||
|
|
||||||
private data class PrepResult(
|
|
||||||
val effectiveConfig: TunnelConfig,
|
|
||||||
val generalSettings: GeneralSettings,
|
|
||||||
val dnsSettings: DnsSettings,
|
|
||||||
)
|
|
||||||
|
|
||||||
private suspend fun prepare(tunnelConfig: TunnelConfig): PrepResult {
|
|
||||||
val generalSettings = settingsRepository.getGeneralSettings()
|
|
||||||
val dnsSettings = dnsSettingsRepository.getDnsSettings()
|
|
||||||
val effectiveConfig =
|
|
||||||
if (
|
|
||||||
generalSettings.isGlobalSplitTunnelEnabled || dnsSettings.isGlobalTunnelDnsEnabled
|
|
||||||
) {
|
|
||||||
val globalConfig =
|
|
||||||
tunnelsRepository.globalTunnelFlow.firstOrNull() ?: throw InvalidConfig()
|
|
||||||
tunnelConfig.copyWithGlobalValues(
|
|
||||||
globalConfig,
|
|
||||||
dnsSettings.isGlobalTunnelDnsEnabled,
|
|
||||||
generalSettings.isGlobalSplitTunnelEnabled,
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
tunnelConfig
|
|
||||||
}
|
|
||||||
return PrepResult(effectiveConfig, generalSettings, dnsSettings)
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun buildAmRunConfig(tunnelConfig: TunnelConfig): Config {
|
|
||||||
val prep = prepare(tunnelConfig)
|
|
||||||
val proxies =
|
|
||||||
if (prep.generalSettings.appMode == AppMode.PROXY) {
|
|
||||||
val proxySettings = proxySettingsRepository.getProxySettings()
|
|
||||||
buildList {
|
|
||||||
if (proxySettings.socks5ProxyEnabled) {
|
|
||||||
add(
|
|
||||||
Socks5Proxy(
|
|
||||||
proxySettings.socks5ProxyBindAddress
|
|
||||||
?: ProxySettings.DEFAULT_SOCKS_BIND_ADDRESS,
|
|
||||||
proxySettings.proxyUsername,
|
|
||||||
proxySettings.proxyPassword,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (proxySettings.httpProxyEnabled) {
|
|
||||||
add(
|
|
||||||
HttpProxy(
|
|
||||||
proxySettings.httpProxyBindAddress
|
|
||||||
?: ProxySettings.DEFAULT_HTTP_BIND_ADDRESS,
|
|
||||||
proxySettings.proxyUsername,
|
|
||||||
proxySettings.proxyPassword,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
emptyList()
|
|
||||||
}
|
|
||||||
val amConfig = prep.effectiveConfig.toAmConfig()
|
|
||||||
return Config.Builder()
|
|
||||||
.setInterface(amConfig.`interface`)
|
|
||||||
.addPeers(amConfig.peers)
|
|
||||||
.addProxies(proxies)
|
|
||||||
.setDnsSettings(
|
|
||||||
org.amnezia.awg.config.DnsSettings(
|
|
||||||
prep.dnsSettings.dnsProtocol == DnsProtocol.DOH,
|
|
||||||
Optional.ofNullable(prep.dnsSettings.dnsEndpoint),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.build()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun buildWgRunConfig(tunnelConfig: TunnelConfig): com.wireguard.config.Config {
|
|
||||||
val prep = prepare(tunnelConfig)
|
|
||||||
return prep.effectiveConfig.toWgConfig()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-21
@@ -1,21 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import kotlinx.coroutines.channels.Channel
|
|
||||||
import org.amnezia.awg.backend.Tunnel
|
|
||||||
|
|
||||||
class RuntimeAwgTunnel(
|
|
||||||
private val tunnelConfig: TunnelConfig,
|
|
||||||
private val stateChannel: Channel<Tunnel.State>,
|
|
||||||
) : Tunnel {
|
|
||||||
|
|
||||||
override fun getName() = tunnelConfig.name
|
|
||||||
|
|
||||||
override fun onStateChange(newState: Tunnel.State) {
|
|
||||||
stateChannel.trySend(newState)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun isIpv4ResolutionPreferred() = tunnelConfig.isIpv4Preferred
|
|
||||||
|
|
||||||
override fun isMetered() = tunnelConfig.isMetered
|
|
||||||
}
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.wireguard.android.backend.Tunnel
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import kotlinx.coroutines.channels.Channel
|
|
||||||
|
|
||||||
class RuntimeWgTunnel(
|
|
||||||
private val config: TunnelConfig,
|
|
||||||
private val stateChannel: Channel<Tunnel.State>,
|
|
||||||
) : Tunnel {
|
|
||||||
|
|
||||||
override fun getName() = config.name
|
|
||||||
|
|
||||||
override fun onStateChange(newState: Tunnel.State) {
|
|
||||||
stateChannel.trySend(newState)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun isIpv4ResolutionPreferred() = config.isIpv4Preferred
|
|
||||||
}
|
|
||||||
-23
@@ -1,23 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
interface TunnelBackend {
|
|
||||||
fun tunnelStateFlow(tunnelConfig: TunnelConfig): Flow<TunnelStatus>
|
|
||||||
|
|
||||||
fun getStatistics(tunnelId: Int): TunnelStatistics?
|
|
||||||
|
|
||||||
fun setBackendMode(backendMode: BackendMode)
|
|
||||||
|
|
||||||
fun getBackendMode(): BackendMode
|
|
||||||
|
|
||||||
fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean
|
|
||||||
|
|
||||||
suspend fun runningTunnelNames(): Set<String>
|
|
||||||
|
|
||||||
suspend fun forceStopTunnel(tunnelId: Int)
|
|
||||||
}
|
|
||||||
-119
@@ -1,119 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.backend
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.DnsFailure
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.InvalidConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.ServiceNotRunning
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.UnknownError
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.VpnUnauthorized
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.AmneziaStatistics
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asAmBackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asBackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendCoreException
|
|
||||||
import java.io.IOException
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import kotlinx.coroutines.TimeoutCancellationException
|
|
||||||
import kotlinx.coroutines.channels.Channel
|
|
||||||
import kotlinx.coroutines.channels.awaitClose
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
import kotlinx.coroutines.flow.callbackFlow
|
|
||||||
import kotlinx.coroutines.flow.consumeAsFlow
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import org.amnezia.awg.backend.Backend
|
|
||||||
import org.amnezia.awg.backend.BackendException
|
|
||||||
import org.amnezia.awg.backend.Tunnel
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class UserspaceTunnel(private val backend: Backend, private val runConfigHelper: RunConfigHelper) :
|
|
||||||
TunnelBackend {
|
|
||||||
|
|
||||||
private val runtimeTunnels = ConcurrentHashMap<Int, Tunnel>()
|
|
||||||
|
|
||||||
override fun tunnelStateFlow(tunnelConfig: TunnelConfig): Flow<TunnelStatus> = callbackFlow {
|
|
||||||
val stateChannel = Channel<Tunnel.State>()
|
|
||||||
|
|
||||||
val runtimeTunnel = RuntimeAwgTunnel(tunnelConfig, stateChannel)
|
|
||||||
runtimeTunnels[tunnelConfig.id] = runtimeTunnel
|
|
||||||
|
|
||||||
val consumerJob = launch {
|
|
||||||
stateChannel.consumeAsFlow().collect { awgState -> trySend(awgState.asTunnelState()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
val runConfig = runConfigHelper.buildAmRunConfig(tunnelConfig)
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.UP, runConfig)
|
|
||||||
} catch (_: TimeoutCancellationException) {
|
|
||||||
Timber.e("Startup timed out for ${tunnelConfig.name} (likely DNS hang)")
|
|
||||||
throw DnsFailure()
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
throw e.toBackendCoreException()
|
|
||||||
} catch (_: IllegalArgumentException) {
|
|
||||||
throw InvalidConfig()
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Error while setting tunnel state")
|
|
||||||
throw UnknownError()
|
|
||||||
}
|
|
||||||
|
|
||||||
awaitClose {
|
|
||||||
try {
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.DOWN, null)
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
// Errors emitted by caller
|
|
||||||
} finally {
|
|
||||||
consumerJob.cancel()
|
|
||||||
stateChannel.close()
|
|
||||||
runtimeTunnels.remove(tunnelConfig.id)
|
|
||||||
trySend(TunnelStatus.Down)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun setBackendMode(backendMode: BackendMode) {
|
|
||||||
Timber.d("Setting backend mode: $backendMode")
|
|
||||||
try {
|
|
||||||
backend.backendMode = backendMode.asAmBackendMode()
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
throw e.toBackendCoreException()
|
|
||||||
} catch (_: IOException) {
|
|
||||||
throw VpnUnauthorized()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getBackendMode(): BackendMode {
|
|
||||||
return backend.backendMode.asBackendMode()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun handleDnsReresolve(tunnelConfig: TunnelConfig): Boolean {
|
|
||||||
val tunnel = runtimeTunnels[tunnelConfig.id] ?: throw ServiceNotRunning()
|
|
||||||
return backend.resolveDDNS(tunnelConfig.toAmConfig(), tunnel.isIpv4ResolutionPreferred)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun runningTunnelNames(): Set<String> {
|
|
||||||
return backend.runningTunnelNames
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getStatistics(tunnelId: Int): TunnelStatistics? {
|
|
||||||
return try {
|
|
||||||
val runtimeTunnel = runtimeTunnels[tunnelId] ?: return null
|
|
||||||
AmneziaStatistics(backend.getStatistics(runtimeTunnel))
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to get stats for $tunnelId")
|
|
||||||
null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun forceStopTunnel(tunnelId: Int) {
|
|
||||||
val runtimeTunnel = runtimeTunnels[tunnelId] ?: return
|
|
||||||
try {
|
|
||||||
backend.setState(runtimeTunnel, Tunnel.State.DOWN, null)
|
|
||||||
} catch (e: BackendException) {
|
|
||||||
Timber.e(e, "Force stop failed for $tunnelId")
|
|
||||||
} finally {
|
|
||||||
runtimeTunnels.remove(tunnelId)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-114
@@ -1,114 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.handler
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.BackendMessage
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.delay
|
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.filterNotNull
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.stateIn
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.plus
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class DynamicDnsHandler(
|
|
||||||
private val activeTunnels: StateFlow<Map<Int, TunnelState>>,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val localMessageEvents: MutableSharedFlow<Pair<String?, BackendMessage>>,
|
|
||||||
private val handleDnsReresolve: (TunnelConfig) -> Boolean,
|
|
||||||
private val applicationScope: CoroutineScope,
|
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
|
||||||
) {
|
|
||||||
private val mutex = Mutex()
|
|
||||||
private val jobs = ConcurrentHashMap<Int, Job>()
|
|
||||||
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
combine(activeTunnels, settingsRepository.flow.filterNotNull()) { active, settings ->
|
|
||||||
active to settings
|
|
||||||
}
|
|
||||||
.collect { (activeTuns, settings) ->
|
|
||||||
mutex.withLock {
|
|
||||||
val activeIds =
|
|
||||||
activeTuns.keys
|
|
||||||
.filter { id ->
|
|
||||||
val config =
|
|
||||||
tunnelsRepository.getById(id) ?: return@filter false
|
|
||||||
config.restartOnPingFailure &&
|
|
||||||
settings.appMode != AppMode.KERNEL
|
|
||||||
}
|
|
||||||
.toSet()
|
|
||||||
|
|
||||||
(jobs.keys - activeIds).forEach { id ->
|
|
||||||
Timber.d("Shutting down Dynamic DNS monitoring job for tunnelId: $id")
|
|
||||||
jobs.remove(id)?.cancel()
|
|
||||||
}
|
|
||||||
|
|
||||||
activeIds.forEach { id ->
|
|
||||||
if (jobs.containsKey(id)) return@forEach
|
|
||||||
val config = tunnelsRepository.getById(id) ?: return@forEach
|
|
||||||
val tunStateFlow =
|
|
||||||
activeTunnels
|
|
||||||
.map { it[id] }
|
|
||||||
.stateIn(applicationScope + ioDispatcher)
|
|
||||||
Timber.d("Starting Dynamic DNS monitoring job for tunnelId: $id")
|
|
||||||
jobs[id] =
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
monitorDynamicDns(config, tunStateFlow)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun monitorDynamicDns(
|
|
||||||
config: TunnelConfig,
|
|
||||||
tunStateFlow: StateFlow<TunnelState?>,
|
|
||||||
) {
|
|
||||||
var backoff = BASE_BACKOFF
|
|
||||||
while (true) {
|
|
||||||
val state = tunStateFlow.value ?: break
|
|
||||||
if (state.health() != TunnelState.Health.UNHEALTHY) {
|
|
||||||
backoff = BASE_BACKOFF
|
|
||||||
tunStateFlow.first { it?.health() == TunnelState.Health.UNHEALTHY || it == null }
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
runCatching {
|
|
||||||
val updated = handleDnsReresolve(config)
|
|
||||||
if (updated) {
|
|
||||||
localMessageEvents.emit(config.name to BackendMessage.DynamicDnsSuccess)
|
|
||||||
backoff = BASE_BACKOFF
|
|
||||||
} else {
|
|
||||||
Timber.i(
|
|
||||||
"Dynamic DNS check completed, current endpoint address is already up to date."
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.onFailure { Timber.e(it, "Failed to handle dns re-resolution for ${config.name}") }
|
|
||||||
|
|
||||||
delay(backoff)
|
|
||||||
backoff = (backoff * 1.5).toLong().coerceAtMost(MAX_BACKOFF_TIME)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
const val BASE_BACKOFF = 30_000L
|
|
||||||
const val MAX_BACKOFF_TIME = 300_000L
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-47
@@ -1,47 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.handler
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.supervisorScope
|
|
||||||
|
|
||||||
class TunnelActiveStatePersister(
|
|
||||||
private val activeTunnels: StateFlow<Map<Int, TunnelState>>,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
applicationScope: CoroutineScope,
|
|
||||||
ioDispatcher: CoroutineDispatcher,
|
|
||||||
) {
|
|
||||||
private var previousActiveIds: Set<Int> = emptySet()
|
|
||||||
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
activeTunnels.collect { currentActive ->
|
|
||||||
val currentActiveIds = currentActive.keys
|
|
||||||
if (currentActiveIds == previousActiveIds) return@collect
|
|
||||||
|
|
||||||
val tunnels = tunnelsRepository.userTunnelsFlow.firstOrNull() ?: return@collect
|
|
||||||
val tunnelsById = tunnels.associateBy { it.id }
|
|
||||||
|
|
||||||
val relevantIds = previousActiveIds + currentActiveIds
|
|
||||||
|
|
||||||
supervisorScope {
|
|
||||||
relevantIds.forEach { id ->
|
|
||||||
launch {
|
|
||||||
val config = tunnelsById[id] ?: return@launch
|
|
||||||
val wasActive = previousActiveIds.contains(id)
|
|
||||||
val isActive = currentActiveIds.contains(id)
|
|
||||||
if (wasActive != isActive) {
|
|
||||||
tunnelsRepository.save(config.copy(isActive = isActive))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
previousActiveIds = currentActiveIds.toSet()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-388
@@ -1,388 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.handler
|
|
||||||
|
|
||||||
import android.os.PowerManager
|
|
||||||
import com.zaneschepke.logcatter.LogReader
|
|
||||||
import com.zaneschepke.networkmonitor.NetworkMonitor
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.MonitoringSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.FailureReason
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.LogHealthState
|
|
||||||
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.util.extensions.toMillis
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.network.NetworkUtils
|
|
||||||
import inet.ipaddr.AddressValueException
|
|
||||||
import inet.ipaddr.IPAddress
|
|
||||||
import inet.ipaddr.IPAddressString
|
|
||||||
import io.ktor.util.collections.ConcurrentMap
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.FlowPreview
|
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.coroutineScope
|
|
||||||
import kotlinx.coroutines.delay
|
|
||||||
import kotlinx.coroutines.ensureActive
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.collectLatest
|
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChangedBy
|
|
||||||
import kotlinx.coroutines.flow.filter
|
|
||||||
import kotlinx.coroutines.flow.filterNotNull
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.mapNotNull
|
|
||||||
import kotlinx.coroutines.flow.stateIn
|
|
||||||
import kotlinx.coroutines.flow.update
|
|
||||||
import kotlinx.coroutines.isActive
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import kotlinx.coroutines.plus
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
import kotlinx.coroutines.withTimeout
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class TunnelMonitorHandler(
|
|
||||||
private val activeTunnels: StateFlow<Map<Int, TunnelState>>,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val monitoringSettingsRepository: MonitoringSettingsRepository,
|
|
||||||
private val networkMonitor: NetworkMonitor,
|
|
||||||
private val networkUtils: NetworkUtils,
|
|
||||||
private val logReader: LogReader,
|
|
||||||
private val powerManager: PowerManager,
|
|
||||||
private val getStatistics: (Int) -> TunnelStatistics?,
|
|
||||||
private val updateTunnelStatus:
|
|
||||||
suspend (
|
|
||||||
Int, TunnelStatus?, TunnelStatistics?, Map<String, PingState>?, LogHealthState?,
|
|
||||||
) -> Unit,
|
|
||||||
private val applicationScope: CoroutineScope,
|
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
|
||||||
) {
|
|
||||||
private val mutex = Mutex()
|
|
||||||
private val jobs = ConcurrentHashMap<Int, Job>()
|
|
||||||
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
activeTunnels.collect { activeTuns ->
|
|
||||||
mutex.withLock {
|
|
||||||
val activeIds = activeTuns.keys.toSet()
|
|
||||||
(jobs.keys - activeIds).forEach { id ->
|
|
||||||
Timber.d("Shutting down tunnel monitoring job for tunnelId: $id")
|
|
||||||
jobs.remove(id)?.cancel()
|
|
||||||
}
|
|
||||||
|
|
||||||
val tunnels = tunnelsRepository.flow.firstOrNull() ?: return@collect
|
|
||||||
val tunnelsById = tunnels.associateBy { it.id }
|
|
||||||
|
|
||||||
activeIds.forEach { id ->
|
|
||||||
if (jobs.containsKey(id)) return@forEach
|
|
||||||
val config = tunnelsById[id] ?: return@forEach
|
|
||||||
val settings = settingsRepository.flow.filterNotNull().first()
|
|
||||||
val tunStateFlow =
|
|
||||||
activeTunnels.map { it[id] }.stateIn(applicationScope + ioDispatcher)
|
|
||||||
jobs[id] =
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
Timber.d("Starting tunnel monitoring job for tunnelId: $id")
|
|
||||||
startMonitoring(
|
|
||||||
config = config,
|
|
||||||
withLogs = settings.appMode != AppMode.KERNEL,
|
|
||||||
tunStateFlow = tunStateFlow,
|
|
||||||
getStatistics = { tunnelId -> getStatistics(tunnelId) },
|
|
||||||
updateTunnelStatus = { tid, _, stats, pings, logHealth ->
|
|
||||||
updateTunnelStatus(tid, null, stats, pings, logHealth)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(FlowPreview::class)
|
|
||||||
private suspend fun startMonitoring(
|
|
||||||
config: TunnelConfig,
|
|
||||||
withLogs: Boolean,
|
|
||||||
tunStateFlow: StateFlow<TunnelState?>,
|
|
||||||
getStatistics: suspend (Int) -> TunnelStatistics?,
|
|
||||||
updateTunnelStatus:
|
|
||||||
suspend (
|
|
||||||
Int, TunnelStatus?, TunnelStatistics?, Map<String, PingState>?, LogHealthState?,
|
|
||||||
) -> Unit,
|
|
||||||
) = coroutineScope {
|
|
||||||
launch { startPingMonitor(config, tunStateFlow, updateTunnelStatus) }
|
|
||||||
launch { startWgStatsPoll(config.id, getStatistics, updateTunnelStatus) }
|
|
||||||
if (withLogs) launch { startLogsMonitor(config, updateTunnelStatus) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startLogsMonitor(
|
|
||||||
tunnelConfig: TunnelConfig,
|
|
||||||
updateTunnelStatus:
|
|
||||||
suspend (
|
|
||||||
Int, TunnelStatus?, TunnelStatistics?, Map<String, PingState>?, LogHealthState?,
|
|
||||||
) -> Unit,
|
|
||||||
) {
|
|
||||||
logReader.liveLogs
|
|
||||||
.filter { log -> log.tag.contains(tunnelConfig.name) }
|
|
||||||
.mapNotNull { log ->
|
|
||||||
val now = System.currentTimeMillis()
|
|
||||||
|
|
||||||
when {
|
|
||||||
successLogRegex.containsMatchIn(log.message) ->
|
|
||||||
LogHealthState(isHealthy = true, timestamp = now)
|
|
||||||
|
|
||||||
failureLogRegex.containsMatchIn(log.message) ->
|
|
||||||
LogHealthState(isHealthy = false, timestamp = now)
|
|
||||||
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.distinctUntilChangedBy { it.isHealthy }
|
|
||||||
.collect { logHealthState ->
|
|
||||||
Timber.d("Tunnel log health updated for ${tunnelConfig.name}: $logHealthState")
|
|
||||||
updateTunnelStatus(tunnelConfig.id, null, null, null, logHealthState)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startPingMonitor(
|
|
||||||
tunnelConfig: TunnelConfig,
|
|
||||||
tunStateFlow: StateFlow<TunnelState?>,
|
|
||||||
updateTunnelStatus:
|
|
||||||
suspend (
|
|
||||||
Int, TunnelStatus?, TunnelStatistics?, Map<String, PingState>?, LogHealthState?,
|
|
||||||
) -> Unit,
|
|
||||||
) = coroutineScope {
|
|
||||||
val pingStatsFlow = MutableStateFlow<Map<String, PingState>>(emptyMap())
|
|
||||||
|
|
||||||
val connectivityStateFlow = networkMonitor.connectivityStateFlow.stateIn(this)
|
|
||||||
|
|
||||||
val isNetworkConnected = connectivityStateFlow.map { it.hasInternet() }.stateIn(this)
|
|
||||||
|
|
||||||
combine(
|
|
||||||
settingsRepository.flow.distinctUntilChangedBy { it.appMode },
|
|
||||||
monitoringSettingsRepository.flow,
|
|
||||||
) { settings, monitorSettings ->
|
|
||||||
Pair(settings.appMode, monitorSettings)
|
|
||||||
}
|
|
||||||
.collectLatest { (appMode, settings) ->
|
|
||||||
if (!settings.isPingEnabled) return@collectLatest
|
|
||||||
// TODO for now until we get monitoring for these modes
|
|
||||||
if (appMode == AppMode.LOCK_DOWN || appMode == AppMode.PROXY) return@collectLatest
|
|
||||||
|
|
||||||
Timber.d("Starting pinger for ${tunnelConfig.name} with settings")
|
|
||||||
|
|
||||||
val config = tunnelConfig.toAmConfig()
|
|
||||||
|
|
||||||
val pingablePeers = config.peers.filter { it.allowedIps.isNotEmpty() }
|
|
||||||
if (pingablePeers.isEmpty()) return@collectLatest
|
|
||||||
|
|
||||||
suspend fun performPing() {
|
|
||||||
val updates = ConcurrentMap<String, PingState>()
|
|
||||||
|
|
||||||
pingablePeers
|
|
||||||
.map { it.publicKey.toBase64() to it }
|
|
||||||
.forEach { (key, peer) ->
|
|
||||||
ensureActive()
|
|
||||||
val previousState = pingStatsFlow.value[key] ?: PingState()
|
|
||||||
|
|
||||||
val allowedIpStr = peer.allowedIps.firstOrNull()?.toString()
|
|
||||||
if (allowedIpStr == null) {
|
|
||||||
updates[key] =
|
|
||||||
previousState.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.NoResolvedEndpoint,
|
|
||||||
lastPingAttemptMillis = System.currentTimeMillis(),
|
|
||||||
)
|
|
||||||
return@forEach
|
|
||||||
}
|
|
||||||
|
|
||||||
val host =
|
|
||||||
tunnelConfig.pingTarget
|
|
||||||
?: run {
|
|
||||||
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
|
|
||||||
val cleanedIp = internalIp.removeSurrounding("[", "]")
|
|
||||||
val defaultCloudflare =
|
|
||||||
if (cleanedIp.contains(":")) CLOUDFLARE_IPV6_IP
|
|
||||||
else CLOUDFLARE_IPV4_IP
|
|
||||||
|
|
||||||
if (prefix <= 1) {
|
|
||||||
defaultCloudflare
|
|
||||||
} else {
|
|
||||||
try {
|
|
||||||
val addrStr = IPAddressString(cleanedIp)
|
|
||||||
val addr: IPAddress =
|
|
||||||
addrStr.address
|
|
||||||
?: throw AddressValueException(
|
|
||||||
"Invalid IP: $cleanedIp"
|
|
||||||
)
|
|
||||||
val isIpv6 = addr.isIPv6
|
|
||||||
val cloudflareIp =
|
|
||||||
if (isIpv6) CLOUDFLARE_IPV6_IP
|
|
||||||
else CLOUDFLARE_IPV4_IP
|
|
||||||
val max = if (isIpv6) 128 else 32
|
|
||||||
|
|
||||||
if (prefix == max) {
|
|
||||||
addr.toCanonicalString()
|
|
||||||
} else {
|
|
||||||
val nextAddr: IPAddress? = addr.increment(1)
|
|
||||||
nextAddr?.toCanonicalString() ?: cloudflareIp
|
|
||||||
}
|
|
||||||
} catch (e: AddressValueException) {
|
|
||||||
Timber.e(
|
|
||||||
e,
|
|
||||||
"Failed to parse or increment IP: $cleanedIp",
|
|
||||||
)
|
|
||||||
defaultCloudflare
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val attemptTime = System.currentTimeMillis()
|
|
||||||
val timeout = settings.tunnelPingTimeoutSeconds?.toMillis() ?: 5000L
|
|
||||||
runCatching {
|
|
||||||
withTimeout(
|
|
||||||
settings.tunnelPingTimeoutSeconds?.toMillis() ?: 5000L
|
|
||||||
) {
|
|
||||||
val pingStats =
|
|
||||||
settings.tunnelPingTimeoutSeconds?.let {
|
|
||||||
networkUtils.pingWithStats(
|
|
||||||
host,
|
|
||||||
settings.tunnelPingAttempts,
|
|
||||||
it.toMillis(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
?: networkUtils.pingWithStats(
|
|
||||||
host,
|
|
||||||
settings.tunnelPingAttempts,
|
|
||||||
)
|
|
||||||
|
|
||||||
updates[key] =
|
|
||||||
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 ${tunnelConfig.name} to host $host",
|
|
||||||
)
|
|
||||||
updates[key] =
|
|
||||||
previousState.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.PingFailed,
|
|
||||||
pingTarget = host,
|
|
||||||
lastPingAttemptMillis = attemptTime,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (updates.isNotEmpty()) {
|
|
||||||
ensureActive()
|
|
||||||
pingStatsFlow.update { updates }
|
|
||||||
updateTunnelStatus(tunnelConfig.id, null, null, updates, null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wait for the tunnel to be fully active
|
|
||||||
tunStateFlow.filter { state -> state?.status is TunnelStatus.Up }.first()
|
|
||||||
|
|
||||||
// small delay to make sure tunnel is fully up before we actively monitor
|
|
||||||
delay(PING_MONITOR_START_DELAY)
|
|
||||||
|
|
||||||
while (isActive) {
|
|
||||||
ensureActive()
|
|
||||||
if (!powerManager.isDeviceIdleMode) {
|
|
||||||
if (isNetworkConnected.value) {
|
|
||||||
performPing()
|
|
||||||
} else {
|
|
||||||
pingStatsFlow.update { current ->
|
|
||||||
current.mapValues { entry ->
|
|
||||||
entry.value.copy(
|
|
||||||
isReachable = false,
|
|
||||||
failureReason = FailureReason.NoConnectivity,
|
|
||||||
lastPingAttemptMillis = System.currentTimeMillis(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ensureActive()
|
|
||||||
updateTunnelStatus(
|
|
||||||
tunnelConfig.id,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
pingStatsFlow.value,
|
|
||||||
null,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay(settings.tunnelPingIntervalSeconds.toMillis())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startWgStatsPoll(
|
|
||||||
tunnelId: Int,
|
|
||||||
getStatistics: suspend (Int) -> TunnelStatistics?,
|
|
||||||
updateTunnelStatus:
|
|
||||||
suspend (
|
|
||||||
Int, TunnelStatus?, TunnelStatistics?, Map<String, PingState>?, LogHealthState?,
|
|
||||||
) -> Unit,
|
|
||||||
) = coroutineScope {
|
|
||||||
while (isActive) {
|
|
||||||
ensureActive()
|
|
||||||
val stats = getStatistics(tunnelId)
|
|
||||||
ensureActive()
|
|
||||||
updateTunnelStatus(tunnelId, null, stats, null, null)
|
|
||||||
delay(STATS_DELAY)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
private val successLogRegex =
|
|
||||||
Regex("Received handshake response|Receiving keepalive packet", RegexOption.IGNORE_CASE)
|
|
||||||
|
|
||||||
private val failureLogRegex =
|
|
||||||
Regex(
|
|
||||||
"Failed to send handshake initiation: write udp|" +
|
|
||||||
"Handshake did not complete after 5 seconds, retrying|" +
|
|
||||||
"Failed to send data packets",
|
|
||||||
RegexOption.IGNORE_CASE,
|
|
||||||
)
|
|
||||||
|
|
||||||
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 PING_MONITOR_START_DELAY = 5_000L
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-36
@@ -1,36 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel.handler
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class TunnelServiceHandler(
|
|
||||||
private val activeTunnels: StateFlow<Map<Int, TunnelState>>,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val serviceManager: ServiceManager,
|
|
||||||
applicationScope: CoroutineScope,
|
|
||||||
ioDispatcher: CoroutineDispatcher,
|
|
||||||
) {
|
|
||||||
init {
|
|
||||||
applicationScope.launch(ioDispatcher) {
|
|
||||||
activeTunnels.collect { activeTuns ->
|
|
||||||
if (activeTuns.isEmpty()) {
|
|
||||||
Timber.d("Stopping tunnel service, no tunnels active.")
|
|
||||||
serviceManager.stopTunnelService()
|
|
||||||
} else if (serviceManager.tunnelService.value == null) {
|
|
||||||
val settings = settingsRepository.flow.firstOrNull() ?: GeneralSettings()
|
|
||||||
Timber.d("Starting tunnel foreground service for active tunnel.")
|
|
||||||
serviceManager.startTunnelService(settings.appMode)
|
|
||||||
}
|
|
||||||
serviceManager.updateTunnelTile()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+28
-20
@@ -1,25 +1,33 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.worker
|
package com.zaneschepke.wireguardautotunnel.core.worker
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import androidx.work.CoroutineWorker
|
import androidx.hilt.work.HiltWorker
|
||||||
import androidx.work.ExistingPeriodicWorkPolicy
|
import androidx.work.*
|
||||||
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.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import dagger.assisted.Assisted
|
||||||
|
import dagger.assisted.AssistedInject
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.TimeUnit
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class ServiceWorker(
|
@HiltWorker
|
||||||
context: Context,
|
class ServiceWorker
|
||||||
params: WorkerParameters,
|
@AssistedInject
|
||||||
|
constructor(
|
||||||
|
@Assisted private val context: Context,
|
||||||
|
@Assisted private val params: WorkerParameters,
|
||||||
private val serviceManager: ServiceManager,
|
private val serviceManager: ServiceManager,
|
||||||
private val autoTunnelSettingsRepository: AutoTunnelSettingsRepository,
|
private val appDataRepository: AppDataRepository,
|
||||||
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
|
private val tunnelManager: TunnelManager,
|
||||||
) : CoroutineWorker(context, params) {
|
) : CoroutineWorker(context, params) {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private const val TAG = "auto_tunnel_service_monitor"
|
private const val TAG = "service_worker"
|
||||||
|
|
||||||
fun stop(context: Context) {
|
fun stop(context: Context) {
|
||||||
WorkManager.getInstance(context).cancelAllWorkByTag(TAG)
|
WorkManager.getInstance(context).cancelAllWorkByTag(TAG)
|
||||||
@@ -41,15 +49,15 @@ class ServiceWorker(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun doWork(): Result {
|
override suspend fun doWork(): Result =
|
||||||
Timber.i("Service worker started")
|
withContext(ioDispatcher) {
|
||||||
with(autoTunnelSettingsRepository.getAutoTunnelSettings()) {
|
Timber.i("Service worker started")
|
||||||
Timber.i("Checking to see if auto-tunnel has been killed by system")
|
with(appDataRepository.settings.get()) {
|
||||||
if (isAutoTunnelEnabled && serviceManager.autoTunnelService.value == null) {
|
if (isAutoTunnelEnabled && serviceManager.autoTunnelService.value == null)
|
||||||
Timber.i("Service has been killed by system, restoring.")
|
return@with serviceManager.startAutoTunnel()
|
||||||
serviceManager.startAutoTunnelService()
|
if (tunnelManager.activeTunnels.value.isEmpty())
|
||||||
|
tunnelManager.restorePreviousState()
|
||||||
}
|
}
|
||||||
return Result.success()
|
Result.success()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,22 +2,14 @@ package com.zaneschepke.wireguardautotunnel.data
|
|||||||
|
|
||||||
import androidx.room.*
|
import androidx.room.*
|
||||||
import androidx.room.migration.AutoMigrationSpec
|
import androidx.room.migration.AutoMigrationSpec
|
||||||
import androidx.sqlite.db.SupportSQLiteDatabase
|
import com.zaneschepke.wireguardautotunnel.data.dao.SettingsDao
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.*
|
import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.*
|
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
||||||
|
|
||||||
@Database(
|
@Database(
|
||||||
entities =
|
entities = [Settings::class, TunnelConfig::class],
|
||||||
[
|
version = 19,
|
||||||
TunnelConfig::class,
|
|
||||||
ProxySettings::class,
|
|
||||||
GeneralSettings::class,
|
|
||||||
AutoTunnelSettings::class,
|
|
||||||
MonitoringSettings::class,
|
|
||||||
DnsSettings::class,
|
|
||||||
LockdownSettings::class,
|
|
||||||
],
|
|
||||||
version = 29,
|
|
||||||
autoMigrations =
|
autoMigrations =
|
||||||
[
|
[
|
||||||
AutoMigration(from = 1, to = 2),
|
AutoMigration(from = 1, to = 2),
|
||||||
@@ -38,31 +30,14 @@ import com.zaneschepke.wireguardautotunnel.data.entity.*
|
|||||||
AutoMigration(from = 16, to = 17, spec = WifiDetectionMigration::class),
|
AutoMigration(from = 16, to = 17, spec = WifiDetectionMigration::class),
|
||||||
AutoMigration(from = 17, to = 18),
|
AutoMigration(from = 17, to = 18),
|
||||||
AutoMigration(from = 18, to = 19, spec = PingMigration::class),
|
AutoMigration(from = 18, to = 19, spec = PingMigration::class),
|
||||||
AutoMigration(from = 19, to = 20, spec = ProxyMigration::class),
|
|
||||||
AutoMigration(from = 20, to = 21, spec = FixProxySettingsMigration::class),
|
|
||||||
AutoMigration(from = 21, to = 22),
|
|
||||||
AutoMigration(from = 22, to = 23),
|
|
||||||
AutoMigration(from = 24, to = 25),
|
|
||||||
AutoMigration(from = 26, to = 27, spec = GlobalsMigration::class),
|
|
||||||
AutoMigration(from = 27, to = 28, spec = DonationMigration::class),
|
|
||||||
],
|
],
|
||||||
exportSchema = true,
|
exportSchema = true,
|
||||||
)
|
)
|
||||||
@TypeConverters(DatabaseConverters::class)
|
@TypeConverters(DatabaseConverters::class)
|
||||||
abstract class AppDatabase : RoomDatabase() {
|
abstract class AppDatabase : RoomDatabase() {
|
||||||
|
abstract fun settingDao(): SettingsDao
|
||||||
|
|
||||||
abstract fun tunnelConfigDoa(): TunnelConfigDao
|
abstract fun tunnelConfigDoa(): TunnelConfigDao
|
||||||
|
|
||||||
abstract fun proxySettingsDoa(): ProxySettingsDao
|
|
||||||
|
|
||||||
abstract fun generalSettingsDao(): GeneralSettingsDao
|
|
||||||
|
|
||||||
abstract fun autoTunnelSettingsDao(): AutoTunnelSettingsDao
|
|
||||||
|
|
||||||
abstract fun monitoringSettingsDao(): MonitoringSettingsDao
|
|
||||||
|
|
||||||
abstract fun lockdownSettingsDao(): LockdownSettingsDao
|
|
||||||
|
|
||||||
abstract fun dnsSettingsDao(): DnsSettingsDao
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@DeleteColumn(tableName = "Settings", columnName = "default_tunnel")
|
@DeleteColumn(tableName = "Settings", columnName = "default_tunnel")
|
||||||
@@ -93,39 +68,3 @@ class WifiDetectionMigration : AutoMigrationSpec
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
class PingMigration : AutoMigrationSpec
|
class PingMigration : AutoMigrationSpec
|
||||||
|
|
||||||
@DeleteColumn.Entries(
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "is_amnezia_enabled"),
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "is_vpn_kill_switch_enabled"),
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "is_kernel_kill_switch_enabled"),
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "is_kernel_enabled"),
|
|
||||||
)
|
|
||||||
class ProxyMigration : AutoMigrationSpec {
|
|
||||||
override fun onPostMigrate(db: SupportSQLiteDatabase) {
|
|
||||||
db.execSQL("INSERT INTO proxy_settings DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class FixProxySettingsMigration : AutoMigrationSpec {
|
|
||||||
override fun onPostMigrate(db: SupportSQLiteDatabase) {
|
|
||||||
val cursor = db.query("SELECT COUNT(*) FROM proxy_settings")
|
|
||||||
val count = if (cursor.moveToFirst()) cursor.getInt(0) else 0
|
|
||||||
cursor.close()
|
|
||||||
|
|
||||||
if (count == 0) {
|
|
||||||
db.execSQL("INSERT INTO proxy_settings DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@RenameColumn.Entries(
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "general_settings",
|
|
||||||
fromColumnName = "is_tunnel_globals_enabled",
|
|
||||||
toColumnName = "global_split_tunnel_enabled",
|
|
||||||
)
|
|
||||||
)
|
|
||||||
class GlobalsMigration : AutoMigrationSpec
|
|
||||||
|
|
||||||
@DeleteColumn(tableName = "general_settings", columnName = "custom_split_packages")
|
|
||||||
class DonationMigration : AutoMigrationSpec
|
|
||||||
|
|||||||
@@ -4,36 +4,46 @@ import android.content.Context
|
|||||||
import androidx.datastore.preferences.core.Preferences
|
import androidx.datastore.preferences.core.Preferences
|
||||||
import androidx.datastore.preferences.core.booleanPreferencesKey
|
import androidx.datastore.preferences.core.booleanPreferencesKey
|
||||||
import androidx.datastore.preferences.core.edit
|
import androidx.datastore.preferences.core.edit
|
||||||
|
import androidx.datastore.preferences.core.stringPreferencesKey
|
||||||
import androidx.datastore.preferences.preferencesDataStore
|
import androidx.datastore.preferences.preferencesDataStore
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
import kotlinx.coroutines.flow.first
|
import kotlinx.coroutines.flow.first
|
||||||
import kotlinx.coroutines.flow.flowOn
|
import kotlinx.coroutines.flow.flowOn
|
||||||
import kotlinx.coroutines.flow.map
|
import kotlinx.coroutines.flow.map
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class DataStoreManager(
|
class DataStoreManager(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
private val ioDispatcher: CoroutineDispatcher,
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
) {
|
) {
|
||||||
private val preferencesKey = "preferences"
|
|
||||||
val Context.dataStore by preferencesDataStore(name = preferencesKey)
|
|
||||||
val dataStore = context.dataStore
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
val locationDisclosureShown = booleanPreferencesKey("LOCATION_DISCLOSURE_SHOWN")
|
val locationDisclosureShown = booleanPreferencesKey("LOCATION_DISCLOSURE_SHOWN")
|
||||||
val batteryDisableShown = booleanPreferencesKey("BATTERY_OPTIMIZE_DISABLE_SHOWN")
|
val batteryDisableShown = booleanPreferencesKey("BATTERY_OPTIMIZE_DISABLE_SHOWN")
|
||||||
val shouldShowDonationSnackbar = booleanPreferencesKey("SHOW_DONATION_SNACK")
|
val pinLockEnabled = booleanPreferencesKey("PIN_LOCK_ENABLED")
|
||||||
|
val expandedTunnelIds = stringPreferencesKey("EXPANDED_TUNNEL_IDS")
|
||||||
|
val isLocalLogsEnabled = booleanPreferencesKey("LOCAL_LOGS_ENABLED")
|
||||||
|
val locale = stringPreferencesKey("LOCALE")
|
||||||
|
val theme = stringPreferencesKey("THEME")
|
||||||
|
val isRemoteControlEnabled = booleanPreferencesKey("IS_REMOTE_CONTROL_ENABLED")
|
||||||
|
val remoteKey = stringPreferencesKey("REMOTE_KEY")
|
||||||
|
val showDetailedPingStats = booleanPreferencesKey("SHOW_DETAILED_PING_STATS")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// preferences
|
||||||
|
private val preferencesKey = "preferences"
|
||||||
|
private val Context.dataStore by preferencesDataStore(name = preferencesKey)
|
||||||
|
|
||||||
suspend fun init() {
|
suspend fun init() {
|
||||||
withContext(ioDispatcher) {
|
withContext(ioDispatcher) {
|
||||||
try {
|
try {
|
||||||
dataStore.data.first()
|
context.dataStore.data.first()
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -41,11 +51,11 @@ class DataStoreManager(
|
|||||||
suspend fun <T> saveToDataStore(key: Preferences.Key<T>, value: T) {
|
suspend fun <T> saveToDataStore(key: Preferences.Key<T>, value: T) {
|
||||||
withContext(ioDispatcher) {
|
withContext(ioDispatcher) {
|
||||||
try {
|
try {
|
||||||
dataStore.edit { it[key] = value }
|
context.dataStore.edit { it[key] = value }
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -53,11 +63,11 @@ class DataStoreManager(
|
|||||||
suspend fun <T> removeFromDataStore(key: Preferences.Key<T>) {
|
suspend fun <T> removeFromDataStore(key: Preferences.Key<T>) {
|
||||||
withContext(ioDispatcher) {
|
withContext(ioDispatcher) {
|
||||||
try {
|
try {
|
||||||
dataStore.edit { it.remove(key) }
|
context.dataStore.edit { it.remove(key) }
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -67,13 +77,17 @@ class DataStoreManager(
|
|||||||
suspend fun <T> getFromStore(key: Preferences.Key<T>): T? {
|
suspend fun <T> getFromStore(key: Preferences.Key<T>): T? {
|
||||||
return withContext(ioDispatcher) {
|
return withContext(ioDispatcher) {
|
||||||
try {
|
try {
|
||||||
dataStore.data.map { it[key] }.first()
|
context.dataStore.data.map { it[key] }.first()
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Timber.e(e)
|
Timber.Forest.e(e)
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val preferencesFlow: Flow<Preferences?> = dataStore.data.flowOn(ioDispatcher)
|
fun <T> getFromStoreBlocking(key: Preferences.Key<T>) = runBlocking {
|
||||||
|
context.dataStore.data.map { it[key] }.first()
|
||||||
|
}
|
||||||
|
|
||||||
|
val preferencesFlow: Flow<Preferences?> = context.dataStore.data.flowOn(ioDispatcher)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,18 @@ import androidx.room.RoomDatabase
|
|||||||
import androidx.sqlite.db.SupportSQLiteDatabase
|
import androidx.sqlite.db.SupportSQLiteDatabase
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
|
|
||||||
class DatabaseCallback(private val databaseProvider: Lazy<AppDatabase>) : RoomDatabase.Callback() {
|
class DatabaseCallback : RoomDatabase.Callback() {
|
||||||
override fun onCreate(db: SupportSQLiteDatabase) {
|
override fun onCreate(db: SupportSQLiteDatabase) =
|
||||||
super.onCreate(db)
|
db.run {
|
||||||
Timber.d("Database created, inserting default rows")
|
beginTransaction()
|
||||||
db.execSQL("INSERT INTO proxy_settings DEFAULT VALUES")
|
try {
|
||||||
db.execSQL("INSERT INTO general_settings DEFAULT VALUES")
|
execSQL(Queries.createDefaultSettings())
|
||||||
db.execSQL("INSERT INTO auto_tunnel_settings DEFAULT VALUES")
|
Timber.i("Bootstrapping settings data")
|
||||||
db.execSQL("INSERT INTO monitoring_settings DEFAULT VALUES")
|
setTransactionSuccessful()
|
||||||
db.execSQL("INSERT INTO dns_settings DEFAULT VALUES")
|
} catch (e: Exception) {
|
||||||
}
|
Timber.e(e)
|
||||||
|
} finally {
|
||||||
|
endTransaction()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data
|
package com.zaneschepke.wireguardautotunnel.data
|
||||||
|
|
||||||
import androidx.room.TypeConverter
|
import androidx.room.TypeConverter
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.DnsProtocol
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.WifiDetectionMethod
|
|
||||||
import kotlinx.serialization.json.Json
|
import kotlinx.serialization.json.Json
|
||||||
|
|
||||||
class DatabaseConverters {
|
class DatabaseConverters {
|
||||||
@@ -24,44 +22,9 @@ class DatabaseConverters {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@TypeConverter
|
@TypeConverter fun fromStatus(status: Settings.WifiDetectionMethod): Int = status.value
|
||||||
fun mapToString(map: Map<String, String>): String {
|
|
||||||
return Json.encodeToString(map)
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
@TypeConverter
|
||||||
fun stringToMap(json: String): Map<String, String> {
|
fun toStatus(value: Int): Settings.WifiDetectionMethod =
|
||||||
return if (json.isEmpty() || json == "{}") {
|
Settings.WifiDetectionMethod.fromValue(value)
|
||||||
emptyMap()
|
|
||||||
} else {
|
|
||||||
try {
|
|
||||||
Json.decodeFromString<Map<String, String>>(json)
|
|
||||||
} catch (_: Exception) {
|
|
||||||
emptyMap()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun setToString(value: Set<String>): String {
|
|
||||||
return listToString(value.toList())
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun stringToSet(value: String): Set<String> {
|
|
||||||
return stringToList(value).toSet()
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter fun fromStatus(status: WifiDetectionMethod): Int = status.value
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun toStatus(value: Int): WifiDetectionMethod = WifiDetectionMethod.fromValue(value)
|
|
||||||
|
|
||||||
@TypeConverter fun toMode(value: Int): AppMode = AppMode.fromValue(value)
|
|
||||||
|
|
||||||
@TypeConverter fun fromMode(mode: AppMode): Int = mode.value
|
|
||||||
|
|
||||||
@TypeConverter fun toDnsProtocol(value: Int): DnsProtocol = DnsProtocol.fromValue(value)
|
|
||||||
|
|
||||||
@TypeConverter fun fromDnsProtocol(mode: DnsProtocol): Int = mode.value
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data
|
||||||
|
|
||||||
|
object Queries {
|
||||||
|
fun createDefaultSettings(): String {
|
||||||
|
return """
|
||||||
|
INSERT INTO Settings (is_tunnel_enabled,
|
||||||
|
is_tunnel_on_mobile_data_enabled,
|
||||||
|
trusted_network_ssids,
|
||||||
|
is_always_on_vpn_enabled,
|
||||||
|
is_tunnel_on_ethernet_enabled,
|
||||||
|
is_shortcuts_enabled,
|
||||||
|
is_tunnel_on_wifi_enabled,
|
||||||
|
is_kernel_enabled,
|
||||||
|
is_restore_on_boot_enabled,
|
||||||
|
is_multi_tunnel_enabled)
|
||||||
|
VALUES
|
||||||
|
('false',
|
||||||
|
'false',
|
||||||
|
'',
|
||||||
|
'false',
|
||||||
|
'false',
|
||||||
|
'false',
|
||||||
|
'false',
|
||||||
|
'false',
|
||||||
|
'false',
|
||||||
|
'false')
|
||||||
|
"""
|
||||||
|
.trimIndent()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun createTunnelConfig(): String {
|
||||||
|
return """
|
||||||
|
INSERT INTO TunnelConfig (name, wg_quick) VALUES ('test', 'test')
|
||||||
|
"""
|
||||||
|
.trimIndent()
|
||||||
|
}
|
||||||
|
}
|
||||||
-21
@@ -1,21 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.AutoTunnelSettings
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface AutoTunnelSettingsDao {
|
|
||||||
@Query("SELECT * FROM auto_tunnel_settings LIMIT 1")
|
|
||||||
suspend fun getAutoTunnelSettings(): AutoTunnelSettings?
|
|
||||||
|
|
||||||
@Upsert suspend fun upsert(autoTunnelSettings: AutoTunnelSettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM auto_tunnel_settings LIMIT 1")
|
|
||||||
fun getAutoTunnelSettingsFlow(): Flow<AutoTunnelSettings?>
|
|
||||||
|
|
||||||
@Query("UPDATE auto_tunnel_settings SET is_tunnel_enabled = :enabled")
|
|
||||||
suspend fun updateAutoTunnelEnabled(enabled: Boolean)
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.DnsSettings
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface DnsSettingsDao {
|
|
||||||
@Query("SELECT * FROM dns_settings LIMIT 1") suspend fun getDnsSettings(): DnsSettings?
|
|
||||||
|
|
||||||
@Upsert suspend fun upsert(dnsSettings: DnsSettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM dns_settings LIMIT 1") fun getDnsSettingsFlow(): Flow<DnsSettings?>
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface GeneralSettingsDao {
|
|
||||||
@Query("SELECT * FROM general_settings LIMIT 1")
|
|
||||||
suspend fun getGeneralSettings(): GeneralSettings?
|
|
||||||
|
|
||||||
@Upsert suspend fun upsert(generalSettings: GeneralSettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM general_settings LIMIT 1")
|
|
||||||
fun getGeneralSettingsFlow(): Flow<GeneralSettings?>
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET theme = :theme WHERE id = 1")
|
|
||||||
suspend fun updateTheme(theme: String)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET locale = :locale WHERE id = 1")
|
|
||||||
suspend fun updateLocale(locale: String)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET is_pin_lock_enabled = :enabled WHERE id = 1")
|
|
||||||
suspend fun updatePinLockEnabled(enabled: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET app_mode = :appMode WHERE id = 1")
|
|
||||||
suspend fun updateAppMode(appMode: AppMode)
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.LockdownSettings
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface LockdownSettingsDao {
|
|
||||||
@Query("SELECT * FROM lockdown_settings LIMIT 1")
|
|
||||||
suspend fun getLockdownSettings(): LockdownSettings?
|
|
||||||
|
|
||||||
@Upsert suspend fun upsert(lockdownSettings: LockdownSettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM lockdown_settings LIMIT 1")
|
|
||||||
fun getLockdownSettingsFlow(): Flow<LockdownSettings?>
|
|
||||||
}
|
|
||||||
-18
@@ -1,18 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.MonitoringSettings
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface MonitoringSettingsDao {
|
|
||||||
@Query("SELECT * FROM monitoring_settings LIMIT 1")
|
|
||||||
suspend fun getMonitoringSettings(): MonitoringSettings?
|
|
||||||
|
|
||||||
@Upsert suspend fun upsert(monitoringSettings: MonitoringSettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM monitoring_settings LIMIT 1")
|
|
||||||
fun getMonitoringSettingsFlow(): Flow<MonitoringSettings?>
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Upsert
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.ProxySettings
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface ProxySettingsDao {
|
|
||||||
@Upsert suspend fun upsert(proxySettings: ProxySettings)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM proxy_settings LIMIT 1") suspend fun getProxySettings(): ProxySettings?
|
|
||||||
|
|
||||||
@Query("SELECT * FROM proxy_settings LIMIT 1") fun getProxySettingsFlow(): Flow<ProxySettings?>
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data.dao
|
||||||
|
|
||||||
|
import androidx.room.*
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
||||||
|
import kotlinx.coroutines.flow.Flow
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
interface SettingsDao {
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun save(t: Settings)
|
||||||
|
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun saveAll(t: List<Settings>)
|
||||||
|
|
||||||
|
@Query("SELECT * FROM settings WHERE id=:id") suspend fun getById(id: Long): Settings?
|
||||||
|
|
||||||
|
@Query("SELECT * FROM settings") suspend fun getAll(): List<Settings>
|
||||||
|
|
||||||
|
@Query("SELECT * FROM settings LIMIT 1") fun getSettingsFlow(): Flow<Settings>
|
||||||
|
|
||||||
|
@Query("SELECT * FROM settings") fun getAllFlow(): Flow<MutableList<Settings>>
|
||||||
|
|
||||||
|
@Delete suspend fun delete(t: Settings)
|
||||||
|
|
||||||
|
@Query("SELECT COUNT('id') FROM settings") suspend fun count(): Long
|
||||||
|
}
|
||||||
@@ -2,86 +2,46 @@ package com.zaneschepke.wireguardautotunnel.data.dao
|
|||||||
|
|
||||||
import androidx.room.*
|
import androidx.room.*
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.TunnelConfigs
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
|
|
||||||
@Dao
|
@Dao
|
||||||
interface TunnelConfigDao {
|
interface TunnelConfigDao {
|
||||||
|
@Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun save(t: TunnelConfig)
|
||||||
|
|
||||||
@Upsert suspend fun upsert(t: TunnelConfig)
|
@Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun saveAll(t: TunnelConfigs)
|
||||||
|
|
||||||
@Insert(onConflict = OnConflictStrategy.REPLACE) suspend fun saveAll(t: List<TunnelConfig>)
|
@Query("SELECT * FROM TunnelConfig WHERE id=:id") suspend fun getById(id: Long): TunnelConfig?
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE id=:id") suspend fun getById(id: Long): TunnelConfig?
|
@Query("SELECT * FROM TunnelConfig WHERE name=:name")
|
||||||
|
|
||||||
@Query("UPDATE tunnel_config SET is_Active = 0 WHERE is_Active = 1")
|
|
||||||
suspend fun resetActiveTunnels()
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE name=:name")
|
|
||||||
suspend fun getByName(name: String): TunnelConfig?
|
suspend fun getByName(name: String): TunnelConfig?
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE is_Active=1")
|
@Query("SELECT * FROM TunnelConfig WHERE is_Active=1") suspend fun getActive(): TunnelConfigs
|
||||||
suspend fun getActive(): List<TunnelConfig>
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config") suspend fun getAll(): List<TunnelConfig>
|
@Query("SELECT * FROM TunnelConfig") suspend fun getAll(): TunnelConfigs
|
||||||
|
|
||||||
@Delete suspend fun delete(t: TunnelConfig)
|
@Delete suspend fun delete(t: TunnelConfig)
|
||||||
|
|
||||||
@Delete suspend fun delete(t: List<TunnelConfig>)
|
@Query("SELECT COUNT('id') FROM TunnelConfig") suspend fun count(): Long
|
||||||
|
|
||||||
@Query("SELECT COUNT('id') FROM tunnel_config") suspend fun count(): Long
|
@Query("SELECT * FROM TunnelConfig WHERE tunnel_networks LIKE '%' || :name || '%'")
|
||||||
|
suspend fun findByTunnelNetworkName(name: String): TunnelConfigs
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE tunnel_networks LIKE '%' || :name || '%'")
|
@Query("UPDATE TunnelConfig SET is_primary_tunnel = 0 WHERE is_primary_tunnel =1")
|
||||||
suspend fun findByTunnelNetworkName(name: String): List<TunnelConfig>
|
|
||||||
|
|
||||||
@Query("UPDATE tunnel_config SET is_primary_tunnel = 0 WHERE is_primary_tunnel =1")
|
|
||||||
suspend fun resetPrimaryTunnel()
|
suspend fun resetPrimaryTunnel()
|
||||||
|
|
||||||
@Query("UPDATE tunnel_config SET is_mobile_data_tunnel = 0 WHERE is_mobile_data_tunnel =1")
|
@Query("UPDATE TunnelConfig SET is_mobile_data_tunnel = 0 WHERE is_mobile_data_tunnel =1")
|
||||||
suspend fun resetMobileDataTunnel()
|
suspend fun resetMobileDataTunnel()
|
||||||
|
|
||||||
@Query("UPDATE tunnel_config SET is_ethernet_tunnel = 0 WHERE is_ethernet_tunnel =1")
|
@Query("UPDATE TunnelConfig SET is_ethernet_tunnel = 0 WHERE is_ethernet_tunnel =1")
|
||||||
suspend fun resetEthernetTunnel()
|
suspend fun resetEthernetTunnel()
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE is_primary_tunnel=1")
|
@Query("SELECT * FROM TUNNELCONFIG WHERE is_primary_tunnel=1")
|
||||||
suspend fun findByPrimary(): List<TunnelConfig>
|
suspend fun findByPrimary(): TunnelConfigs
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE is_mobile_data_tunnel=1")
|
@Query("SELECT * FROM TUNNELCONFIG WHERE is_mobile_data_tunnel=1")
|
||||||
suspend fun findByMobileDataTunnel(): List<TunnelConfig>
|
suspend fun findByMobileDataTunnel(): TunnelConfigs
|
||||||
|
|
||||||
@Query(
|
@Query("SELECT * FROM tunnelconfig ORDER BY position")
|
||||||
"""
|
|
||||||
SELECT * FROM tunnel_config
|
|
||||||
WHERE name != '${TunnelConfig.GLOBAL_CONFIG_NAME}'
|
|
||||||
ORDER BY
|
|
||||||
CASE WHEN is_primary_tunnel = 1 THEN 0 ELSE 1 END,
|
|
||||||
position ASC
|
|
||||||
LIMIT 1
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
suspend fun getDefaultTunnel(): TunnelConfig?
|
|
||||||
|
|
||||||
@Query(
|
|
||||||
"""
|
|
||||||
SELECT * FROM tunnel_config
|
|
||||||
WHERE name != '${TunnelConfig.GLOBAL_CONFIG_NAME}'
|
|
||||||
ORDER BY
|
|
||||||
CASE WHEN is_Active = 1 THEN 0
|
|
||||||
WHEN is_primary_tunnel = 1 THEN 1
|
|
||||||
ELSE 2 END,
|
|
||||||
position ASC
|
|
||||||
LIMIT 1
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
suspend fun getStartTunnel(): TunnelConfig?
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config ORDER BY position")
|
|
||||||
fun getAllFlow(): Flow<List<TunnelConfig>>
|
fun getAllFlow(): Flow<List<TunnelConfig>>
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE name != :globalName ORDER BY position")
|
|
||||||
fun getAllTunnelsExceptGlobal(
|
|
||||||
globalName: String = TunnelConfig.GLOBAL_CONFIG_NAME
|
|
||||||
): Flow<List<TunnelConfig>>
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE name = :globalName LIMIT 1")
|
|
||||||
fun getGlobalTunnel(globalName: String = TunnelConfig.GLOBAL_CONFIG_NAME): Flow<TunnelConfig?>
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
data class AppState(
|
|
||||||
val isLocationDisclosureShown: Boolean = false,
|
|
||||||
val isBatteryOptimizationDisableShown: Boolean = false,
|
|
||||||
val shouldShowDonationSnackbar: Boolean = false,
|
|
||||||
)
|
|
||||||
-32
@@ -1,32 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.WifiDetectionMethod
|
|
||||||
|
|
||||||
@Entity(tableName = "auto_tunnel_settings")
|
|
||||||
data class AutoTunnelSettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
|
||||||
@ColumnInfo(name = "is_tunnel_enabled", defaultValue = "0")
|
|
||||||
val isAutoTunnelEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_tunnel_on_mobile_data_enabled", defaultValue = "0")
|
|
||||||
val isTunnelOnMobileDataEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "trusted_network_ssids", defaultValue = "")
|
|
||||||
val trustedNetworkSSIDs: Set<String> = emptySet(),
|
|
||||||
@ColumnInfo(name = "is_tunnel_on_ethernet_enabled", defaultValue = "0")
|
|
||||||
val isTunnelOnEthernetEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_tunnel_on_wifi_enabled", defaultValue = "0")
|
|
||||||
val isTunnelOnWifiEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_wildcards_enabled", defaultValue = "0")
|
|
||||||
val isWildcardsEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_stop_on_no_internet_enabled", defaultValue = "0")
|
|
||||||
val isStopOnNoInternetEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "debounce_delay_seconds", defaultValue = "3")
|
|
||||||
val debounceDelaySeconds: Int = 3,
|
|
||||||
@ColumnInfo(name = "is_tunnel_on_unsecure_enabled", defaultValue = "0")
|
|
||||||
val isTunnelOnUnsecureEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "wifi_detection_method", defaultValue = "0")
|
|
||||||
val wifiDetectionMethod: WifiDetectionMethod = WifiDetectionMethod.fromValue(0),
|
|
||||||
@ColumnInfo(name = "start_on_boot", defaultValue = "0") val startOnBoot: Boolean = false,
|
|
||||||
)
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.DnsProtocol
|
|
||||||
|
|
||||||
@Entity(tableName = "dns_settings")
|
|
||||||
data class DnsSettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
|
||||||
@ColumnInfo(name = "dns_protocol", defaultValue = "0")
|
|
||||||
val dnsProtocol: DnsProtocol = DnsProtocol.fromValue(0),
|
|
||||||
@ColumnInfo(name = "dns_endpoint") val dnsEndpoint: String? = null,
|
|
||||||
@ColumnInfo(name = "global_tunnel_dns_enabled", defaultValue = "0")
|
|
||||||
val isGlobalTunnelDnsEnabled: Boolean = false,
|
|
||||||
)
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.model.AppMode
|
|
||||||
|
|
||||||
@Entity(tableName = "general_settings")
|
|
||||||
data class GeneralSettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
|
||||||
@ColumnInfo(name = "is_shortcuts_enabled", defaultValue = "0")
|
|
||||||
val isShortcutsEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_restore_on_boot_enabled", defaultValue = "0")
|
|
||||||
val isRestoreOnBootEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_multi_tunnel_enabled", defaultValue = "0")
|
|
||||||
val isMultiTunnelEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "global_split_tunnel_enabled", defaultValue = "0")
|
|
||||||
val isGlobalSplitTunnelEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "app_mode", defaultValue = "0") val appMode: AppMode = AppMode.fromValue(0),
|
|
||||||
@ColumnInfo(name = "theme", defaultValue = "AUTOMATIC") val theme: String = "AUTOMATIC",
|
|
||||||
@ColumnInfo(name = "locale") val locale: String? = null,
|
|
||||||
@ColumnInfo(name = "remote_key") val remoteKey: String? = null,
|
|
||||||
@ColumnInfo(name = "is_remote_control_enabled", defaultValue = "0")
|
|
||||||
val isRemoteControlEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_pin_lock_enabled", defaultValue = "0")
|
|
||||||
val isPinLockEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_always_on_vpn_enabled", defaultValue = "0")
|
|
||||||
val isAlwaysOnVpnEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "already_donated", defaultValue = "0") val alreadyDonated: Boolean = false,
|
|
||||||
)
|
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data.entity
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.ui.theme.Theme
|
||||||
|
|
||||||
|
data class GeneralState(
|
||||||
|
val isLocationDisclosureShown: Boolean = LOCATION_DISCLOSURE_SHOWN_DEFAULT,
|
||||||
|
val isBatteryOptimizationDisableShown: Boolean = BATTERY_OPTIMIZATION_DISABLE_SHOWN_DEFAULT,
|
||||||
|
val isPinLockEnabled: Boolean = PIN_LOCK_ENABLED_DEFAULT,
|
||||||
|
val expandedTunnelIds: List<Int> = emptyList(),
|
||||||
|
val isLocalLogsEnabled: Boolean = IS_LOGS_ENABLED_DEFAULT,
|
||||||
|
val isRemoteControlEnabled: Boolean = IS_REMOTE_CONTROL_ENABLED,
|
||||||
|
val showDetailedPingStats: Boolean = SHOW_DETAILED_PING_STATS_DEFAULT,
|
||||||
|
val remoteKey: String? = null,
|
||||||
|
val locale: String? = null,
|
||||||
|
val theme: Theme = Theme.AUTOMATIC,
|
||||||
|
) {
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val LOCATION_DISCLOSURE_SHOWN_DEFAULT = false
|
||||||
|
const val BATTERY_OPTIMIZATION_DISABLE_SHOWN_DEFAULT = false
|
||||||
|
const val PIN_LOCK_ENABLED_DEFAULT = false
|
||||||
|
const val IS_LOGS_ENABLED_DEFAULT = false
|
||||||
|
const val IS_REMOTE_CONTROL_ENABLED = false
|
||||||
|
const val SHOW_DETAILED_PING_STATS_DEFAULT = false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
|
|
||||||
@Entity(tableName = "lockdown_settings")
|
|
||||||
data class LockdownSettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Long = 0,
|
|
||||||
@ColumnInfo(name = "bypass_lan", defaultValue = "0") val bypassLan: Boolean = false,
|
|
||||||
@ColumnInfo(name = "metered", defaultValue = "0") val metered: Boolean = false,
|
|
||||||
@ColumnInfo(name = "dual_stack", defaultValue = "0") val dualStack: Boolean = false,
|
|
||||||
)
|
|
||||||
-21
@@ -1,21 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
|
|
||||||
@Entity(tableName = "monitoring_settings")
|
|
||||||
data class MonitoringSettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
|
||||||
@ColumnInfo(name = "is_ping_enabled", defaultValue = "0") val isPingEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_ping_monitoring_enabled", defaultValue = "1")
|
|
||||||
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,
|
|
||||||
@ColumnInfo(name = "show_detailed_ping_stats", defaultValue = "0")
|
|
||||||
val showDetailedPingStats: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_local_logs_enabled", defaultValue = "0")
|
|
||||||
val isLocalLogsEnabled: Boolean = false,
|
|
||||||
)
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
|
|
||||||
@Entity(tableName = "proxy_settings")
|
|
||||||
data class ProxySettings(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Long = 0,
|
|
||||||
@ColumnInfo(name = "socks5_proxy_enabled", defaultValue = "0")
|
|
||||||
val socks5ProxyEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "socks5_proxy_bind_address") val socks5ProxyBindAddress: String? = null,
|
|
||||||
@ColumnInfo(name = "http_proxy_enable", defaultValue = "0")
|
|
||||||
val httpProxyEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "http_proxy_bind_address") val httpProxyBindAddress: String? = null,
|
|
||||||
@ColumnInfo(name = "proxy_username") val proxyUsername: String? = null,
|
|
||||||
@ColumnInfo(name = "proxy_password") val proxyPassword: String? = null,
|
|
||||||
)
|
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data.entity
|
||||||
|
|
||||||
|
import androidx.room.ColumnInfo
|
||||||
|
import androidx.room.Entity
|
||||||
|
import androidx.room.PrimaryKey
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
data class Settings(
|
||||||
|
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
||||||
|
@ColumnInfo(name = "is_tunnel_enabled") val isAutoTunnelEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_tunnel_on_mobile_data_enabled")
|
||||||
|
val isTunnelOnMobileDataEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "trusted_network_ssids") val trustedNetworkSSIDs: List<String> = emptyList(),
|
||||||
|
@ColumnInfo(name = "is_always_on_vpn_enabled") val isAlwaysOnVpnEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_tunnel_on_ethernet_enabled")
|
||||||
|
val isTunnelOnEthernetEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_shortcuts_enabled", defaultValue = "false")
|
||||||
|
val isShortcutsEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_tunnel_on_wifi_enabled", defaultValue = "false")
|
||||||
|
val isTunnelOnWifiEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_kernel_enabled", defaultValue = "false")
|
||||||
|
val isKernelEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_restore_on_boot_enabled", defaultValue = "false")
|
||||||
|
val isRestoreOnBootEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_multi_tunnel_enabled", defaultValue = "false")
|
||||||
|
val isMultiTunnelEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_ping_enabled", defaultValue = "false")
|
||||||
|
val isPingEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_amnezia_enabled", defaultValue = "false")
|
||||||
|
val isAmneziaEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_wildcards_enabled", defaultValue = "false")
|
||||||
|
val isWildcardsEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_stop_on_no_internet_enabled", defaultValue = "false")
|
||||||
|
val isStopOnNoInternetEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_vpn_kill_switch_enabled", defaultValue = "false")
|
||||||
|
val isVpnKillSwitchEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_kernel_kill_switch_enabled", defaultValue = "false")
|
||||||
|
val isKernelKillSwitchEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_lan_on_kill_switch_enabled", defaultValue = "false")
|
||||||
|
val isLanOnKillSwitchEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "debounce_delay_seconds", defaultValue = "3")
|
||||||
|
val debounceDelaySeconds: Int = 3,
|
||||||
|
@ColumnInfo(name = "is_disable_kill_switch_on_trusted_enabled", defaultValue = "false")
|
||||||
|
val isDisableKillSwitchOnTrustedEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "is_tunnel_on_unsecure_enabled", defaultValue = "false")
|
||||||
|
val isTunnelOnUnsecureEnabled: Boolean = false,
|
||||||
|
@ColumnInfo(name = "wifi_detection_method", defaultValue = "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) {
|
||||||
|
DEFAULT(0),
|
||||||
|
LEGACY(1),
|
||||||
|
ROOT(2),
|
||||||
|
SHIZUKU(3);
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
fun fromValue(value: Int): WifiDetectionMethod =
|
||||||
|
entries.find { it.value == value } ?: DEFAULT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,18 +5,18 @@ import androidx.room.Entity
|
|||||||
import androidx.room.Index
|
import androidx.room.Index
|
||||||
import androidx.room.PrimaryKey
|
import androidx.room.PrimaryKey
|
||||||
|
|
||||||
@Entity(tableName = "tunnel_config", indices = [Index(value = ["name"], unique = true)])
|
@Entity(indices = [Index(value = ["name"], unique = true)])
|
||||||
data class TunnelConfig(
|
data class TunnelConfig(
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
||||||
@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: Set<String> = setOf(),
|
val tunnelNetworks: List<String> = listOf(),
|
||||||
@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 = "",
|
@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 = "restart_on_ping_failure", defaultValue = "false")
|
||||||
val restartOnPingFailure: Boolean = false,
|
val restartOnPingFailure: Boolean = false,
|
||||||
@@ -27,10 +27,10 @@ data class TunnelConfig(
|
|||||||
val isIpv4Preferred: Boolean = true,
|
val isIpv4Preferred: Boolean = true,
|
||||||
@ColumnInfo(name = "position", defaultValue = "0") val position: Int = 0,
|
@ColumnInfo(name = "position", defaultValue = "0") val position: Int = 0,
|
||||||
@ColumnInfo(name = "auto_tunnel_apps", defaultValue = "[]")
|
@ColumnInfo(name = "auto_tunnel_apps", defaultValue = "[]")
|
||||||
val autoTunnelApps: Set<String> = emptySet(),
|
val autoTunnelApps: List<String> = listOf(),
|
||||||
@ColumnInfo(name = "is_metered", defaultValue = "false") val isMetered: Boolean = false,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val GLOBAL_CONFIG_NAME = "4675ab06-903a-438b-8485-6ea4187a9512"
|
const val AM_QUICK_DEFAULT = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
-36
@@ -1,36 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.AutoTunnelSettings as Entity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AutoTunnelSettings as Domain
|
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
|
||||||
Domain(
|
|
||||||
id = id,
|
|
||||||
isAutoTunnelEnabled = isAutoTunnelEnabled,
|
|
||||||
isTunnelOnMobileDataEnabled = isTunnelOnMobileDataEnabled,
|
|
||||||
trustedNetworkSSIDs = trustedNetworkSSIDs,
|
|
||||||
isTunnelOnEthernetEnabled = isTunnelOnEthernetEnabled,
|
|
||||||
isTunnelOnWifiEnabled = isTunnelOnWifiEnabled,
|
|
||||||
isWildcardsEnabled = isWildcardsEnabled,
|
|
||||||
isStopOnNoInternetEnabled = isStopOnNoInternetEnabled,
|
|
||||||
debounceDelaySeconds = debounceDelaySeconds,
|
|
||||||
isTunnelOnUnsecureEnabled = isTunnelOnUnsecureEnabled,
|
|
||||||
wifiDetectionMethod = wifiDetectionMethod,
|
|
||||||
startOnBoot = startOnBoot,
|
|
||||||
)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(
|
|
||||||
id = id,
|
|
||||||
isAutoTunnelEnabled = isAutoTunnelEnabled,
|
|
||||||
isTunnelOnMobileDataEnabled = isTunnelOnMobileDataEnabled,
|
|
||||||
trustedNetworkSSIDs = trustedNetworkSSIDs,
|
|
||||||
isTunnelOnEthernetEnabled = isTunnelOnEthernetEnabled,
|
|
||||||
isTunnelOnWifiEnabled = isTunnelOnWifiEnabled,
|
|
||||||
isWildcardsEnabled = isWildcardsEnabled,
|
|
||||||
isStopOnNoInternetEnabled = isStopOnNoInternetEnabled,
|
|
||||||
debounceDelaySeconds = debounceDelaySeconds,
|
|
||||||
isTunnelOnUnsecureEnabled = isTunnelOnUnsecureEnabled,
|
|
||||||
wifiDetectionMethod = wifiDetectionMethod,
|
|
||||||
startOnBoot = startOnBoot,
|
|
||||||
)
|
|
||||||
-20
@@ -1,20 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.DnsSettings as Entity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.DnsSettings as Domain
|
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
|
||||||
Domain(
|
|
||||||
id = id,
|
|
||||||
dnsProtocol = dnsProtocol,
|
|
||||||
dnsEndpoint = dnsEndpoint,
|
|
||||||
isGlobalTunnelDnsEnabled = isGlobalTunnelDnsEnabled,
|
|
||||||
)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(
|
|
||||||
id = id,
|
|
||||||
dnsProtocol = dnsProtocol,
|
|
||||||
dnsEndpoint = dnsEndpoint,
|
|
||||||
isGlobalTunnelDnsEnabled = isGlobalTunnelDnsEnabled,
|
|
||||||
)
|
|
||||||
+36
-8
@@ -1,11 +1,39 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
package com.zaneschepke.wireguardautotunnel.data.mapper
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.AppState as Entity
|
import com.zaneschepke.wireguardautotunnel.data.entity.GeneralState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.AppState as Domain
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppState
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
object GeneralStateMapper {
|
||||||
Domain(
|
fun toAppState(generalState: GeneralState): AppState =
|
||||||
isLocationDisclosureShown = isLocationDisclosureShown,
|
with(generalState) {
|
||||||
isBatteryOptimizationDisableShown = isBatteryOptimizationDisableShown,
|
AppState(
|
||||||
shouldShowDonationSnackbar = shouldShowDonationSnackbar,
|
isLocationDisclosureShown,
|
||||||
)
|
isBatteryOptimizationDisableShown,
|
||||||
|
isPinLockEnabled,
|
||||||
|
expandedTunnelIds,
|
||||||
|
isLocalLogsEnabled,
|
||||||
|
isRemoteControlEnabled,
|
||||||
|
showDetailedPingStats,
|
||||||
|
remoteKey,
|
||||||
|
locale,
|
||||||
|
theme,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun toGeneralState(appState: AppState): GeneralState {
|
||||||
|
return with(appState) {
|
||||||
|
GeneralState(
|
||||||
|
isLocationDisclosureShown,
|
||||||
|
isBatteryOptimizationDisableShown,
|
||||||
|
isPinLockEnabled,
|
||||||
|
expandedTunnelIds,
|
||||||
|
isLocalLogsEnabled,
|
||||||
|
isRemoteControlEnabled,
|
||||||
|
showDetailedPingStats,
|
||||||
|
remoteKey,
|
||||||
|
locale,
|
||||||
|
theme,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.LockdownSettings as Entity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.LockdownSettings as Domain
|
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
|
||||||
Domain(id = id, bypassLan = bypassLan, metered = metered, dualStack = dualStack)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(id = id, bypassLan = bypassLan, metered = metered, dualStack = dualStack)
|
|
||||||
-28
@@ -1,28 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.MonitoringSettings as Entity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.MonitoringSettings as Domain
|
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
|
||||||
Domain(
|
|
||||||
id = id,
|
|
||||||
isPingEnabled = isPingEnabled,
|
|
||||||
isPingMonitoringEnabled = isPingMonitoringEnabled,
|
|
||||||
tunnelPingIntervalSeconds = tunnelPingIntervalSeconds,
|
|
||||||
tunnelPingAttempts = tunnelPingAttempts,
|
|
||||||
tunnelPingTimeoutSeconds = tunnelPingTimeoutSeconds,
|
|
||||||
showDetailedPingStats = showDetailedPingStats,
|
|
||||||
isLocalLogsEnabled = isLocalLogsEnabled,
|
|
||||||
)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(
|
|
||||||
id = id,
|
|
||||||
isPingEnabled = isPingEnabled,
|
|
||||||
isPingMonitoringEnabled = isPingMonitoringEnabled,
|
|
||||||
tunnelPingIntervalSeconds = tunnelPingIntervalSeconds,
|
|
||||||
tunnelPingAttempts = tunnelPingAttempts,
|
|
||||||
tunnelPingTimeoutSeconds = tunnelPingTimeoutSeconds,
|
|
||||||
showDetailedPingStats = showDetailedPingStats,
|
|
||||||
isLocalLogsEnabled = isLocalLogsEnabled,
|
|
||||||
)
|
|
||||||
-26
@@ -1,26 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.ProxySettings as Entity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.ProxySettings as Domain
|
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
|
||||||
Domain(
|
|
||||||
id = id,
|
|
||||||
socks5ProxyEnabled = socks5ProxyEnabled,
|
|
||||||
socks5ProxyBindAddress = socks5ProxyBindAddress,
|
|
||||||
httpProxyEnabled = httpProxyEnabled,
|
|
||||||
httpProxyBindAddress = httpProxyBindAddress,
|
|
||||||
proxyUsername = proxyUsername,
|
|
||||||
proxyPassword = proxyPassword,
|
|
||||||
)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(
|
|
||||||
id = id,
|
|
||||||
socks5ProxyEnabled = socks5ProxyEnabled,
|
|
||||||
socks5ProxyBindAddress = socks5ProxyBindAddress,
|
|
||||||
httpProxyEnabled = httpProxyEnabled,
|
|
||||||
httpProxyBindAddress = httpProxyBindAddress,
|
|
||||||
proxyUsername = proxyUsername,
|
|
||||||
proxyPassword = proxyPassword,
|
|
||||||
)
|
|
||||||
+67
-35
@@ -1,39 +1,71 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
package com.zaneschepke.wireguardautotunnel.data.mapper
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.GeneralSettings as Entity
|
import com.zaneschepke.networkmonitor.AndroidNetworkMonitor
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings as Domain
|
import com.zaneschepke.wireguardautotunnel.data.entity.Settings
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.theme.Theme
|
import com.zaneschepke.wireguardautotunnel.domain.model.AppSettings
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
object SettingsMapper {
|
||||||
Domain(
|
fun toAppSettings(settings: Settings): AppSettings {
|
||||||
id = id,
|
return AppSettings(
|
||||||
isShortcutsEnabled = isShortcutsEnabled,
|
id = settings.id,
|
||||||
isRestoreOnBootEnabled = isRestoreOnBootEnabled,
|
isAutoTunnelEnabled = settings.isAutoTunnelEnabled,
|
||||||
isMultiTunnelEnabled = isMultiTunnelEnabled,
|
isTunnelOnMobileDataEnabled = settings.isTunnelOnMobileDataEnabled,
|
||||||
isGlobalSplitTunnelEnabled = isGlobalSplitTunnelEnabled,
|
trustedNetworkSSIDs = settings.trustedNetworkSSIDs,
|
||||||
appMode = appMode,
|
isAlwaysOnVpnEnabled = settings.isAlwaysOnVpnEnabled,
|
||||||
theme = Theme.valueOf(theme.uppercase()),
|
isTunnelOnEthernetEnabled = settings.isTunnelOnEthernetEnabled,
|
||||||
locale = locale,
|
isShortcutsEnabled = settings.isShortcutsEnabled,
|
||||||
remoteKey = remoteKey,
|
isTunnelOnWifiEnabled = settings.isTunnelOnWifiEnabled,
|
||||||
isRemoteControlEnabled = isRemoteControlEnabled,
|
isKernelEnabled = settings.isKernelEnabled,
|
||||||
isPinLockEnabled = isPinLockEnabled,
|
isRestoreOnBootEnabled = settings.isRestoreOnBootEnabled,
|
||||||
isAlwaysOnVpnEnabled = isAlwaysOnVpnEnabled,
|
isMultiTunnelEnabled = settings.isMultiTunnelEnabled,
|
||||||
alreadyDonated = alreadyDonated,
|
isPingEnabled = settings.isPingEnabled,
|
||||||
)
|
isAmneziaEnabled = settings.isAmneziaEnabled,
|
||||||
|
isWildcardsEnabled = settings.isWildcardsEnabled,
|
||||||
|
isStopOnNoInternetEnabled = settings.isStopOnNoInternetEnabled,
|
||||||
|
isVpnKillSwitchEnabled = settings.isVpnKillSwitchEnabled,
|
||||||
|
isKernelKillSwitchEnabled = settings.isKernelKillSwitchEnabled,
|
||||||
|
isLanOnKillSwitchEnabled = settings.isLanOnKillSwitchEnabled,
|
||||||
|
debounceDelaySeconds = settings.debounceDelaySeconds,
|
||||||
|
isDisableKillSwitchOnTrustedEnabled = settings.isDisableKillSwitchOnTrustedEnabled,
|
||||||
|
isTunnelOnUnsecureEnabled = settings.isTunnelOnUnsecureEnabled,
|
||||||
|
wifiDetectionMethod =
|
||||||
|
AndroidNetworkMonitor.WifiDetectionMethod.fromValue(
|
||||||
|
settings.wifiDetectionMethod.value
|
||||||
|
),
|
||||||
|
tunnelPingIntervalSeconds = settings.tunnelPingIntervalSeconds,
|
||||||
|
tunnelPingAttempts = settings.tunnelPingAttempts,
|
||||||
|
tunnelPingTimeoutSeconds = settings.tunnelPingTimeoutSeconds,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
fun toSettings(appSettings: AppSettings): Settings {
|
||||||
Entity(
|
return Settings(
|
||||||
id = id,
|
id = appSettings.id,
|
||||||
isShortcutsEnabled = isShortcutsEnabled,
|
isAutoTunnelEnabled = appSettings.isAutoTunnelEnabled,
|
||||||
isRestoreOnBootEnabled = isRestoreOnBootEnabled,
|
isTunnelOnMobileDataEnabled = appSettings.isTunnelOnMobileDataEnabled,
|
||||||
isMultiTunnelEnabled = isMultiTunnelEnabled,
|
trustedNetworkSSIDs = appSettings.trustedNetworkSSIDs,
|
||||||
isGlobalSplitTunnelEnabled = isGlobalSplitTunnelEnabled,
|
isAlwaysOnVpnEnabled = appSettings.isAlwaysOnVpnEnabled,
|
||||||
appMode = appMode,
|
isTunnelOnEthernetEnabled = appSettings.isTunnelOnEthernetEnabled,
|
||||||
theme = theme.name,
|
isShortcutsEnabled = appSettings.isShortcutsEnabled,
|
||||||
locale = locale,
|
isTunnelOnWifiEnabled = appSettings.isTunnelOnWifiEnabled,
|
||||||
remoteKey = remoteKey,
|
isKernelEnabled = appSettings.isKernelEnabled,
|
||||||
isRemoteControlEnabled = isRemoteControlEnabled,
|
isRestoreOnBootEnabled = appSettings.isRestoreOnBootEnabled,
|
||||||
isPinLockEnabled = isPinLockEnabled,
|
isMultiTunnelEnabled = appSettings.isMultiTunnelEnabled,
|
||||||
isAlwaysOnVpnEnabled = isAlwaysOnVpnEnabled,
|
isPingEnabled = appSettings.isPingEnabled,
|
||||||
alreadyDonated = alreadyDonated,
|
isAmneziaEnabled = appSettings.isAmneziaEnabled,
|
||||||
)
|
isWildcardsEnabled = appSettings.isWildcardsEnabled,
|
||||||
|
isStopOnNoInternetEnabled = appSettings.isStopOnNoInternetEnabled,
|
||||||
|
isVpnKillSwitchEnabled = appSettings.isVpnKillSwitchEnabled,
|
||||||
|
isKernelKillSwitchEnabled = appSettings.isKernelKillSwitchEnabled,
|
||||||
|
isLanOnKillSwitchEnabled = appSettings.isLanOnKillSwitchEnabled,
|
||||||
|
debounceDelaySeconds = appSettings.debounceDelaySeconds,
|
||||||
|
isDisableKillSwitchOnTrustedEnabled = appSettings.isDisableKillSwitchOnTrustedEnabled,
|
||||||
|
isTunnelOnUnsecureEnabled = appSettings.isTunnelOnUnsecureEnabled,
|
||||||
|
wifiDetectionMethod =
|
||||||
|
Settings.WifiDetectionMethod.fromValue(appSettings.wifiDetectionMethod.value),
|
||||||
|
tunnelPingIntervalSeconds = appSettings.tunnelPingIntervalSeconds,
|
||||||
|
tunnelPingAttempts = appSettings.tunnelPingAttempts,
|
||||||
|
tunnelPingTimeoutSeconds = appSettings.tunnelPingTimeoutSeconds,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
+42
-38
@@ -1,42 +1,46 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.mapper
|
package com.zaneschepke.wireguardautotunnel.data.mapper
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig as Entity
|
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig as Domain
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
|
|
||||||
fun Entity.toDomain(): Domain =
|
object TunnelConfigMapper {
|
||||||
Domain(
|
fun toTunnelConf(tunnelConfig: TunnelConfig): TunnelConf {
|
||||||
id = id,
|
return with(tunnelConfig) {
|
||||||
name = name,
|
TunnelConf(
|
||||||
wgQuick = wgQuick,
|
id,
|
||||||
tunnelNetworks = tunnelNetworks,
|
name,
|
||||||
isMobileDataTunnel = isMobileDataTunnel,
|
wgQuick,
|
||||||
isPrimaryTunnel = isPrimaryTunnel,
|
tunnelNetworks,
|
||||||
amQuick = amQuick,
|
isMobileDataTunnel,
|
||||||
isActive = isActive,
|
isPrimaryTunnel,
|
||||||
restartOnPingFailure = restartOnPingFailure,
|
amQuick,
|
||||||
pingTarget = pingTarget,
|
isActive,
|
||||||
isEthernetTunnel = isEthernetTunnel,
|
pingTarget,
|
||||||
isIpv4Preferred = isIpv4Preferred,
|
restartOnPingFailure,
|
||||||
position = position,
|
isEthernetTunnel,
|
||||||
autoTunnelApps = autoTunnelApps,
|
isIpv4Preferred,
|
||||||
isMetered = isMetered,
|
position,
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
fun toTunnelConfig(tunnelConf: TunnelConf): TunnelConfig {
|
||||||
Entity(
|
return with(tunnelConf) {
|
||||||
id = id,
|
TunnelConfig(
|
||||||
name = name,
|
id,
|
||||||
wgQuick = wgQuick,
|
tunName,
|
||||||
tunnelNetworks = tunnelNetworks,
|
wgQuick,
|
||||||
isMobileDataTunnel = isMobileDataTunnel,
|
tunnelNetworks,
|
||||||
isPrimaryTunnel = isPrimaryTunnel,
|
isMobileDataTunnel,
|
||||||
amQuick = amQuick,
|
isPrimaryTunnel,
|
||||||
isActive = isActive,
|
amQuick,
|
||||||
restartOnPingFailure = restartOnPingFailure,
|
isActive,
|
||||||
pingTarget = pingTarget,
|
restartOnPingFailure,
|
||||||
isEthernetTunnel = isEthernetTunnel,
|
pingTarget,
|
||||||
isIpv4Preferred = isIpv4Preferred,
|
isEthernetTunnel,
|
||||||
position = position,
|
isIpv4Preferred,
|
||||||
autoTunnelApps = autoTunnelApps,
|
position,
|
||||||
isMetered = isMetered,
|
)
|
||||||
)
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,466 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.migrations
|
|
||||||
|
|
||||||
import android.content.ContentValues
|
|
||||||
import android.database.sqlite.SQLiteDatabase
|
|
||||||
import androidx.datastore.core.DataStore
|
|
||||||
import androidx.datastore.preferences.core.Preferences
|
|
||||||
import androidx.datastore.preferences.core.booleanPreferencesKey
|
|
||||||
import androidx.datastore.preferences.core.stringPreferencesKey
|
|
||||||
import androidx.room.migration.Migration
|
|
||||||
import androidx.sqlite.db.SupportSQLiteDatabase
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.runBlocking
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
val MIGRATION_23_24 =
|
|
||||||
fun(dataStore: DataStore<Preferences>): Migration {
|
|
||||||
return object : Migration(23, 24) {
|
|
||||||
override fun migrate(db: SupportSQLiteDatabase) {
|
|
||||||
Timber.d("Starting migration from 23 to 24")
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `general_settings` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`app_mode` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`theme` TEXT NOT NULL DEFAULT 'AUTOMATIC',
|
|
||||||
`locale` TEXT,
|
|
||||||
`remote_key` TEXT,
|
|
||||||
`is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT 0
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `auto_tunnel_settings` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`is_tunnel_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`trusted_network_ssids` TEXT NOT NULL DEFAULT '',
|
|
||||||
`is_tunnel_on_ethernet_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_wildcards_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3,
|
|
||||||
`is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`wifi_detection_method` INTEGER NOT NULL DEFAULT 0
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `monitoring_settings` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`is_ping_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT 1,
|
|
||||||
`tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30,
|
|
||||||
`tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3,
|
|
||||||
`tunnel_ping_timeout_sec` INTEGER,
|
|
||||||
`show_detailed_ping_stats` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `dns_settings` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`dns_protocol` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`dns_endpoint` TEXT
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `tunnel_config` (
|
|
||||||
`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 '[]'
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE UNIQUE INDEX `index_tunnel_config_name` ON `tunnel_config` (`name`)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `general_settings` (
|
|
||||||
`id`, `is_shortcuts_enabled`, `is_restore_on_boot_enabled`,
|
|
||||||
`is_multi_tunnel_enabled`, `is_tunnel_globals_enabled`, `app_mode`,
|
|
||||||
`is_always_on_vpn_enabled`, `is_lan_on_kill_switch_enabled`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`,
|
|
||||||
COALESCE(`is_shortcuts_enabled`, 0),
|
|
||||||
COALESCE(`is_restore_on_boot_enabled`, 0),
|
|
||||||
COALESCE(`is_multi_tunnel_enabled`, 0),
|
|
||||||
COALESCE(`is_tunnel_globals_enabled`, 0),
|
|
||||||
COALESCE(`app_mode`, 0),
|
|
||||||
COALESCE(`is_always_on_vpn_enabled`, 0),
|
|
||||||
COALESCE(`is_lan_on_kill_switch_enabled`, 0)
|
|
||||||
FROM `Settings`
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
Timber.d("Migrated data to general_settings")
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to migrate data to general_settings, inserting default row")
|
|
||||||
db.execSQL("INSERT INTO `general_settings` DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `auto_tunnel_settings` (
|
|
||||||
`id`, `is_tunnel_enabled`, `is_tunnel_on_mobile_data_enabled`,
|
|
||||||
`trusted_network_ssids`, `is_tunnel_on_ethernet_enabled`,
|
|
||||||
`is_tunnel_on_wifi_enabled`, `is_wildcards_enabled`, `is_stop_on_no_internet_enabled`,
|
|
||||||
`debounce_delay_seconds`, `is_tunnel_on_unsecure_enabled`,
|
|
||||||
`wifi_detection_method`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`,
|
|
||||||
COALESCE(`is_tunnel_enabled`, 0),
|
|
||||||
COALESCE(`is_tunnel_on_mobile_data_enabled`, 0),
|
|
||||||
COALESCE(`trusted_network_ssids`, ''),
|
|
||||||
COALESCE(`is_tunnel_on_ethernet_enabled`, 0),
|
|
||||||
COALESCE(`is_tunnel_on_wifi_enabled`, 0),
|
|
||||||
COALESCE(`is_wildcards_enabled`, 0),
|
|
||||||
COALESCE(`is_stop_on_no_internet_enabled`, 0),
|
|
||||||
COALESCE(`debounce_delay_seconds`, 3),
|
|
||||||
COALESCE(`is_tunnel_on_unsecure_enabled`, 0),
|
|
||||||
COALESCE(`wifi_detection_method`, 0)
|
|
||||||
FROM `Settings`
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
Timber.d("Migrated data to auto_tunnel_settings")
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(
|
|
||||||
e,
|
|
||||||
"Failed to migrate data to auto_tunnel_settings, inserting default row",
|
|
||||||
)
|
|
||||||
db.execSQL("INSERT INTO `auto_tunnel_settings` DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `monitoring_settings` (
|
|
||||||
`id`, `is_ping_enabled`, `is_ping_monitoring_enabled`,
|
|
||||||
`tunnel_ping_interval_sec`, `tunnel_ping_attempts`, `tunnel_ping_timeout_sec`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`,
|
|
||||||
COALESCE(`is_ping_enabled`, 0),
|
|
||||||
COALESCE(`is_ping_monitoring_enabled`, 1),
|
|
||||||
COALESCE(`tunnel_ping_interval_sec`, 30),
|
|
||||||
COALESCE(`tunnel_ping_attempts`, 3),
|
|
||||||
COALESCE(`tunnel_ping_timeout_sec`, NULL)
|
|
||||||
FROM `Settings`
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
Timber.d("Migrated data to monitoring_settings")
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(
|
|
||||||
e,
|
|
||||||
"Failed to migrate data to monitoring_settings, inserting default row",
|
|
||||||
)
|
|
||||||
db.execSQL("INSERT INTO `monitoring_settings` DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `dns_settings` (
|
|
||||||
`id`, `dns_protocol`, `dns_endpoint`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`,
|
|
||||||
COALESCE(`dns_protocol`, 0),
|
|
||||||
COALESCE(`dns_endpoint`, NULL)
|
|
||||||
FROM `Settings`
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
Timber.d("Migrated data to dns_settings")
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to migrate data to dns_settings, inserting default row")
|
|
||||||
db.execSQL("INSERT INTO `dns_settings` DEFAULT VALUES")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `tunnel_config` (
|
|
||||||
`id`, `name`, `wg_quick`, `tunnel_networks`, `is_mobile_data_tunnel`,
|
|
||||||
`is_primary_tunnel`, `am_quick`, `is_Active`, `restart_on_ping_failure`,
|
|
||||||
`ping_target`, `is_ethernet_tunnel`, `is_ipv4_preferred`, `position`,
|
|
||||||
`auto_tunnel_apps`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`, `name`, `wg_quick`, `tunnel_networks`, `is_mobile_data_tunnel`,
|
|
||||||
`is_primary_tunnel`, `am_quick`, `is_Active`, `restart_on_ping_failure`,
|
|
||||||
`ping_target`, `is_ethernet_tunnel`, `is_ipv4_preferred`, `position`,
|
|
||||||
`auto_tunnel_apps`
|
|
||||||
FROM `TunnelConfig`
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to migrate data to tunnel_config")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
runBlocking {
|
|
||||||
val preferences = dataStore.data.first()
|
|
||||||
val pinLockEnabled = booleanPreferencesKey("PIN_LOCK_ENABLED")
|
|
||||||
val isLocalLogsEnabled = booleanPreferencesKey("LOCAL_LOGS_ENABLED")
|
|
||||||
val locale = stringPreferencesKey("LOCALE")
|
|
||||||
val theme = stringPreferencesKey("THEME")
|
|
||||||
val isRemoteControlEnabled =
|
|
||||||
booleanPreferencesKey("IS_REMOTE_CONTROL_ENABLED")
|
|
||||||
val remoteKey = stringPreferencesKey("REMOTE_KEY")
|
|
||||||
val showDetailedPingStats =
|
|
||||||
booleanPreferencesKey("SHOW_DETAILED_PING_STATS")
|
|
||||||
|
|
||||||
val currentTheme = preferences[theme] ?: "AUTOMATIC"
|
|
||||||
val currentLocale = preferences[locale]
|
|
||||||
val currentRemoteKey = preferences[remoteKey]
|
|
||||||
val isRemoteEnabled = preferences[isRemoteControlEnabled] ?: false
|
|
||||||
val isPinLockEnabled = preferences[pinLockEnabled] ?: false
|
|
||||||
val detailedPingStats = preferences[showDetailedPingStats] ?: false
|
|
||||||
val localLogs = preferences[isLocalLogsEnabled] ?: false
|
|
||||||
|
|
||||||
val generalValues =
|
|
||||||
ContentValues().apply {
|
|
||||||
put("id", 1)
|
|
||||||
put("theme", currentTheme)
|
|
||||||
put("locale", currentLocale)
|
|
||||||
put("remote_key", currentRemoteKey)
|
|
||||||
put("is_remote_control_enabled", if (isRemoteEnabled) 1 else 0)
|
|
||||||
put("is_pin_lock_enabled", if (isPinLockEnabled) 1 else 0)
|
|
||||||
}
|
|
||||||
// Try updating first
|
|
||||||
val rowsAffected =
|
|
||||||
db.update(
|
|
||||||
table = "general_settings",
|
|
||||||
conflictAlgorithm = SQLiteDatabase.CONFLICT_REPLACE,
|
|
||||||
values = generalValues,
|
|
||||||
whereClause = "id = ?",
|
|
||||||
whereArgs = arrayOf("1"),
|
|
||||||
)
|
|
||||||
|
|
||||||
if (rowsAffected == 0) {
|
|
||||||
db.insert(
|
|
||||||
"general_settings",
|
|
||||||
SQLiteDatabase.CONFLICT_REPLACE,
|
|
||||||
generalValues,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Timber.d("Updated or inserted DataStore values in general_settings")
|
|
||||||
|
|
||||||
val monitoringValues =
|
|
||||||
ContentValues().apply {
|
|
||||||
put("id", 1)
|
|
||||||
put("show_detailed_ping_stats", if (detailedPingStats) 1 else 0)
|
|
||||||
put("is_local_logs_enabled", if (localLogs) 1 else 0)
|
|
||||||
}
|
|
||||||
val monitoringRowsAffected =
|
|
||||||
db.update(
|
|
||||||
table = "monitoring_settings",
|
|
||||||
conflictAlgorithm = SQLiteDatabase.CONFLICT_REPLACE,
|
|
||||||
values = monitoringValues,
|
|
||||||
whereClause = "id = ?",
|
|
||||||
whereArgs = arrayOf("1"),
|
|
||||||
)
|
|
||||||
if (monitoringRowsAffected == 0) {
|
|
||||||
db.insert(
|
|
||||||
"monitoring_settings",
|
|
||||||
SQLiteDatabase.CONFLICT_REPLACE,
|
|
||||||
monitoringValues,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Timber.d("Updated or inserted DataStore values in monitoring_settings")
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "Failed to migrate datastore data")
|
|
||||||
}
|
|
||||||
|
|
||||||
db.execSQL("DROP TABLE IF EXISTS `Settings`")
|
|
||||||
db.execSQL("DROP TABLE IF EXISTS `TunnelConfig`")
|
|
||||||
|
|
||||||
Timber.d("Migration 23 to 24 completed")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val MIGRATION_25_26 =
|
|
||||||
object : Migration(25, 26) {
|
|
||||||
override fun migrate(db: SupportSQLiteDatabase) {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `lockdown_settings` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`bypass_lan` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`metered` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`dual_stack` INTEGER NOT NULL DEFAULT 0
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
|
|
||||||
val cursor =
|
|
||||||
db.query("SELECT `is_lan_on_kill_switch_enabled` FROM `general_settings` LIMIT 1")
|
|
||||||
var bypassLan = 0
|
|
||||||
if (cursor.moveToFirst()) {
|
|
||||||
bypassLan = if (cursor.getInt(0) != 0) 1 else 0
|
|
||||||
}
|
|
||||||
cursor.close()
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `lockdown_settings` (`bypass_lan`, `metered`, `dual_stack`)
|
|
||||||
VALUES (?, 0, 0)
|
|
||||||
"""
|
|
||||||
.trimIndent(),
|
|
||||||
arrayOf(bypassLan),
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `general_settings_new` (
|
|
||||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
||||||
`is_shortcuts_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_tunnel_globals_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`app_mode` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`theme` TEXT NOT NULL DEFAULT 'AUTOMATIC',
|
|
||||||
`locale` TEXT,
|
|
||||||
`remote_key` TEXT,
|
|
||||||
`is_remote_control_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_pin_lock_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`is_always_on_vpn_enabled` INTEGER NOT NULL DEFAULT 0,
|
|
||||||
`custom_split_packages` TEXT NOT NULL DEFAULT '{}'
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `general_settings_new` (
|
|
||||||
`id`,
|
|
||||||
`is_shortcuts_enabled`,
|
|
||||||
`is_restore_on_boot_enabled`,
|
|
||||||
`is_multi_tunnel_enabled`,
|
|
||||||
`is_tunnel_globals_enabled`,
|
|
||||||
`app_mode`,
|
|
||||||
`theme`,
|
|
||||||
`locale`,
|
|
||||||
`remote_key`,
|
|
||||||
`is_remote_control_enabled`,
|
|
||||||
`is_pin_lock_enabled`,
|
|
||||||
`is_always_on_vpn_enabled`,
|
|
||||||
`custom_split_packages`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`,
|
|
||||||
`is_shortcuts_enabled`,
|
|
||||||
`is_restore_on_boot_enabled`,
|
|
||||||
`is_multi_tunnel_enabled`,
|
|
||||||
`is_tunnel_globals_enabled`,
|
|
||||||
`app_mode`,
|
|
||||||
`theme`,
|
|
||||||
`locale`,
|
|
||||||
`remote_key`,
|
|
||||||
`is_remote_control_enabled`,
|
|
||||||
`is_pin_lock_enabled`,
|
|
||||||
`is_always_on_vpn_enabled`,
|
|
||||||
`custom_split_packages`
|
|
||||||
FROM `general_settings`
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL("DROP TABLE `general_settings`")
|
|
||||||
|
|
||||||
db.execSQL("ALTER TABLE `general_settings_new` RENAME TO `general_settings`")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val MIGRATION_28_29 =
|
|
||||||
object : Migration(28, 29) {
|
|
||||||
override fun migrate(database: SupportSQLiteDatabase) {
|
|
||||||
// Migrate tunnel_config table
|
|
||||||
database.execSQL(
|
|
||||||
"""
|
|
||||||
CREATE TABLE IF NOT EXISTS `tunnel_config_new` (
|
|
||||||
`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 '[]',
|
|
||||||
`is_metered` INTEGER NOT NULL DEFAULT false
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
|
|
||||||
database.execSQL(
|
|
||||||
"""
|
|
||||||
INSERT INTO `tunnel_config_new` (
|
|
||||||
`id`, `name`, `wg_quick`, `tunnel_networks`, `is_mobile_data_tunnel`,
|
|
||||||
`is_primary_tunnel`, `am_quick`, `is_Active`, `restart_on_ping_failure`,
|
|
||||||
`ping_target`, `is_ethernet_tunnel`, `is_ipv4_preferred`, `position`,
|
|
||||||
`auto_tunnel_apps`, `is_metered`
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
`id`, `name`, `wg_quick`, `tunnel_networks`, `is_mobile_data_tunnel`,
|
|
||||||
`is_primary_tunnel`, `am_quick`, `is_Active`, `restart_on_ping_failure`,
|
|
||||||
`ping_target`, `is_ethernet_tunnel`, `is_ipv4_preferred`, `position`,
|
|
||||||
`auto_tunnel_apps`, 0 AS `is_metered`
|
|
||||||
FROM `tunnel_config`
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
|
|
||||||
database.execSQL("DROP TABLE `tunnel_config`")
|
|
||||||
database.execSQL("ALTER TABLE `tunnel_config_new` RENAME TO `tunnel_config`")
|
|
||||||
database.execSQL(
|
|
||||||
"CREATE UNIQUE INDEX IF NOT EXISTS `index_tunnel_config_name` ON `tunnel_config` (`name`)"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.model
|
|
||||||
|
|
||||||
enum class AppMode(val value: Int) {
|
|
||||||
VPN(0),
|
|
||||||
PROXY(1),
|
|
||||||
LOCK_DOWN(2),
|
|
||||||
KERNEL(3);
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun fromValue(value: Int): AppMode = entries.find { it.value == value } ?: VPN
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.model
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
|
|
||||||
enum class DnsProtocol(val value: Int) {
|
|
||||||
SYSTEM(0),
|
|
||||||
DOH(1);
|
|
||||||
|
|
||||||
fun asString(context: Context): String {
|
|
||||||
return when (this) {
|
|
||||||
SYSTEM -> context.getString(R.string.system)
|
|
||||||
DOH -> context.getString(R.string.doh)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun fromValue(value: Int): DnsProtocol =
|
|
||||||
DnsProtocol.entries.find { it.value == value } ?: SYSTEM
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
data class DnsSettings(val protocol: DnsProtocol = DnsProtocol.SYSTEM, val endpoint: String? = null)
|
|
||||||
|
|
||||||
enum class DnsProvider(private val systemAddress: String, private val dohAddress: String) {
|
|
||||||
CLOUDFLARE("1.1.1.1", "https://1.1.1.1/dns-query"),
|
|
||||||
ADGUARD("94.140.14.14", "https://94.140.14.14/dns-query");
|
|
||||||
|
|
||||||
fun asAddress(protocol: DnsProtocol): String {
|
|
||||||
return when (protocol) {
|
|
||||||
DnsProtocol.SYSTEM -> systemAddress
|
|
||||||
DnsProtocol.DOH -> dohAddress
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun fromAddress(address: String): DnsProvider {
|
|
||||||
return entries.find { it.systemAddress == address || it.dohAddress == address }
|
|
||||||
?: CLOUDFLARE
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-17
@@ -1,17 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.model
|
|
||||||
|
|
||||||
enum class WifiDetectionMethod(val value: Int) {
|
|
||||||
DEFAULT(0),
|
|
||||||
LEGACY(1),
|
|
||||||
ROOT(2),
|
|
||||||
SHIZUKU(3);
|
|
||||||
|
|
||||||
fun needsLocationPermissions(): Boolean {
|
|
||||||
return this == LEGACY || this == DEFAULT
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun fromValue(value: Int): WifiDetectionMethod =
|
|
||||||
entries.find { it.value == value } ?: DEFAULT
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+28
@@ -0,0 +1,28 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data.repository
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConf
|
||||||
|
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 javax.inject.Inject
|
||||||
|
|
||||||
|
class AppDataRoomRepository
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
override val settings: AppSettingRepository,
|
||||||
|
override val tunnels: TunnelRepository,
|
||||||
|
override val appState: AppStateRepository,
|
||||||
|
) : AppDataRepository {
|
||||||
|
|
||||||
|
override suspend fun getPrimaryOrFirstTunnel(): TunnelConf? {
|
||||||
|
return tunnels.findPrimary().firstOrNull() ?: tunnels.getAll().firstOrNull()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getStartTunnelConfig(): TunnelConf? {
|
||||||
|
tunnels.getActive().let {
|
||||||
|
if (it.isNotEmpty()) return it.first()
|
||||||
|
return getPrimaryOrFirstTunnel()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user