NekoX/TMessagesProj/src/main/java/org/telegram/messenger/UserConfig.java

248 lines
11 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2013-12-20 20:25:49 +01:00
* This is the source code of Telegram for Android v. 1.3.2.
2013-10-25 17:19:00 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013.
*/
package org.telegram.messenger;
2013-11-04 13:31:01 +01:00
import android.content.Context;
import android.content.SharedPreferences;
2013-12-20 20:25:49 +01:00
import android.util.Base64;
2013-11-04 13:31:01 +01:00
import org.telegram.android.MessagesStorage;
2013-10-25 17:19:00 +02:00
import java.io.File;
public class UserConfig {
2014-06-13 12:42:21 +02:00
private static TLRPC.User currentUser;
2013-10-25 17:19:00 +02:00
public static boolean registeredForPush = false;
public static boolean registeredForInternalPush = false;
2013-10-25 17:19:00 +02:00
public static String pushString = "";
2013-12-20 20:25:49 +01:00
public static int lastSendMessageId = -210000;
public static int lastLocalId = -210000;
public static int lastBroadcastId = -1;
2013-10-25 17:19:00 +02:00
public static String contactsHash = "";
public static String importHash = "";
public static boolean blockedUsersLoaded = false;
private final static Object sync = new Object();
2013-10-25 17:19:00 +02:00
public static boolean saveIncomingPhotos = false;
public static int contactsVersion = 1;
2015-01-02 23:15:07 +01:00
public static boolean waitingForPasswordEnter = false;
public static String passcodeHash = "";
public static boolean appLocked = false;
public static int passcodeType = 0;
public static int autoLockIn = 60 * 60;
public static int lastPauseTime = 0;
public static boolean isWaitingForPasscodeEnter = false;
2013-10-25 17:19:00 +02:00
public static int getNewMessageId() {
int id;
synchronized (sync) {
id = lastSendMessageId;
lastSendMessageId--;
}
return id;
}
2013-11-04 13:31:01 +01:00
public static void saveConfig(boolean withFile) {
2013-12-20 20:25:49 +01:00
saveConfig(withFile, null);
}
public static void saveConfig(boolean withFile, File oldFile) {
2013-10-25 17:19:00 +02:00
synchronized (sync) {
2013-12-20 20:25:49 +01:00
try {
2013-11-04 13:31:01 +01:00
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("userconfing", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = preferences.edit();
editor.putBoolean("registeredForPush", registeredForPush);
editor.putString("pushString", pushString);
editor.putInt("lastSendMessageId", lastSendMessageId);
editor.putInt("lastLocalId", lastLocalId);
editor.putString("contactsHash", contactsHash);
editor.putString("importHash", importHash);
editor.putBoolean("saveIncomingPhotos", saveIncomingPhotos);
editor.putInt("contactsVersion", contactsVersion);
editor.putInt("lastBroadcastId", lastBroadcastId);
editor.putBoolean("registeredForInternalPush", registeredForInternalPush);
editor.putBoolean("blockedUsersLoaded", blockedUsersLoaded);
2015-01-02 23:15:07 +01:00
editor.putBoolean("waitingForPasswordEnter", waitingForPasswordEnter);
editor.putString("passcodeHash1", passcodeHash);
editor.putBoolean("appLocked", appLocked);
editor.putInt("passcodeType", passcodeType);
editor.putInt("autoLockIn", autoLockIn);
editor.putInt("lastPauseTime", lastPauseTime);
2013-12-20 20:25:49 +01:00
if (currentUser != null) {
if (withFile) {
SerializedData data = new SerializedData();
currentUser.serializeToStream(data);
String userString = Base64.encodeToString(data.toByteArray(), Base64.DEFAULT);
editor.putString("user", userString);
2013-11-04 13:31:01 +01:00
}
2013-12-20 20:25:49 +01:00
} else {
editor.remove("user");
}
editor.commit();
if (oldFile != null) {
oldFile.delete();
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
} catch (Exception e) {
FileLog.e("tmessages", e);
2013-10-25 17:19:00 +02:00
}
}
}
2014-06-13 12:42:21 +02:00
public static boolean isClientActivated() {
synchronized (sync) {
return currentUser != null;
}
}
2015-01-02 23:15:07 +01:00
public static boolean isWaitingForPasswordEnter() {
synchronized (sync) {
return waitingForPasswordEnter;
}
}
public static void setWaitingForPasswordEnter(boolean value) {
synchronized (sync) {
waitingForPasswordEnter = value;
}
}
2014-06-13 12:42:21 +02:00
public static int getClientUserId() {
synchronized (sync) {
return currentUser != null ? currentUser.id : 0;
}
}
public static TLRPC.User getCurrentUser() {
synchronized (sync) {
return currentUser;
}
}
public static void setCurrentUser(TLRPC.User user) {
synchronized (sync) {
currentUser = user;
}
}
2013-10-25 17:19:00 +02:00
public static void loadConfig() {
synchronized (sync) {
2013-12-20 20:25:49 +01:00
final File configFile = new File(ApplicationLoader.applicationContext.getFilesDir(), "user.dat");
2013-10-25 17:19:00 +02:00
if (configFile.exists()) {
try {
SerializedData data = new SerializedData(configFile);
2013-11-04 13:31:01 +01:00
int ver = data.readInt32();
if (ver == 1) {
2013-10-25 17:19:00 +02:00
int constructor = data.readInt32();
currentUser = (TLRPC.TL_userSelf)TLClassStore.Instance().TLdeserialize(data, constructor);
2013-11-04 13:31:01 +01:00
MessagesStorage.lastDateValue = data.readInt32();
MessagesStorage.lastPtsValue = data.readInt32();
MessagesStorage.lastSeqValue = data.readInt32();
2013-10-25 17:19:00 +02:00
registeredForPush = data.readBool();
pushString = data.readString();
lastSendMessageId = data.readInt32();
lastLocalId = data.readInt32();
contactsHash = data.readString();
importHash = data.readString();
2013-10-25 17:19:00 +02:00
saveIncomingPhotos = data.readBool();
contactsVersion = 0;
2013-11-04 13:31:01 +01:00
MessagesStorage.lastQtsValue = data.readInt32();
MessagesStorage.lastSecretVersion = data.readInt32();
2013-10-25 17:19:00 +02:00
int val = data.readInt32();
if (val == 1) {
2013-11-04 13:31:01 +01:00
MessagesStorage.secretPBytes = data.readByteArray();
2013-10-25 17:19:00 +02:00
}
2013-11-04 13:31:01 +01:00
MessagesStorage.secretG = data.readInt32();
2013-12-20 20:25:49 +01:00
Utilities.stageQueue.postRunnable(new Runnable() {
@Override
public void run() {
saveConfig(true, configFile);
}
});
2013-11-04 13:31:01 +01:00
} else if (ver == 2) {
int constructor = data.readInt32();
currentUser = (TLRPC.TL_userSelf)TLClassStore.Instance().TLdeserialize(data, constructor);
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("userconfing", Context.MODE_PRIVATE);
registeredForPush = preferences.getBoolean("registeredForPush", false);
pushString = preferences.getString("pushString", "");
2013-12-20 20:25:49 +01:00
lastSendMessageId = preferences.getInt("lastSendMessageId", -210000);
lastLocalId = preferences.getInt("lastLocalId", -210000);
2013-11-04 13:31:01 +01:00
contactsHash = preferences.getString("contactsHash", "");
importHash = preferences.getString("importHash", "");
2013-11-04 13:31:01 +01:00
saveIncomingPhotos = preferences.getBoolean("saveIncomingPhotos", false);
contactsVersion = preferences.getInt("contactsVersion", 0);
2013-10-25 17:19:00 +02:00
}
2013-12-20 20:25:49 +01:00
if (lastLocalId > -210000) {
lastLocalId = -210000;
}
if (lastSendMessageId > -210000) {
lastSendMessageId = -210000;
}
Utilities.stageQueue.postRunnable(new Runnable() {
@Override
public void run() {
saveConfig(true, configFile);
}
});
2013-10-25 17:19:00 +02:00
} catch (Exception e) {
2013-12-20 20:25:49 +01:00
FileLog.e("tmessages", e);
}
} else {
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("userconfing", Context.MODE_PRIVATE);
registeredForPush = preferences.getBoolean("registeredForPush", false);
pushString = preferences.getString("pushString", "");
lastSendMessageId = preferences.getInt("lastSendMessageId", -210000);
lastLocalId = preferences.getInt("lastLocalId", -210000);
contactsHash = preferences.getString("contactsHash", "");
importHash = preferences.getString("importHash", "");
2013-12-20 20:25:49 +01:00
saveIncomingPhotos = preferences.getBoolean("saveIncomingPhotos", false);
contactsVersion = preferences.getInt("contactsVersion", 0);
lastBroadcastId = preferences.getInt("lastBroadcastId", -1);
registeredForInternalPush = preferences.getBoolean("registeredForInternalPush", false);
blockedUsersLoaded = preferences.getBoolean("blockedUsersLoaded", false);
2015-01-02 23:15:07 +01:00
waitingForPasswordEnter = preferences.getBoolean("waitingForPasswordEnter", false);
passcodeHash = preferences.getString("passcodeHash1", "");
appLocked = preferences.getBoolean("appLocked", false);
passcodeType = preferences.getInt("passcodeType", 0);
autoLockIn = preferences.getInt("autoLockIn", 60 * 60);
lastPauseTime = preferences.getInt("lastPauseTime", 0);
2013-12-20 20:25:49 +01:00
String user = preferences.getString("user", null);
if (user != null) {
byte[] userBytes = Base64.decode(user, Base64.DEFAULT);
if (userBytes != null) {
SerializedData data = new SerializedData(userBytes);
currentUser = (TLRPC.TL_userSelf)TLClassStore.Instance().TLdeserialize(data, data.readInt32());
}
}
2013-10-25 17:19:00 +02:00
}
}
}
public static void clearConfig() {
currentUser = null;
registeredForInternalPush = false;
2013-10-25 17:19:00 +02:00
registeredForPush = false;
2015-01-02 23:15:07 +01:00
waitingForPasswordEnter = false;
2013-10-25 17:19:00 +02:00
contactsHash = "";
importHash = "";
2013-12-20 20:25:49 +01:00
lastSendMessageId = -210000;
contactsVersion = 1;
lastBroadcastId = -1;
2013-10-25 17:19:00 +02:00
saveIncomingPhotos = false;
blockedUsersLoaded = false;
appLocked = false;
passcodeType = 0;
passcodeHash = "";
autoLockIn = 60 * 60;
lastPauseTime = 0;
isWaitingForPasscodeEnter = false;
2013-11-04 13:31:01 +01:00
saveConfig(true);
2013-10-25 17:19:00 +02:00
}
}