package com.github.libretube.util import android.content.Context import android.content.SharedPreferences import androidx.preference.PreferenceManager import com.github.libretube.obj.CustomInstance import com.google.common.reflect.TypeToken import com.google.gson.Gson import java.lang.reflect.Type object PreferenceHelper { fun setString(context: Context, key: String?, value: String?) { val editor = getDefaultSharedPreferencesEditor(context) editor.putString(key, value) editor.apply() } fun setInt(context: Context, key: String?, value: Int) { val editor = getDefaultSharedPreferencesEditor(context) editor.putInt(key, value) editor.apply() } fun setLong(context: Context, key: String?, value: Long) { val editor = getDefaultSharedPreferencesEditor(context) editor.putLong(key, value) editor.apply() } fun setBoolean(context: Context, key: String?, value: Boolean) { val editor = getDefaultSharedPreferencesEditor(context) editor.putBoolean(key, value) editor.apply() } fun getString(context: Context, key: String?, defValue: String?): String? { val settings: SharedPreferences = getDefaultSharedPreferences(context) return settings.getString(key, defValue) } fun getInt(context: Context, key: String?, defValue: Int): Int { val settings: SharedPreferences = getDefaultSharedPreferences(context) return settings.getInt(key, defValue) } fun getLong(context: Context, key: String?, defValue: Long): Long { val settings: SharedPreferences = getDefaultSharedPreferences(context) return settings.getLong(key, defValue) } fun getBoolean(context: Context, key: String?, defValue: Boolean): Boolean { val settings: SharedPreferences = getDefaultSharedPreferences(context) return settings.getBoolean(key, defValue) } fun clearPreferences(context: Context) { val editor = getDefaultSharedPreferencesEditor(context) editor.clear() editor.commit() } fun removePreference(context: Context, value: String?) { val editor = getDefaultSharedPreferencesEditor(context) editor.remove(value) editor.commit() } fun getToken(context: Context): String { val sharedPref = context.getSharedPreferences("token", Context.MODE_PRIVATE) return sharedPref?.getString("token", "")!! } fun setToken(context: Context, newValue: String) { val editor = context.getSharedPreferences("token", Context.MODE_PRIVATE).edit() editor.putString("token", newValue) } fun getUsername(context: Context): String { val sharedPref = context.getSharedPreferences("username", Context.MODE_PRIVATE) return sharedPref.getString("username", "")!! } fun setUsername(context: Context, newValue: String) { val editor = context.getSharedPreferences("username", Context.MODE_PRIVATE).edit() editor.putString("username", newValue) } fun saveCustomInstance(context: Context, customInstance: CustomInstance) { val editor = getDefaultSharedPreferencesEditor(context) val gson = Gson() val customInstancesList = getCustomInstances(context) customInstancesList += customInstance val json = gson.toJson(customInstancesList) editor.putString("customInstances", json).commit() } fun getCustomInstances(context: Context): ArrayList { val settings = getDefaultSharedPreferences(context) val gson = Gson() val json: String = settings.getString("customInstances", "")!! val type: Type = object : TypeToken?>() {}.type return try { gson.fromJson(json, type) } catch (e: Exception) { arrayListOf() } } private fun getDefaultSharedPreferences(context: Context): SharedPreferences { return PreferenceManager.getDefaultSharedPreferences(context) } private fun getDefaultSharedPreferencesEditor(context: Context): SharedPreferences.Editor { return getDefaultSharedPreferences(context).edit() } }