mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cc408ed57e | |||
| 9b7841f487 |
@@ -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,131 +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@v7
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Set up JDK 21
|
|
||||||
uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
distribution: 'temurin'
|
|
||||||
java-version: '21'
|
|
||||||
cache: gradle
|
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
|
||||||
run: chmod +x gradlew
|
|
||||||
|
|
||||||
- name: Decode Keystore
|
|
||||||
id: decode_keystore
|
|
||||||
uses: timheuer/base64-to-file@v2.0
|
|
||||||
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
|
|
||||||
+50
-53
@@ -1,7 +1,4 @@
|
|||||||
name: build
|
name: build
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
@@ -12,16 +9,9 @@ on:
|
|||||||
default: debug
|
default: debug
|
||||||
options:
|
options:
|
||||||
- debug
|
- debug
|
||||||
|
- prerelease
|
||||||
- nightly
|
- nightly
|
||||||
- release
|
- release
|
||||||
flavor:
|
|
||||||
type: choice
|
|
||||||
description: "Product flavor"
|
|
||||||
required: true
|
|
||||||
default: fdroid
|
|
||||||
options:
|
|
||||||
- fdroid
|
|
||||||
- standalone
|
|
||||||
secrets:
|
secrets:
|
||||||
SIGNING_KEY_ALIAS:
|
SIGNING_KEY_ALIAS:
|
||||||
required: false
|
required: false
|
||||||
@@ -40,11 +30,6 @@ on:
|
|||||||
description: "Build type"
|
description: "Build type"
|
||||||
required: true
|
required: true
|
||||||
default: debug
|
default: debug
|
||||||
flavor:
|
|
||||||
type: string
|
|
||||||
description: "Product flavor"
|
|
||||||
required: false
|
|
||||||
default: fdroid
|
|
||||||
secrets:
|
secrets:
|
||||||
SIGNING_KEY_ALIAS:
|
SIGNING_KEY_ALIAS:
|
||||||
required: false
|
required: false
|
||||||
@@ -56,7 +41,6 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
KEYSTORE:
|
KEYSTORE:
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
UPLOAD_DIR_ANDROID: android_artifacts
|
UPLOAD_DIR_ANDROID: android_artifacts
|
||||||
|
|
||||||
@@ -64,65 +48,78 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
|
SIGNING_KEY_ALIAS: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }}
|
||||||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
SIGNING_KEY_PASSWORD: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }}
|
||||||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
SIGNING_STORE_PASSWORD: ${{ secrets.ANDROID_SIGNING_STORE_PASSWORD }}
|
||||||
KEY_STORE_FILE: 'android_keystore.jks'
|
KEY_STORE_FILE: 'android_keystore.jks'
|
||||||
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
||||||
outputs:
|
outputs:
|
||||||
UPLOAD_DIR_ANDROID: ${{ env.UPLOAD_DIR_ANDROID }}
|
UPLOAD_DIR_ANDROID: ${{ env.UPLOAD_DIR_ANDROID }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v4
|
||||||
with:
|
- name: Set up JDK 17
|
||||||
fetch-depth: 0
|
uses: actions/setup-java@v4
|
||||||
submodules: recursive
|
|
||||||
- name: Set up JDK 21
|
|
||||||
uses: actions/setup-java@v5
|
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '21'
|
java-version: '17'
|
||||||
cache: gradle
|
cache: gradle
|
||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
|
|
||||||
|
# Here we need to decode keystore.jks from base64 string and place it
|
||||||
|
# in the folder specified in the release signing configuration
|
||||||
- name: Decode Keystore
|
- name: Decode Keystore
|
||||||
id: decode_keystore
|
id: decode_keystore
|
||||||
uses: timheuer/base64-to-file@v2.0
|
uses: timheuer/base64-to-file@v1.2
|
||||||
with:
|
with:
|
||||||
fileName: ${{ env.KEY_STORE_FILE }}
|
fileName: ${{ env.KEY_STORE_FILE }}
|
||||||
fileDir: ${{ env.KEY_STORE_LOCATION }}
|
fileDir: ${{ env.KEY_STORE_LOCATION }}
|
||||||
encodedString: ${{ secrets.KEYSTORE }}
|
encodedString: ${{ secrets.ANDROID_KEYSTORE }}
|
||||||
|
|
||||||
|
# create keystore path for gradle to read
|
||||||
- name: Create keystore path env var
|
- name: Create keystore path env var
|
||||||
if: ${{ inputs.build_type != 'debug' }}
|
if: ${{ inputs.build_type != 'debug' }}
|
||||||
run: |
|
run: |
|
||||||
store_path=${{ env.KEY_STORE_LOCATION }}${{ env.KEY_STORE_FILE }}
|
store_path=${{ env.KEY_STORE_LOCATION }}${{ env.KEY_STORE_FILE }}
|
||||||
echo "KEY_STORE_PATH=$store_path" >> $GITHUB_ENV
|
echo "KEY_STORE_PATH=$store_path" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build APK
|
- name: Create service_account.json
|
||||||
|
if: ${{ inputs.build_type != 'debug' }}
|
||||||
|
id: createServiceAccount
|
||||||
|
run: echo '${{ secrets.ANDROID_SERVICE_ACCOUNT_JSON }}' > service_account.json
|
||||||
|
|
||||||
|
- name: Build Fdroid Release APK
|
||||||
|
if: ${{ inputs.build_type == 'release' }}
|
||||||
|
run: ./gradlew :app:assembleFdroidRelease --info
|
||||||
|
|
||||||
|
- name: Build Fdroid Prerelease APK
|
||||||
|
if: ${{ inputs.build_type == 'prerelease' }}
|
||||||
|
run: ./gradlew :app:assembleFdroidPrerelease --info
|
||||||
|
|
||||||
|
- name: Build Fdroid Nightly APK
|
||||||
|
if: ${{ inputs.build_type == 'nightly' }}
|
||||||
|
run: ./gradlew :app:assembleFdroidNightly --info
|
||||||
|
|
||||||
|
- name: Build Debug APK
|
||||||
|
if: ${{ inputs.build_type == 'debug' }}
|
||||||
|
run: ./gradlew :app:assembleFdroidDebug --stacktrace
|
||||||
|
|
||||||
|
# bump versionCode for nightly and prerelease builds
|
||||||
|
- name: Commit and push versionCode changes
|
||||||
|
if: ${{ inputs.build_type == 'nightly' || inputs.build_type == 'prerelease' }}
|
||||||
run: |
|
run: |
|
||||||
flavor=${{ inputs.flavor }}
|
git config --global user.name 'GitHub Actions'
|
||||||
build_type=${{ inputs.build_type }}
|
git config --global user.email 'actions@github.com'
|
||||||
case $build_type in
|
git add versionCode.txt
|
||||||
"release")
|
git commit -m "Automated build update"
|
||||||
./gradlew :app:assemble${flavor^}Release --info
|
|
||||||
;;
|
|
||||||
"nightly")
|
|
||||||
./gradlew :app:assemble${flavor^}Nightly --info
|
|
||||||
;;
|
|
||||||
"debug")
|
|
||||||
./gradlew :app:assemble${flavor^}Debug --stacktrace
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
env:
|
|
||||||
GITHUB_SHA: ${{ github.sha }}
|
|
||||||
GITHUB_RUN_NUMBER: ${{ github.run_number }}
|
|
||||||
- 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/fdroid/${{ inputs.build_type }}/.*\.apk$' -type f | head -1 | tail -c+2)" >> $GITHUB_OUTPUT
|
||||||
- name: Upload All APK Artifacts
|
|
||||||
uses: actions/upload-artifact@v7
|
- name: Upload release apk
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: android_artifacts_${{ inputs.flavor }}
|
name: ${{ env.UPLOAD_DIR_ANDROID }}
|
||||||
path: >-
|
path: ${{github.workspace}}/${{ steps.apk-path.outputs.path }}
|
||||||
app/build/outputs/apk/${{ inputs.flavor }}/${{ inputs.build_type }}/*.apk
|
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
if-no-files-found: warn
|
|
||||||
@@ -1,131 +0,0 @@
|
|||||||
name: nightly
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: "4 3 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check_commits:
|
|
||||||
name: Check for New Commits
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
has_new_commits: ${{ steps.check.outputs.new_commits }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v7
|
|
||||||
- name: Check for new commits
|
|
||||||
id: check
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
run: |
|
|
||||||
NEW_COMMITS=$(git rev-list --count --after="$(date -Iseconds -d '23 hours ago')" ${{ github.sha }})
|
|
||||||
echo "new_commits=$NEW_COMMITS" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
build-standalone-nightly:
|
|
||||||
needs:
|
|
||||||
- check_commits
|
|
||||||
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
|
||||||
uses: ./.github/workflows/build.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
build_type: "nightly"
|
|
||||||
flavor: standalone
|
|
||||||
|
|
||||||
publish:
|
|
||||||
needs:
|
|
||||||
- build-standalone-nightly
|
|
||||||
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
|
||||||
name: publish-nightly
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- uses: actions/checkout@v7
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Install system dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt update && sudo apt install -y gh apksigner
|
|
||||||
- name: Set latest tag
|
|
||||||
uses: rickstaa/action-create-tag@v1
|
|
||||||
id: tag_creation
|
|
||||||
with:
|
|
||||||
tag: "latest"
|
|
||||||
message: "Automated tag for HEAD commit"
|
|
||||||
force_push_tag: true
|
|
||||||
github_token: ${{ github.token }}
|
|
||||||
tag_exists_error: false
|
|
||||||
|
|
||||||
- name: Generate Changelog
|
|
||||||
id: changelog
|
|
||||||
uses: requarks/changelog-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{ github.token }}
|
|
||||||
toTag: "nightly"
|
|
||||||
fromTag: "latest"
|
|
||||||
writeToFile: false
|
|
||||||
|
|
||||||
- name: Make download dir
|
|
||||||
run: mkdir ${{ github.workspace }}/temp
|
|
||||||
|
|
||||||
- name: Download artifacts
|
|
||||||
uses: actions/download-artifact@v8
|
|
||||||
with:
|
|
||||||
pattern: android_artifacts_*
|
|
||||||
path: ${{ github.workspace }}/temp
|
|
||||||
|
|
||||||
- name: Set release notes
|
|
||||||
run: |
|
|
||||||
echo "RELEASE_NOTES=Nightly build for the latest development version of the app." >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Delete previous nightly version
|
|
||||||
uses: ClementTsang/delete-tag-and-release@v0.4.0
|
|
||||||
with:
|
|
||||||
tag_name: "nightly"
|
|
||||||
delete_release: true
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
|
||||||
|
|
||||||
- name: Get checksum
|
|
||||||
id: checksum
|
|
||||||
run: |
|
|
||||||
file_path=$(find ${{ github.workspace }}/temp -type f -iname "*.apk" | head -n 1)
|
|
||||||
if [ -z "$file_path" ]; then
|
|
||||||
echo "No APK file found"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
checksum=$(apksigner verify --print-certs "$file_path" | grep -Po "(?<=SHA-256 digest:) .*" | tr -d "[:blank:]")
|
|
||||||
echo "checksum=$checksum" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Create nightly release
|
|
||||||
id: create_release
|
|
||||||
uses: softprops/action-gh-release@v3
|
|
||||||
with:
|
|
||||||
body: |
|
|
||||||
${{ env.RELEASE_NOTES }}
|
|
||||||
|
|
||||||
SHA-256 fingerprints for the 4096-bit signing certificate:
|
|
||||||
```sh
|
|
||||||
${{ steps.checksum.outputs.checksum }}
|
|
||||||
```
|
|
||||||
|
|
||||||
To verify fingerprint:
|
|
||||||
```sh
|
|
||||||
apksigner verify --print-certs [path to APK file] | grep SHA-256
|
|
||||||
```
|
|
||||||
|
|
||||||
### Changelog
|
|
||||||
${{ steps.changelog.outputs.changes }}
|
|
||||||
tag_name: nightly
|
|
||||||
name: nightly
|
|
||||||
draft: false
|
|
||||||
prerelease: true
|
|
||||||
make_latest: false
|
|
||||||
files: |
|
|
||||||
${{ github.workspace }}/temp/**/*.apk
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
@@ -1,152 +0,0 @@
|
|||||||
name: notifications
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened, closed]
|
|
||||||
release:
|
|
||||||
types: [published, prereleased]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
notify:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
PROJECT_NAME: Android
|
|
||||||
|
|
||||||
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}"
|
|
||||||
TEXT=$(echo -e "🆕 **${PROJECT_NAME}** — 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 "✅ **${PROJECT_NAME}** — 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}"
|
|
||||||
if [ "$ACTION" == "prereleased" ]; then
|
|
||||||
ICON="🌙"
|
|
||||||
PREFIX="New Nightly Release"
|
|
||||||
else
|
|
||||||
ICON="🚀"
|
|
||||||
PREFIX="New Release"
|
|
||||||
fi
|
|
||||||
TEXT=$(echo -e "$ICON **${PROJECT_NAME}** — $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 "🆕 **${PROJECT_NAME}** — New Issue #$NUMBER: $TITLE by $USER\n\n$BODY\n\nView Issue: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>🆕 <strong>${PROJECT_NAME}</strong> — 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 "✅ **${PROJECT_NAME}** — Issue Closed #$NUMBER: $TITLE by $USER\n\nView Issue: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>✅ <strong>${PROJECT_NAME}</strong> — 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 **${PROJECT_NAME}** — $PREFIX $NAME ($TAG)\n\n$BODY\n\nView Release: $URL")
|
|
||||||
HTML_MESSAGE=$(echo -e "<p>$ICON <strong>${PROJECT_NAME}</strong> — $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"
|
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
name: on-issue
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [ opened, closed, reopened ]
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
on-issue:
|
||||||
|
name: On new issue
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Send Telegram Message
|
||||||
|
run: |
|
||||||
|
msg_text='${{ github.actor }} updated an issue:
|
||||||
|
status: ${{ github.event.issue.state }} - #${{ github.event.issue.number }} ${{ github.event.issue.title }}
|
||||||
|
https://github.com/zaneschepke/wgtunnel/issues/${{ github.event.issue.number }}'
|
||||||
|
curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \
|
||||||
|
-d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ vars.TELEGRAM_ACTIVITY_TOPIC }}"
|
||||||
|
|
||||||
|
- name: Send Matrix Message
|
||||||
|
run: |
|
||||||
|
msg_text='${{ github.actor }} updated an issue:
|
||||||
|
status: ${{ github.event.issue.state }} - #${{ github.event.issue.number }} ${{ github.event.issue.title }}
|
||||||
|
https://github.com/zaneschepke/wgtunnel/issues/${{ github.event.issue.number }}'
|
||||||
|
# Escape newlines and quotes for JSON
|
||||||
|
formatted_msg=$(echo -n "$msg_text" | sed ':a;N;$ba;s/\n/\\n/g' | sed 's/"/\\"/g')
|
||||||
|
curl -s -X POST \
|
||||||
|
-H "Authorization: Bearer ${{ secrets.MATRIX_TOKEN }}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d '{
|
||||||
|
"msgtype": "m.text",
|
||||||
|
"body": "'"$formatted_msg"'"
|
||||||
|
}' \
|
||||||
|
"https://matrix.org/_matrix/client/v3/rooms/${{ vars.MATRIX_ACTIVITY_TOPIC }}/send/m.room.message/$(date +%s)"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
name: on-pr
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
format_check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 17
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
|
java-version: '17'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Grant execute permission for gradlew
|
||||||
|
run: chmod +x gradlew
|
||||||
|
|
||||||
|
- name: Run ktfmt
|
||||||
|
run: ./gradlew ktfmtCheck
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
name: on-publish
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [ published ]
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
on-publish:
|
||||||
|
name: On publish
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Send Telegram Message
|
||||||
|
run: |
|
||||||
|
msg_text='${{ github.actor }} published a new release:
|
||||||
|
Release: ${{ github.event.release.tag_name }}
|
||||||
|
${{ github.event.release.body }}
|
||||||
|
https://github.com/zaneschepke/wgtunnel/releases/tag/${{ github.event.release.tag_name }}'
|
||||||
|
curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \
|
||||||
|
-d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ vars.TELEGRAM_RELEASE_TOPIC }}"
|
||||||
|
|
||||||
|
- name: Send Matrix Message
|
||||||
|
run: |
|
||||||
|
msg_text='${{ github.actor }} published a new release:
|
||||||
|
Release: ${{ github.event.release.tag_name }}
|
||||||
|
${{ github.event.release.body }}
|
||||||
|
https://github.com/zaneschepke/wgtunnel/releases/tag/${{ github.event.release.tag_name }}'
|
||||||
|
# Escape newlines and quotes for JSON
|
||||||
|
formatted_msg=$(echo -n "$msg_text" | sed ':a;N;$ba;s/\n/\\n/g' | sed 's/"/\\"/g')
|
||||||
|
curl -s -X POST \
|
||||||
|
-H "Authorization: Bearer ${{ secrets.MATRIX_TOKEN }}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d '{
|
||||||
|
"msgtype": "m.text",
|
||||||
|
"body": "'"$formatted_msg"'"
|
||||||
|
}' \
|
||||||
|
"https://matrix.org/_matrix/client/v3/rooms/${{ vars.MATRIX_RELEASE_TOPIC }}/send/m.room.message/$(date +%s)"
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
name: on-pr
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
format_check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v7
|
|
||||||
|
|
||||||
- name: Verify Gradle Wrapper
|
|
||||||
uses: gradle/actions/wrapper-validation@v6
|
|
||||||
|
|
||||||
- name: Set up JDK 21
|
|
||||||
uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
distribution: 'temurin'
|
|
||||||
java-version: '21'
|
|
||||||
cache: gradle
|
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
|
||||||
run: chmod +x gradlew
|
|
||||||
|
|
||||||
- name: Run ktfmt
|
|
||||||
run: ./gradlew ktfmtCheck
|
|
||||||
+166
-128
@@ -1,17 +1,13 @@
|
|||||||
name: publish
|
name: publish
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
schedule:
|
||||||
tags:
|
- cron: "4 3 * * *"
|
||||||
- '[0-9]*.[0-9]*.[0-9]*'
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
track:
|
track:
|
||||||
type: choice
|
type: choice
|
||||||
description: "Google Play release track"
|
description: "Google play release track"
|
||||||
options:
|
options:
|
||||||
- none
|
- none
|
||||||
- internal
|
- internal
|
||||||
@@ -25,130 +21,173 @@ on:
|
|||||||
description: "GitHub release type"
|
description: "GitHub release type"
|
||||||
options:
|
options:
|
||||||
- none
|
- none
|
||||||
|
- prerelease
|
||||||
|
- nightly
|
||||||
- release
|
- release
|
||||||
default: release
|
default: release
|
||||||
required: true
|
required: true
|
||||||
tag_name:
|
tag_name:
|
||||||
description: "Tag name for release"
|
description: "Tag name for release"
|
||||||
required: false
|
required: false
|
||||||
default: 1.1.1
|
default: nightly
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
env:
|
||||||
flavor:
|
UPLOAD_DIR_ANDROID: android_artifacts
|
||||||
type: string
|
|
||||||
description: "Product flavor"
|
permissions:
|
||||||
required: false
|
contents: write
|
||||||
default: standalone
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
check_commits:
|
||||||
|
name: Check for New Commits
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
has_new_commits: ${{ steps.check.outputs.new_commits }}
|
||||||
|
|
||||||
build-fdroid:
|
steps:
|
||||||
if: >-
|
- name: Checkout Repository
|
||||||
${{
|
uses: actions/checkout@v4
|
||||||
github.event_name == 'push' ||
|
with:
|
||||||
inputs.release_type != 'none'
|
fetch-depth: 0 # This fetches all history so we can check commits
|
||||||
}}
|
|
||||||
|
- name: Check for new commits
|
||||||
|
id: check
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
|
run: |
|
||||||
|
# This script checks for commits newer than 23 hours ago
|
||||||
|
NEW_COMMITS=$(git rev-list --count --after="$(date -Iseconds -d '23 hours ago')" ${{ github.sha }})
|
||||||
|
echo "new_commits=$NEW_COMMITS" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
build:
|
||||||
|
if: ${{ 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: ${{ inputs.release_type == '' && 'nightly' || inputs.release_type }}
|
||||||
flavor: fdroid
|
|
||||||
|
|
||||||
build-standalone:
|
publish:
|
||||||
if: >-
|
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
uses: ./.github/workflows/build.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
build_type: ${{ github.event_name == 'push' && 'release' || inputs.release_type }}
|
|
||||||
flavor: standalone
|
|
||||||
|
|
||||||
publish-github:
|
|
||||||
if: >-
|
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
needs:
|
needs:
|
||||||
- build-fdroid
|
- check_commits
|
||||||
- build-standalone
|
- build
|
||||||
|
if: ${{ needs.check_commits.outputs.has_new_commits > 0 && inputs.release_type != 'none' }}
|
||||||
name: publish-github
|
name: publish-github
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GH_USER: ${{ secrets.PAT_USERNAME }}
|
||||||
|
# GH needed for gh cli
|
||||||
|
GH_TOKEN: ${{ secrets.PAT }}
|
||||||
|
GH_REPO: ${{ github.repository }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
ref: ${{ github.event_name == 'push' && github.ref || 'master' }}
|
|
||||||
- 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
|
||||||
|
|
||||||
|
# update latest tag
|
||||||
- name: Set latest tag
|
- name: Set latest tag
|
||||||
uses: rickstaa/action-create-tag@v1
|
uses: rickstaa/action-create-tag@v1
|
||||||
id: tag_creation
|
id: tag_creation
|
||||||
with:
|
with:
|
||||||
tag: "latest"
|
tag: "latest" # or any tag name you wish to use
|
||||||
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: Create Release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: latest
|
||||||
|
release_name: Automated Latest tag
|
||||||
|
draft: false
|
||||||
|
prerelease: 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: ${{ github.event_name == 'schedule' && 'nightly' || steps.latest_release.outputs.tag_name }}
|
||||||
fromTag: "latest"
|
fromTag: "latest"
|
||||||
writeToFile: false
|
writeToFile: false # we won't write to file, just output
|
||||||
|
|
||||||
|
- name: Get version code
|
||||||
|
if: ${{ inputs.release_type == 'release' }}
|
||||||
|
run: |
|
||||||
|
version_code=$(grep "VERSION_CODE" buildSrc/src/main/kotlin/Constants.kt | awk '{print $5}' | tr -d '\n')
|
||||||
|
echo "VERSION_CODE=$version_code" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Push changes
|
||||||
|
if: ${{ inputs.release_type == '' || inputs.release_type == 'nightly' || inputs.release_type == 'prerelease' }}
|
||||||
|
uses: ad-m/github-push-action@master
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.PAT }}
|
||||||
|
branch: ${{ github.ref }}
|
||||||
|
|
||||||
- name: Make download dir
|
- name: Make download dir
|
||||||
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@v4
|
||||||
with:
|
with:
|
||||||
pattern: android_artifacts_*
|
name: ${{ env.UPLOAD_DIR_ANDROID }}
|
||||||
path: ${{ github.workspace }}/temp
|
path: ${{ github.workspace }}/temp
|
||||||
merge-multiple: true
|
|
||||||
|
# Setup TAG_NAME, which is used as a general "name"
|
||||||
|
- if: github.event_name == 'workflow_dispatch'
|
||||||
|
run: echo "TAG_NAME=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
|
||||||
|
- if: github.event_name == 'schedule'
|
||||||
|
run: echo "TAG_NAME=nightly" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Set version release notes
|
- name: Set version release notes
|
||||||
if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }}
|
if: ${{ 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)
|
RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${{ env.VERSION_CODE }}.txt)"
|
||||||
RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_CODE}.txt || echo "No changelog found for ${VERSION_CODE}")"
|
|
||||||
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
|
||||||
|
|
||||||
|
- name: On nightly release notes
|
||||||
|
if: ${{ contains(env.TAG_NAME, 'nightly') }}
|
||||||
|
run: |
|
||||||
|
echo "RELEASE_NOTES=Nightly build for the latest development version of the app." >> $GITHUB_ENV
|
||||||
|
gh release delete nightly --yes || true
|
||||||
|
git push origin :nightly || true
|
||||||
|
|
||||||
|
- name: On prerelease release notes
|
||||||
|
if: ${{ inputs.release_type == 'prerelease' }}
|
||||||
|
run: |
|
||||||
|
echo "RELEASE_NOTES=Testing version of app for specific feature." >> $GITHUB_ENV
|
||||||
|
gh release delete ${{ github.event.inputs.tag_name }} --yes || true
|
||||||
|
|
||||||
- name: Get checksum
|
- name: Get checksum
|
||||||
id: checksum
|
id: checksum
|
||||||
run: |
|
run: |
|
||||||
file_path=$(find ${{ github.workspace }}/temp -type f -iname "*.apk" | head -n 1)
|
file_path=$(find ${{ github.workspace }}/temp -type f -iname "*.apk" | tail -n1)
|
||||||
if [ -z "$file_path" ]; then
|
echo "checksum=$(apksigner verify -print-certs $file_path | grep -Po "(?<=SHA-256 digest:) .*" | tr -d "[:blank:]")" >> $GITHUB_OUTPUT
|
||||||
echo "No APK file found"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
checksum=$(apksigner verify --print-certs "$file_path" | grep -Po "(?<=SHA-256 digest:) .*" | tr -d "[:blank:]")
|
|
||||||
echo "checksum=$checksum" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Create Release
|
|
||||||
|
- name: Create Release with Fastlane changelog notes
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v3
|
uses: softprops/action-gh-release@v2
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
with:
|
with:
|
||||||
body: |
|
body: |
|
||||||
${{ env.RELEASE_NOTES }}
|
${{ env.RELEASE_NOTES }}
|
||||||
|
|
||||||
SHA-256 fingerprints for the 4096-bit signing certificate:
|
SHA-256 fingerprint for the 4096-bit signing certificate:
|
||||||
```sh
|
```sh
|
||||||
${{ steps.checksum.outputs.checksum }}
|
${{ steps.checksum.outputs.checksum }}
|
||||||
```
|
```
|
||||||
@@ -160,88 +199,87 @@ jobs:
|
|||||||
|
|
||||||
### Changelog
|
### Changelog
|
||||||
${{ steps.changelog.outputs.changes }}
|
${{ steps.changelog.outputs.changes }}
|
||||||
tag_name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
tag_name: ${{ env.TAG_NAME }}
|
||||||
name: ${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag_name }}
|
name: ${{ env.TAG_NAME }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: ${{ inputs.release_type == 'prerelease' || inputs.release_type == '' || inputs.release_type == 'nightly' }}
|
||||||
make_latest: true
|
make_latest: ${{ inputs.release_type == 'release' }}
|
||||||
files: |
|
files: |
|
||||||
${{ github.workspace }}/temp/**/*.apk
|
${{ github.workspace }}/temp/*
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
|
||||||
|
|
||||||
publish-fdroid-public:
|
# notify socials
|
||||||
runs-on: ubuntu-latest
|
- name: Trigger on-publish workflow
|
||||||
if: >-
|
if: ${{ inputs.release_type == 'release' }}
|
||||||
${{
|
uses: peter-evans/repository-dispatch@v3
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.release_type != 'none'
|
|
||||||
}}
|
|
||||||
needs:
|
|
||||||
- publish-github
|
|
||||||
steps:
|
|
||||||
- name: Dispatch update for fdroid repo
|
|
||||||
uses: peter-evans/repository-dispatch@v4
|
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.PAT }}
|
token: ${{ secrets.PAT }}
|
||||||
repository: wgtunnel/fdroid
|
event-type: publish-release
|
||||||
|
|
||||||
|
publish-fdroid:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build
|
||||||
|
if: inputs.release_type == 'release'
|
||||||
|
steps:
|
||||||
|
- name: Dispatch update for fdroid repo
|
||||||
|
uses: peter-evans/repository-dispatch@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PAT }}
|
||||||
|
repository: zaneschepke/fdroid
|
||||||
event-type: fdroid-update
|
event-type: fdroid-update
|
||||||
|
|
||||||
build-google-aab:
|
|
||||||
if: >-
|
|
||||||
${{
|
|
||||||
github.event_name == 'push' ||
|
|
||||||
inputs.track != 'none'
|
|
||||||
}}
|
|
||||||
uses: ./.github/workflows/build-aab.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
build_type: release
|
|
||||||
flavor: google
|
|
||||||
|
|
||||||
publish-play:
|
publish-play:
|
||||||
if: ${{ github.event_name == 'push' || inputs.track != 'none' }}
|
if: ${{ inputs.track != 'none' && inputs.track != '' }}
|
||||||
name: Publish to Google Play
|
name: Publish to Google Play
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build-google-aab
|
|
||||||
|
env:
|
||||||
|
SIGNING_KEY_ALIAS: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }}
|
||||||
|
SIGNING_KEY_PASSWORD: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }}
|
||||||
|
SIGNING_STORE_PASSWORD: ${{ secrets.ANDROID_SIGNING_STORE_PASSWORD }}
|
||||||
|
KEY_STORE_FILE: 'android_keystore.jks'
|
||||||
|
KEY_STORE_LOCATION: ${{ github.workspace }}/app/keystore/
|
||||||
|
GH_USER: ${{ secrets.PAT_USERNAME }}
|
||||||
|
GH_TOKEN: ${{ secrets.PAT }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 17
|
||||||
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event_name == 'push' && github.ref || 'master' }}
|
distribution: 'temurin'
|
||||||
|
java-version: '17'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
- name: Download AAB artifact
|
- name: Grant execute permission for gradlew
|
||||||
uses: actions/download-artifact@v8
|
run: chmod +x gradlew
|
||||||
|
|
||||||
|
# Here we need to decode keystore.jks from base64 string and place it
|
||||||
|
# in the folder specified in the release signing configuration
|
||||||
|
- name: Decode Keystore
|
||||||
|
id: decode_keystore
|
||||||
|
uses: timheuer/base64-to-file@v1.2
|
||||||
with:
|
with:
|
||||||
name: google-play-aab
|
fileName: ${{ env.KEY_STORE_FILE }}
|
||||||
path: ${{ github.workspace }}/aab
|
fileDir: ${{ env.KEY_STORE_LOCATION }}
|
||||||
|
encodedString: ${{ secrets.ANDROID_KEYSTORE }}
|
||||||
|
|
||||||
- name: Find exact AAB file path
|
# create keystore path for gradle to read
|
||||||
id: find-aab
|
- name: Create keystore path env var
|
||||||
run: |
|
run: |
|
||||||
AAB_PATH=$(find "${{ github.workspace }}/aab" -name "*.aab" -type f | head -1)
|
store_path=${{ env.KEY_STORE_LOCATION }}${{ env.KEY_STORE_FILE }}
|
||||||
if [ -z "$AAB_PATH" ]; then
|
echo "KEY_STORE_PATH=$store_path" >> $GITHUB_ENV
|
||||||
echo "ERROR: No .aab file found after download!"
|
|
||||||
find "${{ github.workspace }}/aab" -type f
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Found AAB: $AAB_PATH"
|
|
||||||
echo "aab_path=$AAB_PATH" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Create service_account.json
|
- name: Create service_account.json
|
||||||
|
id: createServiceAccount
|
||||||
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
|
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
|
||||||
|
|
||||||
- name: Set up Ruby
|
- name: Deploy with fastlane
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: '3.4'
|
ruby-version: '3.2' # Not needed with a .ruby-version file
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
|
|
||||||
- name: Upload to Google Play
|
- name: Distribute app to Prod track 🚀
|
||||||
run: |
|
run: (cd ${{ github.workspace }} && bundle install && bundle exec fastlane ${{ inputs.track }})
|
||||||
track=${{ github.event_name == 'push' && 'production' || inputs.track }}
|
|
||||||
bundle exec fastlane run upload_to_play_store \
|
|
||||||
track:"$track" \
|
|
||||||
aab:"${{ steps.find-aab.outputs.aab_path }}" \
|
|
||||||
json_key:"service_account.json" \
|
|
||||||
package_name:"com.zaneschepke.wireguardautotunnel" \
|
|
||||||
skip_upload_apk:true
|
|
||||||
|
|||||||
+1
-1
@@ -70,5 +70,5 @@ lint/tmp/
|
|||||||
app/release/output.json
|
app/release/output.json
|
||||||
.idea/codeStyles/
|
.idea/codeStyles/
|
||||||
# where we keep our signing secrets locally
|
# where we keep our signing secrets locally
|
||||||
|
app/signing.properties
|
||||||
/.kotlin/
|
/.kotlin/
|
||||||
/app/keystore/
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
[submodule "hevtunnel/src/main/jni/hev-socks5-tunnel"]
|
|
||||||
path = hevtunnel/src/main/jni/hev-socks5-tunnel
|
|
||||||
url = https://github.com/heiher/hev-socks5-tunnel
|
|
||||||
[submodule "tunnel/tools/amneziawg-tools"]
|
|
||||||
path = tunnel/tools/amneziawg-tools
|
|
||||||
url = https://github.com/amnezia-vpn/amneziawg-tools
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
|
||||||
gem "fastlane"
|
gem "fastlane"
|
||||||
gem "multi_json"
|
|
||||||
@@ -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://apt.izzysoft.de/fdroid/index/apk/com.zaneschepke.wireguardautotunnel)
|
[](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,42 +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/)
|
||||||
|
and [AmneziaWG](https://docs.amnezia.org/documentation/amnezia-wg/), with its primary feature of auto-tunneling (on-demand tunneling).
|
||||||
|
|
||||||
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, AmneziaWG support, different app modes like **Lockdown** (a custom kill switch for leak prevention), and **Local Proxy** (expose a tunnel over a local SOCKS5/HTTP proxy server) for enhanced privacy, censorship resistance, and flexibility.
|
|
||||||
|
|
||||||
</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
|
||||||
|
|
||||||
- **Auto-Tunneling:** Automatically activate tunnels based on your device's active network details.
|
* Add tunnels via .conf file, zip, manual entry, clipboard, or QR code
|
||||||
- **Deferred Endpoint Bootstrapping:** Safely resolves endpoints and updates peers after the tunnel is up for better reliability and leak protection on startup.
|
* Auto-tunnel based on Wi-Fi SSID, ethernet, or mobile data
|
||||||
- **Handshake Monitoring:** Real-time handshake monitoring for instant tunnel health feedback.
|
* Split tunneling by application with search
|
||||||
- **AmneziaWG Support:** Full support for AmneziaWG 2.0, providing robust censorship protection.
|
* Support for kernel and userspace modes
|
||||||
- **Split Tunneling:** Flexible support for routing specific apps or traffic through the VPN.
|
* Amnezia support for userspace mode for DPI/censorship protection
|
||||||
- **Local Proxy Mode:** Expose WireGuard tunnels over a local SOCKS5 or HTTP proxy to browsers or firewall apps (like AdGuard).
|
* Pre/Post Up/Down scripts support for all modes on a rooted device
|
||||||
- **Lockdown Mode:** Advanced in-app kill switch that blocks all traffic while the tunnel is down.
|
* Always-On VPN support
|
||||||
- **Quick Controls:** Quick Settings tile and home screen shortcuts for easy toggling.
|
* Export tunnels to zip
|
||||||
- **Remote Control Support:** Intent-based automation for controlling tunnels and auto-tunneling from automation apps (like Tasker).
|
* Quick tile support for tunnel toggling, auto-tunneling
|
||||||
- **Dynamic DNS Handling:** Automatically detect and update endpoints on server IP changes without requiring a restart.
|
* Shortcuts support for tunnel toggling, auto-tunneling
|
||||||
- **IPv6 Endpoints:** Automatically upgrade to IPv6 endpoints or fall back to IPv4 based on network conditions without requiring a restart.
|
* Intent automation support for all tunnels
|
||||||
- **Android TV Support:** Full support for nearly all features on Android TV.
|
* In app VPN kill switch with LAN bypass
|
||||||
|
* Automatic auto-tunneling service and/or tunnel restart after reboot or app update
|
||||||
|
* Battery preservation measures
|
||||||
|
* 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
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -99,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
|
||||||
|
|||||||
+1
-2
@@ -1,3 +1,2 @@
|
|||||||
/build
|
/build
|
||||||
/release
|
/release
|
||||||
/src/main/assets/licenses.json
|
|
||||||
+151
-188
@@ -1,74 +1,61 @@
|
|||||||
import com.android.build.api.dsl.ApplicationExtension
|
|
||||||
import com.android.build.api.variant.FilterConfiguration
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application)
|
alias(libs.plugins.android.application)
|
||||||
|
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)
|
||||||
alias(libs.plugins.grgit)
|
alias(libs.plugins.grgit)
|
||||||
alias(libs.plugins.licensee)
|
|
||||||
alias(libs.plugins.aboutlibraries)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ksp {
|
val versionFile = file("$rootDir/versionCode.txt")
|
||||||
arg("room.schemaLocation", "$projectDir/schemas")
|
|
||||||
}
|
|
||||||
|
|
||||||
licensee {
|
val versionCodeIncrement =
|
||||||
allowedLicenses().forEach { allow(it) }
|
with(getBuildTaskName().lowercase()) {
|
||||||
allowedLicenseUrls().forEach { allowUrl(it) }
|
when {
|
||||||
allowDependency("com.github.T8RIN.QuickieExtended", "quickie-foss", "1.18.1") {
|
this.contains(Constants.NIGHTLY) || this.contains(Constants.PRERELEASE) -> {
|
||||||
because("FOSS library, but JitPack doesn't publish license metadata")
|
if (versionFile.exists()) {
|
||||||
allow("Apache-2.0")
|
versionFile.readText().trim().toInt() + 1
|
||||||
|
} else {
|
||||||
|
1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else -> 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
allowDependency("com.github.topjohnwu.libsu", "core", "6.0.0") {
|
android {
|
||||||
because("FOSS library, but JitPack doesn't publish license metadata")
|
|
||||||
allow("Apache-2.0")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
configure<ApplicationExtension> {
|
|
||||||
namespace = Constants.APP_ID
|
namespace = Constants.APP_ID
|
||||||
compileSdk = Constants.TARGET_SDK
|
compileSdk = Constants.TARGET_SDK
|
||||||
|
|
||||||
androidResources { generateLocaleConfig = true }
|
androidResources { generateLocaleConfig = true }
|
||||||
|
|
||||||
|
// reproducibility
|
||||||
dependenciesInfo {
|
dependenciesInfo {
|
||||||
|
// Disables dependency metadata when building APKs.
|
||||||
includeInApk = false
|
includeInApk = false
|
||||||
|
// Disables dependency metadata when building Android App Bundles.
|
||||||
includeInBundle = false
|
includeInBundle = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// fix okhttp proguard issue
|
|
||||||
packaging { resources { pickFirsts.add("okhttp3/internal/publicsuffix/publicsuffixes.gz") } }
|
|
||||||
|
|
||||||
splits {
|
|
||||||
abi {
|
|
||||||
val noSplits = providers.gradleProperty("noSplits").isPresent
|
|
||||||
isEnable = !noSplits
|
|
||||||
reset()
|
|
||||||
include("armeabi-v7a", "arm64-v8a")
|
|
||||||
isUniversalApk = !noSplits
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = Constants.APP_ID
|
applicationId = Constants.APP_ID
|
||||||
minSdk = Constants.MIN_SDK
|
minSdk = Constants.MIN_SDK
|
||||||
targetSdk = Constants.TARGET_SDK
|
targetSdk = Constants.TARGET_SDK
|
||||||
versionCode = Constants.VERSION_CODE
|
versionCode = Constants.VERSION_CODE + versionCodeIncrement
|
||||||
versionName = Constants.VERSION_NAME
|
versionName = determineVersionName()
|
||||||
|
|
||||||
experimentalProperties["android.experimental.disableGitVersion"] = true
|
ksp { arg("room.schemaLocation", "$projectDir/schemas") }
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
getByName("debug").assets.directories += "$projectDir/schemas"
|
getByName("debug").assets.srcDirs(files("$projectDir/schemas")) // Room
|
||||||
}
|
}
|
||||||
|
|
||||||
val languagesProvider = project.languageListProvider()
|
buildConfigField(
|
||||||
val languagesArray = buildLanguagesArray(languagesProvider.get())
|
"String[]",
|
||||||
buildConfigField("String[]", "LANGUAGES", "new String[]{ $languagesArray }")
|
"LANGUAGES",
|
||||||
|
"new String[]{ ${languageList().joinToString(separator = ", ") { "\"$it\"" }} }",
|
||||||
|
)
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables { useSupportLibrary = true }
|
vectorDrawables { useSupportLibrary = true }
|
||||||
@@ -76,18 +63,15 @@ configure<ApplicationExtension> {
|
|||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
create(Constants.RELEASE) {
|
create(Constants.RELEASE) {
|
||||||
storeFile = file(System.getenv("KEY_STORE_PATH") ?: "keystore/android_keystore.jks")
|
storeFile = getStoreFile()
|
||||||
storePassword =
|
storePassword = getSigningProperty(Constants.STORE_PASS_VAR)
|
||||||
LocalProperties.get("SIGNING_STORE_PASSWORD")
|
keyAlias = getSigningProperty(Constants.KEY_ALIAS_VAR)
|
||||||
?: System.getenv("SIGNING_STORE_PASSWORD")
|
keyPassword = getSigningProperty(Constants.KEY_PASS_VAR)
|
||||||
keyAlias =
|
|
||||||
LocalProperties.get("SIGNING_KEY_ALIAS") ?: System.getenv("SIGNING_KEY_ALIAS")
|
|
||||||
keyPassword =
|
|
||||||
LocalProperties.get("SIGNING_KEY_PASSWORD") ?: System.getenv("SIGNING_KEY_PASSWORD")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
// don't strip
|
||||||
packaging.jniLibs.keepDebugSymbols.addAll(
|
packaging.jniLibs.keepDebugSymbols.addAll(
|
||||||
listOf("libwg-go.so", "libwg-quick.so", "libwg.so")
|
listOf("libwg-go.so", "libwg-quick.so", "libwg.so")
|
||||||
)
|
)
|
||||||
@@ -101,159 +85,82 @@ configure<ApplicationExtension> {
|
|||||||
"proguard-rules.pro",
|
"proguard-rules.pro",
|
||||||
)
|
)
|
||||||
signingConfig = signingConfigs.getByName(Constants.RELEASE)
|
signingConfig = signingConfigs.getByName(Constants.RELEASE)
|
||||||
manifestPlaceholders["providerAuthority"] = "${Constants.APP_NAME}.provider"
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider\"")
|
||||||
buildConfigField("String", "FILE_PROVIDER_AUTHORITY", "\"${Constants.APP_NAME}.provider\"")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
resValue("string", "app_name", "WG Tunnel Debug")
|
resValue("string", "app_name", "WG Tunnel - Debug")
|
||||||
isDebuggable = true
|
isDebuggable = true
|
||||||
manifestPlaceholders["providerAuthority"] = "${Constants.APP_NAME}.provider.debug"
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.debug\"")
|
||||||
buildConfigField("String", "FILE_PROVIDER_AUTHORITY", "\"${Constants.APP_NAME}.provider.debug\"")
|
}
|
||||||
|
|
||||||
|
create(Constants.PRERELEASE) {
|
||||||
|
initWith(buildTypes.getByName(Constants.RELEASE))
|
||||||
|
applicationIdSuffix = ".prerelease"
|
||||||
|
resValue("string", "app_name", "WG Tunnel - Pre")
|
||||||
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.pre\"")
|
||||||
}
|
}
|
||||||
|
|
||||||
create(Constants.NIGHTLY) {
|
create(Constants.NIGHTLY) {
|
||||||
initWith(buildTypes.getByName(Constants.RELEASE))
|
initWith(buildTypes.getByName(Constants.RELEASE))
|
||||||
applicationIdSuffix = ".nightly"
|
applicationIdSuffix = ".nightly"
|
||||||
resValue("string", "app_name", "WG Tunnel Nightly")
|
resValue("string", "app_name", "WG Tunnel - Nightly")
|
||||||
manifestPlaceholders["providerAuthority"] = "${Constants.APP_NAME}.provider.nightly"
|
resValue("string", "provider", "\"${Constants.APP_NAME}.provider.nightly\"")
|
||||||
buildConfigField("String", "FILE_PROVIDER_AUTHORITY", "\"${Constants.APP_NAME}.provider.nightly\"")
|
}
|
||||||
|
|
||||||
|
applicationVariants.all {
|
||||||
|
val variant = this
|
||||||
|
variant.outputs
|
||||||
|
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
|
||||||
|
.forEach { output ->
|
||||||
|
val outputFileName =
|
||||||
|
"${Constants.APP_NAME}-${variant.flavorName}-" +
|
||||||
|
"${variant.buildType.name}-${variant.versionName}.apk"
|
||||||
|
output.outputFileName = outputFileName
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
flavorDimensions.add(Constants.TYPE)
|
||||||
flavorDimensions.add("type")
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
create("fdroid") {
|
create("fdroid") {
|
||||||
dimension = "type"
|
dimension = Constants.TYPE
|
||||||
buildConfigField("String", "FLAVOR", "\"fdroid\"")
|
proguardFile("fdroid-rules.pro")
|
||||||
}
|
|
||||||
create("google") {
|
|
||||||
dimension = "type"
|
|
||||||
buildConfigField("String", "FLAVOR", "\"google\"")
|
|
||||||
}
|
|
||||||
create("standalone") {
|
|
||||||
dimension = "type"
|
|
||||||
buildConfigField("String", "FLAVOR", "\"standalone\"")
|
|
||||||
}
|
}
|
||||||
|
create("general") { dimension = Constants.TYPE }
|
||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
isCoreLibraryDesugaringEnabled = true
|
isCoreLibraryDesugaringEnabled = true
|
||||||
}
|
}
|
||||||
|
kotlinOptions { jvmTarget = Constants.JVM_TARGET }
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
compose = true
|
compose = true
|
||||||
buildConfig = true
|
buildConfig = true
|
||||||
resValues = true
|
|
||||||
}
|
}
|
||||||
packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } }
|
packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } }
|
||||||
}
|
}
|
||||||
|
|
||||||
androidComponents {
|
|
||||||
onVariants { variant ->
|
|
||||||
val isNightly = project.isNightlyBuild()
|
|
||||||
|
|
||||||
if (isNightly) {
|
|
||||||
variant.outputs.forEach { output ->
|
|
||||||
|
|
||||||
output.versionCode.set(
|
|
||||||
output.versionCode.get() + project.getVersionCodeIncrement()
|
|
||||||
)
|
|
||||||
|
|
||||||
val currentVersion = output.versionName.get()
|
|
||||||
val nextVersion = bumpToNextPatchVersion(currentVersion)
|
|
||||||
val gitHash = project.getGitCommitHash()
|
|
||||||
|
|
||||||
output.versionName.set("$nextVersion-nightly+git.$gitHash")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val abiNameMap = mapOf(
|
|
||||||
"armeabi-v7a" to "armv7",
|
|
||||||
"arm64-v8a" to "arm64",
|
|
||||||
"x86" to "x86",
|
|
||||||
"x86_64" to "x64",
|
|
||||||
)
|
|
||||||
|
|
||||||
variant.outputs.forEach { output ->
|
|
||||||
val abi = output.filters.find { it.filterType == FilterConfiguration.FilterType.ABI }?.identifier
|
|
||||||
val flavorName = variant.productFlavors.joinToString("-") { it.second }
|
|
||||||
val versionName = output.versionName.get()
|
|
||||||
val baseFileName = "${Constants.APP_NAME}-${flavorName}-v${versionName}"
|
|
||||||
|
|
||||||
val outputFileName = if (!abi.isNullOrEmpty()) {
|
|
||||||
val shortAbiName = abiNameMap.getOrDefault(abi, abi)
|
|
||||||
"${baseFileName}-${shortAbiName}.apk"
|
|
||||||
} else {
|
|
||||||
"${baseFileName}.apk"
|
|
||||||
}
|
|
||||||
|
|
||||||
output.outputFileName.set(outputFileName)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":logcatter"))
|
implementation(project(":logcatter"))
|
||||||
implementation(project(":networkmonitor"))
|
implementation(project(":networkmonitor"))
|
||||||
implementation(project(":tunnel"))
|
|
||||||
|
|
||||||
// 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.bundles.androidx.appcompat)
|
|
||||||
implementation(libs.bundles.androidx.storage)
|
|
||||||
|
|
||||||
// Compose setup
|
// helpers for implementing LifecycleOwner in a Service
|
||||||
implementation(platform(libs.androidx.compose.bom))
|
implementation(libs.androidx.lifecycle.service)
|
||||||
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
|
// test
|
||||||
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)
|
|
||||||
|
|
||||||
// Shizuku
|
|
||||||
implementation(libs.bundles.shizuku)
|
|
||||||
|
|
||||||
// UI utilities
|
|
||||||
implementation(libs.bundles.ui.utilities)
|
|
||||||
implementation(libs.lottie.compose)
|
|
||||||
implementation(libs.sonner)
|
|
||||||
implementation(libs.aboutlibraries.compose)
|
|
||||||
|
|
||||||
// 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)
|
||||||
@@ -264,27 +171,83 @@ 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)
|
// tunnel
|
||||||
|
implementation(libs.tunnel)
|
||||||
|
implementation(libs.amneziawg.android)
|
||||||
|
coreLibraryDesugaring(libs.desugar.jdk.libs)
|
||||||
|
|
||||||
// Room database backup
|
// logging
|
||||||
implementation(libs.roomdatabasebackup) {
|
implementation(libs.timber)
|
||||||
exclude(group = "org.reactivestreams", module = "reactive-streams")
|
|
||||||
}
|
|
||||||
|
|
||||||
// DI
|
// compose navigation
|
||||||
implementation(platform(libs.koin.bom))
|
implementation(libs.androidx.navigation.compose)
|
||||||
implementation(libs.koin.core)
|
implementation(libs.androidx.hilt.navigation.compose)
|
||||||
implementation(libs.koin.android)
|
|
||||||
implementation(libs.koin.compose.viewmodel)
|
// hilt
|
||||||
implementation(libs.koin.androidx.compose)
|
implementation(libs.hilt.android)
|
||||||
implementation(libs.koin.androidx.navigation)
|
ksp(libs.hilt.android.compiler)
|
||||||
implementation(libs.koin.lazy)
|
ksp(libs.androidx.hilt.compiler)
|
||||||
implementation(libs.koin.worker)
|
|
||||||
|
// accompanist
|
||||||
|
implementation(libs.accompanist.permissions)
|
||||||
|
implementation(libs.accompanist.drawablepainter)
|
||||||
|
|
||||||
|
// storage
|
||||||
|
implementation(libs.androidx.room.runtime)
|
||||||
|
ksp(libs.androidx.room.compiler)
|
||||||
|
implementation(libs.androidx.room.ktx)
|
||||||
|
implementation(libs.androidx.datastore.preferences)
|
||||||
|
|
||||||
|
// lifecycle
|
||||||
|
implementation(libs.lifecycle.runtime.compose)
|
||||||
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
||||||
|
implementation(libs.androidx.lifecycle.process)
|
||||||
|
|
||||||
|
// serialization
|
||||||
|
implementation(libs.kotlinx.serialization.json)
|
||||||
|
|
||||||
|
// ui
|
||||||
|
implementation(libs.zxing.android.embedded)
|
||||||
|
implementation(libs.material.icons.extended)
|
||||||
|
|
||||||
|
// bio
|
||||||
|
implementation(libs.androidx.biometric.ktx)
|
||||||
|
implementation(libs.pin.lock.compose)
|
||||||
|
|
||||||
|
// shortcuts
|
||||||
|
implementation(libs.androidx.core)
|
||||||
|
|
||||||
|
// splash
|
||||||
|
implementation(libs.androidx.core.splashscreen)
|
||||||
|
|
||||||
|
// worker
|
||||||
|
implementation(libs.androidx.work.runtime)
|
||||||
|
implementation(libs.androidx.hilt.work)
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://gist.github.com/obfusk/61046e09cee352ae6dd109911534b12e#fix-proposed-by-linsui-disable-baseline-profiles
|
fun determineVersionName(): String {
|
||||||
tasks.configureEach {
|
return with(getBuildTaskName().lowercase()) {
|
||||||
if (name.contains("ArtProfile")) {
|
when {
|
||||||
enabled = false
|
contains(Constants.NIGHTLY) || contains(Constants.PRERELEASE) ->
|
||||||
|
Constants.VERSION_NAME + "-${grgitService.service.get().grgit.head().abbreviatedId}"
|
||||||
|
else -> Constants.VERSION_NAME
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val incrementVersionCode by
|
||||||
|
tasks.registering {
|
||||||
|
doLast {
|
||||||
|
val versionFile = file("$rootDir/versionCode.txt")
|
||||||
|
if (versionFile.exists()) {
|
||||||
|
versionFile.writeText(versionCodeIncrement.toString())
|
||||||
|
println("Incremented versionCode to $versionCodeIncrement")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.whenTaskAdded {
|
||||||
|
if (name.startsWith("assemble") && !name.lowercase().contains("debug")) {
|
||||||
|
dependsOn(incrementVersionCode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
-1
@@ -1 +0,0 @@
|
|||||||
-dontwarn javax.lang.model.**
|
|
||||||
@@ -155,7 +155,9 @@
|
|||||||
"columnNames": [
|
"columnNames": [
|
||||||
"id"
|
"id"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"indices": [],
|
||||||
|
"foreignKeys": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"tableName": "TunnelConfig",
|
"tableName": "TunnelConfig",
|
||||||
@@ -225,18 +227,21 @@
|
|||||||
"fieldPath": "pingInterval",
|
"fieldPath": "pingInterval",
|
||||||
"columnName": "ping_interval",
|
"columnName": "ping_interval",
|
||||||
"affinity": "INTEGER",
|
"affinity": "INTEGER",
|
||||||
|
"notNull": false,
|
||||||
"defaultValue": "null"
|
"defaultValue": "null"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldPath": "pingCooldown",
|
"fieldPath": "pingCooldown",
|
||||||
"columnName": "ping_cooldown",
|
"columnName": "ping_cooldown",
|
||||||
"affinity": "INTEGER",
|
"affinity": "INTEGER",
|
||||||
|
"notNull": false,
|
||||||
"defaultValue": "null"
|
"defaultValue": "null"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldPath": "pingIp",
|
"fieldPath": "pingIp",
|
||||||
"columnName": "ping_ip",
|
"columnName": "ping_ip",
|
||||||
"affinity": "TEXT",
|
"affinity": "TEXT",
|
||||||
|
"notNull": false,
|
||||||
"defaultValue": "null"
|
"defaultValue": "null"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -270,9 +275,11 @@
|
|||||||
"orders": [],
|
"orders": [],
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"foreignKeys": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"views": [],
|
||||||
"setupQueries": [
|
"setupQueries": [
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
"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, 'ae51793c4d09ea3194ecd26f0606f35c')"
|
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ae51793c4d09ea3194ecd26f0606f35c')"
|
||||||
|
|||||||
@@ -1,295 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 17,
|
|
||||||
"identityHash": "380d82359c99933cc9ce783347c4ec31",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL, `trusted_network_ssids` TEXT NOT NULL, `is_always_on_vpn_enabled` INTEGER NOT NULL, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_enabled` INTEGER NOT NULL DEFAULT false, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT false, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `is_amnezia_enabled` INTEGER NOT NULL DEFAULT false, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT false, `is_vpn_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT false, `split_tunnel_apps` TEXT NOT NULL DEFAULT '', `wifi_detection_method` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelEnabled",
|
|
||||||
"columnName": "is_kernel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAmneziaEnabled",
|
|
||||||
"columnName": "is_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isVpnKillSwitchEnabled",
|
|
||||||
"columnName": "is_vpn_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelKillSwitchEnabled",
|
|
||||||
"columnName": "is_kernel_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isDisableKillSwitchOnTrustedEnabled",
|
|
||||||
"columnName": "is_disable_kill_switch_on_trusted_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "splitTunnelApps",
|
|
||||||
"columnName": "split_tunnel_apps",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "TunnelConfig",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `wg_quick` TEXT NOT NULL, `tunnel_networks` TEXT NOT NULL DEFAULT '', `is_mobile_data_tunnel` INTEGER NOT NULL DEFAULT false, `is_primary_tunnel` INTEGER NOT NULL DEFAULT false, `am_quick` TEXT NOT NULL DEFAULT '', `is_Active` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `ping_interval` INTEGER DEFAULT null, `ping_cooldown` INTEGER DEFAULT null, `ping_ip` TEXT DEFAULT null, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `is_ipv4_preferred` INTEGER NOT NULL DEFAULT true)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wgQuick",
|
|
||||||
"columnName": "wg_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelNetworks",
|
|
||||||
"columnName": "tunnel_networks",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMobileDataTunnel",
|
|
||||||
"columnName": "is_mobile_data_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPrimaryTunnel",
|
|
||||||
"columnName": "is_primary_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "amQuick",
|
|
||||||
"columnName": "am_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isActive",
|
|
||||||
"columnName": "is_Active",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingInterval",
|
|
||||||
"columnName": "ping_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingCooldown",
|
|
||||||
"columnName": "ping_cooldown",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingIp",
|
|
||||||
"columnName": "ping_ip",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv4Preferred",
|
|
||||||
"columnName": "is_ipv4_preferred",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_TunnelConfig_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '380d82359c99933cc9ce783347c4ec31')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 18,
|
|
||||||
"identityHash": "505728bad740c12bab998a066b569333",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL, `trusted_network_ssids` TEXT NOT NULL, `is_always_on_vpn_enabled` INTEGER NOT NULL, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_enabled` INTEGER NOT NULL DEFAULT false, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT false, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `is_amnezia_enabled` INTEGER NOT NULL DEFAULT false, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT false, `is_vpn_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT false, `split_tunnel_apps` TEXT NOT NULL DEFAULT '', `wifi_detection_method` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelEnabled",
|
|
||||||
"columnName": "is_kernel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAmneziaEnabled",
|
|
||||||
"columnName": "is_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isVpnKillSwitchEnabled",
|
|
||||||
"columnName": "is_vpn_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelKillSwitchEnabled",
|
|
||||||
"columnName": "is_kernel_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isDisableKillSwitchOnTrustedEnabled",
|
|
||||||
"columnName": "is_disable_kill_switch_on_trusted_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "splitTunnelApps",
|
|
||||||
"columnName": "split_tunnel_apps",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "TunnelConfig",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `wg_quick` TEXT NOT NULL, `tunnel_networks` TEXT NOT NULL DEFAULT '', `is_mobile_data_tunnel` INTEGER NOT NULL DEFAULT false, `is_primary_tunnel` INTEGER NOT NULL DEFAULT false, `am_quick` TEXT NOT NULL DEFAULT '', `is_Active` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `ping_interval` INTEGER DEFAULT null, `ping_cooldown` INTEGER DEFAULT null, `ping_ip` TEXT DEFAULT null, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `is_ipv4_preferred` INTEGER NOT NULL DEFAULT true, `position` INTEGER NOT NULL DEFAULT 0)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wgQuick",
|
|
||||||
"columnName": "wg_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelNetworks",
|
|
||||||
"columnName": "tunnel_networks",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMobileDataTunnel",
|
|
||||||
"columnName": "is_mobile_data_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPrimaryTunnel",
|
|
||||||
"columnName": "is_primary_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "amQuick",
|
|
||||||
"columnName": "am_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isActive",
|
|
||||||
"columnName": "is_Active",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingInterval",
|
|
||||||
"columnName": "ping_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingCooldown",
|
|
||||||
"columnName": "ping_cooldown",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingIp",
|
|
||||||
"columnName": "ping_ip",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv4Preferred",
|
|
||||||
"columnName": "is_ipv4_preferred",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "position",
|
|
||||||
"columnName": "position",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_TunnelConfig_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '505728bad740c12bab998a066b569333')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,316 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 19,
|
|
||||||
"identityHash": "82bdb96b7a9f8695a34ad1ec21d9aea8",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "Settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_tunnel_enabled` INTEGER NOT NULL, `is_tunnel_on_mobile_data_enabled` INTEGER NOT NULL, `trusted_network_ssids` TEXT NOT NULL, `is_always_on_vpn_enabled` INTEGER NOT NULL, `is_tunnel_on_ethernet_enabled` INTEGER NOT NULL, `is_shortcuts_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_wifi_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_enabled` INTEGER NOT NULL DEFAULT false, `is_restore_on_boot_enabled` INTEGER NOT NULL DEFAULT false, `is_multi_tunnel_enabled` INTEGER NOT NULL DEFAULT false, `is_ping_enabled` INTEGER NOT NULL DEFAULT false, `is_amnezia_enabled` INTEGER NOT NULL DEFAULT false, `is_wildcards_enabled` INTEGER NOT NULL DEFAULT false, `is_stop_on_no_internet_enabled` INTEGER NOT NULL DEFAULT false, `is_vpn_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_kernel_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `is_lan_on_kill_switch_enabled` INTEGER NOT NULL DEFAULT false, `debounce_delay_seconds` INTEGER NOT NULL DEFAULT 3, `is_disable_kill_switch_on_trusted_enabled` INTEGER NOT NULL DEFAULT false, `is_tunnel_on_unsecure_enabled` INTEGER NOT NULL DEFAULT false, `wifi_detection_method` INTEGER NOT NULL DEFAULT 0, `is_ping_monitoring_enabled` INTEGER NOT NULL DEFAULT true, `tunnel_ping_interval_sec` INTEGER NOT NULL DEFAULT 30, `tunnel_ping_attempts` INTEGER NOT NULL DEFAULT 3, `tunnel_ping_timeout_sec` INTEGER)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAutoTunnelEnabled",
|
|
||||||
"columnName": "is_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnMobileDataEnabled",
|
|
||||||
"columnName": "is_tunnel_on_mobile_data_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedNetworkSSIDs",
|
|
||||||
"columnName": "trusted_network_ssids",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAlwaysOnVpnEnabled",
|
|
||||||
"columnName": "is_always_on_vpn_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnEthernetEnabled",
|
|
||||||
"columnName": "is_tunnel_on_ethernet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isShortcutsEnabled",
|
|
||||||
"columnName": "is_shortcuts_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnWifiEnabled",
|
|
||||||
"columnName": "is_tunnel_on_wifi_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelEnabled",
|
|
||||||
"columnName": "is_kernel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isRestoreOnBootEnabled",
|
|
||||||
"columnName": "is_restore_on_boot_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMultiTunnelEnabled",
|
|
||||||
"columnName": "is_multi_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingEnabled",
|
|
||||||
"columnName": "is_ping_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isAmneziaEnabled",
|
|
||||||
"columnName": "is_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isWildcardsEnabled",
|
|
||||||
"columnName": "is_wildcards_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isStopOnNoInternetEnabled",
|
|
||||||
"columnName": "is_stop_on_no_internet_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isVpnKillSwitchEnabled",
|
|
||||||
"columnName": "is_vpn_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isKernelKillSwitchEnabled",
|
|
||||||
"columnName": "is_kernel_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLanOnKillSwitchEnabled",
|
|
||||||
"columnName": "is_lan_on_kill_switch_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "debounceDelaySeconds",
|
|
||||||
"columnName": "debounce_delay_seconds",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isDisableKillSwitchOnTrustedEnabled",
|
|
||||||
"columnName": "is_disable_kill_switch_on_trusted_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isTunnelOnUnsecureEnabled",
|
|
||||||
"columnName": "is_tunnel_on_unsecure_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wifiDetectionMethod",
|
|
||||||
"columnName": "wifi_detection_method",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPingMonitoringEnabled",
|
|
||||||
"columnName": "is_ping_monitoring_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingIntervalSeconds",
|
|
||||||
"columnName": "tunnel_ping_interval_sec",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "30"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingAttempts",
|
|
||||||
"columnName": "tunnel_ping_attempts",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelPingTimeoutSeconds",
|
|
||||||
"columnName": "tunnel_ping_timeout_sec",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "TunnelConfig",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `wg_quick` TEXT NOT NULL, `tunnel_networks` TEXT NOT NULL DEFAULT '', `is_mobile_data_tunnel` INTEGER NOT NULL DEFAULT false, `is_primary_tunnel` INTEGER NOT NULL DEFAULT false, `am_quick` TEXT NOT NULL DEFAULT '', `is_Active` INTEGER NOT NULL DEFAULT false, `restart_on_ping_failure` INTEGER NOT NULL DEFAULT false, `ping_target` TEXT DEFAULT null, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `is_ipv4_preferred` INTEGER NOT NULL DEFAULT true, `position` INTEGER NOT NULL DEFAULT 0, `auto_tunnel_apps` TEXT NOT NULL DEFAULT '[]')",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "wgQuick",
|
|
||||||
"columnName": "wg_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelNetworks",
|
|
||||||
"columnName": "tunnel_networks",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isMobileDataTunnel",
|
|
||||||
"columnName": "is_mobile_data_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPrimaryTunnel",
|
|
||||||
"columnName": "is_primary_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "amQuick",
|
|
||||||
"columnName": "am_quick",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isActive",
|
|
||||||
"columnName": "is_Active",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "restartOnPingFailure",
|
|
||||||
"columnName": "restart_on_ping_failure",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pingTarget",
|
|
||||||
"columnName": "ping_target",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"defaultValue": "null"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv4Preferred",
|
|
||||||
"columnName": "is_ipv4_preferred",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "position",
|
|
||||||
"columnName": "position",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "autoTunnelApps",
|
|
||||||
"columnName": "auto_tunnel_apps",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "'[]'"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [
|
|
||||||
{
|
|
||||||
"name": "index_TunnelConfig_name",
|
|
||||||
"unique": true,
|
|
||||||
"columnNames": [
|
|
||||||
"name"
|
|
||||||
],
|
|
||||||
"orders": [],
|
|
||||||
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_TunnelConfig_name` ON `${TABLE_NAME}` (`name`)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '82bdb96b7a9f8695a34ad1ec21d9aea8')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,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')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,506 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 30,
|
|
||||||
"identityHash": "28560c6b408d8f5ef28844723e940395",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` 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, `quick_config` TEXT NOT NULL DEFAULT '', `dynamic_dns` INTEGER NOT NULL DEFAULT false, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `prefer_ipv6` INTEGER NOT NULL DEFAULT false, `position` INTEGER NOT NULL DEFAULT 0, `auto_tunnel_apps` TEXT NOT NULL DEFAULT '[]', `is_metered` INTEGER NOT NULL DEFAULT false, `ipv4_fallback` INTEGER NOT NULL DEFAULT false, `ipv6_restore` INTEGER NOT NULL DEFAULT false)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"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": "quickConfig",
|
|
||||||
"columnName": "quick_config",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dynamicDnsEnabled",
|
|
||||||
"columnName": "dynamic_dns",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv6Preferred",
|
|
||||||
"columnName": "prefer_ipv6",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv4FallbackEnabled",
|
|
||||||
"columnName": "ipv4_fallback",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv6RestoreEnabled",
|
|
||||||
"columnName": "ipv6_restore",
|
|
||||||
"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, `screen_recording_security` INTEGER NOT NULL DEFAULT 1, `global_amnezia_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_scripting_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": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelMode",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "screenRecordingSecurityEnabled",
|
|
||||||
"columnName": "screen_recording_security",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalAmneziaEnabled",
|
|
||||||
"columnName": "global_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelScriptingEnabled",
|
|
||||||
"columnName": "tunnel_scripting_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, `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": "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_local_logs_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_statistics_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_statistics_poll_interval` INTEGER NOT NULL DEFAULT 3)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsEnabled",
|
|
||||||
"columnName": "tunnel_statistics_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsPollInterval",
|
|
||||||
"columnName": "tunnel_statistics_poll_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '28560c6b408d8f5ef28844723e940395')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,513 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 31,
|
|
||||||
"identityHash": "1dee3799f1c6526c48723fd2fee58d11",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` 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, `quick_config` TEXT NOT NULL DEFAULT '', `dynamic_dns` INTEGER NOT NULL DEFAULT false, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `prefer_ipv6` INTEGER NOT NULL DEFAULT false, `position` INTEGER NOT NULL DEFAULT 0, `auto_tunnel_apps` TEXT NOT NULL DEFAULT '[]', `is_metered` INTEGER NOT NULL DEFAULT false, `ipv4_fallback` INTEGER NOT NULL DEFAULT false, `ipv6_restore` INTEGER NOT NULL DEFAULT false)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"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": "quickConfig",
|
|
||||||
"columnName": "quick_config",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dynamicDnsEnabled",
|
|
||||||
"columnName": "dynamic_dns",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv6Preferred",
|
|
||||||
"columnName": "prefer_ipv6",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv4FallbackEnabled",
|
|
||||||
"columnName": "ipv4_fallback",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv6RestoreEnabled",
|
|
||||||
"columnName": "ipv6_restore",
|
|
||||||
"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, `screen_recording_security` INTEGER NOT NULL DEFAULT 1, `global_amnezia_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_scripting_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": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelMode",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "screenRecordingSecurityEnabled",
|
|
||||||
"columnName": "screen_recording_security",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalAmneziaEnabled",
|
|
||||||
"columnName": "global_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelScriptingEnabled",
|
|
||||||
"columnName": "tunnel_scripting_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, `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, `disable_on_captive_portal` INTEGER NOT NULL DEFAULT 1)",
|
|
||||||
"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": "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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "disableTunnelOnCaptivePortal",
|
|
||||||
"columnName": "disable_on_captive_portal",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_statistics_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_statistics_poll_interval` INTEGER NOT NULL DEFAULT 3)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsEnabled",
|
|
||||||
"columnName": "tunnel_statistics_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsPollInterval",
|
|
||||||
"columnName": "tunnel_statistics_poll_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, '1dee3799f1c6526c48723fd2fee58d11')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,520 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 32,
|
|
||||||
"identityHash": "fd4803fc483f41704303be9246dcfb4d",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "tunnel_config",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` 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, `quick_config` TEXT NOT NULL DEFAULT '', `dynamic_dns` INTEGER NOT NULL DEFAULT false, `is_ethernet_tunnel` INTEGER NOT NULL DEFAULT false, `prefer_ipv6` INTEGER NOT NULL DEFAULT false, `position` INTEGER NOT NULL DEFAULT 0, `auto_tunnel_apps` TEXT NOT NULL DEFAULT '[]', `is_metered` INTEGER NOT NULL DEFAULT false, `ipv4_fallback` INTEGER NOT NULL DEFAULT false, `ipv6_restore` INTEGER NOT NULL DEFAULT false)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"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": "quickConfig",
|
|
||||||
"columnName": "quick_config",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "''"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "dynamicDnsEnabled",
|
|
||||||
"columnName": "dynamic_dns",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isEthernetTunnel",
|
|
||||||
"columnName": "is_ethernet_tunnel",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isIpv6Preferred",
|
|
||||||
"columnName": "prefer_ipv6",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv4FallbackEnabled",
|
|
||||||
"columnName": "ipv4_fallback",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "false"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ipv6RestoreEnabled",
|
|
||||||
"columnName": "ipv6_restore",
|
|
||||||
"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, `screen_recording_security` INTEGER NOT NULL DEFAULT 1, `global_amnezia_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_scripting_enabled` INTEGER NOT NULL DEFAULT 0, `seamless_roaming_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": "isGlobalSplitTunnelEnabled",
|
|
||||||
"columnName": "global_split_tunnel_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelMode",
|
|
||||||
"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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "screenRecordingSecurityEnabled",
|
|
||||||
"columnName": "screen_recording_security",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isGlobalAmneziaEnabled",
|
|
||||||
"columnName": "global_amnezia_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelScriptingEnabled",
|
|
||||||
"columnName": "tunnel_scripting_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "seamlessRoamingEnabled",
|
|
||||||
"columnName": "seamless_roaming_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, `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, `disable_on_captive_portal` INTEGER NOT NULL DEFAULT 1)",
|
|
||||||
"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": "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"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "disableTunnelOnCaptivePortal",
|
|
||||||
"columnName": "disable_on_captive_portal",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": true,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "monitoring_settings",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `is_local_logs_enabled` INTEGER NOT NULL DEFAULT 0, `tunnel_statistics_enabled` INTEGER NOT NULL DEFAULT 1, `tunnel_statistics_poll_interval` INTEGER NOT NULL DEFAULT 3)",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isLocalLogsEnabled",
|
|
||||||
"columnName": "is_local_logs_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsEnabled",
|
|
||||||
"columnName": "tunnel_statistics_enabled",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "tunnelStatisticsPollInterval",
|
|
||||||
"columnName": "tunnel_statistics_poll_interval",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true,
|
|
||||||
"defaultValue": "3"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"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, 'fd4803fc483f41704303be9246dcfb4d')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -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()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<color name="ic_launcher_background">#648DB3</color>
|
|
||||||
</resources>
|
|
||||||
@@ -2,22 +2,21 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<uses-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"
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" />
|
||||||
tools:ignore="QueryAllPackagesPermission" />
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"
|
||||||
|
tools:ignore="ProtectedPermissions" />
|
||||||
<!--foreground service special use for non VPN service tunnels, android 14-->
|
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
|
||||||
|
|
||||||
<!--foreground service permissions-->
|
<!--foreground service permissions-->
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
||||||
|
|
||||||
<!--start service on boot permission-->
|
<!--start service on boot permission-->
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
|
<!--android tv support-->
|
||||||
|
|
||||||
<permission
|
<permission
|
||||||
android:name="${applicationId}.permission.CONTROL_TUNNELS"
|
android:name="${applicationId}.permission.CONTROL_TUNNELS"
|
||||||
@@ -44,6 +43,13 @@
|
|||||||
|
|
||||||
<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>
|
||||||
|
</queries>
|
||||||
<application
|
<application
|
||||||
android:name=".WireGuardAutoTunnel"
|
android:name=".WireGuardAutoTunnel"
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
@@ -53,33 +59,18 @@
|
|||||||
android:fullBackupContent="@xml/backup_rules"
|
android:fullBackupContent="@xml/backup_rules"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.App.Start"
|
android:theme="@style/Theme.App.Start"
|
||||||
tools:targetApi="tiramisu">
|
tools:targetApi="tiramisu">
|
||||||
|
|
||||||
<meta-data android:name="android.telephony.PROPERTY_SATELLITE_DATA_OPTIMIZED"
|
|
||||||
android:value="${applicationId}" />
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:windowSoftInputMode="adjustResize"
|
android:banner="@mipmap/ic_banner"
|
||||||
|
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>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
|
||||||
<data android:scheme="wg" />
|
|
||||||
</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" />
|
||||||
@@ -88,61 +79,11 @@
|
|||||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||||
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
<!-- .zip files -->
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<action android:name="android.intent.action.EDIT" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
|
||||||
|
|
||||||
<data android:scheme="content" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="application/zip" />
|
|
||||||
|
|
||||||
<data android:scheme="content" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="application/x-zip-compressed" />
|
|
||||||
|
|
||||||
<data android:scheme="file" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="application/zip" />
|
|
||||||
|
|
||||||
<data android:scheme="file" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="application/x-zip-compressed" />
|
|
||||||
</intent-filter>
|
|
||||||
|
|
||||||
<!-- Share sheet for .zip -->
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.SEND" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<data android:mimeType="application/zip" />
|
|
||||||
<data android:mimeType="application/x-zip-compressed" />
|
|
||||||
</intent-filter>
|
|
||||||
|
|
||||||
<!-- .conf files -->
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<action android:name="android.intent.action.EDIT" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="android.intent.category.BROWSABLE" />
|
|
||||||
|
|
||||||
<data android:scheme="content" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="*/*" />
|
|
||||||
|
|
||||||
<data android:scheme="file" />
|
|
||||||
<data android:host="*" />
|
|
||||||
<data android:mimeType="*/*" />
|
|
||||||
|
|
||||||
<!-- Path patterns for .conf extension matching -->
|
|
||||||
<data android:pathPattern=".*\\.conf" />
|
|
||||||
<data android:pathPattern=".*\\..*\\.conf" />
|
|
||||||
<data android:pathPattern=".*\\..*\\..*\\.conf" />
|
|
||||||
<data android:pathPattern=".*\\..*\\..*\\..*\\.conf" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
||||||
|
android:screenOrientation="portrait"
|
||||||
|
tools:replace="screenOrientation" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".core.shortcut.ShortcutsActivity"
|
android:name=".core.shortcut.ShortcutsActivity"
|
||||||
@@ -156,7 +97,7 @@
|
|||||||
|
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.core.content.FileProvider"
|
android:name="androidx.core.content.FileProvider"
|
||||||
android:authorities="${providerAuthority}"
|
android:authorities="@string/provider"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:grantUriPermissions="true">
|
android:grantUriPermissions="true">
|
||||||
<meta-data
|
<meta-data
|
||||||
@@ -164,20 +105,17 @@
|
|||||||
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
|
<service
|
||||||
android:name=".service.tile.TunnelControlTile"
|
android:name=".core.service.tile.TunnelControlTile"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:icon="@drawable/qs_logo"
|
android:icon="@drawable/ic_notification"
|
||||||
android:label="@string/tunnel_control"
|
android:label="@string/tunnel_control"
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
||||||
<meta-data
|
<meta-data
|
||||||
@@ -192,9 +130,9 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
<service
|
<service
|
||||||
android:name=".service.tile.AutoTunnelControlTile"
|
android:name=".core.service.tile.AutoTunnelControlTile"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:icon="@drawable/qs_logo"
|
android:icon="@drawable/ic_notification"
|
||||||
android:label="@string/auto_tunnel"
|
android:label="@string/auto_tunnel"
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
||||||
<meta-data
|
<meta-data
|
||||||
@@ -209,35 +147,46 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
<service
|
<service
|
||||||
android:name=".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:exported="false"
|
||||||
|
android:persistent="true"
|
||||||
|
android:foregroundServiceType="systemExempted"
|
||||||
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.net.VpnService" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".core.broadcast.RestartReceiver"
|
android:name=".core.broadcast.RestartReceiver"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false">
|
android:exported="false"
|
||||||
|
android:directBootAware="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
<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.LOCKED_BOOT_COMPLETED" />
|
||||||
|
<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
|
||||||
|
android:name=".core.broadcast.KernelReceiver"
|
||||||
|
android:exported="false"
|
||||||
|
android:permission="${applicationId}.permission.CONTROL_TUNNELS">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="com.wireguard.android.action.REFRESH_TUNNEL_STATES" />
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
<!--custom security solution for easier user integration-->
|
<!--custom security solution for easier user integration-->
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".core.broadcast.RemoteControlReceiver"
|
android:name=".core.broadcast.RemoteControlReceiver"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -2,121 +2,132 @@ package com.zaneschepke.wireguardautotunnel
|
|||||||
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.os.StrictMode
|
import android.os.StrictMode
|
||||||
import com.zaneschepke.tunnel.backend.Backend
|
import android.os.StrictMode.ThreadPolicy
|
||||||
import com.zaneschepke.tunnel.di.tunnelModule
|
import androidx.hilt.work.HiltWorkerFactory
|
||||||
import com.zaneschepke.tunnel.service.VpnService
|
import androidx.lifecycle.DefaultLifecycleObserver
|
||||||
import com.zaneschepke.wireguardautotunnel.core.event.TunnelEventDispatcher
|
import androidx.lifecycle.LifecycleOwner
|
||||||
import com.zaneschepke.wireguardautotunnel.core.orchestration.AppBoostrapCoordinator
|
import androidx.lifecycle.ProcessLifecycleOwner
|
||||||
import com.zaneschepke.wireguardautotunnel.core.orchestration.TunnelCoordinator
|
import androidx.work.Configuration
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
import com.wireguard.android.backend.GoBackend
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Dispatcher
|
import com.zaneschepke.logcatter.LogReader
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.appModule
|
import com.zaneschepke.wireguardautotunnel.core.worker.ServiceWorker
|
||||||
import com.zaneschepke.wireguardautotunnel.di.coordinatorModule
|
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.BackendState
|
||||||
import com.zaneschepke.wireguardautotunnel.di.tunnelBackendProviderModule
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
import com.zaneschepke.wireguardautotunnel.di.workerModule
|
import com.zaneschepke.wireguardautotunnel.util.LocaleUtil
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.NotificationService
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.tile.AutoTunnelTileRefresher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.tile.TunnelTileRefresher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
import com.zaneschepke.wireguardautotunnel.util.ReleaseTree
|
||||||
|
import dagger.hilt.android.HiltAndroidApp
|
||||||
|
import javax.inject.Inject
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import org.koin.android.ext.android.get
|
import kotlinx.coroutines.withContext
|
||||||
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.annotation.KoinViewModelScopeApi
|
|
||||||
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 boostrapCoordinator: AppBoostrapCoordinator by inject()
|
override val workManagerConfiguration: Configuration
|
||||||
|
get() = Configuration.Builder().setWorkerFactory(workerFactory).build()
|
||||||
|
|
||||||
private val notificationService: NotificationService by inject()
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
private val tunnelCoordinator: TunnelCoordinator by inject()
|
@Inject lateinit var logReader: LogReader
|
||||||
|
|
||||||
private val backend: Backend by inject()
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val alwaysOnCallback =
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
object : VpnService.AlwaysOnCallback {
|
|
||||||
override fun alwaysOnTriggered() {
|
@Inject @MainDispatcher lateinit var mainDispatcher: CoroutineDispatcher
|
||||||
applicationScope.launch { tunnelCoordinator.startDefault() }
|
|
||||||
}
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(KoinViewModelScopeApi::class)
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
startKoin {
|
|
||||||
androidContext(this@WireGuardAutoTunnel)
|
|
||||||
if (BuildConfig.DEBUG) androidLogger()
|
|
||||||
workManagerFactory()
|
|
||||||
modules(
|
|
||||||
dispatchersModule,
|
|
||||||
appModule,
|
|
||||||
databaseModule,
|
|
||||||
tunnelBackendProviderModule,
|
|
||||||
tunnelModule,
|
|
||||||
workerModule,
|
|
||||||
coordinatorModule,
|
|
||||||
)
|
|
||||||
options(viewModelScopeFactory())
|
|
||||||
lazyModules(networkModule)
|
|
||||||
}
|
|
||||||
instance = this
|
instance = this
|
||||||
|
ProcessLifecycleOwner.get().lifecycle.addObserver(AppLifecycleObserver())
|
||||||
notificationService.createAllChannels()
|
|
||||||
|
|
||||||
syncTiles()
|
|
||||||
|
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
Timber.plant(Timber.DebugTree())
|
Timber.plant(Timber.DebugTree())
|
||||||
StrictMode.setThreadPolicy(
|
StrictMode.setThreadPolicy(
|
||||||
StrictMode.ThreadPolicy.Builder().detectAll().penaltyLog().build()
|
ThreadPolicy.Builder()
|
||||||
|
.detectDiskReads()
|
||||||
|
.detectDiskWrites()
|
||||||
|
.detectNetwork()
|
||||||
|
.penaltyLog()
|
||||||
|
.build()
|
||||||
)
|
)
|
||||||
StrictMode.setVmPolicy(StrictMode.VmPolicy.Builder().detectAll().penaltyLog().build())
|
|
||||||
} else {
|
} else {
|
||||||
Timber.plant(ReleaseTree())
|
Timber.plant(ReleaseTree())
|
||||||
}
|
}
|
||||||
|
|
||||||
backend.setAlwaysOnCallback(alwaysOnCallback)
|
GoBackend.setAlwaysOnCallback {
|
||||||
|
applicationScope.launch {
|
||||||
|
val settings = appDataRepository.settings.get()
|
||||||
|
if (settings.isAlwaysOnVpnEnabled) {
|
||||||
|
val tunnel = appDataRepository.getPrimaryOrFirstTunnel()
|
||||||
|
tunnel?.let { tunnelManager.startTunnel(it) }
|
||||||
|
} else {
|
||||||
|
Timber.w("Always-on VPN is not enabled in app settings")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
val dispatcher = get<TunnelEventDispatcher>()
|
ServiceWorker.start(this)
|
||||||
val coordinator = get<TunnelCoordinator>()
|
|
||||||
val provider = get<TunnelProvider>()
|
|
||||||
|
|
||||||
// for notifications
|
applicationScope.launch {
|
||||||
dispatcher.bind(
|
appDataRepository.appState.getLocale()?.let {
|
||||||
applicationScope,
|
withContext(mainDispatcher) { LocaleUtil.changeLocale(it) }
|
||||||
provider.events,
|
}
|
||||||
provider.backendStatus,
|
appDataRepository.appState.isLocalLogsEnabled().let { enabled ->
|
||||||
coordinator.errors,
|
if (enabled) logReader.start()
|
||||||
tunnelCoordinator.tunnelDisplayStates,
|
}
|
||||||
)
|
}
|
||||||
|
|
||||||
applicationScope.launch(ioDispatcher) { boostrapCoordinator.bootstrap() }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun syncTiles() {
|
override fun onTerminate() {
|
||||||
AutoTunnelTileRefresher.refresh(this)
|
applicationScope.launch {
|
||||||
TunnelTileRefresher.refresh(this)
|
tunnelManager.setBackendState(BackendState.INACTIVE, emptyList())
|
||||||
|
}
|
||||||
|
super.onTerminate()
|
||||||
|
}
|
||||||
|
|
||||||
|
class AppLifecycleObserver : DefaultLifecycleObserver {
|
||||||
|
|
||||||
|
override fun onStart(owner: LifecycleOwner) {
|
||||||
|
Timber.d("Application entered foreground")
|
||||||
|
foreground = true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onPause(owner: LifecycleOwner) {
|
||||||
|
Timber.d("Application entered background")
|
||||||
|
foreground = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
private var foreground = false
|
||||||
|
|
||||||
|
fun isForeground(): Boolean {
|
||||||
|
return foreground
|
||||||
|
}
|
||||||
|
|
||||||
|
@Volatile private var lastActiveTunnels: List<Int> = emptyList()
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
|
fun getLastActiveTunnels(): List<Int> {
|
||||||
|
return lastActiveTunnels
|
||||||
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
|
fun setLastActiveTunnels(newTunnels: List<Int>) {
|
||||||
|
lastActiveTunnels = newTunnels
|
||||||
|
}
|
||||||
|
|
||||||
lateinit var instance: WireGuardAutoTunnel
|
lateinit var instance: WireGuardAutoTunnel
|
||||||
private set
|
private set
|
||||||
}
|
}
|
||||||
|
|||||||
+42
@@ -0,0 +1,42 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.broadcast
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class KernelReceiver : BroadcastReceiver() {
|
||||||
|
|
||||||
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelRepository: TunnelRepository
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
|
val action = intent.action ?: return
|
||||||
|
applicationScope.launch {
|
||||||
|
if (action == REFRESH_TUNNELS_ACTION) {
|
||||||
|
tunnelManager.runningTunnelNames().forEach { name ->
|
||||||
|
val tunnel = tunnelRepository.findByTunnelName(name)
|
||||||
|
tunnel?.let { tunnelRepository.save(it.copy(isActive = true)) }
|
||||||
|
}
|
||||||
|
serviceManager.updateTunnelTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val REFRESH_TUNNELS_ACTION = "com.wireguard.android.action.REFRESH_TUNNEL_STATES"
|
||||||
|
}
|
||||||
|
}
|
||||||
+19
-30
@@ -3,48 +3,37 @@ 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.orchestration.AutoTunnelCoordinator
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.orchestration.TunnelCoordinator
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.NotificationService
|
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 tunnelCoordinator: TunnelCoordinator by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val autoTunnelCoordinator: AutoTunnelCoordinator by inject()
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope = get(named(Scope.APPLICATION))
|
@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()
|
||||||
autoTunnelCoordinator.disable()
|
|
||||||
}
|
|
||||||
|
|
||||||
NotificationAction.TUNNEL_OFF.name -> {
|
NotificationAction.TUNNEL_OFF.name -> {
|
||||||
|
val tunnelId = intent.getIntExtra(NotificationManager.EXTRA_ID, 0)
|
||||||
val tunnelId =
|
if (tunnelId == STOP_ALL_TUNNELS_ID) return@launch tunnelManager.stopTunnel()
|
||||||
intent.getIntExtra(NotificationService.EXTRA_ID, STOP_ALL_TUNNELS_ID)
|
val tunnel = tunnelRepository.getById(tunnelId)
|
||||||
|
tunnelManager.stopTunnel(tunnel)
|
||||||
if (tunnelId == STOP_ALL_TUNNELS_ID) {
|
|
||||||
tunnelCoordinator.stopActiveTunnels()
|
|
||||||
return@launch
|
|
||||||
}
|
|
||||||
tunnelCoordinator.stopTunnel(tunnelId)
|
|
||||||
}
|
|
||||||
|
|
||||||
NotificationAction.STOP_ALL.name -> {
|
|
||||||
tunnelCoordinator.stopActiveTunnels()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+48
-68
@@ -3,27 +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.orchestration.AutoTunnelCoordinator
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.orchestration.TunnelCoordinator
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings
|
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 timber.log.Timber
|
||||||
import org.koin.core.component.inject
|
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
|
|
||||||
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()
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
private val tunnelsRepository: TunnelRepository by inject()
|
|
||||||
private val tunnelCoordinator: TunnelCoordinator by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
private val autoTunnelCoordinator: AutoTunnelCoordinator by inject()
|
|
||||||
|
@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"),
|
||||||
@@ -48,67 +48,47 @@ class RemoteControlReceiver : BroadcastReceiver(), KoinComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
val pendingResult = goAsync()
|
Timber.i("onReceive")
|
||||||
|
val action = intent.action ?: return
|
||||||
|
val appAction = Action.fromAction(action) ?: return Timber.w("Unknown action $action")
|
||||||
applicationScope.launch {
|
applicationScope.launch {
|
||||||
try {
|
if (!appDataRepository.appState.isRemoteControlEnabled())
|
||||||
val action = intent.action ?: return@launch
|
return@launch Timber.w("Remote control disabled")
|
||||||
val appAction = Action.fromAction(action) ?: return@launch
|
val key =
|
||||||
|
appDataRepository.appState.getRemoteKey()
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
?: return@launch Timber.w("Remote control key missing")
|
||||||
|
if (key != intent.getStringExtra(EXTRA_KEY)?.trim())
|
||||||
if (!settings.isRemoteControlEnabled) return@launch
|
return@launch Timber.w("Invalid remote control key")
|
||||||
|
when (appAction) {
|
||||||
if (!validateKey(settings, intent)) return@launch
|
Action.START_TUNNEL -> {
|
||||||
|
val tunnelName =
|
||||||
when (appAction) {
|
intent.getStringExtra(EXTRA_TUN_NAME) ?: return@launch startDefaultTunnel()
|
||||||
Action.START_TUNNEL -> {
|
val tunnel =
|
||||||
val tunnel =
|
appDataRepository.tunnels.findByTunnelName(tunnelName)
|
||||||
resolveTunnel(intent)
|
?: return@launch startDefaultTunnel()
|
||||||
?: tunnelsRepository.getDefaultTunnel()
|
tunnelManager.startTunnel(tunnel)
|
||||||
?: return@launch
|
|
||||||
|
|
||||||
tunnelCoordinator.startTunnel(tunnel)
|
|
||||||
}
|
|
||||||
|
|
||||||
Action.STOP_TUNNEL -> {
|
|
||||||
val tunnelName = intent.getStringExtra(EXTRA_TUN_NAME)
|
|
||||||
|
|
||||||
if (tunnelName == null) {
|
|
||||||
tunnelCoordinator.stopActiveTunnels()
|
|
||||||
return@launch
|
|
||||||
}
|
|
||||||
|
|
||||||
val tunnel = tunnelsRepository.findByTunnelName(tunnelName) ?: return@launch
|
|
||||||
|
|
||||||
tunnelCoordinator.stopTunnel(tunnel.id)
|
|
||||||
}
|
|
||||||
|
|
||||||
Action.START_AUTO_TUNNEL -> {
|
|
||||||
autoTunnelCoordinator.enable()
|
|
||||||
}
|
|
||||||
|
|
||||||
Action.STOP_AUTO_TUNNEL -> {
|
|
||||||
autoTunnelCoordinator.disable()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} finally {
|
Action.STOP_TUNNEL -> {
|
||||||
pendingResult.finish()
|
val tunnelName =
|
||||||
|
intent.getStringExtra(EXTRA_TUN_NAME)
|
||||||
|
?: return@launch tunnelManager.stopTunnel()
|
||||||
|
val tunnel =
|
||||||
|
appDataRepository.tunnels.findByTunnelName(tunnelName)
|
||||||
|
?: return@launch tunnelManager.stopTunnel()
|
||||||
|
tunnelManager.stopTunnel(tunnel)
|
||||||
|
}
|
||||||
|
Action.START_AUTO_TUNNEL -> serviceManager.startAutoTunnel()
|
||||||
|
Action.STOP_AUTO_TUNNEL -> serviceManager.stopAutoTunnel()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun validateKey(settings: GeneralSettings, intent: Intent): Boolean {
|
private suspend fun startDefaultTunnel() {
|
||||||
|
appDataRepository.getPrimaryOrFirstTunnel()?.let { tunnel ->
|
||||||
val expected = settings.remoteKey?.trim() ?: return false
|
tunnelManager.startTunnel(tunnel)
|
||||||
|
}
|
||||||
val actual = intent.getStringExtra(EXTRA_KEY)?.trim()
|
|
||||||
|
|
||||||
return expected == actual
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun resolveTunnel(intent: Intent) =
|
|
||||||
intent.getStringExtra(EXTRA_TUN_NAME)?.let { tunnelsRepository.findByTunnelName(it) }
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val EXTRA_TUN_NAME = "tunnelName"
|
const val EXTRA_TUN_NAME = "tunnelName"
|
||||||
const val EXTRA_KEY = "key"
|
const val EXTRA_KEY = "key"
|
||||||
|
|||||||
+28
-37
@@ -3,55 +3,46 @@ 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.logcatter.LogReader
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.core.orchestration.StartupCoordinator
|
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 startupCoordinator: StartupCoordinator 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 @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}")
|
||||||
|
serviceManager.updateTunnelTile()
|
||||||
val pendingResult = goAsync()
|
serviceManager.updateAutoTunnelTile()
|
||||||
|
applicationScope.launch(ioDispatcher) {
|
||||||
applicationScope.launch {
|
val settings = appDataRepository.settings.get()
|
||||||
try {
|
if (settings.isRestoreOnBootEnabled) {
|
||||||
when (intent.action) {
|
if (settings.isAutoTunnelEnabled && !serviceManager.autoTunnelActive.value) {
|
||||||
Intent.ACTION_BOOT_COMPLETED,
|
Timber.d("Starting auto-tunnel on boot/update")
|
||||||
"android.intent.action.QUICKBOOT_POWERON",
|
serviceManager.startAutoTunnel()
|
||||||
"com.htc.intent.action.QUICKBOOT_POWERON" -> {
|
} else {
|
||||||
startupCoordinator.applyStartupPolicy()
|
Timber.d("Restoring previous tunnel state")
|
||||||
}
|
tunnelManager.restorePreviousState()
|
||||||
|
|
||||||
Intent.ACTION_MY_PACKAGE_REPLACED -> {
|
|
||||||
Timber.i("Restoring state on package upgrade")
|
|
||||||
startupCoordinator.applyStartupPolicy()
|
|
||||||
logReader.deleteAndClearLogs()
|
|
||||||
appStateRepository.setShouldShowDonationSnackbar(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
|
||||||
Timber.w("Unhandled action in RestartReceiver: ${intent.action}")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} finally {
|
} else {
|
||||||
pendingResult.finish()
|
Timber.d("Restore on boot disabled, skipping")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.event
|
|
||||||
|
|
||||||
import com.zaneschepke.tunnel.util.BackendException
|
|
||||||
|
|
||||||
sealed interface TunnelErrorEvent {
|
|
||||||
data class VpnPermissionDenied(val tunnelId: Int) : TunnelErrorEvent
|
|
||||||
|
|
||||||
data class InternalFailure(val tunnelId: Int, val message: String) : TunnelErrorEvent
|
|
||||||
|
|
||||||
data class Socks5PortUnavailable(val tunnelId: Int, val port: Int) : TunnelErrorEvent
|
|
||||||
|
|
||||||
data class HttpPortUnavailable(val tunnelId: Int, val port: Int) : TunnelErrorEvent
|
|
||||||
|
|
||||||
companion object {
|
|
||||||
fun from(throwable: Throwable, id: Int): TunnelErrorEvent {
|
|
||||||
return when (throwable) {
|
|
||||||
is BackendException.Unauthorized -> {
|
|
||||||
VpnPermissionDenied(id)
|
|
||||||
}
|
|
||||||
is BackendException.InternalError -> {
|
|
||||||
InternalFailure(id, throwable.message)
|
|
||||||
}
|
|
||||||
is BackendException.Socks5PortUnavailable -> {
|
|
||||||
Socks5PortUnavailable(id, throwable.port)
|
|
||||||
}
|
|
||||||
is BackendException.HttpPortUnavailable -> {
|
|
||||||
HttpPortUnavailable(id, throwable.port)
|
|
||||||
}
|
|
||||||
else -> InternalFailure(id, throwable.message ?: "Unknown")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-298
@@ -1,298 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.event
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import com.dokar.sonner.ToastType
|
|
||||||
import com.zaneschepke.tunnel.event.TunnelEvent
|
|
||||||
import com.zaneschepke.tunnel.model.BackendMode
|
|
||||||
import com.zaneschepke.tunnel.state.BackendStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GlobalEffectRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.sideeffect.GlobalSideEffect
|
|
||||||
import com.zaneschepke.wireguardautotunnel.lifecyle.AppVisibilityObserver
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.TunnelNotificationLine
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.TunnelNotificationService
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.DisplayTunnelState
|
|
||||||
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
|
||||||
import kotlin.time.Duration.Companion.milliseconds
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.FlowPreview
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.debounce
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChanged
|
|
||||||
import kotlinx.coroutines.flow.launchIn
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.onEach
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
|
|
||||||
class TunnelEventDispatcher(
|
|
||||||
private val notificationManager: TunnelNotificationService,
|
|
||||||
private val tunnelRepository: TunnelRepository,
|
|
||||||
private val context: Context,
|
|
||||||
private val appVisibilityObserver: AppVisibilityObserver,
|
|
||||||
private val globalEffectRepository: GlobalEffectRepository,
|
|
||||||
) {
|
|
||||||
|
|
||||||
@OptIn(FlowPreview::class)
|
|
||||||
fun bind(
|
|
||||||
scope: CoroutineScope,
|
|
||||||
providerEvents: Flow<TunnelEvent>,
|
|
||||||
providerStatus: StateFlow<BackendStatus>,
|
|
||||||
coordinatorErrors: Flow<TunnelErrorEvent>,
|
|
||||||
tunnelDisplayStates: StateFlow<Map<Int, DisplayTunnelState>>,
|
|
||||||
) {
|
|
||||||
|
|
||||||
// Informational events from tunnel backend
|
|
||||||
providerEvents
|
|
||||||
.onEach { event ->
|
|
||||||
when (event) {
|
|
||||||
is TunnelEvent.FallbackToIpv4 -> {
|
|
||||||
val name = getTunnelName(event.tunnelId)
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message =
|
|
||||||
StringValue.DynamicString(
|
|
||||||
context.getString(
|
|
||||||
R.string.notification_ipv4_fallback_message,
|
|
||||||
name,
|
|
||||||
)
|
|
||||||
),
|
|
||||||
type = ToastType.Info,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showIpv4Fallback(name) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelEvent.RecoveredToIpv6 -> {
|
|
||||||
val name = getTunnelName(event.tunnelId)
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message =
|
|
||||||
StringValue.DynamicString(
|
|
||||||
context.getString(
|
|
||||||
R.string.notification_ipv6_recovery_message,
|
|
||||||
name,
|
|
||||||
)
|
|
||||||
),
|
|
||||||
type = ToastType.Success,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showIpv6Recovery(name) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelEvent.DynamicDnsUpdate -> {
|
|
||||||
val name = getTunnelName(event.tunnelId)
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message =
|
|
||||||
StringValue.DynamicString(
|
|
||||||
context.getString(
|
|
||||||
R.string.notification_dynamic_dns_message,
|
|
||||||
name,
|
|
||||||
)
|
|
||||||
),
|
|
||||||
type = ToastType.Info,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showDynamicDnsUpdate(name) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelEvent.NoRootShellAccess -> {
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message =
|
|
||||||
StringValue.DynamicString(
|
|
||||||
context.getString(R.string.error_root_denied)
|
|
||||||
),
|
|
||||||
type = ToastType.Error,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showRootShellAccess() },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.launchIn(scope)
|
|
||||||
|
|
||||||
// Errors from our tunnel coordinator
|
|
||||||
coordinatorErrors
|
|
||||||
.onEach { error ->
|
|
||||||
when (error) {
|
|
||||||
is TunnelErrorEvent.VpnPermissionDenied -> {
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message =
|
|
||||||
StringValue.DynamicString(
|
|
||||||
context.getString(R.string.vpn_permission_required)
|
|
||||||
),
|
|
||||||
type = ToastType.Error,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showVpnRequired() },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelErrorEvent.InternalFailure -> {
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message = StringValue.DynamicString(error.message),
|
|
||||||
type = ToastType.Error,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = { notificationManager.showError(error.message) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelErrorEvent.Socks5PortUnavailable -> {
|
|
||||||
val name = getTunnelName(error.tunnelId)
|
|
||||||
val message =
|
|
||||||
context.getString(R.string.error_socks5_port_unavailable, error.port)
|
|
||||||
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message = StringValue.DynamicString(message),
|
|
||||||
type = ToastType.Error,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = {
|
|
||||||
notificationManager.showSocks5PortUnavailable(error.port, name)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
is TunnelErrorEvent.HttpPortUnavailable -> {
|
|
||||||
val name = getTunnelName(error.tunnelId)
|
|
||||||
val message =
|
|
||||||
context.getString(R.string.error_http_port_unavailable, error.port)
|
|
||||||
|
|
||||||
showOrNotify(
|
|
||||||
scope = scope,
|
|
||||||
foregroundAction = {
|
|
||||||
globalEffectRepository.post(
|
|
||||||
GlobalSideEffect.Snackbar(
|
|
||||||
message = StringValue.DynamicString(message),
|
|
||||||
type = ToastType.Error,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
backgroundAction = {
|
|
||||||
notificationManager.showHttpPortUnavailable(error.port, name)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.launchIn(scope)
|
|
||||||
|
|
||||||
// vpn
|
|
||||||
combine(
|
|
||||||
providerStatus.map { it.activeTunnels },
|
|
||||||
tunnelRepository.userTunnelsFlow,
|
|
||||||
tunnelDisplayStates,
|
|
||||||
) { activeTunnels, allTunnels, displayStates ->
|
|
||||||
activeTunnels
|
|
||||||
.mapNotNull { (id, activeTunnel) ->
|
|
||||||
val mode = activeTunnel.mode ?: return@mapNotNull null
|
|
||||||
if (
|
|
||||||
mode !is BackendMode.Vpn && mode !is BackendMode.Proxy.KillSwitchPrimary
|
|
||||||
) {
|
|
||||||
return@mapNotNull null
|
|
||||||
}
|
|
||||||
val tunnel = allTunnels.find { it.id == id } ?: return@mapNotNull null
|
|
||||||
|
|
||||||
val displayState =
|
|
||||||
displayStates[id] ?: DisplayTunnelState.from(activeTunnel)
|
|
||||||
|
|
||||||
TunnelNotificationLine(
|
|
||||||
id = id,
|
|
||||||
name = tunnel.name,
|
|
||||||
displayState = displayState,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.associateBy { it.id }
|
|
||||||
}
|
|
||||||
.distinctUntilChanged()
|
|
||||||
.debounce(500.milliseconds) // give the service notification time to display
|
|
||||||
.onEach { vpnLines -> notificationManager.updateVpnPersistentNotification(vpnLines) }
|
|
||||||
.launchIn(scope)
|
|
||||||
|
|
||||||
// proxy
|
|
||||||
combine(
|
|
||||||
providerStatus.map { it.activeTunnels },
|
|
||||||
tunnelRepository.userTunnelsFlow,
|
|
||||||
tunnelDisplayStates,
|
|
||||||
) { activeTunnels, allTunnels, displayStates ->
|
|
||||||
activeTunnels
|
|
||||||
.mapNotNull { (id, activeTunnel) ->
|
|
||||||
val mode = activeTunnel.mode ?: return@mapNotNull null
|
|
||||||
if (mode !is BackendMode.Proxy.Standard) return@mapNotNull null
|
|
||||||
|
|
||||||
val tunnel = allTunnels.find { it.id == id } ?: return@mapNotNull null
|
|
||||||
val displayState =
|
|
||||||
displayStates[id] ?: DisplayTunnelState.from(activeTunnel)
|
|
||||||
|
|
||||||
TunnelNotificationLine(
|
|
||||||
id = id,
|
|
||||||
name = tunnel.name,
|
|
||||||
displayState = displayState,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.associateBy { it.id }
|
|
||||||
}
|
|
||||||
.distinctUntilChanged()
|
|
||||||
.debounce(500.milliseconds) // give the service notification time to display
|
|
||||||
.onEach { proxyLines ->
|
|
||||||
notificationManager.updateProxyPersistentNotification(proxyLines)
|
|
||||||
}
|
|
||||||
.launchIn(scope)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun showOrNotify(
|
|
||||||
scope: CoroutineScope,
|
|
||||||
foregroundAction: suspend () -> Unit,
|
|
||||||
backgroundAction: () -> Unit,
|
|
||||||
) {
|
|
||||||
if (appVisibilityObserver.isForeground.value) {
|
|
||||||
scope.launch { foregroundAction() }
|
|
||||||
} else {
|
|
||||||
backgroundAction()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun getTunnelName(tunnelId: Int): String {
|
|
||||||
return tunnelRepository.getById(tunnelId)?.name ?: context.getString(R.string.unknown)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+50
@@ -0,0 +1,50 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.notification
|
||||||
|
|
||||||
|
import android.app.Notification
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification.NotificationChannels
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
|
|
||||||
|
interface NotificationManager {
|
||||||
|
val context: Context
|
||||||
|
|
||||||
|
fun createNotification(
|
||||||
|
channel: NotificationChannels,
|
||||||
|
title: String = "",
|
||||||
|
actions: Collection<NotificationCompat.Action> = emptyList(),
|
||||||
|
description: String = "",
|
||||||
|
showTimestamp: Boolean = false,
|
||||||
|
importance: Int = NotificationManager.IMPORTANCE_HIGH,
|
||||||
|
onGoing: Boolean = true,
|
||||||
|
onlyAlertOnce: Boolean = true,
|
||||||
|
): Notification
|
||||||
|
|
||||||
|
fun createNotification(
|
||||||
|
channel: NotificationChannels,
|
||||||
|
title: StringValue,
|
||||||
|
actions: Collection<NotificationCompat.Action> = emptyList(),
|
||||||
|
description: StringValue,
|
||||||
|
showTimestamp: Boolean = false,
|
||||||
|
importance: Int = NotificationManager.IMPORTANCE_HIGH,
|
||||||
|
onGoing: Boolean = true,
|
||||||
|
onlyAlertOnce: Boolean = true,
|
||||||
|
): Notification
|
||||||
|
|
||||||
|
fun createNotificationAction(
|
||||||
|
notificationAction: NotificationAction,
|
||||||
|
extraId: Int? = null,
|
||||||
|
): NotificationCompat.Action
|
||||||
|
|
||||||
|
fun remove(notificationId: Int)
|
||||||
|
|
||||||
|
fun show(notificationId: Int, notification: Notification)
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val AUTO_TUNNEL_NOTIFICATION_ID = 122
|
||||||
|
const val VPN_NOTIFICATION_ID = 100
|
||||||
|
const val EXTRA_ID = "id"
|
||||||
|
}
|
||||||
|
}
|
||||||
+176
@@ -0,0 +1,176 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.notification
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.app.Notification
|
||||||
|
import android.app.NotificationChannel
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.graphics.Color
|
||||||
|
import androidx.core.app.ActivityCompat
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import androidx.core.app.NotificationManagerCompat
|
||||||
|
import com.zaneschepke.wireguardautotunnel.MainActivity
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.broadcast.NotificationActionReceiver
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager.Companion.EXTRA_ID
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.StringValue
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
class WireGuardNotification @Inject constructor(@ApplicationContext override val context: Context) :
|
||||||
|
com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager {
|
||||||
|
|
||||||
|
enum class NotificationChannels {
|
||||||
|
VPN,
|
||||||
|
AUTO_TUNNEL,
|
||||||
|
}
|
||||||
|
|
||||||
|
private val notificationManager = NotificationManagerCompat.from(context)
|
||||||
|
|
||||||
|
override fun createNotification(
|
||||||
|
channel: NotificationChannels,
|
||||||
|
title: String,
|
||||||
|
actions: Collection<NotificationCompat.Action>,
|
||||||
|
description: String,
|
||||||
|
showTimestamp: Boolean,
|
||||||
|
importance: Int,
|
||||||
|
onGoing: Boolean,
|
||||||
|
onlyAlertOnce: Boolean,
|
||||||
|
): Notification {
|
||||||
|
notificationManager.createNotificationChannel(channel.asChannel())
|
||||||
|
return channel
|
||||||
|
.asBuilder()
|
||||||
|
.apply {
|
||||||
|
actions.forEach { addAction(it) }
|
||||||
|
setContentTitle(title)
|
||||||
|
setContentIntent(
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
context,
|
||||||
|
0,
|
||||||
|
Intent(context, MainActivity::class.java),
|
||||||
|
PendingIntent.FLAG_IMMUTABLE,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
setContentText(description)
|
||||||
|
setOnlyAlertOnce(onlyAlertOnce)
|
||||||
|
setOngoing(onGoing)
|
||||||
|
setPriority(NotificationCompat.PRIORITY_HIGH)
|
||||||
|
setShowWhen(showTimestamp)
|
||||||
|
setSmallIcon(R.drawable.ic_notification)
|
||||||
|
}
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun createNotification(
|
||||||
|
channel: NotificationChannels,
|
||||||
|
title: StringValue,
|
||||||
|
actions: Collection<NotificationCompat.Action>,
|
||||||
|
description: StringValue,
|
||||||
|
showTimestamp: Boolean,
|
||||||
|
importance: Int,
|
||||||
|
onGoing: Boolean,
|
||||||
|
onlyAlertOnce: Boolean,
|
||||||
|
): Notification {
|
||||||
|
return createNotification(
|
||||||
|
channel,
|
||||||
|
title.asString(context),
|
||||||
|
actions,
|
||||||
|
description.asString(context),
|
||||||
|
showTimestamp,
|
||||||
|
importance,
|
||||||
|
onGoing,
|
||||||
|
onlyAlertOnce,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun createNotificationAction(
|
||||||
|
notificationAction: NotificationAction,
|
||||||
|
extraId: Int?,
|
||||||
|
): NotificationCompat.Action {
|
||||||
|
val pendingIntent =
|
||||||
|
PendingIntent.getBroadcast(
|
||||||
|
context,
|
||||||
|
0,
|
||||||
|
Intent(context, NotificationActionReceiver::class.java).apply {
|
||||||
|
action = notificationAction.name
|
||||||
|
if (extraId != null) putExtra(EXTRA_ID, extraId)
|
||||||
|
},
|
||||||
|
PendingIntent.FLAG_IMMUTABLE,
|
||||||
|
)
|
||||||
|
return NotificationCompat.Action.Builder(
|
||||||
|
R.drawable.ic_notification,
|
||||||
|
notificationAction.title(context).uppercase(),
|
||||||
|
pendingIntent,
|
||||||
|
)
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun remove(notificationId: Int) {
|
||||||
|
notificationManager.cancel(notificationId)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun show(notificationId: Int, notification: Notification) {
|
||||||
|
with(notificationManager) {
|
||||||
|
if (
|
||||||
|
ActivityCompat.checkSelfPermission(
|
||||||
|
context,
|
||||||
|
Manifest.permission.POST_NOTIFICATIONS,
|
||||||
|
) != PackageManager.PERMISSION_GRANTED
|
||||||
|
) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
notify(notificationId, notification)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun NotificationChannels.asBuilder(): NotificationCompat.Builder {
|
||||||
|
return when (this) {
|
||||||
|
NotificationChannels.AUTO_TUNNEL -> {
|
||||||
|
NotificationCompat.Builder(
|
||||||
|
context,
|
||||||
|
context.getString(R.string.auto_tunnel_channel_id),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
NotificationChannels.VPN -> {
|
||||||
|
NotificationCompat.Builder(context, context.getString(R.string.vpn_channel_id))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun NotificationChannels.asChannel(): NotificationChannel {
|
||||||
|
return when (this) {
|
||||||
|
NotificationChannels.VPN -> {
|
||||||
|
NotificationChannel(
|
||||||
|
context.getString(R.string.vpn_channel_id),
|
||||||
|
context.getString(R.string.vpn_channel_name),
|
||||||
|
NotificationManager.IMPORTANCE_HIGH,
|
||||||
|
)
|
||||||
|
.apply {
|
||||||
|
description = context.getString(R.string.vpn_channel_description)
|
||||||
|
enableLights(true)
|
||||||
|
lightColor = Color.WHITE
|
||||||
|
enableVibration(false)
|
||||||
|
vibrationPattern = longArrayOf(100, 200, 300)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
NotificationChannels.AUTO_TUNNEL -> {
|
||||||
|
NotificationChannel(
|
||||||
|
context.getString(R.string.auto_tunnel_channel_id),
|
||||||
|
context.getString(R.string.auto_tunnel_channel_name),
|
||||||
|
NotificationManager.IMPORTANCE_HIGH,
|
||||||
|
)
|
||||||
|
.apply {
|
||||||
|
description = context.getString(R.string.auto_tunnel_channel_description)
|
||||||
|
enableLights(true)
|
||||||
|
lightColor = Color.WHITE
|
||||||
|
enableVibration(false)
|
||||||
|
vibrationPattern = longArrayOf(100, 200, 300)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
-93
@@ -1,93 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.logcatter.LogReader
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.DnsSettingsRepository
|
|
||||||
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 kotlinx.coroutines.async
|
|
||||||
import kotlinx.coroutines.awaitAll
|
|
||||||
import kotlinx.coroutines.coroutineScope
|
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
|
||||||
import kotlinx.coroutines.flow.distinctUntilChangedBy
|
|
||||||
import kotlinx.coroutines.launch
|
|
||||||
import timber.log.Timber
|
|
||||||
|
|
||||||
class AppBoostrapCoordinator(
|
|
||||||
private val monitoringRepository: MonitoringSettingsRepository,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val dnsRepository: DnsSettingsRepository,
|
|
||||||
private val tunnelRepository: TunnelRepository,
|
|
||||||
private val lockdownRepository: LockdownSettingsRepository,
|
|
||||||
private val tunnelProvider: TunnelProvider,
|
|
||||||
private val dnsSettingsCoordinator: DnsSettingsCoordinator,
|
|
||||||
private val logReader: LogReader,
|
|
||||||
) {
|
|
||||||
|
|
||||||
private val _isReady = MutableStateFlow(false)
|
|
||||||
val isReady: StateFlow<Boolean> = _isReady.asStateFlow()
|
|
||||||
|
|
||||||
suspend fun bootstrap() = coroutineScope {
|
|
||||||
launch { bootstrapLogging() }
|
|
||||||
|
|
||||||
val criticalTasks =
|
|
||||||
listOf(
|
|
||||||
async { bootstrapDns() },
|
|
||||||
async { ensureGlobalConfig() },
|
|
||||||
async { restoreBackendConfiguration() },
|
|
||||||
)
|
|
||||||
|
|
||||||
try {
|
|
||||||
criticalTasks.awaitAll()
|
|
||||||
_isReady.value = true
|
|
||||||
Timber.d("App bootstrap completed successfully")
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Timber.e(e, "One or more critical bootstrap tasks failed")
|
|
||||||
_isReady.value = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun bootstrapDns() {
|
|
||||||
val dnsSettings = dnsRepository.getDnsSettings()
|
|
||||||
dnsSettingsCoordinator.appyDnsSettings(dnsSettings)
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun bootstrapLogging() {
|
|
||||||
monitoringRepository.flow
|
|
||||||
.distinctUntilChangedBy { it.isLocalLogsEnabled }
|
|
||||||
.collect { settings ->
|
|
||||||
if (settings.isLocalLogsEnabled) {
|
|
||||||
logReader.start()
|
|
||||||
} else {
|
|
||||||
logReader.stop()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun ensureGlobalConfig() {
|
|
||||||
tunnelRepository.ensureGlobalConfigExists()
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun restoreBackendConfiguration() {
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
|
|
||||||
if (settings.seamlessRoamingEnabled) {
|
|
||||||
tunnelProvider.setSeamlessRoaming(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
when (settings.tunnelMode) {
|
|
||||||
TunnelMode.LOCK_DOWN -> {
|
|
||||||
val lockdownSettings = lockdownRepository.getLockdownSettings()
|
|
||||||
tunnelProvider.setLockDown(lockdownSettings).onFailure {
|
|
||||||
Timber.w(it, "Failed to restore lockdown/kill-switch on startup")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else -> Unit
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-38
@@ -1,38 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.ServiceManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.autotunnel.AutoTunnelStateHolder
|
|
||||||
|
|
||||||
class AutoTunnelCoordinator(
|
|
||||||
private val repository: AutoTunnelSettingsRepository,
|
|
||||||
private val serviceManager: ServiceManager,
|
|
||||||
private val autoTunnelStateHolder: AutoTunnelStateHolder,
|
|
||||||
) {
|
|
||||||
|
|
||||||
suspend fun shouldRestore(): Boolean {
|
|
||||||
val settings = repository.getAutoTunnelSettings()
|
|
||||||
return settings.startOnBoot && settings.isAutoTunnelEnabled
|
|
||||||
}
|
|
||||||
|
|
||||||
fun start() {
|
|
||||||
serviceManager.startAutoTunnelService()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun enable() {
|
|
||||||
repository.updateAutoTunnelEnabled(true)
|
|
||||||
serviceManager.startAutoTunnelService()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun toggle() {
|
|
||||||
val running = autoTunnelStateHolder.active.value
|
|
||||||
if (running) {
|
|
||||||
disable()
|
|
||||||
} else enable()
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun disable() {
|
|
||||||
repository.updateAutoTunnelEnabled(false)
|
|
||||||
serviceManager.stopAutoTunnelService()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-52
@@ -1,52 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.parser.Config
|
|
||||||
import com.zaneschepke.wireguardautotunnel.parser.InterfaceSection
|
|
||||||
|
|
||||||
object ConfigReconciler {
|
|
||||||
private fun mergeInterface(
|
|
||||||
base: InterfaceSection,
|
|
||||||
global: InterfaceSection,
|
|
||||||
policy: ConfigReconcilePolicy,
|
|
||||||
): InterfaceSection {
|
|
||||||
return base.copy(
|
|
||||||
dns = if (policy.dns) global.dns else base.dns,
|
|
||||||
includedApplications =
|
|
||||||
if (policy.splitTunnel) global.includedApplications else base.includedApplications,
|
|
||||||
excludedApplications =
|
|
||||||
if (policy.splitTunnel) global.excludedApplications else base.excludedApplications,
|
|
||||||
jC = if (policy.amnezia) global.jC else base.jC,
|
|
||||||
jMin = if (policy.amnezia) global.jMin else base.jMin,
|
|
||||||
jMax = if (policy.amnezia) global.jMax else base.jMax,
|
|
||||||
s1 = if (policy.amnezia) global.s1 else base.s1,
|
|
||||||
s2 = if (policy.amnezia) global.s2 else base.s2,
|
|
||||||
s3 = if (policy.amnezia) global.s3 else base.s3,
|
|
||||||
s4 = if (policy.amnezia) global.s4 else base.s4,
|
|
||||||
h1 = if (policy.amnezia) global.h1 else base.h1,
|
|
||||||
h2 = if (policy.amnezia) global.h2 else base.h2,
|
|
||||||
h3 = if (policy.amnezia) global.h3 else base.h3,
|
|
||||||
h4 = if (policy.amnezia) global.h4 else base.h4,
|
|
||||||
i1 = if (policy.amnezia) global.i1 else base.i1,
|
|
||||||
i2 = if (policy.amnezia) global.i2 else base.i2,
|
|
||||||
i3 = if (policy.amnezia) global.i3 else base.i3,
|
|
||||||
i4 = if (policy.amnezia) global.i4 else base.i4,
|
|
||||||
i5 = if (policy.amnezia) global.i5 else base.i5,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun reconcileConfig(base: Config, global: Config?, policy: ConfigReconcilePolicy): Config {
|
|
||||||
if (global == null) return base
|
|
||||||
if (!policy.hasAnyOverrides) return base
|
|
||||||
|
|
||||||
return base.copy(`interface` = mergeInterface(base.`interface`, global.`interface`, policy))
|
|
||||||
}
|
|
||||||
|
|
||||||
data class ConfigReconcilePolicy(
|
|
||||||
val dns: Boolean,
|
|
||||||
val splitTunnel: Boolean,
|
|
||||||
val amnezia: Boolean,
|
|
||||||
) {
|
|
||||||
val hasAnyOverrides
|
|
||||||
get() = dns || splitTunnel || amnezia
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-25
@@ -1,25 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.tunnel.backend.Backend
|
|
||||||
import com.zaneschepke.tunnel.model.DnsBoostrapConfig
|
|
||||||
import com.zaneschepke.tunnel.model.DnsBoostrapMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.DnsProtocol
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.DnsSettings
|
|
||||||
|
|
||||||
class DnsSettingsCoordinator(private val backend: Backend) {
|
|
||||||
|
|
||||||
suspend fun appyDnsSettings(dnsSettings: DnsSettings) {
|
|
||||||
val mode =
|
|
||||||
when (dnsSettings.dnsProtocol) {
|
|
||||||
DnsProtocol.SYSTEM -> DnsBoostrapMode.System
|
|
||||||
DnsProtocol.DOH ->
|
|
||||||
DnsBoostrapMode.Custom(DnsBoostrapConfig.DoH(dnsSettings.dnsEndpoint))
|
|
||||||
DnsProtocol.DOT ->
|
|
||||||
DnsBoostrapMode.Custom(DnsBoostrapConfig.DoT(dnsSettings.dnsEndpoint))
|
|
||||||
DnsProtocol.UDP ->
|
|
||||||
DnsBoostrapMode.Custom(DnsBoostrapConfig.Plain(dnsSettings.dnsEndpoint))
|
|
||||||
}
|
|
||||||
|
|
||||||
backend.setBootstrapDnsMode(mode)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-84
@@ -1,84 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.shortcut.ShortcutContract
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
|
|
||||||
class ShortcutCoordinator(
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val tunnelsRepository: TunnelRepository,
|
|
||||||
private val tunnelCoordinator: TunnelCoordinator,
|
|
||||||
private val autoTunnelCoordinator: AutoTunnelCoordinator,
|
|
||||||
) {
|
|
||||||
|
|
||||||
suspend fun handle(intent: Intent) {
|
|
||||||
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
|
|
||||||
if (!settings.isShortcutsEnabled) return
|
|
||||||
|
|
||||||
val shortcutType =
|
|
||||||
intent.getStringExtra(ShortcutContract.EXTRA_SHORTCUT_TYPE)
|
|
||||||
?: legacyShortcutType(intent)
|
|
||||||
|
|
||||||
when (shortcutType) {
|
|
||||||
ShortcutContract.ShortcutType.TUNNEL.value -> {
|
|
||||||
handleTunnelShortcut(intent)
|
|
||||||
}
|
|
||||||
|
|
||||||
ShortcutContract.ShortcutType.AUTO_TUNNEL.value -> {
|
|
||||||
handleAutoTunnelShortcut(intent)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleAutoTunnelShortcut(intent: Intent) {
|
|
||||||
|
|
||||||
when (intent.action) {
|
|
||||||
ShortcutContract.Action.START.name -> {
|
|
||||||
autoTunnelCoordinator.enable()
|
|
||||||
}
|
|
||||||
|
|
||||||
ShortcutContract.Action.STOP.name -> {
|
|
||||||
autoTunnelCoordinator.disable()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun legacyShortcutType(intent: Intent): String? {
|
|
||||||
|
|
||||||
return when (intent.getStringExtra(ShortcutContract.EXTRA_CLASS_NAME)) {
|
|
||||||
ShortcutContract.Legacy.AUTO_TUNNEL_SERVICE_CLASS_NAME,
|
|
||||||
ShortcutContract.Legacy.AUTO_TUNNEL_SERVICE_NAME ->
|
|
||||||
ShortcutContract.ShortcutType.AUTO_TUNNEL.value
|
|
||||||
|
|
||||||
ShortcutContract.Legacy.TUNNEL_PROVIDER_NAME,
|
|
||||||
ShortcutContract.Legacy.TUNNEL_SERVICE_NAME ->
|
|
||||||
ShortcutContract.ShortcutType.TUNNEL.value
|
|
||||||
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun handleTunnelShortcut(intent: Intent) {
|
|
||||||
|
|
||||||
val tunnelName = intent.getStringExtra(ShortcutContract.EXTRA_TUNNEL_NAME)
|
|
||||||
|
|
||||||
val tunnel =
|
|
||||||
tunnelName?.let { tunnelsRepository.findByTunnelName(it) }
|
|
||||||
?: tunnelsRepository.getDefaultTunnel()
|
|
||||||
|
|
||||||
tunnel ?: return
|
|
||||||
|
|
||||||
when (intent.action) {
|
|
||||||
ShortcutContract.Action.START.name -> {
|
|
||||||
tunnelCoordinator.startTunnel(config = tunnel)
|
|
||||||
}
|
|
||||||
|
|
||||||
ShortcutContract.Action.STOP.name -> {
|
|
||||||
tunnelCoordinator.stopActiveTunnels()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-36
@@ -1,36 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
|
|
||||||
class StartupCoordinator(
|
|
||||||
private val tunnelCoordinator: TunnelCoordinator,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val autoTunnelCoordinator: AutoTunnelCoordinator,
|
|
||||||
private val tunnelRepository: TunnelRepository,
|
|
||||||
private val bootstrapCoordinator: AppBoostrapCoordinator,
|
|
||||||
) {
|
|
||||||
|
|
||||||
suspend fun applyStartupPolicy(): Result<Unit> = runCatching {
|
|
||||||
val shouldRestoreAutoTunnel = autoTunnelCoordinator.shouldRestore()
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
val shouldRestoreDefaultTunnel = settings.isRestoreOnBootEnabled
|
|
||||||
|
|
||||||
if (shouldRestoreAutoTunnel || shouldRestoreDefaultTunnel) {
|
|
||||||
// Wait for app critical bootstrap to finish
|
|
||||||
bootstrapCoordinator.isReady.first { it }
|
|
||||||
} else {
|
|
||||||
return Result.success(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (shouldRestoreAutoTunnel) {
|
|
||||||
autoTunnelCoordinator.start()
|
|
||||||
return Result.success(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
val defaultTunnel = tunnelRepository.getDefaultTunnel() ?: return Result.success(Unit)
|
|
||||||
tunnelCoordinator.startTunnel(defaultTunnel)
|
|
||||||
return Result.success(Unit)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-57
@@ -1,57 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.GeneralSettingRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.LockdownSettingsRepository
|
|
||||||
|
|
||||||
class TunnelBackendCoordinator(
|
|
||||||
private val tunnelProvider: TunnelProvider,
|
|
||||||
private val settingsRepository: GeneralSettingRepository,
|
|
||||||
private val lockdownRepository: LockdownSettingsRepository,
|
|
||||||
) {
|
|
||||||
|
|
||||||
suspend fun changeMode(newMode: TunnelMode): Result<Unit> {
|
|
||||||
|
|
||||||
val settings = settingsRepository.getGeneralSettings()
|
|
||||||
val oldMode = settings.tunnelMode
|
|
||||||
|
|
||||||
if (oldMode == newMode) {
|
|
||||||
return Result.success(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
return runCatching {
|
|
||||||
tunnelProvider.stopActiveTunnels().getOrThrow()
|
|
||||||
exitMode(oldMode)
|
|
||||||
enterMode(newMode)
|
|
||||||
|
|
||||||
settingsRepository.upsert(settings.copy(tunnelMode = newMode))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun exitMode(oldMode: TunnelMode) {
|
|
||||||
when (oldMode) {
|
|
||||||
TunnelMode.LOCK_DOWN -> {
|
|
||||||
tunnelProvider.disableLockDown().getOrThrow()
|
|
||||||
}
|
|
||||||
else -> Unit
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun enterMode(newMode: TunnelMode) {
|
|
||||||
when (newMode) {
|
|
||||||
TunnelMode.LOCK_DOWN -> {
|
|
||||||
val lockdownSettings = lockdownRepository.getLockdownSettings()
|
|
||||||
tunnelProvider.setLockDown(lockdownSettings).getOrThrow()
|
|
||||||
}
|
|
||||||
|
|
||||||
TunnelMode.VPN,
|
|
||||||
TunnelMode.PROXY -> Unit
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun changeSeamlessRoaming(enabled: Boolean) {
|
|
||||||
tunnelProvider.setSeamlessRoaming(enabled).getOrThrow()
|
|
||||||
settingsRepository.updateSeamlessRoaming(enabled)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-272
@@ -1,272 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.orchestration
|
|
||||||
|
|
||||||
import com.zaneschepke.tunnel.model.BackendMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.event.TunnelErrorEvent
|
|
||||||
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.repository.RoomDnsSettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelActionSource
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.events.TunnelActionEvent
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.DnsSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.LockdownSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.MonitoringSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.ProxySettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.TunnelConfig
|
|
||||||
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.ProxySettingsRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.ServiceManager
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.DisplayTunnelState
|
|
||||||
import kotlin.time.Duration.Companion.milliseconds
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.FlowPreview
|
|
||||||
import kotlinx.coroutines.flow.MutableSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.SharingStarted
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.asSharedFlow
|
|
||||||
import kotlinx.coroutines.flow.combine
|
|
||||||
import kotlinx.coroutines.flow.debounce
|
|
||||||
import kotlinx.coroutines.flow.filterNotNull
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
|
||||||
import kotlinx.coroutines.flow.map
|
|
||||||
import kotlinx.coroutines.flow.stateIn
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
|
||||||
import kotlinx.coroutines.sync.withLock
|
|
||||||
|
|
||||||
class TunnelCoordinator(
|
|
||||||
private val tunnelProvider: TunnelProvider,
|
|
||||||
private val serviceManager: ServiceManager,
|
|
||||||
private val bootstrapCoordinator: AppBoostrapCoordinator,
|
|
||||||
settingsRepository: GeneralSettingRepository,
|
|
||||||
private val tunnelRepository: TunnelRepository,
|
|
||||||
dnsSettingsRepository: RoomDnsSettingsRepository,
|
|
||||||
monitoringSettingsRepository: MonitoringSettingsRepository,
|
|
||||||
proxyRepository: ProxySettingsRepository,
|
|
||||||
lockdownModeRepository: LockdownSettingsRepository,
|
|
||||||
scope: CoroutineScope,
|
|
||||||
) {
|
|
||||||
|
|
||||||
private val _userOverrideFlow = MutableSharedFlow<Unit>(extraBufferCapacity = 1)
|
|
||||||
val userOverrideFlow = _userOverrideFlow.asSharedFlow()
|
|
||||||
|
|
||||||
@OptIn(FlowPreview::class)
|
|
||||||
val tunnelDisplayStates: StateFlow<Map<Int, DisplayTunnelState>> =
|
|
||||||
tunnelProvider.backendStatus
|
|
||||||
.map { status ->
|
|
||||||
status.activeTunnels.mapValues { (_, activeTunnel) ->
|
|
||||||
DisplayTunnelState.from(activeTunnel)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.debounce(400L.milliseconds)
|
|
||||||
.stateIn(scope = scope, started = SharingStarted.Eagerly, initialValue = emptyMap())
|
|
||||||
|
|
||||||
data class RuntimeSettingsSnapshot(
|
|
||||||
val general: GeneralSettings,
|
|
||||||
val dns: DnsSettings,
|
|
||||||
val monitoring: MonitoringSettings,
|
|
||||||
val proxy: ProxySettings,
|
|
||||||
val lockdown: LockdownSettings,
|
|
||||||
)
|
|
||||||
|
|
||||||
private val runtimeSettingsSnapshot =
|
|
||||||
combine(
|
|
||||||
settingsRepository.flow,
|
|
||||||
dnsSettingsRepository.flow,
|
|
||||||
monitoringSettingsRepository.flow,
|
|
||||||
proxyRepository.flow,
|
|
||||||
lockdownModeRepository.flow,
|
|
||||||
) { general, dns, monitoring, proxy, lockdown ->
|
|
||||||
RuntimeSettingsSnapshot(
|
|
||||||
general = general,
|
|
||||||
dns = dns,
|
|
||||||
monitoring = monitoring,
|
|
||||||
proxy = proxy,
|
|
||||||
lockdown = lockdown,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private val _actions = MutableSharedFlow<TunnelActionEvent>()
|
|
||||||
val actions = _actions.asSharedFlow()
|
|
||||||
|
|
||||||
private val runtimeSettingsSnapshotState =
|
|
||||||
runtimeSettingsSnapshot.stateIn(
|
|
||||||
scope = scope,
|
|
||||||
started = SharingStarted.Eagerly,
|
|
||||||
initialValue = null,
|
|
||||||
)
|
|
||||||
|
|
||||||
private suspend fun getSnapshot(): RuntimeSettingsSnapshot {
|
|
||||||
return runtimeSettingsSnapshotState.filterNotNull().first()
|
|
||||||
}
|
|
||||||
|
|
||||||
private var lastActiveTunnels: List<Int> = emptyList()
|
|
||||||
private val tunnelMutex = Mutex()
|
|
||||||
private val _errors = MutableSharedFlow<TunnelErrorEvent>()
|
|
||||||
val errors = _errors.asSharedFlow()
|
|
||||||
|
|
||||||
val backendStatus = tunnelProvider.backendStatus
|
|
||||||
|
|
||||||
suspend fun startTunnel(
|
|
||||||
config: TunnelConfig,
|
|
||||||
source: TunnelActionSource = TunnelActionSource.USER,
|
|
||||||
) = tunnelMutex.withLock {
|
|
||||||
// wait for app to be bootstrapped
|
|
||||||
bootstrapCoordinator.isReady.first { it }
|
|
||||||
|
|
||||||
if (source == TunnelActionSource.USER) {
|
|
||||||
_userOverrideFlow.tryEmit(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
// enforce single tunnel, for now
|
|
||||||
if (backendStatus.value.activeTunnels.isNotEmpty()) {
|
|
||||||
stopActiveTunnelsInternal(source)
|
|
||||||
}
|
|
||||||
|
|
||||||
startTunnelInternal(config, source)
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun stopTunnel(id: Int, source: TunnelActionSource = TunnelActionSource.USER) =
|
|
||||||
tunnelMutex.withLock {
|
|
||||||
if (source == TunnelActionSource.USER) {
|
|
||||||
_userOverrideFlow.tryEmit(Unit)
|
|
||||||
}
|
|
||||||
stopTunnelInternal(id, source)
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun stopActiveTunnels(source: TunnelActionSource = TunnelActionSource.USER) =
|
|
||||||
tunnelMutex.withLock {
|
|
||||||
if (source == TunnelActionSource.USER) {
|
|
||||||
_userOverrideFlow.tryEmit(Unit)
|
|
||||||
}
|
|
||||||
stopActiveTunnelsInternal(source)
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun startTunnelInternal(
|
|
||||||
tunnelConfig: TunnelConfig,
|
|
||||||
source: TunnelActionSource,
|
|
||||||
) {
|
|
||||||
|
|
||||||
val snapshot = getSnapshot()
|
|
||||||
val settings = snapshot.general
|
|
||||||
val dnsSettings = snapshot.dns
|
|
||||||
val proxySettings = snapshot.proxy
|
|
||||||
val monitoringSettings = snapshot.monitoring
|
|
||||||
val lockdownSettings = snapshot.lockdown
|
|
||||||
|
|
||||||
val config = tunnelConfig.getConfig()
|
|
||||||
val policy =
|
|
||||||
ConfigReconciler.ConfigReconcilePolicy(
|
|
||||||
dnsSettings.isGlobalTunnelDnsEnabled,
|
|
||||||
settings.isGlobalSplitTunnelEnabled,
|
|
||||||
settings.isGlobalAmneziaEnabled,
|
|
||||||
)
|
|
||||||
|
|
||||||
val runConfig =
|
|
||||||
if (policy.hasAnyOverrides) {
|
|
||||||
val globalConfig = tunnelRepository.globalTunnelFlow.firstOrNull()?.getConfig()
|
|
||||||
ConfigReconciler.reconcileConfig(config, globalConfig, policy)
|
|
||||||
} else config
|
|
||||||
|
|
||||||
val backendMode =
|
|
||||||
when (settings.tunnelMode) {
|
|
||||||
TunnelMode.VPN -> {
|
|
||||||
|
|
||||||
if (!serviceManager.hasVpnPermission()) {
|
|
||||||
_errors.emit(TunnelErrorEvent.VpnPermissionDenied(tunnelConfig.id))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
BackendMode.Vpn(runConfig)
|
|
||||||
}
|
|
||||||
|
|
||||||
TunnelMode.PROXY -> {
|
|
||||||
BackendMode.Proxy.Standard(
|
|
||||||
config = runConfig,
|
|
||||||
proxyConfig = proxySettings.toProxyConfig(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
TunnelMode.LOCK_DOWN -> {
|
|
||||||
BackendMode.Proxy.KillSwitchPrimary(
|
|
||||||
runConfig,
|
|
||||||
lockdownSettings.toKillSwitchConfig(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tunnelProvider
|
|
||||||
.startTunnel(
|
|
||||||
tunnel =
|
|
||||||
tunnelConfig.toBackendTunnel(
|
|
||||||
monitoringSettings,
|
|
||||||
settings.tunnelScriptingEnabled,
|
|
||||||
),
|
|
||||||
mode = backendMode,
|
|
||||||
)
|
|
||||||
.onSuccess {
|
|
||||||
_actions.emit(
|
|
||||||
TunnelActionEvent.Started(tunnelId = tunnelConfig.id, source = source)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
.onFailure { _errors.emit(TunnelErrorEvent.from(it, tunnelConfig.id)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun startDefault() {
|
|
||||||
tunnelRepository.getDefaultTunnel()?.let { tunnel -> startTunnel(tunnel) }
|
|
||||||
}
|
|
||||||
|
|
||||||
suspend fun toggleTunnels(source: TunnelActionSource = TunnelActionSource.USER) =
|
|
||||||
tunnelMutex.withLock {
|
|
||||||
if (source == TunnelActionSource.USER) {
|
|
||||||
_userOverrideFlow.tryEmit(Unit)
|
|
||||||
}
|
|
||||||
|
|
||||||
val active = tunnelProvider.backendStatus.value.activeTunnels
|
|
||||||
if (active.isNotEmpty()) {
|
|
||||||
lastActiveTunnels = active.keys.toList()
|
|
||||||
|
|
||||||
active.keys.forEach { id ->
|
|
||||||
_actions.emit(TunnelActionEvent.Stopped(tunnelId = id, source = source))
|
|
||||||
}
|
|
||||||
|
|
||||||
stopActiveTunnelsInternal(source)
|
|
||||||
return@withLock
|
|
||||||
}
|
|
||||||
|
|
||||||
val tunnelsToStart =
|
|
||||||
when {
|
|
||||||
lastActiveTunnels.isNotEmpty() -> {
|
|
||||||
lastActiveTunnels.mapNotNull { tunnelRepository.getById(it) }
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
|
||||||
tunnelRepository.getDefaultTunnel()?.let(::listOf) ?: emptyList()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tunnelsToStart.forEach { startTunnelInternal(it, source) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun stopTunnelInternal(id: Int, source: TunnelActionSource) {
|
|
||||||
tunnelProvider
|
|
||||||
.stopTunnel(id)
|
|
||||||
.onSuccess { _actions.emit(TunnelActionEvent.Stopped(tunnelId = id, source = source)) }
|
|
||||||
.onFailure { _errors.emit(TunnelErrorEvent.from(it, id)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun stopActiveTunnelsInternal(
|
|
||||||
source: TunnelActionSource = TunnelActionSource.USER
|
|
||||||
) {
|
|
||||||
val active = tunnelProvider.backendStatus.value.activeTunnels
|
|
||||||
|
|
||||||
active.keys.forEach { id ->
|
|
||||||
_actions.emit(TunnelActionEvent.Stopped(tunnelId = id, source = source))
|
|
||||||
}
|
|
||||||
|
|
||||||
tunnelProvider.stopActiveTunnels()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.service
|
||||||
|
|
||||||
|
import android.app.Service
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.net.VpnService
|
||||||
|
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.MainDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.requestAutoTunnelTileServiceUpdate
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.requestTunnelTileServiceStateUpdate
|
||||||
|
import jakarta.inject.Inject
|
||||||
|
import kotlinx.coroutines.CompletableDeferred
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.asStateFlow
|
||||||
|
import kotlinx.coroutines.flow.update
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
class ServiceManager
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
private val context: Context,
|
||||||
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
|
@MainDispatcher private val mainDispatcher: CoroutineDispatcher,
|
||||||
|
private val appDataRepository: AppDataRepository,
|
||||||
|
) {
|
||||||
|
|
||||||
|
private val autoTunnelMutex = Mutex()
|
||||||
|
|
||||||
|
private val _autoTunnelActive = MutableStateFlow(false)
|
||||||
|
val autoTunnelActive = _autoTunnelActive.asStateFlow()
|
||||||
|
|
||||||
|
var autoTunnelService = CompletableDeferred<AutoTunnelService>()
|
||||||
|
var backgroundService = CompletableDeferred<TunnelForegroundService>()
|
||||||
|
|
||||||
|
private fun <T : Service> startService(cls: Class<T>, background: Boolean) {
|
||||||
|
runCatching {
|
||||||
|
val intent = Intent(context, cls)
|
||||||
|
if (background) {
|
||||||
|
context.startForegroundService(intent)
|
||||||
|
} else {
|
||||||
|
context.startService(intent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun hasVpnPermission(): Boolean {
|
||||||
|
return VpnService.prepare(context) == null
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun startAutoTunnel() {
|
||||||
|
autoTunnelMutex.withLock {
|
||||||
|
val settings = appDataRepository.settings.get()
|
||||||
|
appDataRepository.settings.save(settings.copy(isAutoTunnelEnabled = true))
|
||||||
|
if (autoTunnelService.isCompleted) {
|
||||||
|
_autoTunnelActive.update { true }
|
||||||
|
return
|
||||||
|
}
|
||||||
|
runCatching {
|
||||||
|
autoTunnelService = CompletableDeferred()
|
||||||
|
startService(AutoTunnelService::class.java, !WireGuardAutoTunnel.isForeground())
|
||||||
|
_autoTunnelActive.update { true }
|
||||||
|
}
|
||||||
|
.onFailure {
|
||||||
|
Timber.e(it)
|
||||||
|
_autoTunnelActive.update { false }
|
||||||
|
}
|
||||||
|
withContext(mainDispatcher) { updateAutoTunnelTile() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun stopAutoTunnel() {
|
||||||
|
autoTunnelMutex.withLock {
|
||||||
|
val settings = appDataRepository.settings.get()
|
||||||
|
appDataRepository.settings.save(settings.copy(isAutoTunnelEnabled = false))
|
||||||
|
if (!autoTunnelService.isCompleted) return
|
||||||
|
runCatching {
|
||||||
|
val service = autoTunnelService.await()
|
||||||
|
service.stop()
|
||||||
|
_autoTunnelActive.update { false }
|
||||||
|
autoTunnelService = CompletableDeferred()
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
withContext(mainDispatcher) { updateAutoTunnelTile() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun startTunnelForegroundService() {
|
||||||
|
if (backgroundService.isCompleted) return
|
||||||
|
runCatching {
|
||||||
|
backgroundService = CompletableDeferred()
|
||||||
|
startService(
|
||||||
|
TunnelForegroundService::class.java,
|
||||||
|
!WireGuardAutoTunnel.isForeground(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun stopTunnelForegroundService() {
|
||||||
|
if (!backgroundService.isCompleted) return
|
||||||
|
runCatching {
|
||||||
|
val service = backgroundService.await()
|
||||||
|
service.stop()
|
||||||
|
backgroundService = CompletableDeferred()
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun toggleAutoTunnel() {
|
||||||
|
applicationScope.launch(ioDispatcher) {
|
||||||
|
if (_autoTunnelActive.value) stopAutoTunnel() else startAutoTunnel()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateAutoTunnelTile() {
|
||||||
|
context.requestAutoTunnelTileServiceUpdate()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateTunnelTile() {
|
||||||
|
context.requestTunnelTileServiceStateUpdate()
|
||||||
|
}
|
||||||
|
}
|
||||||
+322
@@ -0,0 +1,322 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.service
|
||||||
|
|
||||||
|
import android.app.Notification
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.IBinder
|
||||||
|
import androidx.core.app.ServiceCompat
|
||||||
|
import androidx.lifecycle.LifecycleService
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkStatus
|
||||||
|
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.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.distinctByKeys
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CompletableDeferred
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
import kotlinx.coroutines.NonCancellable
|
||||||
|
import kotlinx.coroutines.coroutineScope
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.collectLatest
|
||||||
|
import kotlinx.coroutines.flow.distinctUntilChanged
|
||||||
|
import kotlinx.coroutines.flow.filterNotNull
|
||||||
|
import kotlinx.coroutines.flow.flowOn
|
||||||
|
import kotlinx.coroutines.flow.map
|
||||||
|
import kotlinx.coroutines.isActive
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
|
import kotlinx.coroutines.withContext
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class TunnelForegroundService : LifecycleService() {
|
||||||
|
|
||||||
|
@Inject lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var networkMonitor: NetworkMonitor
|
||||||
|
|
||||||
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelRepo: TunnelRepository
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
private val isNetworkConnected = MutableStateFlow(true)
|
||||||
|
|
||||||
|
private val tunnelJobs = ConcurrentHashMap<TunnelConf, Job>()
|
||||||
|
private val pingJobs = ConcurrentHashMap<TunnelConf, Job>()
|
||||||
|
|
||||||
|
private val jobsMutex = Mutex()
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
serviceManager.backgroundService.complete(this)
|
||||||
|
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 null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
super.onStartCommand(intent, flags, startId)
|
||||||
|
serviceManager.backgroundService.complete(this)
|
||||||
|
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 ->
|
||||||
|
// No active tunnels and no jobs: nothing to do
|
||||||
|
if (activeTunnels.isEmpty() && tunnelJobs.isEmpty()) return@collect
|
||||||
|
|
||||||
|
// Synchronize jobs with active tunnels
|
||||||
|
synchronizeJobs(activeTunnels)
|
||||||
|
updateServiceNotification()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun synchronizeJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
jobsMutex.withLock {
|
||||||
|
// Stop jobs for tunnels that are no longer active
|
||||||
|
stopInactiveJobs(activeTunnels)
|
||||||
|
// Start jobs for new tunnels
|
||||||
|
startNewJobs(activeTunnels)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopInactiveJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
// If no active tunnels, clear all jobs
|
||||||
|
if (activeTunnels.isEmpty()) {
|
||||||
|
clearAllJobs()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Stop jobs for tunnels not in activeTunnels
|
||||||
|
val tunnelsToStop = tunnelJobs.keys - activeTunnels.keys
|
||||||
|
tunnelsToStop.forEach { tun -> stopTunnelJobs(tun) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clearAllJobs() {
|
||||||
|
tunnelJobs.forEach { (tun, job) ->
|
||||||
|
Timber.d("Stopping tunnel job for ${tun.tunName}")
|
||||||
|
job.cancel()
|
||||||
|
}
|
||||||
|
tunnelJobs.clear()
|
||||||
|
|
||||||
|
pingJobs.forEach { (tun, job) ->
|
||||||
|
if (isPingBounce(tun)) {
|
||||||
|
Timber.d("Preserving ping job for ${tun.tunName} due to PING bounce")
|
||||||
|
return@forEach
|
||||||
|
}
|
||||||
|
Timber.d("Stopping ping job for ${tun.tunName}")
|
||||||
|
job.cancel()
|
||||||
|
}
|
||||||
|
pingJobs.entries.removeIf { (tun, _) -> !isPingBounce(tun) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun stopTunnelJobs(tun: TunnelConf) {
|
||||||
|
tunnelJobs.remove(tun)?.cancel()
|
||||||
|
Timber.d("Stopped tunnel job for ${tun.tunName}")
|
||||||
|
if (isPingBounce(tun))
|
||||||
|
return Timber.d("Preserving ${tun.tunName} ping job due to ping bounce")
|
||||||
|
pingJobs.remove(tun)?.cancel()
|
||||||
|
Timber.d("Stopped ping job for ${tun.tunName}")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startNewJobs(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
val tunnelsToStart = activeTunnels.keys - tunnelJobs.keys
|
||||||
|
tunnelsToStart.forEach { tun ->
|
||||||
|
tunnelJobs[tun] = startTunnelJobs(tun)
|
||||||
|
Timber.d("Started tunnel job for ${tun.tunName}")
|
||||||
|
|
||||||
|
if (pingJobs[tun]?.isActive == true) {
|
||||||
|
Timber.d("Reusing active ping job for ${tun.tunName}")
|
||||||
|
} else {
|
||||||
|
pingJobs[tun]?.cancel() // Cancel any stale job
|
||||||
|
if (tun.isPingEnabled) {
|
||||||
|
pingJobs[tun] = startPingJob(tun)
|
||||||
|
Timber.d("Started ping job for ${tun.tunName}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isPingBounce(tun: TunnelConf): Boolean =
|
||||||
|
tunnelManager.bouncingTunnelIds[tun.id] == TunnelStatus.StopReason.PING
|
||||||
|
|
||||||
|
// TODO Would be cool to have this include kill switch
|
||||||
|
// TODO also we need to include errors
|
||||||
|
private fun updateServiceNotification() {
|
||||||
|
val notification =
|
||||||
|
when (tunnelJobs.size) {
|
||||||
|
0 -> onCreateNotification()
|
||||||
|
1 -> createTunnelNotification(tunnelJobs.keys.first())
|
||||||
|
else -> createTunnelsNotification()
|
||||||
|
}
|
||||||
|
ServiceCompat.startForeground(
|
||||||
|
this@TunnelForegroundService,
|
||||||
|
NotificationManager.VPN_NOTIFICATION_ID,
|
||||||
|
notification,
|
||||||
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// use same scope so we can cancel all of these
|
||||||
|
private fun startTunnelJobs(tunnelConf: TunnelConf) =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
// monitor if we have internet connectivity
|
||||||
|
launch { startNetworkMonitorJob() }
|
||||||
|
// job to trigger stats emit on interval
|
||||||
|
launch { startTunnelStatsJob(tunnelConf) }
|
||||||
|
// monitor changes to the tunnel config
|
||||||
|
launch { startTunnelConfChangesJob(tunnelConf) }
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startTunnelConfChangesJob(tunnelConf: TunnelConf) {
|
||||||
|
tunnelRepo.flow
|
||||||
|
.flowOn(ioDispatcher)
|
||||||
|
.map { storedTunnels -> storedTunnels.firstOrNull { it.id == tunnelConf.id } }
|
||||||
|
.filterNotNull()
|
||||||
|
// only emit when one of these 3 values change
|
||||||
|
.distinctUntilChanged { old, new -> old == new }
|
||||||
|
.collect { storedTunnel ->
|
||||||
|
if (tunnelConf != storedTunnel) {
|
||||||
|
Timber.d("Config changed for ${storedTunnel.tunName}, bouncing")
|
||||||
|
// let this complete, even after cancel
|
||||||
|
withContext(NonCancellable) {
|
||||||
|
tunnelManager.bounceTunnel(
|
||||||
|
storedTunnel,
|
||||||
|
TunnelStatus.StopReason.CONFIG_CHANGED,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startNetworkMonitorJob() {
|
||||||
|
networkMonitor.networkStatusFlow.flowOn(ioDispatcher).collectLatest { status ->
|
||||||
|
val isAvailable = status !is NetworkStatus.Disconnected
|
||||||
|
isNetworkConnected.value = isAvailable
|
||||||
|
Timber.d("Network available: $status")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startTunnelStatsJob(tunnel: TunnelConf) = coroutineScope {
|
||||||
|
while (isActive) {
|
||||||
|
tunnelManager.updateTunnelStatistics(tunnel)
|
||||||
|
delay(STATS_DELAY)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startPingJob(tunnel: TunnelConf) =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
// delay for initial duration
|
||||||
|
delay(tunnel.pingInterval ?: Constants.PING_INTERVAL)
|
||||||
|
while (isActive) {
|
||||||
|
val shouldBounce = shouldBounceTunnel(tunnel)
|
||||||
|
val delayMs =
|
||||||
|
if (shouldBounce) {
|
||||||
|
// let this complete, even after cancel
|
||||||
|
withContext(NonCancellable) {
|
||||||
|
tunnelManager.bounceTunnel(tunnel, TunnelStatus.StopReason.PING)
|
||||||
|
}
|
||||||
|
tunnel.pingCooldown ?: Constants.PING_COOLDOWN
|
||||||
|
} else {
|
||||||
|
tunnel.pingInterval ?: Constants.PING_INTERVAL
|
||||||
|
}
|
||||||
|
delay(delayMs)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun shouldBounceTunnel(tunnel: TunnelConf): Boolean {
|
||||||
|
if (!isNetworkConnected.value) {
|
||||||
|
Timber.d("Network disconnected, skipping ping for ${tunnel.tunName}")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return runCatching { !tunnel.isTunnelPingable(ioDispatcher) }
|
||||||
|
.onFailure { e -> Timber.e(e, "Ping check failed for ${tunnel.tunName}") }
|
||||||
|
.getOrDefault(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stop() {
|
||||||
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
|
stopSelf()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
serviceManager.backgroundService = CompletableDeferred()
|
||||||
|
ServiceCompat.stopForeground(this, ServiceCompat.STOP_FOREGROUND_REMOVE)
|
||||||
|
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),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO add notification handling and optional log reading for restart on handshake failures
|
||||||
|
companion object {
|
||||||
|
const val STATS_DELAY = 1_000L
|
||||||
|
// ipv6 disabled or block on network
|
||||||
|
// Failed to send handshake initiation: write udp [::]"
|
||||||
|
// Failed to send data packets: write udp [::]
|
||||||
|
// Failed to send data packets: write udp 0.0.0.0:51820
|
||||||
|
// Handshake did not complete after 5 seconds, retrying
|
||||||
|
}
|
||||||
|
}
|
||||||
+276
@@ -0,0 +1,276 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.service.autotunnel
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.IBinder
|
||||||
|
import android.os.PowerManager
|
||||||
|
import androidx.core.app.ServiceCompat
|
||||||
|
import androidx.lifecycle.LifecycleService
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkMonitor
|
||||||
|
import com.zaneschepke.networkmonitor.NetworkStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.NotificationManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.notification.WireGuardNotification
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.AppSettings
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.NotificationAction
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.events.AutoTunnelEvent
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.events.KillSwitchEvent
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.AutoTunnelState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.NetworkState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.Constants
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.Tunnels
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Provider
|
||||||
|
import kotlinx.coroutines.CompletableDeferred
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||||
|
import kotlinx.coroutines.FlowPreview
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
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.flatMapLatest
|
||||||
|
import kotlinx.coroutines.flow.flowOn
|
||||||
|
import kotlinx.coroutines.flow.map
|
||||||
|
import kotlinx.coroutines.flow.update
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class AutoTunnelService : LifecycleService() {
|
||||||
|
|
||||||
|
@Inject lateinit var networkMonitor: NetworkMonitor
|
||||||
|
|
||||||
|
@Inject lateinit var appDataRepository: Provider<AppDataRepository>
|
||||||
|
|
||||||
|
@Inject lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
|
@Inject @IoDispatcher lateinit var ioDispatcher: CoroutineDispatcher
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
private val defaultState = AutoTunnelState()
|
||||||
|
|
||||||
|
private val autoTunnelStateFlow = MutableStateFlow(defaultState)
|
||||||
|
|
||||||
|
private var wakeLock: PowerManager.WakeLock? = null
|
||||||
|
|
||||||
|
private var killSwitchJob: Job? = null
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
serviceManager.autoTunnelService.complete(this)
|
||||||
|
launchWatcherNotification()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBind(intent: Intent): IBinder? {
|
||||||
|
super.onBind(intent)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
super.onStartCommand(intent, flags, startId)
|
||||||
|
Timber.d("onStartCommand executed with startId: $startId")
|
||||||
|
serviceManager.autoTunnelService.complete(this)
|
||||||
|
start()
|
||||||
|
return START_STICKY
|
||||||
|
}
|
||||||
|
|
||||||
|
fun start() {
|
||||||
|
kotlin
|
||||||
|
.runCatching {
|
||||||
|
launchWatcherNotification()
|
||||||
|
initWakeLock()
|
||||||
|
startAutoTunnelJob()
|
||||||
|
startAutoTunnelStateJob()
|
||||||
|
killSwitchJob = startKillSwitchJob()
|
||||||
|
}
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stop() {
|
||||||
|
wakeLock?.let { if (it.isHeld) it.release() }
|
||||||
|
stopSelf()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
serviceManager.autoTunnelService = CompletableDeferred()
|
||||||
|
restoreVpnKillSwitch()
|
||||||
|
super.onDestroy()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun restoreVpnKillSwitch() {
|
||||||
|
with(autoTunnelStateFlow.value) {
|
||||||
|
if (
|
||||||
|
settings.isVpnKillSwitchEnabled &&
|
||||||
|
tunnelManager.getBackendState() != BackendState.KILL_SWITCH_ACTIVE
|
||||||
|
) {
|
||||||
|
killSwitchJob?.cancel()
|
||||||
|
val allowedIps =
|
||||||
|
if (settings.isLanOnKillSwitchEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS
|
||||||
|
else emptyList()
|
||||||
|
tunnelManager.setBackendState(BackendState.KILL_SWITCH_ACTIVE, allowedIps)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun launchWatcherNotification(
|
||||||
|
description: String = getString(R.string.monitoring_state_changes)
|
||||||
|
) {
|
||||||
|
val notification =
|
||||||
|
notificationManager.createNotification(
|
||||||
|
WireGuardNotification.NotificationChannels.AUTO_TUNNEL,
|
||||||
|
title = getString(R.string.auto_tunnel_title),
|
||||||
|
description = description,
|
||||||
|
actions =
|
||||||
|
listOf(
|
||||||
|
notificationManager.createNotificationAction(
|
||||||
|
NotificationAction.AUTO_TUNNEL_OFF
|
||||||
|
)
|
||||||
|
),
|
||||||
|
)
|
||||||
|
ServiceCompat.startForeground(
|
||||||
|
this,
|
||||||
|
NotificationManager.AUTO_TUNNEL_NOTIFICATION_ID,
|
||||||
|
notification,
|
||||||
|
Constants.SYSTEM_EXEMPT_SERVICE_TYPE_ID,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun initWakeLock() {
|
||||||
|
wakeLock =
|
||||||
|
(getSystemService(POWER_SERVICE) as PowerManager).run {
|
||||||
|
val tag = this.javaClass.name
|
||||||
|
newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "$tag::lock").apply {
|
||||||
|
try {
|
||||||
|
Timber.i("Initiating wakelock with 10 min timeout")
|
||||||
|
acquire(Constants.BATTERY_SAVER_WATCHER_WAKE_LOCK_TIMEOUT)
|
||||||
|
} finally {
|
||||||
|
release()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildNetworkState(networkStatus: NetworkStatus): NetworkState {
|
||||||
|
return with(autoTunnelStateFlow.value.networkState) {
|
||||||
|
val wifiName =
|
||||||
|
when (networkStatus) {
|
||||||
|
is NetworkStatus.Connected -> {
|
||||||
|
networkStatus.wifiSsid
|
||||||
|
}
|
||||||
|
else -> null
|
||||||
|
}
|
||||||
|
copy(
|
||||||
|
isWifiConnected = networkStatus.wifiConnected,
|
||||||
|
isMobileDataConnected = networkStatus.cellularConnected,
|
||||||
|
isEthernetConnected = networkStatus.ethernetConnected,
|
||||||
|
wifiName = wifiName,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
|
private fun startAutoTunnelStateJob() =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
combine(
|
||||||
|
combineSettings(),
|
||||||
|
appDataRepository
|
||||||
|
.get()
|
||||||
|
.settings
|
||||||
|
.flow
|
||||||
|
.distinctUntilChanged { old, new ->
|
||||||
|
old.isKernelEnabled == new.isKernelEnabled
|
||||||
|
} // Only emit when isKernelEnabled changes
|
||||||
|
.flatMapLatest {
|
||||||
|
networkMonitor.networkStatusFlow.flowOn(ioDispatcher).map {
|
||||||
|
buildNetworkState(it)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.distinctUntilChanged(),
|
||||||
|
) { double, networkState ->
|
||||||
|
AutoTunnelState(
|
||||||
|
tunnelManager.activeTunnels.value,
|
||||||
|
networkState,
|
||||||
|
double.first,
|
||||||
|
double.second,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.collect { state ->
|
||||||
|
autoTunnelStateFlow.update {
|
||||||
|
it.copy(
|
||||||
|
activeTunnels = state.activeTunnels,
|
||||||
|
networkState = state.networkState,
|
||||||
|
settings = state.settings,
|
||||||
|
tunnels = state.tunnels,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun combineSettings(): Flow<Pair<AppSettings, Tunnels>> {
|
||||||
|
return combine(
|
||||||
|
appDataRepository.get().settings.flow,
|
||||||
|
appDataRepository.get().tunnels.flow.map { tunnels ->
|
||||||
|
// isActive is ignored for equality checks so user can manually toggle off
|
||||||
|
// tunnel with auto-tunnel
|
||||||
|
tunnels.map { it.copy(isActive = false) }
|
||||||
|
},
|
||||||
|
) { settings, tunnels ->
|
||||||
|
Pair(settings, tunnels)
|
||||||
|
}
|
||||||
|
.distinctUntilChanged()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startKillSwitchJob() =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
autoTunnelStateFlow.collect {
|
||||||
|
if (it == defaultState) return@collect
|
||||||
|
when (val event = it.asKillSwitchEvent()) {
|
||||||
|
KillSwitchEvent.DoNothing -> Unit
|
||||||
|
is KillSwitchEvent.Start -> {
|
||||||
|
Timber.d("Starting kill switch")
|
||||||
|
tunnelManager.setBackendState(
|
||||||
|
BackendState.KILL_SWITCH_ACTIVE,
|
||||||
|
event.allowedIps,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
KillSwitchEvent.Stop -> {
|
||||||
|
Timber.d("Stopping kill switch")
|
||||||
|
tunnelManager.setBackendState(BackendState.SERVICE_ACTIVE, emptySet())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OptIn(FlowPreview::class)
|
||||||
|
private fun startAutoTunnelJob() =
|
||||||
|
lifecycleScope.launch(ioDispatcher) {
|
||||||
|
Timber.i("Starting auto-tunnel network event watcher")
|
||||||
|
val settings = appDataRepository.get().settings.get()
|
||||||
|
Timber.d("Starting with debounce delay of: ${settings.debounceDelaySeconds} seconds")
|
||||||
|
autoTunnelStateFlow.debounce(settings.debounceDelayMillis()).collect { watcherState ->
|
||||||
|
if (watcherState == defaultState) return@collect
|
||||||
|
Timber.d("New auto tunnel state emitted ${watcherState.networkState}")
|
||||||
|
when (val event = watcherState.asAutoTunnelEvent()) {
|
||||||
|
is AutoTunnelEvent.Start ->
|
||||||
|
(event.tunnelConf ?: appDataRepository.get().getPrimaryOrFirstTunnel())
|
||||||
|
?.let { tunnelManager.startTunnel(it) }
|
||||||
|
// TODO improve this to target specific tunnels to better support multi-tunnel
|
||||||
|
is AutoTunnelEvent.Stop -> tunnelManager.stopTunnel()
|
||||||
|
AutoTunnelEvent.DoNothing -> Timber.i("Auto-tunneling: no condition met")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+104
@@ -0,0 +1,104 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.service.tile
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.IBinder
|
||||||
|
import android.service.quicksettings.Tile
|
||||||
|
import android.service.quicksettings.TileService
|
||||||
|
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.domain.repository.AppDataRepository
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class AutoTunnelControlTile : TileService(), LifecycleOwner {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_CREATE)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartListening() {
|
||||||
|
super.onStartListening()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
||||||
|
Timber.d("Start listening called for auto tunnel tile")
|
||||||
|
lifecycleScope.launch {
|
||||||
|
serviceManager.autoTunnelActive.collect {
|
||||||
|
if (it) return@collect setActive()
|
||||||
|
setInactive()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lifecycleScope.launch {
|
||||||
|
appDataRepository.tunnels.flow.collect {
|
||||||
|
if (it.isEmpty()) {
|
||||||
|
setUnavailable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onClick() {
|
||||||
|
super.onClick()
|
||||||
|
unlockAndRun {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
if (serviceManager.autoTunnelActive.value) {
|
||||||
|
serviceManager.stopAutoTunnel()
|
||||||
|
setInactive()
|
||||||
|
} else {
|
||||||
|
serviceManager.startAutoTunnel()
|
||||||
|
setActive()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setActive() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_ACTIVE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setInactive() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_INACTIVE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* This works around an annoying unsolved frameworks bug some people are hitting. */
|
||||||
|
override fun onBind(intent: Intent): IBinder? {
|
||||||
|
var ret: IBinder? = null
|
||||||
|
try {
|
||||||
|
ret = super.onBind(intent)
|
||||||
|
} catch (_: Throwable) {
|
||||||
|
Timber.e("Failed to bind to TunnelControlTile")
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setUnavailable() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_UNAVAILABLE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override val lifecycle: Lifecycle
|
||||||
|
get() = lifecycleRegistry
|
||||||
|
}
|
||||||
+183
@@ -0,0 +1,183 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.service.tile
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Build
|
||||||
|
import android.os.IBinder
|
||||||
|
import android.service.quicksettings.Tile
|
||||||
|
import android.service.quicksettings.TileService
|
||||||
|
import androidx.lifecycle.Lifecycle
|
||||||
|
import androidx.lifecycle.LifecycleOwner
|
||||||
|
import androidx.lifecycle.LifecycleRegistry
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.R
|
||||||
|
import com.zaneschepke.wireguardautotunnel.WireGuardAutoTunnel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class TunnelControlTile : TileService(), LifecycleOwner {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
private val lifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
|
||||||
|
|
||||||
|
private var isCollecting = false
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_CREATE)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartListening() {
|
||||||
|
super.onStartListening()
|
||||||
|
lifecycleRegistry.handleLifecycleEvent(Lifecycle.Event.ON_START)
|
||||||
|
Timber.d("Start listening called for tunnel tile")
|
||||||
|
if (isCollecting) return
|
||||||
|
isCollecting = true
|
||||||
|
lifecycleScope.launch { tunnelManager.activeTunnels.collect { updateTileState() } }
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun updateTileState() {
|
||||||
|
try {
|
||||||
|
val tunnels = appDataRepository.tunnels.getAll()
|
||||||
|
if (tunnels.isEmpty()) {
|
||||||
|
setUnavailable()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
val activeTunnels =
|
||||||
|
tunnelManager.activeTunnels.value.filter { it.value.status.isUpOrStarting() }
|
||||||
|
|
||||||
|
when {
|
||||||
|
activeTunnels.isNotEmpty() -> {
|
||||||
|
val activeIds = activeTunnels.map { it.key.id }
|
||||||
|
// TODO improvements would be needed to make this work well with toggling
|
||||||
|
// multiple tunnels
|
||||||
|
// this would be better managed elsewhere
|
||||||
|
WireGuardAutoTunnel.setLastActiveTunnels(activeIds)
|
||||||
|
updateTileForActiveTunnels(activeTunnels)
|
||||||
|
}
|
||||||
|
else -> updateTileForLastActiveTunnels()
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
setUnavailable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateTileForActiveTunnels(activeTunnels: Map<TunnelConf, TunnelState>) {
|
||||||
|
val tileName =
|
||||||
|
when (activeTunnels.size) {
|
||||||
|
1 -> activeTunnels.keys.first().tunName
|
||||||
|
else -> getString(R.string.multiple)
|
||||||
|
}
|
||||||
|
updateTile(tileName, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun updateTileForLastActiveTunnels() {
|
||||||
|
val lastActiveIds = WireGuardAutoTunnel.getLastActiveTunnels()
|
||||||
|
when {
|
||||||
|
lastActiveIds.isEmpty() -> {
|
||||||
|
appDataRepository.getStartTunnelConfig()?.let { config ->
|
||||||
|
updateTile(config.tunName, false)
|
||||||
|
} ?: setUnavailable()
|
||||||
|
}
|
||||||
|
lastActiveIds.size > 1 -> updateTile(getString(R.string.multiple), false)
|
||||||
|
else -> {
|
||||||
|
val tunnelId = lastActiveIds.first()
|
||||||
|
appDataRepository.tunnels.getById(tunnelId)?.let { tunnel ->
|
||||||
|
updateTile(tunnel.tunName, false)
|
||||||
|
} ?: setUnavailable()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onClick() {
|
||||||
|
super.onClick()
|
||||||
|
unlockAndRun {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
if (tunnelManager.activeTunnels.value.isNotEmpty())
|
||||||
|
return@launch tunnelManager.stopTunnel()
|
||||||
|
val lastActive = WireGuardAutoTunnel.getLastActiveTunnels()
|
||||||
|
if (lastActive.isEmpty()) {
|
||||||
|
appDataRepository.getStartTunnelConfig()?.let { tunnelManager.startTunnel(it) }
|
||||||
|
} else {
|
||||||
|
lastActive.forEach { id ->
|
||||||
|
appDataRepository.tunnels.getById(id)?.let { tunnelManager.startTunnel(it) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setActive() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_ACTIVE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setInactive() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_INACTIVE
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setUnavailable() {
|
||||||
|
runCatching {
|
||||||
|
qsTile.state = Tile.STATE_UNAVAILABLE
|
||||||
|
setTileDescription("")
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setTileDescription(description: String) {
|
||||||
|
runCatching {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||||
|
qsTile.subtitle = description
|
||||||
|
}
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
|
qsTile.stateDescription = description
|
||||||
|
}
|
||||||
|
qsTile.updateTile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* This works around an annoying unsolved frameworks bug some people are hitting. */
|
||||||
|
override fun onBind(intent: Intent): IBinder? {
|
||||||
|
var ret: IBinder? = null
|
||||||
|
try {
|
||||||
|
ret = super.onBind(intent)
|
||||||
|
} catch (_: Throwable) {
|
||||||
|
Timber.e("Failed to bind to TunnelControlTile")
|
||||||
|
}
|
||||||
|
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
|
||||||
|
get() = lifecycleRegistry
|
||||||
|
}
|
||||||
+6
-5
@@ -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) {
|
||||||
@@ -34,7 +35,7 @@ class DynamicShortcutManager(
|
|||||||
intent =
|
intent =
|
||||||
Intent(context, ShortcutsActivity::class.java).apply {
|
Intent(context, ShortcutsActivity::class.java).apply {
|
||||||
putExtra("className", "WireGuardTunnelService")
|
putExtra("className", "WireGuardTunnelService")
|
||||||
action = ShortcutContract.Action.STOP.name
|
action = ShortcutsActivity.Action.STOP.name
|
||||||
},
|
},
|
||||||
shortcutIcon = R.drawable.vpn_off,
|
shortcutIcon = R.drawable.vpn_off,
|
||||||
),
|
),
|
||||||
@@ -45,7 +46,7 @@ class DynamicShortcutManager(
|
|||||||
intent =
|
intent =
|
||||||
Intent(context, ShortcutsActivity::class.java).apply {
|
Intent(context, ShortcutsActivity::class.java).apply {
|
||||||
putExtra("className", "WireGuardTunnelService")
|
putExtra("className", "WireGuardTunnelService")
|
||||||
action = ShortcutContract.Action.START.name
|
action = ShortcutsActivity.Action.START.name
|
||||||
},
|
},
|
||||||
shortcutIcon = R.drawable.vpn_on,
|
shortcutIcon = R.drawable.vpn_on,
|
||||||
),
|
),
|
||||||
@@ -56,7 +57,7 @@ class DynamicShortcutManager(
|
|||||||
intent =
|
intent =
|
||||||
Intent(context, ShortcutsActivity::class.java).apply {
|
Intent(context, ShortcutsActivity::class.java).apply {
|
||||||
putExtra("className", "WireGuardConnectivityWatcherService")
|
putExtra("className", "WireGuardConnectivityWatcherService")
|
||||||
action = ShortcutContract.Action.START.name
|
action = ShortcutsActivity.Action.START.name
|
||||||
},
|
},
|
||||||
shortcutIcon = R.drawable.auto_play,
|
shortcutIcon = R.drawable.auto_play,
|
||||||
),
|
),
|
||||||
@@ -67,7 +68,7 @@ class DynamicShortcutManager(
|
|||||||
intent =
|
intent =
|
||||||
Intent(context, ShortcutsActivity::class.java).apply {
|
Intent(context, ShortcutsActivity::class.java).apply {
|
||||||
putExtra("className", "WireGuardConnectivityWatcherService")
|
putExtra("className", "WireGuardConnectivityWatcherService")
|
||||||
action = ShortcutContract.Action.STOP.name
|
action = ShortcutsActivity.Action.STOP.name
|
||||||
},
|
},
|
||||||
shortcutIcon = R.drawable.auto_pause,
|
shortcutIcon = R.drawable.auto_pause,
|
||||||
),
|
),
|
||||||
|
|||||||
-31
@@ -1,31 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.shortcut
|
|
||||||
|
|
||||||
object ShortcutContract {
|
|
||||||
|
|
||||||
const val EXTRA_SHORTCUT_TYPE = "com.zaneschepke.wireguardautotunnel.shortcut.TYPE"
|
|
||||||
|
|
||||||
const val EXTRA_TUNNEL_NAME = "tunnelName"
|
|
||||||
|
|
||||||
const val EXTRA_CLASS_NAME = "className"
|
|
||||||
|
|
||||||
enum class ShortcutType(val value: String) {
|
|
||||||
TUNNEL("tunnel"),
|
|
||||||
AUTO_TUNNEL("auto_tunnel"),
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class Action {
|
|
||||||
START,
|
|
||||||
STOP,
|
|
||||||
}
|
|
||||||
|
|
||||||
object Legacy {
|
|
||||||
|
|
||||||
const val TUNNEL_PROVIDER_NAME = "TunnelProvider"
|
|
||||||
|
|
||||||
const val AUTO_TUNNEL_SERVICE_CLASS_NAME = "AutoTunnelService"
|
|
||||||
|
|
||||||
const val TUNNEL_SERVICE_NAME = "WireGuardTunnelService"
|
|
||||||
|
|
||||||
const val AUTO_TUNNEL_SERVICE_NAME = "WireGuardConnectivityWatcherService"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+59
-9
@@ -2,25 +2,75 @@ 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.orchestration.ShortcutCoordinator
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.di.Scope
|
import com.zaneschepke.wireguardautotunnel.core.service.autotunnel.AutoTunnelService
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelProvider
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
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.android.ext.android.inject
|
import timber.log.Timber
|
||||||
import org.koin.core.qualifier.named
|
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
class ShortcutsActivity : ComponentActivity() {
|
class ShortcutsActivity : ComponentActivity() {
|
||||||
|
@Inject lateinit var appDataRepository: AppDataRepository
|
||||||
|
|
||||||
private val shortcutCoordinator: ShortcutCoordinator by inject()
|
@Inject lateinit var serviceManager: ServiceManager
|
||||||
|
|
||||||
private val applicationScope: CoroutineScope by inject(named(Scope.APPLICATION))
|
@Inject lateinit var tunnelManager: TunnelManager
|
||||||
|
|
||||||
|
@Inject @ApplicationScope lateinit var applicationScope: CoroutineScope
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
applicationScope.launch {
|
||||||
|
val settings = appDataRepository.settings.get()
|
||||||
|
if (settings.isShortcutsEnabled) {
|
||||||
|
when (intent.getStringExtra(CLASS_NAME_EXTRA_KEY)) {
|
||||||
|
LEGACY_TUNNEL_SERVICE_NAME,
|
||||||
|
TunnelProvider::class.java.simpleName -> {
|
||||||
|
val tunnelName = intent.getStringExtra(TUNNEL_NAME_EXTRA_KEY)
|
||||||
|
Timber.d("Tunnel name extra: $tunnelName")
|
||||||
|
val tunnelConfig =
|
||||||
|
tunnelName?.let {
|
||||||
|
appDataRepository.tunnels.getAll().firstOrNull {
|
||||||
|
it.tunName == tunnelName
|
||||||
|
}
|
||||||
|
} ?: appDataRepository.getStartTunnelConfig()
|
||||||
|
Timber.d("Shortcut action on name: ${tunnelConfig?.tunName}")
|
||||||
|
tunnelConfig?.let {
|
||||||
|
when (intent.action) {
|
||||||
|
Action.START.name -> tunnelManager.startTunnel(it)
|
||||||
|
Action.STOP.name -> tunnelManager.stopTunnel()
|
||||||
|
else -> Unit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
AutoTunnelService::class.java.simpleName,
|
||||||
|
LEGACY_AUTO_TUNNEL_SERVICE_NAME -> {
|
||||||
|
when (intent.action) {
|
||||||
|
Action.START.name -> serviceManager.startAutoTunnel()
|
||||||
|
Action.STOP.name -> serviceManager.stopAutoTunnel()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
finish()
|
finish()
|
||||||
|
}
|
||||||
|
|
||||||
applicationScope.launch { shortcutCoordinator.handle(intent) }
|
enum class Action {
|
||||||
|
START,
|
||||||
|
STOP,
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val LEGACY_TUNNEL_SERVICE_NAME = "WireGuardTunnelService"
|
||||||
|
const val LEGACY_AUTO_TUNNEL_SERVICE_NAME = "WireGuardConnectivityWatcherService"
|
||||||
|
const val TUNNEL_NAME_EXTRA_KEY = "tunnelName"
|
||||||
|
const val CLASS_NAME_EXTRA_KEY = "className"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
-116
@@ -1,116 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
|
||||||
|
|
||||||
import android.app.Notification
|
|
||||||
import android.app.PendingIntent
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import com.zaneschepke.tunnel.ApplicationProvider
|
|
||||||
import com.zaneschepke.tunnel.model.BackendMode
|
|
||||||
import com.zaneschepke.tunnel.state.BackendStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.MainActivity
|
|
||||||
import com.zaneschepke.wireguardautotunnel.R
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.TunnelRepository
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.AndroidNotificationService
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.NotificationService
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.NotificationService.Companion.PROXY_GROUP_KEY
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.NotificationService.Companion.VPN_GROUP_KEY
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.TunnelNotificationLine
|
|
||||||
import com.zaneschepke.wireguardautotunnel.notification.TunnelNotificationService
|
|
||||||
import com.zaneschepke.wireguardautotunnel.service.tile.TunnelTileRefresher
|
|
||||||
import com.zaneschepke.wireguardautotunnel.ui.state.DisplayTunnelState
|
|
||||||
import kotlinx.coroutines.flow.first
|
|
||||||
|
|
||||||
class AndroidApplicationProvider(
|
|
||||||
private val notificationService: NotificationService,
|
|
||||||
private val tunnelNotificationService: TunnelNotificationService,
|
|
||||||
private val tunnelRepository: TunnelRepository,
|
|
||||||
) : ApplicationProvider {
|
|
||||||
|
|
||||||
private val context: Context = notificationService.context
|
|
||||||
|
|
||||||
override fun refreshTile(context: Context) {
|
|
||||||
TunnelTileRefresher.refresh(context)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun createVpnConfigurePendingIntent(context: Context): PendingIntent {
|
|
||||||
return PendingIntent.getActivity(
|
|
||||||
context,
|
|
||||||
0,
|
|
||||||
Intent(context, MainActivity::class.java).apply {
|
|
||||||
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
|
||||||
},
|
|
||||||
PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
override val vpnInitNotification: Notification
|
|
||||||
get() =
|
|
||||||
notificationService.createNotification(
|
|
||||||
channel = AndroidNotificationService.NotificationChannels.Tunnel.VPN,
|
|
||||||
title = context.getString(R.string.initializing),
|
|
||||||
onGoing = true,
|
|
||||||
groupKey = VPN_GROUP_KEY,
|
|
||||||
)
|
|
||||||
|
|
||||||
override val proxyInitNotification: Notification
|
|
||||||
get() =
|
|
||||||
notificationService.createNotification(
|
|
||||||
channel = AndroidNotificationService.NotificationChannels.Tunnel.Proxy,
|
|
||||||
title = context.getString(R.string.initializing),
|
|
||||||
onGoing = true,
|
|
||||||
groupKey = PROXY_GROUP_KEY,
|
|
||||||
)
|
|
||||||
|
|
||||||
override val vpnNotificationId: Int
|
|
||||||
get() = NotificationService.VPN_NOTIFICATION_ID
|
|
||||||
|
|
||||||
override val proxyNotificationId: Int
|
|
||||||
get() = NotificationService.PROXY_NOTIFICATION_ID
|
|
||||||
|
|
||||||
override suspend fun buildVpnPersistentNotification(
|
|
||||||
currentStatus: BackendStatus
|
|
||||||
): Notification {
|
|
||||||
val lines = computeVpnNotificationLines(currentStatus)
|
|
||||||
return tunnelNotificationService.buildVpnPersistentNotification(lines)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun buildProxyPersistentNotification(
|
|
||||||
currentStatus: BackendStatus
|
|
||||||
): Notification {
|
|
||||||
val lines = computeProxyNotificationLines(currentStatus)
|
|
||||||
return tunnelNotificationService.buildProxyPersistentNotification(lines)
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun computeVpnNotificationLines(
|
|
||||||
status: BackendStatus
|
|
||||||
): Map<Int, TunnelNotificationLine> {
|
|
||||||
val activeTunnels = status.activeTunnels
|
|
||||||
val allTunnels = tunnelRepository.userTunnelsFlow.first()
|
|
||||||
return activeTunnels
|
|
||||||
.mapNotNull { (id, activeTunnel) ->
|
|
||||||
val mode = activeTunnel.mode ?: return@mapNotNull null
|
|
||||||
if (mode !is BackendMode.Vpn && mode !is BackendMode.Proxy.KillSwitchPrimary)
|
|
||||||
return@mapNotNull null
|
|
||||||
val tunnel = allTunnels.find { it.id == id } ?: return@mapNotNull null
|
|
||||||
val displayState = DisplayTunnelState.from(activeTunnel)
|
|
||||||
TunnelNotificationLine(id, tunnel.name, displayState)
|
|
||||||
}
|
|
||||||
.associateBy { it.id }
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun computeProxyNotificationLines(
|
|
||||||
status: BackendStatus
|
|
||||||
): Map<Int, TunnelNotificationLine> {
|
|
||||||
val activeTunnels = status.activeTunnels
|
|
||||||
val allTunnels = tunnelRepository.userTunnelsFlow.first()
|
|
||||||
return activeTunnels
|
|
||||||
.mapNotNull { (id, activeTunnel) ->
|
|
||||||
val mode = activeTunnel.mode ?: return@mapNotNull null
|
|
||||||
if (mode !is BackendMode.Proxy.Standard) return@mapNotNull null
|
|
||||||
val tunnel = allTunnels.find { it.id == id } ?: return@mapNotNull null
|
|
||||||
val displayState = DisplayTunnelState.from(activeTunnel)
|
|
||||||
TunnelNotificationLine(id, tunnel.name, displayState)
|
|
||||||
}
|
|
||||||
.associateBy { it.id }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,238 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
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.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendError
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asTunnelState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.toBackendError
|
||||||
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
import kotlin.concurrent.thread
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.asStateFlow
|
||||||
|
import kotlinx.coroutines.flow.update
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
abstract class BaseTunnel(
|
||||||
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
|
private val appDataRepository: AppDataRepository,
|
||||||
|
private val serviceManager: ServiceManager,
|
||||||
|
) : TunnelProvider {
|
||||||
|
|
||||||
|
private val activeTuns = MutableStateFlow<Map<TunnelConf, TunnelState>>(emptyMap())
|
||||||
|
private val tunThreads = ConcurrentHashMap<Int, Thread>()
|
||||||
|
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 suspend fun clearError(tunnelConf: TunnelConf) =
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Down)
|
||||||
|
|
||||||
|
override fun hasVpnPermission(): Boolean {
|
||||||
|
return serviceManager.hasVpnPermission()
|
||||||
|
}
|
||||||
|
|
||||||
|
protected suspend fun updateTunnelStatus(
|
||||||
|
tunnelConf: TunnelConf,
|
||||||
|
state: TunnelStatus? = null,
|
||||||
|
stats: TunnelStatistics? = null,
|
||||||
|
) {
|
||||||
|
tunStatusMutex.withLock {
|
||||||
|
activeTuns.update { current ->
|
||||||
|
val originalConf = current.getKeyById(tunnelConf.id) ?: tunnelConf
|
||||||
|
val existingState = current.getValueById(tunnelConf.id) ?: TunnelState()
|
||||||
|
val newState = state ?: existingState.status
|
||||||
|
if (newState == TunnelStatus.Down) {
|
||||||
|
Timber.d("Removing tunnel ${tunnelConf.id} from activeTunnels as state is DOWN")
|
||||||
|
cleanUpTunThread(tunnelConf)
|
||||||
|
current - originalConf
|
||||||
|
} else if (existingState.status == newState && stats == null) {
|
||||||
|
Timber.d("Skipping redundant state update for ${tunnelConf.id}: $newState")
|
||||||
|
current
|
||||||
|
} else {
|
||||||
|
val updated =
|
||||||
|
existingState.copy(
|
||||||
|
status = newState,
|
||||||
|
statistics = stats ?: existingState.statistics,
|
||||||
|
)
|
||||||
|
current + (originalConf to updated)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 updateTunnelStatistics(tunnel: TunnelConf) {
|
||||||
|
val stats = getStatistics(tunnel)
|
||||||
|
updateTunnelStatus(tunnel, null, stats)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
|
if (activeTuns.exists(tunnelConf.id) || tunThreads.containsKey(tunnelConf.id)) return
|
||||||
|
if (this@BaseTunnel is UserspaceTunnel) stopActiveTunnels()
|
||||||
|
tunMutex.withLock {
|
||||||
|
tunThreads[tunnelConf.id] = thread {
|
||||||
|
runCatching {
|
||||||
|
runBlocking {
|
||||||
|
try {
|
||||||
|
Timber.d("Starting tunnel ${tunnelConf.id}...")
|
||||||
|
startTunnelInner(tunnelConf)
|
||||||
|
Timber.d("Started complete for tunnel ${tunnelConf.name}...")
|
||||||
|
} catch (e: BackendError) {
|
||||||
|
Timber.e(e, "Failed to start tunnel ${tunnelConf.name} userspace")
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Error(e))
|
||||||
|
} catch (e: InterruptedException) {
|
||||||
|
Timber.w(
|
||||||
|
"Tunnel start has been interrupted as ${tunnelConf.name} failed to start"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.onFailure { Timber.w("Tunnel start has been interrupted") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun startTunnelInner(tunnelConf: TunnelConf) {
|
||||||
|
configureTunnelCallbacks(tunnelConf)
|
||||||
|
Timber.d("Starting backend for tunnel ${tunnelConf.id}...")
|
||||||
|
try {
|
||||||
|
startBackend(tunnelConf)
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Up)
|
||||||
|
Timber.d("Started for tun ${tunnelConf.id}...")
|
||||||
|
saveTunnelActiveState(tunnelConf, true)
|
||||||
|
serviceManager.startTunnelForegroundService()
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
Timber.e(e, "Failed to start backend for ${tunnelConf.name}")
|
||||||
|
val backendError = e.toBackendError()
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Error(backendError))
|
||||||
|
throw backendError
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
||||||
|
try {
|
||||||
|
if (activeTuns.isStarting(tunnelConf.id))
|
||||||
|
return handleStuckStartingTunnelShutdown(tunnelConf)
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Stopping(reason))
|
||||||
|
stopTunnelInner(tunnelConf)
|
||||||
|
} catch (e: BackendError) {
|
||||||
|
Timber.e(e, "Failed to stop tunnel ${tunnelConf.id}")
|
||||||
|
updateTunnelStatus(tunnelConf, TunnelStatus.Error(e))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun stopTunnelInner(tunnelConf: TunnelConf) {
|
||||||
|
val tunnel = activeTuns.findTunnel(tunnelConf.id) ?: return
|
||||||
|
stopBackend(tunnel)
|
||||||
|
saveTunnelActiveState(tunnelConf, false)
|
||||||
|
removeActiveTunnel(tunnel)
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun handleServiceStateOnChange() {
|
||||||
|
if (activeTuns.value.isEmpty() && bouncingTunnelIds.isEmpty())
|
||||||
|
serviceManager.stopTunnelForegroundService()
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun handleStuckStartingTunnelShutdown(tunnel: TunnelConf) {
|
||||||
|
Timber.d("Stuck in starting state so shutting down tunnel thread for tunnel ${tunnel.name}")
|
||||||
|
try {
|
||||||
|
tunThreads[tunnel.id]?.let {
|
||||||
|
if (it.state != Thread.State.TERMINATED) {
|
||||||
|
it.interrupt()
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Down)
|
||||||
|
} else {
|
||||||
|
Timber.d("Thread already terminated")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e, "Failed to stop tunnel thread for ${tunnel.name}")
|
||||||
|
}
|
||||||
|
cleanUpTunThread(tunnel)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun cleanUpTunThread(tunnel: TunnelConf) {
|
||||||
|
Timber.d("Removing thread for ${tunnel.name}")
|
||||||
|
tunThreads -= 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
|
||||||
|
try {
|
||||||
|
stopTunnel(tunnelConf, reason)
|
||||||
|
delay(300L)
|
||||||
|
startTunnel(tunnelConf)
|
||||||
|
} finally {
|
||||||
|
bouncingTunnelIds.remove(tunnelConf.id)
|
||||||
|
handleServiceStateOnChange()
|
||||||
|
Timber.d(
|
||||||
|
"Cleared bounce state for ${tunnelConf.name}, remaining: ${bouncingTunnelIds.size}"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> =
|
||||||
|
activeTuns.value.keys.map { it.tunName }.toSet()
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
|
||||||
|
fun Map<TunnelConf, TunnelState>.allDown(): Boolean {
|
||||||
|
return this.all { it.value.status.isDown() }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Map<TunnelConf, TunnelState>.hasActive(): Boolean {
|
||||||
|
return this.any { it.value.status.isUp() }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Map<TunnelConf, TunnelState>.getValueById(id: Int): TunnelState? {
|
||||||
|
val key = this.keys.find { it.id == id }
|
||||||
|
return key?.let { this@getValueById[it] }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Map<TunnelConf, TunnelState>.getKeyById(id: Int): TunnelConf? {
|
||||||
|
return this.keys.find { it.id == id }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Map<TunnelConf, TunnelState>.isUp(tunnelConf: TunnelConf): Boolean {
|
||||||
|
return this.getValueById(tunnelConf.id)?.status?.isUp() ?: false
|
||||||
|
}
|
||||||
|
|
||||||
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.exists(id: Int): Boolean {
|
||||||
|
return this.value.any { it.key.id == id }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.isUp(id: Int): Boolean {
|
||||||
|
return this.value.any { it.key.id == id && it.value.status == TunnelStatus.Up }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.isStarting(id: Int): Boolean {
|
||||||
|
return this.value.any { it.key.id == id && it.value.status == TunnelStatus.Starting }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun MutableStateFlow<Map<TunnelConf, TunnelState>>.findTunnel(id: Int): TunnelConf? {
|
||||||
|
return this.value.keys.find { it.id == id }
|
||||||
|
}
|
||||||
|
|
||||||
|
private val URL_PATTERN =
|
||||||
|
Regex("""^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}:[0-9]{1,5}$""")
|
||||||
|
|
||||||
|
fun String.isUrl(): Boolean {
|
||||||
|
return URL_PATTERN.matches(this)
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
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.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
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) {
|
||||||
|
try {
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
|
backend.setState(tunnel, Tunnel.State.UP, tunnel.toWgConfig())
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
|
Timber.w("Not yet implemented for kernel")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendState(): BackendState {
|
||||||
|
return BackendState.INACTIVE
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
return backend.runningTunnelNames
|
||||||
|
}
|
||||||
|
}
|
||||||
-56
@@ -1,56 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
|
||||||
|
|
||||||
import com.zaneschepke.tunnel.Tunnel
|
|
||||||
import com.zaneschepke.tunnel.backend.Backend
|
|
||||||
import com.zaneschepke.tunnel.model.BackendMode
|
|
||||||
import com.zaneschepke.tunnel.state.BackendStatus
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.LockdownSettings
|
|
||||||
import kotlin.concurrent.atomics.ExperimentalAtomicApi
|
|
||||||
import kotlinx.coroutines.CoroutineDispatcher
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
|
||||||
import kotlinx.coroutines.flow.SharingStarted
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.stateIn
|
|
||||||
import kotlinx.coroutines.plus
|
|
||||||
|
|
||||||
@OptIn(ExperimentalCoroutinesApi::class, ExperimentalAtomicApi::class)
|
|
||||||
class TunnelBackendProvider(
|
|
||||||
private val backend: Backend,
|
|
||||||
applicationScope: CoroutineScope,
|
|
||||||
ioDispatcher: CoroutineDispatcher,
|
|
||||||
) : TunnelProvider {
|
|
||||||
|
|
||||||
override val backendStatus: StateFlow<BackendStatus> =
|
|
||||||
backend.status.stateIn(
|
|
||||||
scope = applicationScope.plus(ioDispatcher),
|
|
||||||
started = SharingStarted.Eagerly,
|
|
||||||
initialValue = BackendStatus(),
|
|
||||||
)
|
|
||||||
|
|
||||||
override val events = backend.events
|
|
||||||
|
|
||||||
override suspend fun startTunnel(tunnel: Tunnel, mode: BackendMode): Result<Unit> {
|
|
||||||
return backend.start(tunnel = tunnel, mode = mode)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun stopTunnel(tunnelId: Int): Result<Unit> {
|
|
||||||
return backend.stop(tunnelId)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun stopActiveTunnels(): Result<Unit> {
|
|
||||||
return backend.stopAllActiveTunnels()
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun setLockDown(settings: LockdownSettings): Result<Unit> {
|
|
||||||
return backend.setKillSwitch(settings.toKillSwitchConfig())
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun disableLockDown(): Result<Unit> {
|
|
||||||
return backend.disableKillSwitch()
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun setSeamlessRoaming(enabled: Boolean): Result<Unit> {
|
|
||||||
return backend.setSeamlessRoaming(enabled)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.IoDispatcher
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.Kernel
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.Userspace
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.repository.AppDataRepository
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
import javax.inject.Inject
|
||||||
|
import kotlinx.coroutines.CoroutineDispatcher
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.SharingStarted
|
||||||
|
import kotlinx.coroutines.flow.filterNotNull
|
||||||
|
import kotlinx.coroutines.flow.flatMapLatest
|
||||||
|
import kotlinx.coroutines.flow.stateIn
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import kotlinx.coroutines.plus
|
||||||
|
|
||||||
|
class TunnelManager
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
@Kernel private val kernelTunnel: TunnelProvider,
|
||||||
|
@Userspace private val userspaceTunnel: TunnelProvider,
|
||||||
|
private val appDataRepository: AppDataRepository,
|
||||||
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
|
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
|
||||||
|
) : TunnelProvider {
|
||||||
|
|
||||||
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
|
private val tunnelProviderFlow =
|
||||||
|
appDataRepository.settings.flow
|
||||||
|
.filterNotNull()
|
||||||
|
.flatMapLatest { settings ->
|
||||||
|
MutableStateFlow(if (settings.isKernelEnabled) kernelTunnel else userspaceTunnel)
|
||||||
|
}
|
||||||
|
.stateIn(
|
||||||
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
|
started = SharingStarted.Eagerly,
|
||||||
|
initialValue = userspaceTunnel,
|
||||||
|
)
|
||||||
|
|
||||||
|
@OptIn(ExperimentalCoroutinesApi::class)
|
||||||
|
override val activeTunnels =
|
||||||
|
appDataRepository.settings.flow
|
||||||
|
.filterNotNull()
|
||||||
|
.flatMapLatest { settings ->
|
||||||
|
if (settings.isKernelEnabled) {
|
||||||
|
kernelTunnel.activeTunnels
|
||||||
|
} else {
|
||||||
|
userspaceTunnel.activeTunnels
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.stateIn(
|
||||||
|
scope = applicationScope.plus(ioDispatcher),
|
||||||
|
started = SharingStarted.Eagerly,
|
||||||
|
initialValue = emptyMap(),
|
||||||
|
)
|
||||||
|
|
||||||
|
override val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason> =
|
||||||
|
tunnelProviderFlow.value.bouncingTunnelIds
|
||||||
|
|
||||||
|
override fun hasVpnPermission(): Boolean {
|
||||||
|
return userspaceTunnel.hasVpnPermission()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun clearError(tunnelConf: TunnelConf) {
|
||||||
|
tunnelProviderFlow.value.clearError(tunnelConf)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun updateTunnelStatistics(tunnel: TunnelConf) {
|
||||||
|
tunnelProviderFlow.value.updateTunnelStatistics(tunnel)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun startTunnel(tunnelConf: TunnelConf) {
|
||||||
|
tunnelProviderFlow.value.startTunnel(tunnelConf)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun stopTunnel(tunnelConf: TunnelConf?, reason: TunnelStatus.StopReason) {
|
||||||
|
tunnelProviderFlow.value.stopTunnel(tunnelConf, reason)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun bounceTunnel(tunnelConf: TunnelConf, reason: TunnelStatus.StopReason) {
|
||||||
|
tunnelProviderFlow.value.bounceTunnel(tunnelConf, reason)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
|
tunnelProviderFlow.value.setBackendState(backendState, allowedIps)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendState(): BackendState {
|
||||||
|
return tunnelProviderFlow.value.getBackendState()
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun runningTunnelNames(): Set<String> {
|
||||||
|
return tunnelProviderFlow.value.runningTunnelNames()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics? {
|
||||||
|
return tunnelProviderFlow.value.getStatistics(tunnelConf)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun restorePreviousState() =
|
||||||
|
applicationScope.launch(ioDispatcher) {
|
||||||
|
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@launch tunsToStart.forEach { startTunnel(it) }
|
||||||
|
} else {
|
||||||
|
tunsToStart.firstOrNull()?.let { startTunnel(it) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+42
-14
@@ -1,28 +1,56 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
import com.zaneschepke.tunnel.Tunnel
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
import com.zaneschepke.tunnel.event.TunnelEvent
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
import com.zaneschepke.tunnel.model.BackendMode
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
import com.zaneschepke.tunnel.state.BackendStatus
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelState
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.model.LockdownSettings
|
import com.zaneschepke.wireguardautotunnel.domain.state.TunnelStatistics
|
||||||
import kotlinx.coroutines.flow.Flow
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
|
|
||||||
interface TunnelProvider {
|
interface TunnelProvider {
|
||||||
|
/** Starts the specified tunnel configuration. */
|
||||||
|
suspend fun startTunnel(tunnelConf: TunnelConf)
|
||||||
|
|
||||||
suspend fun startTunnel(tunnel: Tunnel, mode: BackendMode): Result<Unit>
|
/**
|
||||||
|
* 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 stopTunnel(tunnelId: Int): Result<Unit>
|
/**
|
||||||
|
* 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, CONFIG_CHANGED) when applicable.
|
||||||
|
*/
|
||||||
|
suspend fun bounceTunnel(
|
||||||
|
tunnelConf: TunnelConf,
|
||||||
|
reason: TunnelStatus.StopReason = TunnelStatus.StopReason.USER,
|
||||||
|
)
|
||||||
|
|
||||||
suspend fun stopActiveTunnels(): Result<Unit>
|
fun setBackendState(backendState: BackendState, allowedIps: Collection<String>)
|
||||||
|
|
||||||
suspend fun setLockDown(settings: LockdownSettings): Result<Unit>
|
fun getBackendState(): BackendState
|
||||||
|
|
||||||
suspend fun disableLockDown(): Result<Unit>
|
suspend fun runningTunnelNames(): Set<String>
|
||||||
|
|
||||||
suspend fun setSeamlessRoaming(enabled: Boolean): Result<Unit>
|
fun getStatistics(tunnelConf: TunnelConf): TunnelStatistics?
|
||||||
|
|
||||||
val backendStatus: StateFlow<BackendStatus>
|
val activeTunnels: StateFlow<Map<TunnelConf, TunnelState>>
|
||||||
|
|
||||||
val events: Flow<TunnelEvent>
|
val bouncingTunnelIds: ConcurrentHashMap<Int, TunnelStatus.StopReason>
|
||||||
|
|
||||||
|
fun hasVpnPermission(): Boolean
|
||||||
|
|
||||||
|
suspend fun clearError(tunnelConf: TunnelConf)
|
||||||
|
|
||||||
|
suspend fun updateTunnelStatistics(tunnel: TunnelConf)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,107 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.core.tunnel
|
||||||
|
|
||||||
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
|
import com.zaneschepke.wireguardautotunnel.di.ApplicationScope
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.entity.TunnelConf
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.BackendState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelStatus
|
||||||
|
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.asAmBackendState
|
||||||
|
import com.zaneschepke.wireguardautotunnel.util.extensions.asBackendState
|
||||||
|
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 org.amnezia.awg.config.Config
|
||||||
|
import timber.log.Timber
|
||||||
|
|
||||||
|
class UserspaceTunnel
|
||||||
|
@Inject
|
||||||
|
constructor(
|
||||||
|
@ApplicationScope private val applicationScope: CoroutineScope,
|
||||||
|
val serviceManager: ServiceManager,
|
||||||
|
val appDataRepository: AppDataRepository,
|
||||||
|
private val backend: Backend,
|
||||||
|
) : BaseTunnel(applicationScope, appDataRepository, serviceManager) {
|
||||||
|
|
||||||
|
private var previousBackendState: Pair<BackendState, Boolean>? = null
|
||||||
|
|
||||||
|
override suspend fun startBackend(tunnel: TunnelConf) {
|
||||||
|
try {
|
||||||
|
updateTunnelStatus(tunnel, TunnelStatus.Starting)
|
||||||
|
val amConfig = tunnel.toAmConfig()
|
||||||
|
handleVpnKillSwitchWithDomainEndpoints(amConfig)
|
||||||
|
backend.setState(tunnel, Tunnel.State.UP, amConfig)
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
Timber.e(e, "Failed to start up backend for tunnel ${tunnel.name}")
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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()
|
||||||
|
}
|
||||||
|
handlePreviouslyEnabledVpnKillSwitch()
|
||||||
|
}
|
||||||
|
|
||||||
|
// stop vpn kill switch if we need to resolve DNS for peer endpoints
|
||||||
|
private suspend fun handleVpnKillSwitchWithDomainEndpoints(config: Config) {
|
||||||
|
if (
|
||||||
|
config.peers.any { it.endpoint.getOrNull()?.toString()?.isUrl() == true } &&
|
||||||
|
backend.backendState.asBackendState() == BackendState.KILL_SWITCH_ACTIVE
|
||||||
|
) {
|
||||||
|
val bypassLan = appDataRepository.settings.get().isLanOnKillSwitchEnabled
|
||||||
|
previousBackendState = Pair(BackendState.KILL_SWITCH_ACTIVE, bypassLan)
|
||||||
|
setBackendState(BackendState.SERVICE_ACTIVE, emptyList())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// restore vpn kill switch if needed
|
||||||
|
private fun handlePreviouslyEnabledVpnKillSwitch() {
|
||||||
|
// let auto tunnel handle this if it is active
|
||||||
|
if (!serviceManager.autoTunnelActive.value) {
|
||||||
|
previousBackendState?.let { (state, lanEnabled) ->
|
||||||
|
Timber.d("Restoring kill switch configuration")
|
||||||
|
val lan = if (lanEnabled) TunnelConf.LAN_BYPASS_ALLOWED_IPS else emptyList()
|
||||||
|
backend.setBackendState(state.asAmBackendState(), lan)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
previousBackendState = null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setBackendState(backendState: BackendState, allowedIps: Collection<String>) {
|
||||||
|
Timber.d("Setting backend state: $backendState with allowedIps: $allowedIps")
|
||||||
|
try {
|
||||||
|
backend.setBackendState(backendState.asAmBackendState(), allowedIps)
|
||||||
|
} catch (e: BackendException) {
|
||||||
|
throw e.toBackendError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getBackendState(): BackendState {
|
||||||
|
return backend.backendState.asBackendState()
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+29
-23
@@ -1,27 +1,37 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.core.worker
|
package com.zaneschepke.wireguardautotunnel.core.worker
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
|
import androidx.hilt.work.HiltWorker
|
||||||
import androidx.work.CoroutineWorker
|
import androidx.work.CoroutineWorker
|
||||||
import androidx.work.ExistingPeriodicWorkPolicy
|
import androidx.work.ExistingPeriodicWorkPolicy
|
||||||
import androidx.work.PeriodicWorkRequestBuilder
|
import androidx.work.PeriodicWorkRequestBuilder
|
||||||
import androidx.work.WorkManager
|
import androidx.work.WorkManager
|
||||||
import androidx.work.WorkerParameters
|
import androidx.work.WorkerParameters
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.repository.AutoTunnelSettingsRepository
|
import com.zaneschepke.wireguardautotunnel.core.service.ServiceManager
|
||||||
import com.zaneschepke.wireguardautotunnel.service.ServiceManager
|
import com.zaneschepke.wireguardautotunnel.core.tunnel.TunnelManager
|
||||||
import com.zaneschepke.wireguardautotunnel.service.autotunnel.AutoTunnelStateHolder
|
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,
|
||||||
private val autoTunnelStateHolder: AutoTunnelStateHolder,
|
@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)
|
||||||
@@ -43,19 +53,15 @@ class ServiceWorker(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun doWork(): Result {
|
override suspend fun doWork(): Result =
|
||||||
Timber.i("AutoTunnel reconciliation worker running")
|
withContext(ioDispatcher) {
|
||||||
|
Timber.i("Service worker started")
|
||||||
val settings = autoTunnelSettingsRepository.getAutoTunnelSettings()
|
with(appDataRepository.settings.get()) {
|
||||||
|
if (isAutoTunnelEnabled && !serviceManager.autoTunnelActive.value)
|
||||||
if (!settings.isAutoTunnelEnabled) {
|
return@with serviceManager.startAutoTunnel()
|
||||||
return Result.success()
|
if (tunnelManager.activeTunnels.value.isEmpty())
|
||||||
|
tunnelManager.restorePreviousState()
|
||||||
|
}
|
||||||
|
Result.success()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (autoTunnelStateHolder.active.value) return Result.success()
|
|
||||||
|
|
||||||
serviceManager.startAutoTunnelService()
|
|
||||||
|
|
||||||
return Result.success()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,38 +3,17 @@ package com.zaneschepke.wireguardautotunnel.data
|
|||||||
import androidx.room.AutoMigration
|
import androidx.room.AutoMigration
|
||||||
import androidx.room.Database
|
import androidx.room.Database
|
||||||
import androidx.room.DeleteColumn
|
import androidx.room.DeleteColumn
|
||||||
import androidx.room.RenameColumn
|
|
||||||
import androidx.room.RoomDatabase
|
import androidx.room.RoomDatabase
|
||||||
import androidx.room.TypeConverters
|
import androidx.room.TypeConverters
|
||||||
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.AutoTunnelSettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.DnsSettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.GeneralSettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.LockdownSettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.MonitoringSettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.ProxySettingsDao
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
import com.zaneschepke.wireguardautotunnel.data.dao.TunnelConfigDao
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.AutoTunnelSettings
|
import com.zaneschepke.wireguardautotunnel.data.model.Settings
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.DnsSettings
|
import com.zaneschepke.wireguardautotunnel.data.model.TunnelConfig
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.GeneralSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.LockdownSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.MonitoringSettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.ProxySettings
|
|
||||||
import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
|
||||||
|
|
||||||
@Database(
|
@Database(
|
||||||
entities =
|
entities = [Settings::class, TunnelConfig::class],
|
||||||
[
|
version = 16,
|
||||||
TunnelConfig::class,
|
|
||||||
ProxySettings::class,
|
|
||||||
GeneralSettings::class,
|
|
||||||
AutoTunnelSettings::class,
|
|
||||||
MonitoringSettings::class,
|
|
||||||
DnsSettings::class,
|
|
||||||
LockdownSettings::class,
|
|
||||||
],
|
|
||||||
version = 32,
|
|
||||||
autoMigrations =
|
autoMigrations =
|
||||||
[
|
[
|
||||||
AutoMigration(from = 1, to = 2),
|
AutoMigration(from = 1, to = 2),
|
||||||
@@ -52,37 +31,14 @@ import com.zaneschepke.wireguardautotunnel.data.entity.TunnelConfig
|
|||||||
AutoMigration(from = 13, to = 14),
|
AutoMigration(from = 13, to = 14),
|
||||||
AutoMigration(from = 14, to = 15),
|
AutoMigration(from = 14, to = 15),
|
||||||
AutoMigration(from = 15, to = 16),
|
AutoMigration(from = 15, to = 16),
|
||||||
AutoMigration(from = 16, to = 17, spec = WifiDetectionMigration::class),
|
|
||||||
AutoMigration(from = 17, to = 18),
|
|
||||||
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),
|
|
||||||
AutoMigration(from = 29, to = 30, spec = SingleConfigMigration::class),
|
|
||||||
AutoMigration(from = 30, to = 31),
|
|
||||||
AutoMigration(from = 31, to = 32),
|
|
||||||
],
|
],
|
||||||
exportSchema = true,
|
exportSchema = true,
|
||||||
)
|
)
|
||||||
@TypeConverters(DatabaseConverters::class)
|
@TypeConverters(DatabaseListConverters::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")
|
||||||
@@ -91,118 +47,3 @@ class RemoveLegacySettingColumnsMigration : AutoMigrationSpec
|
|||||||
|
|
||||||
@DeleteColumn(tableName = "Settings", columnName = "is_auto_tunnel_paused")
|
@DeleteColumn(tableName = "Settings", columnName = "is_auto_tunnel_paused")
|
||||||
class RemoveTunnelPauseMigration : AutoMigrationSpec
|
class RemoveTunnelPauseMigration : AutoMigrationSpec
|
||||||
|
|
||||||
@DeleteColumn(tableName = "Settings", columnName = "is_wifi_by_shell_enabled")
|
|
||||||
class WifiDetectionMigration : AutoMigrationSpec
|
|
||||||
|
|
||||||
@DeleteColumn.Entries(
|
|
||||||
DeleteColumn(tableName = "TunnelConfig", columnName = "ping_interval"),
|
|
||||||
DeleteColumn(tableName = "TunnelConfig", columnName = "ping_cooldown"),
|
|
||||||
DeleteColumn(tableName = "Settings", columnName = "split_tunnel_apps"),
|
|
||||||
)
|
|
||||||
@RenameColumn.Entries(
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "TunnelConfig",
|
|
||||||
fromColumnName = "is_ping_enabled",
|
|
||||||
toColumnName = "restart_on_ping_failure",
|
|
||||||
),
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "TunnelConfig",
|
|
||||||
fromColumnName = "ping_ip",
|
|
||||||
toColumnName = "ping_target",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
class PingMigration : AutoMigrationSpec
|
|
||||||
|
|
||||||
@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
|
|
||||||
|
|
||||||
@RenameColumn.Entries(
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "tunnel_config",
|
|
||||||
fromColumnName = "is_ipv4_preferred",
|
|
||||||
toColumnName = "prefer_ipv6",
|
|
||||||
),
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "tunnel_config",
|
|
||||||
fromColumnName = "am_quick",
|
|
||||||
toColumnName = "quick_config",
|
|
||||||
),
|
|
||||||
RenameColumn(
|
|
||||||
tableName = "tunnel_config",
|
|
||||||
fromColumnName = "restart_on_ping_failure",
|
|
||||||
toColumnName = "dynamic_dns",
|
|
||||||
),
|
|
||||||
)
|
|
||||||
@DeleteColumn.Entries(
|
|
||||||
DeleteColumn(tableName = "tunnel_config", columnName = "wg_quick"),
|
|
||||||
DeleteColumn(tableName = "tunnel_config", columnName = "ping_target"),
|
|
||||||
DeleteColumn(tableName = "tunnel_config", columnName = "is_Active"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "is_ping_enabled"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "is_ping_monitoring_enabled"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "tunnel_ping_interval_sec"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "tunnel_ping_attempts"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "tunnel_ping_timeout_sec"),
|
|
||||||
DeleteColumn(tableName = "monitoring_settings", columnName = "show_detailed_ping_stats"),
|
|
||||||
DeleteColumn(tableName = "auto_tunnel_settings", columnName = "debounce_delay_seconds"),
|
|
||||||
)
|
|
||||||
class SingleConfigMigration : AutoMigrationSpec {
|
|
||||||
|
|
||||||
override fun onPostMigrate(db: SupportSQLiteDatabase) {
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
UPDATE tunnel_config
|
|
||||||
SET prefer_ipv6 =
|
|
||||||
CASE prefer_ipv6
|
|
||||||
WHEN 1 THEN 0
|
|
||||||
WHEN 0 THEN 1
|
|
||||||
ELSE 0
|
|
||||||
END
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
db.execSQL(
|
|
||||||
"""
|
|
||||||
UPDATE general_settings
|
|
||||||
SET app_mode = CASE app_mode
|
|
||||||
WHEN 3 THEN 0
|
|
||||||
ELSE app_mode
|
|
||||||
END
|
|
||||||
"""
|
|
||||||
.trimIndent()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -4,36 +4,45 @@ 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 tunnelStatsExpanded = booleanPreferencesKey("TUNNEL_STATS_EXPANDED")
|
||||||
|
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")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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 +50,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 +62,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 +76,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,19 @@ 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")
|
// Notice non-ui thread is here
|
||||||
db.execSQL("INSERT INTO proxy_settings DEFAULT VALUES")
|
beginTransaction()
|
||||||
db.execSQL("INSERT INTO general_settings DEFAULT VALUES")
|
try {
|
||||||
db.execSQL("INSERT INTO auto_tunnel_settings DEFAULT VALUES")
|
execSQL(Queries.createDefaultSettings())
|
||||||
db.execSQL("INSERT INTO monitoring_settings DEFAULT VALUES")
|
Timber.i("Bootstrapping settings data")
|
||||||
db.execSQL("INSERT INTO dns_settings DEFAULT VALUES")
|
setTransactionSuccessful()
|
||||||
}
|
} catch (e: Exception) {
|
||||||
|
Timber.e(e)
|
||||||
|
} finally {
|
||||||
|
endTransaction()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,67 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data
|
|
||||||
|
|
||||||
import androidx.room.TypeConverter
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.DnsProtocol
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelMode
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.WifiDetectionMethod
|
|
||||||
import kotlinx.serialization.json.Json
|
|
||||||
|
|
||||||
class DatabaseConverters {
|
|
||||||
@TypeConverter
|
|
||||||
fun listToString(value: List<String>): String {
|
|
||||||
return Json.encodeToString(value)
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun stringToList(value: String): List<String> {
|
|
||||||
if (value.isBlank() || value.isEmpty()) return mutableListOf()
|
|
||||||
return try {
|
|
||||||
Json.decodeFromString<List<String>>(value)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
val list = value.split(",").toMutableList()
|
|
||||||
val json = listToString(list)
|
|
||||||
Json.decodeFromString<List<String>>(json)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun mapToString(map: Map<String, String>): String {
|
|
||||||
return Json.encodeToString(map)
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun stringToMap(json: String): Map<String, String> {
|
|
||||||
return if (json.isEmpty() || json == "{}") {
|
|
||||||
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): TunnelMode = TunnelMode.fromValue(value)
|
|
||||||
|
|
||||||
@TypeConverter fun fromMode(mode: TunnelMode): Int = mode.value
|
|
||||||
|
|
||||||
@TypeConverter fun toDnsProtocol(value: Int): DnsProtocol = DnsProtocol.fromValue(value)
|
|
||||||
|
|
||||||
@TypeConverter fun fromDnsProtocol(mode: DnsProtocol): Int = mode.value
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data
|
||||||
|
|
||||||
|
import androidx.room.TypeConverter
|
||||||
|
import kotlinx.serialization.json.Json
|
||||||
|
|
||||||
|
class DatabaseListConverters {
|
||||||
|
@TypeConverter
|
||||||
|
fun listToString(value: MutableList<String>): String {
|
||||||
|
return Json.encodeToString(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
@TypeConverter
|
||||||
|
fun stringToList(value: String): MutableList<String> {
|
||||||
|
if (value.isBlank() || value.isEmpty()) return mutableListOf()
|
||||||
|
return try {
|
||||||
|
Json.decodeFromString<MutableList<String>>(value)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
val list = value.split(",").toMutableList()
|
||||||
|
val json = listToString(list)
|
||||||
|
Json.decodeFromString<MutableList<String>>(json)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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()
|
||||||
|
}
|
||||||
|
}
|
||||||
-24
@@ -1,24 +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)
|
|
||||||
|
|
||||||
@Query("UPDATE auto_tunnel_settings SET disable_on_captive_portal = :enabled")
|
|
||||||
suspend fun updateDisableOnCaptivePortal(enabled: Boolean)
|
|
||||||
}
|
|
||||||
@@ -1,19 +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?>
|
|
||||||
|
|
||||||
@Query("UPDATE dns_settings SET global_tunnel_dns_enabled = :enabled")
|
|
||||||
suspend fun updateGlobalDnsEnabled(enabled: Boolean)
|
|
||||||
}
|
|
||||||
@@ -1,40 +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.domain.enums.TunnelMode
|
|
||||||
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 = :tunnelMode WHERE id = 1")
|
|
||||||
suspend fun updateAppMode(tunnelMode: TunnelMode)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET global_amnezia_enabled = :enabled")
|
|
||||||
suspend fun updateGlobalAmneziaEnabled(enabled: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET screen_recording_security = :enabled")
|
|
||||||
suspend fun updateScreenRecordingSecurity(enabled: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE general_settings SET seamless_roaming_enabled = :enabled")
|
|
||||||
suspend fun updateSeamlessRoaming(enabled: Boolean)
|
|
||||||
}
|
|
||||||
@@ -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?>
|
|
||||||
}
|
|
||||||
-40
@@ -1,40 +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?>
|
|
||||||
|
|
||||||
@Query(
|
|
||||||
"""
|
|
||||||
UPDATE monitoring_settings
|
|
||||||
SET tunnel_statistics_poll_interval = :interval
|
|
||||||
WHERE id = (
|
|
||||||
SELECT id FROM monitoring_settings LIMIT 1
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
suspend fun updateStatisticsInterval(interval: Int)
|
|
||||||
|
|
||||||
@Query(
|
|
||||||
"""
|
|
||||||
UPDATE monitoring_settings
|
|
||||||
SET tunnel_statistics_enabled = :enabled
|
|
||||||
WHERE id = (
|
|
||||||
SELECT id FROM monitoring_settings LIMIT 1
|
|
||||||
)
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
suspend fun updateStatisticsEnabled(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.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,28 @@
|
|||||||
|
package com.zaneschepke.wireguardautotunnel.data.dao
|
||||||
|
|
||||||
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Delete
|
||||||
|
import androidx.room.Insert
|
||||||
|
import androidx.room.OnConflictStrategy
|
||||||
|
import androidx.room.Query
|
||||||
|
import com.zaneschepke.wireguardautotunnel.data.model.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
|
||||||
|
}
|
||||||
@@ -5,73 +5,46 @@ import androidx.room.Delete
|
|||||||
import androidx.room.Insert
|
import androidx.room.Insert
|
||||||
import androidx.room.OnConflictStrategy
|
import androidx.room.OnConflictStrategy
|
||||||
import androidx.room.Query
|
import androidx.room.Query
|
||||||
import androidx.room.Upsert
|
import com.zaneschepke.wireguardautotunnel.data.model.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("UPDATE tunnel_config SET is_metered = :value WHERE id = :id")
|
@Query("SELECT * FROM TunnelConfig WHERE name=:name")
|
||||||
suspend fun setMetered(id: Int, value: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE tunnel_config SET dynamic_dns = :value WHERE id = :id")
|
|
||||||
suspend fun setDynamicDns(id: Int, value: Boolean)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config WHERE id=:id") suspend fun getById(id: Long): TunnelConfig?
|
|
||||||
|
|
||||||
@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") suspend fun getAll(): List<TunnelConfig>
|
@Query("SELECT * FROM TunnelConfig WHERE is_Active=1") suspend fun getActive(): TunnelConfigs
|
||||||
|
|
||||||
|
@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") fun getAllFlow(): Flow<MutableList<TunnelConfig>>
|
||||||
"""
|
|
||||||
SELECT *
|
|
||||||
FROM tunnel_config
|
|
||||||
WHERE name != '${TunnelConfig.GLOBAL_CONFIG_NAME}'
|
|
||||||
ORDER BY is_primary_tunnel DESC, position ASC
|
|
||||||
LIMIT 1
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
suspend fun getDefaultTunnel(): TunnelConfig?
|
|
||||||
|
|
||||||
@Query("SELECT * FROM tunnel_config ORDER BY position")
|
|
||||||
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,
|
|
||||||
)
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Asset(
|
|
||||||
val name: String,
|
|
||||||
@SerialName("browser_download_url") val browserDownloadUrl: String,
|
|
||||||
)
|
|
||||||
-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.domain.enums.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 = "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,
|
|
||||||
@ColumnInfo(name = "disable_on_captive_portal", defaultValue = "1")
|
|
||||||
val disableTunnelOnCaptivePortal: Boolean = true,
|
|
||||||
)
|
|
||||||
@@ -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.domain.enums.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,39 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
import com.zaneschepke.wireguardautotunnel.domain.enums.TunnelMode
|
|
||||||
|
|
||||||
@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 tunnelMode: TunnelMode = TunnelMode.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,
|
|
||||||
@ColumnInfo(name = "screen_recording_security", defaultValue = "1")
|
|
||||||
val screenRecordingSecurityEnabled: Boolean = true,
|
|
||||||
@ColumnInfo(name = "global_amnezia_enabled", defaultValue = "0")
|
|
||||||
val isGlobalAmneziaEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "tunnel_scripting_enabled", defaultValue = "0")
|
|
||||||
val tunnelScriptingEnabled: Boolean = true,
|
|
||||||
@ColumnInfo(name = "seamless_roaming_enabled", defaultValue = "0")
|
|
||||||
val seamlessRoamingEnabled: Boolean = true,
|
|
||||||
)
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GitHubRelease(
|
|
||||||
@SerialName("tag_name") val tagName: String,
|
|
||||||
val name: String?,
|
|
||||||
val body: String?,
|
|
||||||
val assets: List<Asset>,
|
|
||||||
)
|
|
||||||
@@ -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,
|
|
||||||
)
|
|
||||||
-16
@@ -1,16 +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_local_logs_enabled", defaultValue = "0")
|
|
||||||
val isLocalLogsEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "tunnel_statistics_enabled", defaultValue = "1")
|
|
||||||
val tunnelStatisticsEnabled: Boolean = true,
|
|
||||||
@ColumnInfo(name = "tunnel_statistics_poll_interval", defaultValue = "3")
|
|
||||||
val tunnelStatisticsPollInterval: Int = 3,
|
|
||||||
)
|
|
||||||
@@ -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,
|
|
||||||
)
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package com.zaneschepke.wireguardautotunnel.data.entity
|
|
||||||
|
|
||||||
import androidx.room.ColumnInfo
|
|
||||||
import androidx.room.Entity
|
|
||||||
import androidx.room.Index
|
|
||||||
import androidx.room.PrimaryKey
|
|
||||||
|
|
||||||
@Entity(tableName = "tunnel_config", indices = [Index(value = ["name"], unique = true)])
|
|
||||||
data class TunnelConfig(
|
|
||||||
@PrimaryKey(autoGenerate = true) val id: Int = 0,
|
|
||||||
@ColumnInfo(name = "name") val name: String,
|
|
||||||
@ColumnInfo(name = "tunnel_networks", defaultValue = "")
|
|
||||||
val tunnelNetworks: Set<String> = setOf(),
|
|
||||||
@ColumnInfo(name = "is_mobile_data_tunnel", defaultValue = "false")
|
|
||||||
val isMobileDataTunnel: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_primary_tunnel", defaultValue = "false")
|
|
||||||
val isPrimaryTunnel: Boolean = false,
|
|
||||||
@ColumnInfo(name = "quick_config", defaultValue = "") val quickConfig: String = "",
|
|
||||||
@ColumnInfo(name = "dynamic_dns", defaultValue = "false")
|
|
||||||
val dynamicDnsEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "is_ethernet_tunnel", defaultValue = "false")
|
|
||||||
val isEthernetTunnel: Boolean = false,
|
|
||||||
@ColumnInfo(name = "prefer_ipv6", defaultValue = "false") val isIpv6Preferred: Boolean = false,
|
|
||||||
@ColumnInfo(name = "position", defaultValue = "0") val position: Int = 0,
|
|
||||||
@ColumnInfo(name = "auto_tunnel_apps", defaultValue = "[]")
|
|
||||||
val autoTunnelApps: Set<String> = emptySet(),
|
|
||||||
@ColumnInfo(name = "is_metered", defaultValue = "false") val isMetered: Boolean = false,
|
|
||||||
@ColumnInfo(name = "ipv4_fallback", defaultValue = "false")
|
|
||||||
val ipv4FallbackEnabled: Boolean = false,
|
|
||||||
@ColumnInfo(name = "ipv6_restore", defaultValue = "false")
|
|
||||||
val ipv6RestoreEnabled: Boolean = false,
|
|
||||||
) {
|
|
||||||
companion object {
|
|
||||||
const val GLOBAL_CONFIG_NAME = "4675ab06-903a-438b-8485-6ea4187a9512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-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,
|
|
||||||
isTunnelOnUnsecureEnabled = isTunnelOnUnsecureEnabled,
|
|
||||||
wifiDetectionMethod = wifiDetectionMethod,
|
|
||||||
startOnBoot = startOnBoot,
|
|
||||||
disableTunnelOnCaptivePortal = disableTunnelOnCaptivePortal
|
|
||||||
)
|
|
||||||
|
|
||||||
fun Domain.toEntity(): Entity =
|
|
||||||
Entity(
|
|
||||||
id = id,
|
|
||||||
isAutoTunnelEnabled = isAutoTunnelEnabled,
|
|
||||||
isTunnelOnMobileDataEnabled = isTunnelOnMobileDataEnabled,
|
|
||||||
trustedNetworkSSIDs = trustedNetworkSSIDs,
|
|
||||||
isTunnelOnEthernetEnabled = isTunnelOnEthernetEnabled,
|
|
||||||
isTunnelOnWifiEnabled = isTunnelOnWifiEnabled,
|
|
||||||
isWildcardsEnabled = isWildcardsEnabled,
|
|
||||||
isStopOnNoInternetEnabled = isStopOnNoInternetEnabled,
|
|
||||||
isTunnelOnUnsecureEnabled = isTunnelOnUnsecureEnabled,
|
|
||||||
wifiDetectionMethod = wifiDetectionMethod,
|
|
||||||
startOnBoot = startOnBoot,
|
|
||||||
disableTunnelOnCaptivePortal = disableTunnelOnCaptivePortal
|
|
||||||
)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user