2019-07-19 15:02:47 +10:00
|
|
|
package org.thoughtcrime.securesms.loki
|
|
|
|
|
|
|
|
import android.content.ContentValues
|
|
|
|
import android.content.Context
|
2019-07-19 15:23:45 +10:00
|
|
|
import org.thoughtcrime.securesms.database.Address
|
2019-07-19 15:02:47 +10:00
|
|
|
import org.thoughtcrime.securesms.database.Database
|
|
|
|
import org.thoughtcrime.securesms.database.helpers.SQLCipherOpenHelper
|
2019-07-19 15:23:45 +10:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient
|
2019-07-19 15:02:47 +10:00
|
|
|
|
|
|
|
class LokiUserDisplayNameDatabase(context: Context, helper: SQLCipherOpenHelper) : Database(context, helper) {
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
private val tableName = "loki_user_display_name_database"
|
|
|
|
private val hexEncodedPublicKey = "hex_encoded_public_key"
|
|
|
|
private val displayName = "display_name"
|
|
|
|
@JvmStatic val createTableCommand = "CREATE TABLE $tableName ($hexEncodedPublicKey TEXT PRIMARY KEY, $displayName TEXT);"
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getDisplayName(hexEncodedPublicKey: String): String? {
|
|
|
|
val database = databaseHelper.readableDatabase
|
|
|
|
return database.get(tableName, "${Companion.hexEncodedPublicKey} = ?", arrayOf( hexEncodedPublicKey )) { cursor ->
|
|
|
|
cursor.getString(cursor.getColumnIndexOrThrow(displayName))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun setDisplayName(hexEncodedPublicKey: String, displayName: String) {
|
|
|
|
val database = databaseHelper.writableDatabase
|
|
|
|
val row = ContentValues(2)
|
|
|
|
row.put(Companion.hexEncodedPublicKey, hexEncodedPublicKey)
|
|
|
|
row.put(Companion.displayName, displayName)
|
|
|
|
database.insertOrUpdate(tableName, row, "${Companion.hexEncodedPublicKey} = ?", arrayOf( hexEncodedPublicKey ))
|
2019-07-19 15:23:45 +10:00
|
|
|
Recipient.from(context, Address.fromSerialized(hexEncodedPublicKey), false).notifyListeners()
|
2019-07-19 15:02:47 +10:00
|
|
|
}
|
|
|
|
}
|