ente/lib/core/configuration.dart
2020-09-05 14:23:23 +05:30

170 lines
5.2 KiB
Dart

import 'dart:convert';
import 'dart:io' as io;
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:path_provider/path_provider.dart';
import 'package:photos/models/key_attributes.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:photos/utils/crypto_util.dart';
class Configuration {
Configuration._privateConstructor();
static final Configuration instance = Configuration._privateConstructor();
static const endpointKey = "endpoint";
static const userIDKey = "user_id";
static const emailKey = "email";
static const tokenKey = "token";
static const hasOptedForE2EKey = "has_opted_for_e2e_encryption";
static const keyKey = "key";
static const keyEncryptedKey = "encrypted_key";
static const keyKekSalt = "kek_salt";
static const keyKekHash = "kek_hash";
static const keyKekHashSalt = "kek_hash_salt";
static const keyEncryptedKeyIV = "encrypted_key_iv";
SharedPreferences _preferences;
FlutterSecureStorage _secureStorage;
String _key;
String _documentsDirectory;
String _tempDirectory;
String _thumbnailsDirectory;
Future<void> init() async {
_preferences = await SharedPreferences.getInstance();
_secureStorage = FlutterSecureStorage();
_documentsDirectory = (await getApplicationDocumentsDirectory()).path;
_tempDirectory = _documentsDirectory + "/temp/";
_thumbnailsDirectory = _documentsDirectory + "/thumbnails/";
new io.Directory(_tempDirectory).createSync(recursive: true);
new io.Directory(_thumbnailsDirectory).createSync(recursive: true);
_key = await _secureStorage.read(key: keyKey);
}
Future<KeyAttributes> generateAndSaveKey(String passphrase) async {
final key = CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
final kekSalt = CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
final kek =
base64.encode(CryptoUtil.scrypt(passphrase, kekSalt, 32).codeUnits);
final kekHashSalt =
CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
final kekHash = CryptoUtil.scrypt(kek, kekHashSalt, 32);
final iv = CryptoUtil.getBase64EncodedSecureRandomString(length: 32);
final encryptedKey = CryptoUtil.encryptToBase64(key, kek, iv);
final attributes =
KeyAttributes(kekSalt, kekHash, kekHashSalt, encryptedKey, iv);
await setKey(key);
await setKeyAttributes(attributes);
return attributes;
}
Future<void> decryptAndSaveKey(
String passphrase, KeyAttributes attributes) async {
final kek = base64.encode(
CryptoUtil.scrypt(passphrase, attributes.kekSalt, 32).codeUnits);
bool correctPassphrase =
CryptoUtil.compareHash(kek, attributes.kekHash, attributes.kekHashSalt);
if (!correctPassphrase) {
throw Exception("Incorrect passphrase");
}
final key = CryptoUtil.decryptFromBase64(
attributes.encryptedKey, kek, attributes.encryptedKeyIV);
await setKey(key);
}
String getEndpoint() {
return "192.168.0.106";
}
String getHttpEndpoint() {
if (getEndpoint() == null) {
return "";
}
return "http://" + getEndpoint() + ":8080";
}
void setEndpoint(String endpoint) async {
await _preferences.setString(endpointKey, endpoint);
}
String getToken() {
return _preferences.getString(tokenKey);
}
void setToken(String token) async {
await _preferences.setString(tokenKey, token);
}
String getEmail() {
return _preferences.getString(emailKey);
}
void setEmail(String email) async {
await _preferences.setString(emailKey, email);
}
int getUserID() {
return _preferences.getInt(userIDKey);
}
void setUserID(int userID) async {
await _preferences.setInt(userIDKey, userID);
}
void setOptInForE2E(bool hasOptedForE2E) async {
await _preferences.setBool(hasOptedForE2EKey, hasOptedForE2E);
}
bool hasOptedForE2E() {
return true;
// return _preferences.getBool(hasOptedForE2EKey);
}
Future<void> setKeyAttributes(KeyAttributes attributes) async {
await _preferences.setString(keyKekSalt, attributes.kekSalt);
await _preferences.setString(keyKekHash, attributes.kekHash);
await _preferences.setString(keyKekHashSalt, attributes.kekHashSalt);
await _preferences.setString(keyEncryptedKey, attributes.encryptedKey);
await _preferences.setString(keyEncryptedKeyIV, attributes.encryptedKeyIV);
}
KeyAttributes getKeyAttributes() {
return KeyAttributes(
_preferences.getString(keyKekSalt),
_preferences.getString(keyKekHash),
_preferences.getString(keyKekHashSalt),
_preferences.getString(keyEncryptedKey),
_preferences.getString(keyEncryptedKeyIV));
}
String getEncryptedKey() {
return _preferences.getString(keyEncryptedKey);
}
Future<void> setKey(String key) async {
await _secureStorage.write(key: keyKey, value: key);
_key = key;
}
String getKey() {
return _key;
}
String getDocumentsDirectory() {
return _documentsDirectory;
}
String getThumbnailsDirectory() {
return _thumbnailsDirectory;
}
String getTempDirectory() {
return _tempDirectory;
}
bool hasConfiguredAccount() {
return getToken() != null && getKey() != null;
}
}