2018-05-02 17:29:58 +02:00
|
|
|
/*
|
2018-09-07 05:32:46 +02:00
|
|
|
* Copyright © 2017-2018 WireGuard LLC. All Rights Reserved.
|
2018-07-06 04:09:48 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2018-05-02 17:29:58 +02:00
|
|
|
*/
|
|
|
|
|
2018-01-01 09:06:37 +01:00
|
|
|
package com.wireguard.android;
|
|
|
|
|
2018-07-25 16:11:37 +02:00
|
|
|
import android.content.Context;
|
2018-07-28 18:27:45 +02:00
|
|
|
import android.content.Intent;
|
2018-01-01 09:06:37 +01:00
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.AsyncTask;
|
2018-07-28 18:27:45 +02:00
|
|
|
import android.os.Build;
|
2018-01-01 09:06:37 +01:00
|
|
|
import android.os.Handler;
|
|
|
|
import android.os.Looper;
|
|
|
|
import android.preference.PreferenceManager;
|
2018-12-18 11:45:37 +01:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.appcompat.app.AppCompatDelegate;
|
2018-01-01 09:06:37 +01:00
|
|
|
|
|
|
|
import com.wireguard.android.backend.Backend;
|
2018-02-07 19:19:20 +01:00
|
|
|
import com.wireguard.android.backend.GoBackend;
|
2018-01-01 09:06:37 +01:00
|
|
|
import com.wireguard.android.backend.WgQuickBackend;
|
|
|
|
import com.wireguard.android.configStore.FileConfigStore;
|
|
|
|
import com.wireguard.android.model.TunnelManager;
|
|
|
|
import com.wireguard.android.util.AsyncWorker;
|
|
|
|
import com.wireguard.android.util.RootShell;
|
2018-01-08 07:34:55 +01:00
|
|
|
import com.wireguard.android.util.ToolsInstaller;
|
2018-01-01 09:06:37 +01:00
|
|
|
|
2018-02-07 19:19:20 +01:00
|
|
|
import java.io.File;
|
2018-06-07 04:12:42 +02:00
|
|
|
import java.lang.ref.WeakReference;
|
2018-07-26 03:17:22 +02:00
|
|
|
|
|
|
|
import java9.util.concurrent.CompletableFuture;
|
2018-01-01 09:06:37 +01:00
|
|
|
|
|
|
|
public class Application extends android.app.Application {
|
2018-07-13 02:10:35 +02:00
|
|
|
@SuppressWarnings("NullableProblems") private static WeakReference<Application> weakSelf;
|
2018-09-06 01:33:42 +02:00
|
|
|
private final CompletableFuture<Backend> futureBackend = new CompletableFuture<>();
|
2018-07-13 02:10:35 +02:00
|
|
|
@SuppressWarnings("NullableProblems") private AsyncWorker asyncWorker;
|
2018-09-06 01:33:42 +02:00
|
|
|
@Nullable private Backend backend;
|
2018-07-13 02:10:35 +02:00
|
|
|
@SuppressWarnings("NullableProblems") private RootShell rootShell;
|
|
|
|
@SuppressWarnings("NullableProblems") private SharedPreferences sharedPreferences;
|
|
|
|
@SuppressWarnings("NullableProblems") private ToolsInstaller toolsInstaller;
|
|
|
|
@SuppressWarnings("NullableProblems") private TunnelManager tunnelManager;
|
2018-06-14 04:59:24 +02:00
|
|
|
|
2018-06-07 04:12:42 +02:00
|
|
|
public Application() {
|
|
|
|
weakSelf = new WeakReference<>(this);
|
2018-01-01 09:06:37 +01:00
|
|
|
}
|
|
|
|
|
2018-09-06 01:33:42 +02:00
|
|
|
public static Application get() {
|
|
|
|
return weakSelf.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static AsyncWorker getAsyncWorker() {
|
|
|
|
return get().asyncWorker;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Backend getBackend() {
|
|
|
|
final Application app = get();
|
|
|
|
synchronized (app.futureBackend) {
|
|
|
|
if (app.backend == null) {
|
|
|
|
Backend backend = null;
|
|
|
|
if (new File("/sys/module/wireguard").exists()) {
|
|
|
|
try {
|
|
|
|
app.rootShell.start();
|
|
|
|
backend = new WgQuickBackend(app.getApplicationContext());
|
|
|
|
} catch (final Exception ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (backend == null)
|
|
|
|
backend = new GoBackend(app.getApplicationContext());
|
|
|
|
app.backend = backend;
|
|
|
|
}
|
|
|
|
return app.backend;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static CompletableFuture<Backend> getBackendAsync() {
|
|
|
|
return get().futureBackend;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static RootShell getRootShell() {
|
|
|
|
return get().rootShell;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SharedPreferences getSharedPreferences() {
|
|
|
|
return get().sharedPreferences;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ToolsInstaller getToolsInstaller() {
|
|
|
|
return get().toolsInstaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static TunnelManager getTunnelManager() {
|
|
|
|
return get().tunnelManager;
|
|
|
|
}
|
|
|
|
|
2018-07-25 16:11:37 +02:00
|
|
|
@Override
|
|
|
|
protected void attachBaseContext(final Context context) {
|
|
|
|
super.attachBaseContext(context);
|
2018-07-28 18:27:45 +02:00
|
|
|
|
|
|
|
if (BuildConfig.MIN_SDK_VERSION > Build.VERSION.SDK_INT) {
|
|
|
|
final Intent intent = new Intent(Intent.ACTION_MAIN);
|
|
|
|
intent.addCategory(Intent.CATEGORY_HOME);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
startActivity(intent);
|
|
|
|
System.exit(0);
|
|
|
|
}
|
2018-07-25 16:11:37 +02:00
|
|
|
}
|
|
|
|
|
2018-06-07 04:12:42 +02:00
|
|
|
@Override
|
|
|
|
public void onCreate() {
|
|
|
|
super.onCreate();
|
|
|
|
|
2018-07-26 03:17:22 +02:00
|
|
|
asyncWorker = new AsyncWorker(AsyncTask.SERIAL_EXECUTOR, new Handler(Looper.getMainLooper()));
|
2018-06-07 04:12:42 +02:00
|
|
|
rootShell = new RootShell(getApplicationContext());
|
|
|
|
toolsInstaller = new ToolsInstaller(getApplicationContext());
|
|
|
|
|
|
|
|
sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
|
|
|
|
AppCompatDelegate.setDefaultNightMode(
|
|
|
|
sharedPreferences.getBoolean("dark_theme", false) ?
|
|
|
|
AppCompatDelegate.MODE_NIGHT_YES : AppCompatDelegate.MODE_NIGHT_NO);
|
|
|
|
|
2018-07-26 03:17:22 +02:00
|
|
|
tunnelManager = new TunnelManager(new FileConfigStore(getApplicationContext()));
|
2018-06-07 04:12:42 +02:00
|
|
|
tunnelManager.onCreate();
|
2018-07-25 16:11:37 +02:00
|
|
|
|
2018-12-08 03:16:23 +01:00
|
|
|
asyncWorker.supplyAsync(Application::getBackend).thenAccept(futureBackend::complete);
|
2018-01-01 09:06:37 +01:00
|
|
|
}
|
|
|
|
}
|