mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-25 08:16:07 +00:00
103 lines
3 KiB
Java
103 lines
3 KiB
Java
package com.beemdevelopment.aegis;
|
|
|
|
import android.app.Application;
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.content.pm.ShortcutInfo;
|
|
import android.content.pm.ShortcutManager;
|
|
import android.graphics.drawable.Icon;
|
|
import android.os.Build;
|
|
|
|
import com.beemdevelopment.aegis.db.DatabaseManager;
|
|
import com.beemdevelopment.aegis.ui.MainActivity;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
public class AegisApplication extends Application {
|
|
private DatabaseManager _manager;
|
|
private Preferences _prefs;
|
|
private List<LockListener> _lockListeners;
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
super.onCreate();
|
|
_manager = new DatabaseManager(this);
|
|
_prefs = new Preferences(this);
|
|
_lockListeners = new ArrayList<>();
|
|
|
|
// listen for SCREEN_OFF events
|
|
ScreenOffReceiver receiver = new ScreenOffReceiver();
|
|
registerReceiver(receiver, new IntentFilter(Intent.ACTION_SCREEN_OFF));
|
|
|
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
|
|
initAppShortcuts();
|
|
}
|
|
}
|
|
|
|
public DatabaseManager getDatabaseManager() {
|
|
return _manager;
|
|
}
|
|
|
|
public Preferences getPreferences() {
|
|
return _prefs;
|
|
}
|
|
|
|
public boolean isAutoLockEnabled() {
|
|
return _prefs.isAutoLockEnabled() && _manager.isLoaded() && _manager.isEncryptionEnabled() && !_manager.isLocked();
|
|
}
|
|
|
|
public void registerLockListener(LockListener listener) {
|
|
_lockListeners.add(listener);
|
|
}
|
|
|
|
public void unregisterLockListener(LockListener listener) {
|
|
_lockListeners.remove(listener);
|
|
}
|
|
|
|
public void lock() {
|
|
_manager.lock();
|
|
for (LockListener listener : _lockListeners) {
|
|
listener.onLocked();
|
|
}
|
|
}
|
|
|
|
@RequiresApi(api = Build.VERSION_CODES.N_MR1)
|
|
private void initAppShortcuts() {
|
|
ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);
|
|
if (shortcutManager == null) {
|
|
return;
|
|
}
|
|
|
|
Intent intent = new Intent(this, MainActivity.class);
|
|
intent.putExtra("action", "scan");
|
|
intent.setAction(Intent.ACTION_MAIN);
|
|
|
|
ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "shortcut_new")
|
|
.setShortLabel(getString(R.string.new_profile))
|
|
.setLongLabel(getString(R.string.add_new_profile))
|
|
.setIcon(Icon.createWithResource(this, R.drawable.qr_scanner))
|
|
.setIntent(intent)
|
|
.build();
|
|
|
|
shortcutManager.setDynamicShortcuts(Collections.singletonList(shortcut));
|
|
}
|
|
|
|
private class ScreenOffReceiver extends BroadcastReceiver {
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (isAutoLockEnabled()) {
|
|
lock();
|
|
}
|
|
}
|
|
}
|
|
|
|
public interface LockListener {
|
|
void onLocked();
|
|
}
|
|
}
|