Skip to content
Snippets Groups Projects
Commit efc6016d authored by Benoit Marty's avatar Benoit Marty Committed by Benoit Marty
Browse files

Import v1.4.34 from Element Android

parent cdddf715
No related branches found
No related tags found
No related merge requests found
Showing
with 90 additions and 60 deletions
...@@ -22,7 +22,7 @@ def markwon = "4.6.2" ...@@ -22,7 +22,7 @@ def markwon = "4.6.2"
def moshi = "1.13.0" def moshi = "1.13.0"
def lifecycle = "2.5.1" def lifecycle = "2.5.1"
def flowBinding = "1.2.0" def flowBinding = "1.2.0"
def flipper = "0.156.0" def flipper = "0.157.0"
def epoxy = "4.6.2" def epoxy = "4.6.2"
def mavericks = "2.7.0" def mavericks = "2.7.0"
def glide = "4.13.2" def glide = "4.13.2"
...@@ -30,7 +30,7 @@ def bigImageViewer = "1.8.1" ...@@ -30,7 +30,7 @@ def bigImageViewer = "1.8.1"
def jjwt = "0.11.5" def jjwt = "0.11.5"
def vanniktechEmoji = "0.15.0" def vanniktechEmoji = "0.15.0"
def fragment = "1.5.1" def fragment = "1.5.2"
// Testing // Testing
def mockk = "1.12.3" // We need to use 1.12.3 to have mocking in androidTest until a new version is released: https://github.com/mockk/mockk/issues/819 def mockk = "1.12.3" // We need to use 1.12.3 to have mocking in androidTest until a new version is released: https://github.com/mockk/mockk/issues/819
......
...@@ -107,7 +107,9 @@ ext.groups = [ ...@@ -107,7 +107,9 @@ ext.groups = [
'com.pinterest.ktlint', 'com.pinterest.ktlint',
'com.posthog.android', 'com.posthog.android',
'com.squareup', 'com.squareup',
'com.squareup.curtains',
'com.squareup.duktape', 'com.squareup.duktape',
'com.squareup.leakcanary',
'com.squareup.moshi', 'com.squareup.moshi',
'com.squareup.okhttp3', 'com.squareup.okhttp3',
'com.squareup.okio', 'com.squareup.okio',
......
...@@ -19,7 +19,7 @@ buildscript { ...@@ -19,7 +19,7 @@ buildscript {
} }
} }
dependencies { dependencies {
classpath "io.realm:realm-gradle-plugin:10.11.0" classpath "io.realm:realm-gradle-plugin:10.11.1"
} }
} }
...@@ -202,7 +202,7 @@ dependencies { ...@@ -202,7 +202,7 @@ dependencies {
implementation libs.apache.commonsImaging implementation libs.apache.commonsImaging
// Phone number https://github.com/google/libphonenumber // Phone number https://github.com/google/libphonenumber
implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.53' implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.54'
testImplementation libs.tests.junit testImplementation libs.tests.junit
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281 // Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
......
...@@ -28,7 +28,7 @@ interface DebugService { ...@@ -28,7 +28,7 @@ interface DebugService {
fun getAllRealmConfigurations(): List<RealmConfiguration> fun getAllRealmConfigurations(): List<RealmConfiguration>
/** /**
* Prints out info on DB size to logcat. * Get info on DB size.
*/ */
fun logDbUsageInfo() fun getDbUsageInfo(): String
} }
...@@ -89,10 +89,14 @@ fun Throwable.isInvalidUIAAuth() = this is Failure.ServerError && ...@@ -89,10 +89,14 @@ fun Throwable.isInvalidUIAAuth() = this is Failure.ServerError &&
fun Throwable.isHomeserverUnavailable() = this is Failure.NetworkConnection && fun Throwable.isHomeserverUnavailable() = this is Failure.NetworkConnection &&
this.ioException is UnknownHostException this.ioException is UnknownHostException
fun Throwable.isHomeserverConnectionError() = this is Failure.NetworkConnection
fun Throwable.isMissingEmailVerification() = this is Failure.ServerError && fun Throwable.isMissingEmailVerification() = this is Failure.ServerError &&
error.code == MatrixError.M_UNAUTHORIZED && error.code == MatrixError.M_UNAUTHORIZED &&
error.message == "Unable to get validated threepid" error.message == "Unable to get validated threepid"
fun Throwable.isUnrecognisedCertificate() = this is Failure.UnrecognizedCertificateFailure
/** /**
* Try to convert to a RegistrationFlowResponse. Return null in the cases it's not possible * Try to convert to a RegistrationFlowResponse. Return null in the cases it's not possible
*/ */
......
...@@ -323,9 +323,9 @@ interface Session { ...@@ -323,9 +323,9 @@ interface Session {
fun getUiaSsoFallbackUrl(authenticationSessionId: String): String fun getUiaSsoFallbackUrl(authenticationSessionId: String): String
/** /**
* Debug API, will print out info on DB size to logcat. * Debug API, will return info about the DB.
*/ */
fun logDbUsageInfo() fun getDbUsageInfo(): String
/** /**
* Debug API, return the list of all RealmConfiguration used by this session. * Debug API, return the list of all RealmConfiguration used by this session.
......
...@@ -29,14 +29,12 @@ data class RoomGuestAccessContent( ...@@ -29,14 +29,12 @@ data class RoomGuestAccessContent(
// Required. Whether guests can join the room. One of: ["can_join", "forbidden"] // Required. Whether guests can join the room. One of: ["can_join", "forbidden"]
@Json(name = "guest_access") val guestAccessStr: String? = null @Json(name = "guest_access") val guestAccessStr: String? = null
) { ) {
val guestAccess: GuestAccess? = when (guestAccessStr) { val guestAccess: GuestAccess? = GuestAccess.values()
"can_join" -> GuestAccess.CanJoin .find { it.value == guestAccessStr }
"forbidden" -> GuestAccess.Forbidden ?: run {
else -> { Timber.w("Invalid value for GuestAccess: `$guestAccessStr`")
Timber.w("Invalid value for GuestAccess: `$guestAccessStr`") null
null }
}
}
} }
@JsonClass(generateAdapter = false) @JsonClass(generateAdapter = false)
......
...@@ -23,30 +23,30 @@ import com.squareup.moshi.JsonClass ...@@ -23,30 +23,30 @@ import com.squareup.moshi.JsonClass
* Ref: https://matrix.org/docs/spec/client_server/latest#room-history-visibility * Ref: https://matrix.org/docs/spec/client_server/latest#room-history-visibility
*/ */
@JsonClass(generateAdapter = false) @JsonClass(generateAdapter = false)
enum class RoomHistoryVisibility { enum class RoomHistoryVisibility(val value: String) {
/** /**
* All events while this is the m.room.history_visibility value may be shared by any * All events while this is the m.room.history_visibility value may be shared by any
* participating homeserver with anyone, regardless of whether they have ever joined the room. * participating homeserver with anyone, regardless of whether they have ever joined the room.
*/ */
@Json(name = "world_readable") WORLD_READABLE, @Json(name = "world_readable") WORLD_READABLE("world_readable"),
/** /**
* Previous events are always accessible to newly joined members. All events in the * Previous events are always accessible to newly joined members. All events in the
* room are accessible, even those sent when the member was not a part of the room. * room are accessible, even those sent when the member was not a part of the room.
*/ */
@Json(name = "shared") SHARED, @Json(name = "shared") SHARED("shared"),
/** /**
* Events are accessible to newly joined members from the point they were invited onwards. * Events are accessible to newly joined members from the point they were invited onwards.
* Events stop being accessible when the member's state changes to something other than invite or join. * Events stop being accessible when the member's state changes to something other than invite or join.
*/ */
@Json(name = "invited") INVITED, @Json(name = "invited") INVITED("invited"),
/** /**
* Events are accessible to newly joined members from the point they joined the room onwards. * Events are accessible to newly joined members from the point they joined the room onwards.
* Events stop being accessible when the member's state changes to something other than join. * Events stop being accessible when the member's state changes to something other than join.
*/ */
@Json(name = "joined") JOINED @Json(name = "joined") JOINED("joined")
} }
/** /**
......
...@@ -24,14 +24,10 @@ import timber.log.Timber ...@@ -24,14 +24,10 @@ import timber.log.Timber
data class RoomHistoryVisibilityContent( data class RoomHistoryVisibilityContent(
@Json(name = "history_visibility") val historyVisibilityStr: String? = null @Json(name = "history_visibility") val historyVisibilityStr: String? = null
) { ) {
val historyVisibility: RoomHistoryVisibility? = when (historyVisibilityStr) { val historyVisibility: RoomHistoryVisibility? = RoomHistoryVisibility.values()
"world_readable" -> RoomHistoryVisibility.WORLD_READABLE .find { it.value == historyVisibilityStr }
"shared" -> RoomHistoryVisibility.SHARED ?: run {
"invited" -> RoomHistoryVisibility.INVITED Timber.w("Invalid value for RoomHistoryVisibility: `$historyVisibilityStr`")
"joined" -> RoomHistoryVisibility.JOINED null
else -> { }
Timber.w("Invalid value for RoomHistoryVisibility: `$historyVisibilityStr`")
null
}
}
} }
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
package org.matrix.android.sdk.api.session.room.model.create package org.matrix.android.sdk.api.session.room.model.create
import org.matrix.android.sdk.api.session.events.model.Event
import org.matrix.android.sdk.api.session.events.model.EventType import org.matrix.android.sdk.api.session.events.model.EventType
import org.matrix.android.sdk.api.session.events.model.toContent import org.matrix.android.sdk.api.session.events.model.toContent
import org.matrix.android.sdk.api.session.homeserver.HomeServerCapabilities import org.matrix.android.sdk.api.session.homeserver.HomeServerCapabilities
...@@ -30,7 +29,7 @@ interface RoomFeaturePreset { ...@@ -30,7 +29,7 @@ interface RoomFeaturePreset {
fun updateRoomParams(params: CreateRoomParams) fun updateRoomParams(params: CreateRoomParams)
fun setupInitialStates(): List<Event>? fun setupInitialStates(): List<CreateRoomStateEvent>?
} }
class RestrictedRoomPreset(val homeServerCapabilities: HomeServerCapabilities, val restrictedList: List<RoomJoinRulesAllowEntry>) : RoomFeaturePreset { class RestrictedRoomPreset(val homeServerCapabilities: HomeServerCapabilities, val restrictedList: List<RoomJoinRulesAllowEntry>) : RoomFeaturePreset {
...@@ -41,9 +40,9 @@ class RestrictedRoomPreset(val homeServerCapabilities: HomeServerCapabilities, v ...@@ -41,9 +40,9 @@ class RestrictedRoomPreset(val homeServerCapabilities: HomeServerCapabilities, v
params.roomVersion = homeServerCapabilities.versionOverrideForFeature(HomeServerCapabilities.ROOM_CAP_RESTRICTED) params.roomVersion = homeServerCapabilities.versionOverrideForFeature(HomeServerCapabilities.ROOM_CAP_RESTRICTED)
} }
override fun setupInitialStates(): List<Event>? { override fun setupInitialStates(): List<CreateRoomStateEvent> {
return listOf( return listOf(
Event( CreateRoomStateEvent(
type = EventType.STATE_ROOM_JOIN_RULES, type = EventType.STATE_ROOM_JOIN_RULES,
stateKey = "", stateKey = "",
content = RoomJoinRulesContent( content = RoomJoinRulesContent(
......
...@@ -22,7 +22,7 @@ import org.matrix.android.sdk.api.session.events.model.Content ...@@ -22,7 +22,7 @@ import org.matrix.android.sdk.api.session.events.model.Content
import org.matrix.android.sdk.api.session.room.model.relation.RelationDefaultContent import org.matrix.android.sdk.api.session.room.model.relation.RelationDefaultContent
/** /**
* Content of the state event of type * Content of the event of type
* [EventType.BEACON_LOCATION_DATA][org.matrix.android.sdk.api.session.events.model.EventType.BEACON_LOCATION_DATA] * [EventType.BEACON_LOCATION_DATA][org.matrix.android.sdk.api.session.events.model.EventType.BEACON_LOCATION_DATA]
* *
* It contains location data related to a live location share. * It contains location data related to a live location share.
......
...@@ -53,6 +53,11 @@ interface SyncService { ...@@ -53,6 +53,11 @@ interface SyncService {
*/ */
fun getSyncState(): SyncState fun getSyncState(): SyncState
/**
* This method returns true if the sync thread is alive, i.e. started.
*/
fun isSyncThreadAlive(): Boolean
/** /**
* This method allows to listen the sync state. * This method allows to listen the sync state.
* @return a [LiveData] of [SyncState]. * @return a [LiveData] of [SyncState].
......
...@@ -76,12 +76,12 @@ internal class VerificationTransportToDevice( ...@@ -76,12 +76,12 @@ internal class VerificationTransportToDevice(
.configureWith(SendToDeviceTask.Params(MessageType.MSGTYPE_VERIFICATION_REQUEST, contentMap)) { .configureWith(SendToDeviceTask.Params(MessageType.MSGTYPE_VERIFICATION_REQUEST, contentMap)) {
this.callback = object : MatrixCallback<Unit> { this.callback = object : MatrixCallback<Unit> {
override fun onSuccess(data: Unit) { override fun onSuccess(data: Unit) {
Timber.v("## verification [$tx.transactionId] send toDevice request success") Timber.v("## verification [${tx?.transactionId}] send toDevice request success")
callback.invoke(localId, validKeyReq) callback.invoke(localId, validKeyReq)
} }
override fun onFailure(failure: Throwable) { override fun onFailure(failure: Throwable) {
Timber.e("## verification [$tx.transactionId] failed to send toDevice request") Timber.e("## verification [${tx?.transactionId}] failed to send toDevice request")
} }
} }
} }
...@@ -103,12 +103,12 @@ internal class VerificationTransportToDevice( ...@@ -103,12 +103,12 @@ internal class VerificationTransportToDevice(
.configureWith(SendToDeviceTask.Params(EventType.KEY_VERIFICATION_READY, contentMap)) { .configureWith(SendToDeviceTask.Params(EventType.KEY_VERIFICATION_READY, contentMap)) {
this.callback = object : MatrixCallback<Unit> { this.callback = object : MatrixCallback<Unit> {
override fun onSuccess(data: Unit) { override fun onSuccess(data: Unit) {
Timber.v("## verification [$tx.transactionId] send toDevice request success") Timber.v("## verification [${tx?.transactionId}] send toDevice request success")
callback?.invoke() callback?.invoke()
} }
override fun onFailure(failure: Throwable) { override fun onFailure(failure: Throwable) {
Timber.e("## verification [$tx.transactionId] failed to send toDevice request") Timber.e("## verification [${tx?.transactionId}] failed to send toDevice request")
} }
} }
} }
...@@ -136,7 +136,7 @@ internal class VerificationTransportToDevice( ...@@ -136,7 +136,7 @@ internal class VerificationTransportToDevice(
.configureWith(SendToDeviceTask.Params(type, contentMap)) { .configureWith(SendToDeviceTask.Params(type, contentMap)) {
this.callback = object : MatrixCallback<Unit> { this.callback = object : MatrixCallback<Unit> {
override fun onSuccess(data: Unit) { override fun onSuccess(data: Unit) {
Timber.v("## SAS verification [$tx.transactionId] toDevice type '$type' success.") Timber.v("## SAS verification [${tx.transactionId}] toDevice type '$type' success.")
if (onDone != null) { if (onDone != null) {
onDone() onDone()
} else { } else {
...@@ -149,7 +149,7 @@ internal class VerificationTransportToDevice( ...@@ -149,7 +149,7 @@ internal class VerificationTransportToDevice(
} }
override fun onFailure(failure: Throwable) { override fun onFailure(failure: Throwable) {
Timber.e("## SAS verification [$tx.transactionId] failed to send toDevice in state : $tx.state") Timber.e("## SAS verification [${tx.transactionId}] failed to send toDevice in state : ${tx.state}")
tx.cancel(onErrorReason) tx.cancel(onErrorReason)
} }
} }
......
/*
* Copyright (c) 2022 The Matrix.org Foundation C.I.C.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.matrix.android.sdk.internal.database
import io.realm.DefaultCompactOnLaunchCallback
class RealmCompactOnLaunch : DefaultCompactOnLaunchCallback() {
/**
* Forces all RealmCompactOnLaunch instances to be equal.
* Avoids Realm throwing when multiple instances of this class are used.
*/
override fun equals(other: Any?) = other is RealmCompactOnLaunch
override fun hashCode() = 0x1000
}
...@@ -38,7 +38,7 @@ internal abstract class RealmLiveEntityObserver<T : RealmObject>(protected val r ...@@ -38,7 +38,7 @@ internal abstract class RealmLiveEntityObserver<T : RealmObject>(protected val r
LiveEntityObserver, RealmChangeListener<RealmResults<T>> { LiveEntityObserver, RealmChangeListener<RealmResults<T>> {
private companion object { private companion object {
val BACKGROUND_HANDLER = createBackgroundHandler("LIVE_ENTITY_BACKGROUND") val BACKGROUND_HANDLER = createBackgroundHandler("Matrix-LIVE_ENTITY_BACKGROUND")
} }
protected val observerScope = CoroutineScope(SupervisorJob() + BACKGROUND_HANDLER.asCoroutineDispatcher()) protected val observerScope = CoroutineScope(SupervisorJob() + BACKGROUND_HANDLER.asCoroutineDispatcher())
......
...@@ -64,7 +64,7 @@ internal class SessionRealmConfigurationFactory @Inject constructor( ...@@ -64,7 +64,7 @@ internal class SessionRealmConfigurationFactory @Inject constructor(
} }
val realmConfiguration = RealmConfiguration.Builder() val realmConfiguration = RealmConfiguration.Builder()
.compactOnLaunch() .compactOnLaunch(RealmCompactOnLaunch())
.directory(directory) .directory(directory)
.name(REALM_NAME) .name(REALM_NAME)
.apply { .apply {
...@@ -93,7 +93,7 @@ internal class SessionRealmConfigurationFactory @Inject constructor( ...@@ -93,7 +93,7 @@ internal class SessionRealmConfigurationFactory @Inject constructor(
return return
} }
listOf(REALM_NAME, "$REALM_NAME.lock", "$REALM_NAME.note", "$REALM_NAME.management").forEach { file -> listOf(REALM_NAME, "${REALM_NAME}.lock", "${REALM_NAME}.note", "${REALM_NAME}.management").forEach { file ->
try { try {
File(directory, file).deleteRecursively() File(directory, file).deleteRecursively()
} catch (e: Exception) { } catch (e: Exception) {
......
...@@ -19,16 +19,15 @@ package org.matrix.android.sdk.internal.database.tools ...@@ -19,16 +19,15 @@ package org.matrix.android.sdk.internal.database.tools
import io.realm.Realm import io.realm.Realm
import io.realm.RealmConfiguration import io.realm.RealmConfiguration
import org.matrix.android.sdk.BuildConfig import org.matrix.android.sdk.BuildConfig
import timber.log.Timber
internal class RealmDebugTools( internal class RealmDebugTools(
private val realmConfiguration: RealmConfiguration private val realmConfiguration: RealmConfiguration
) { ) {
/** /**
* Log info about the DB. * Get info about the DB.
*/ */
fun logInfo(baseName: String) { fun getInfo(baseName: String): String {
buildString { return buildString {
append("\n$baseName Realm located at : ${realmConfiguration.realmDirectory}/${realmConfiguration.realmFileName}") append("\n$baseName Realm located at : ${realmConfiguration.realmDirectory}/${realmConfiguration.realmFileName}")
if (BuildConfig.LOG_PRIVATE_DATA) { if (BuildConfig.LOG_PRIVATE_DATA) {
...@@ -54,7 +53,6 @@ internal class RealmDebugTools( ...@@ -54,7 +53,6 @@ internal class RealmDebugTools(
separator() separator()
} }
} }
.let { Timber.i(it) }
} }
private fun StringBuilder.separator() = append("\n==============================================") private fun StringBuilder.separator() = append("\n==============================================")
......
...@@ -36,9 +36,9 @@ internal class DefaultDebugService @Inject constructor( ...@@ -36,9 +36,9 @@ internal class DefaultDebugService @Inject constructor(
realmConfigurationGlobal realmConfigurationGlobal
} }
override fun logDbUsageInfo() { override fun getDbUsageInfo() = buildString {
RealmDebugTools(realmConfigurationAuth).logInfo("Auth") append(RealmDebugTools(realmConfigurationAuth).getInfo("Auth"))
RealmDebugTools(realmConfigurationGlobal).logInfo("Global") append(RealmDebugTools(realmConfigurationGlobal).getInfo("Global"))
sessionManager.getLastSession()?.logDbUsageInfo() append(sessionManager.getLastSession()?.getDbUsageInfo())
} }
} }
...@@ -40,7 +40,7 @@ internal object MatrixModule { ...@@ -40,7 +40,7 @@ internal object MatrixModule {
io = Dispatchers.IO, io = Dispatchers.IO,
computation = Dispatchers.Default, computation = Dispatchers.Default,
main = Dispatchers.Main, main = Dispatchers.Main,
crypto = createBackgroundHandler("Crypto_Thread").asCoroutineDispatcher(), crypto = createBackgroundHandler("Matrix-Crypto_Thread").asCoroutineDispatcher(),
dmVerif = Executors.newSingleThreadExecutor().asCoroutineDispatcher() dmVerif = Executors.newSingleThreadExecutor().asCoroutineDispatcher()
) )
} }
......
...@@ -263,11 +263,11 @@ internal class DefaultSession @Inject constructor( ...@@ -263,11 +263,11 @@ internal class DefaultSession @Inject constructor(
} }
} }
override fun logDbUsageInfo() { override fun getDbUsageInfo() = buildString {
RealmDebugTools(realmConfiguration).logInfo("Session") append(RealmDebugTools(realmConfiguration).getInfo("Session"))
RealmDebugTools(realmConfigurationCrypto).logInfo("Crypto") append(RealmDebugTools(realmConfigurationCrypto).getInfo("Crypto"))
RealmDebugTools(realmConfigurationIdentity).logInfo("Identity") append(RealmDebugTools(realmConfigurationIdentity).getInfo("Identity"))
RealmDebugTools(realmConfigurationContentScanner).logInfo("ContentScanner") append(RealmDebugTools(realmConfigurationContentScanner).getInfo("ContentScanner"))
} }
override fun getRealmConfigurations(): List<RealmConfiguration> { override fun getRealmConfigurations(): List<RealmConfiguration> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment