Fix / Support redaction of a m.replace event
+ refactoring
This commit is contained in:
parent
b8c3bdbbf6
commit
118a4392a2
@ -20,9 +20,8 @@ import im.vector.matrix.android.api.session.events.model.*
|
|||||||
import im.vector.matrix.android.api.session.room.model.annotation.ReactionContent
|
import im.vector.matrix.android.api.session.room.model.annotation.ReactionContent
|
||||||
import im.vector.matrix.android.api.session.room.model.message.MessageContent
|
import im.vector.matrix.android.api.session.room.model.message.MessageContent
|
||||||
import im.vector.matrix.android.internal.database.mapper.ContentMapper
|
import im.vector.matrix.android.internal.database.mapper.ContentMapper
|
||||||
import im.vector.matrix.android.internal.database.model.EditAggregatedSummaryEntity
|
import im.vector.matrix.android.internal.database.mapper.EventMapper
|
||||||
import im.vector.matrix.android.internal.database.model.EventAnnotationsSummaryEntity
|
import im.vector.matrix.android.internal.database.model.*
|
||||||
import im.vector.matrix.android.internal.database.model.ReactionAggregatedSummaryEntity
|
|
||||||
import im.vector.matrix.android.internal.database.query.create
|
import im.vector.matrix.android.internal.database.query.create
|
||||||
import im.vector.matrix.android.internal.database.query.where
|
import im.vector.matrix.android.internal.database.query.where
|
||||||
import io.realm.Realm
|
import io.realm.Realm
|
||||||
@ -123,7 +122,7 @@ internal class EventRelationsAggregationUpdater(private val credentials: Credent
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleReaction(event: Event, roomId: String, realm: Realm) {
|
fun handleReaction(event: Event, roomId: String, realm: Realm) {
|
||||||
event.content.toModel<ReactionContent>()?.let { content ->
|
event.content.toModel<ReactionContent>()?.let { content ->
|
||||||
//rel_type must be m.annotation
|
//rel_type must be m.annotation
|
||||||
if (RelationType.ANNOTATION == content.relatesTo?.type) {
|
if (RelationType.ANNOTATION == content.relatesTo?.type) {
|
||||||
@ -153,4 +152,78 @@ internal class EventRelationsAggregationUpdater(private val credentials: Credent
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when an event is deleted
|
||||||
|
*/
|
||||||
|
fun handleRedactionOfReplace(redacted: EventEntity, relatedEventId: String, realm: Realm) {
|
||||||
|
Timber.d("Handle redaction of m.replace")
|
||||||
|
val eventSummary = EventAnnotationsSummaryEntity.where(realm, relatedEventId).findFirst()
|
||||||
|
if (eventSummary == null) {
|
||||||
|
Timber.w("Redaction of a replace targeting an unknown event $relatedEventId")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
val sourceEvents = eventSummary.editSummary?.sourceEvents
|
||||||
|
val sourceToDiscard = sourceEvents?.indexOf(redacted.eventId)
|
||||||
|
if (sourceToDiscard == null) {
|
||||||
|
Timber.w("Redaction of a replace that was not known in aggregation $sourceToDiscard")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
//Need to remove this event from the redaction list and compute new aggregation state
|
||||||
|
sourceEvents.removeAt(sourceToDiscard)
|
||||||
|
val previousEdit = sourceEvents.mapNotNull { EventEntity.where(realm, it).findFirst() }.sortedBy { it.originServerTs }.lastOrNull()
|
||||||
|
if (previousEdit == null) {
|
||||||
|
//revert to original
|
||||||
|
eventSummary.editSummary?.deleteFromRealm()
|
||||||
|
} else {
|
||||||
|
//I have the last event
|
||||||
|
ContentMapper.map(previousEdit.content)?.toModel<MessageContent>()?.newContent?.let { newContent ->
|
||||||
|
eventSummary.editSummary?.lastEditTs = previousEdit.originServerTs
|
||||||
|
?: System.currentTimeMillis()
|
||||||
|
eventSummary.editSummary?.aggregatedContent = ContentMapper.map(newContent)
|
||||||
|
} ?: run {
|
||||||
|
Timber.e("Failed to udate edited summary")
|
||||||
|
//TODO how to reccover that
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun handleReactionRedact(eventToPrune: EventEntity, realm: Realm, userId: String) {
|
||||||
|
Timber.d("REDACTION of reaction ${eventToPrune.eventId}")
|
||||||
|
//delete a reaction, need to update the annotation summary if any
|
||||||
|
val reactionContent: ReactionContent = EventMapper.map(eventToPrune).content.toModel()
|
||||||
|
?: return
|
||||||
|
val eventThatWasReacted = reactionContent.relatesTo?.eventId ?: return
|
||||||
|
|
||||||
|
val reactionkey = reactionContent.relatesTo.key
|
||||||
|
Timber.d("REMOVE reaction for key $reactionkey")
|
||||||
|
val summary = EventAnnotationsSummaryEntity.where(realm, eventThatWasReacted).findFirst()
|
||||||
|
if (summary != null) {
|
||||||
|
summary.reactionsSummary.where()
|
||||||
|
.equalTo(ReactionAggregatedSummaryEntityFields.KEY, reactionkey)
|
||||||
|
.findFirst()?.let { summary ->
|
||||||
|
Timber.d("Find summary for key with ${summary.sourceEvents.size} known reactions (count:${summary.count})")
|
||||||
|
Timber.d("Known reactions ${summary.sourceEvents.joinToString(",")}")
|
||||||
|
if (summary.sourceEvents.contains(eventToPrune.eventId)) {
|
||||||
|
Timber.d("REMOVE reaction for key $reactionkey")
|
||||||
|
summary.sourceEvents.remove(eventToPrune.eventId)
|
||||||
|
Timber.d("Known reactions after ${summary.sourceEvents.joinToString(",")}")
|
||||||
|
summary.count = summary.count - 1
|
||||||
|
if (eventToPrune.sender == userId) {
|
||||||
|
//Was it a redact on my reaction?
|
||||||
|
summary.addedByMe = false
|
||||||
|
}
|
||||||
|
if (summary.count == 0) {
|
||||||
|
//delete!
|
||||||
|
summary.deleteFromRealm()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Timber.e("## Cannot remove summary from count, corresponding reaction ${eventToPrune.eventId} is not known")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Timber.e("## Cannot find summary for key $reactionkey")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -109,7 +109,7 @@ class RoomModule {
|
|||||||
}
|
}
|
||||||
|
|
||||||
scope(DefaultSession.SCOPE) {
|
scope(DefaultSession.SCOPE) {
|
||||||
DefaultPruneEventTask(get()) as PruneEventTask
|
DefaultPruneEventTask(get(),get()) as PruneEventTask
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -17,18 +17,14 @@ package im.vector.matrix.android.internal.session.room.prune
|
|||||||
|
|
||||||
import arrow.core.Try
|
import arrow.core.Try
|
||||||
import com.zhuinden.monarchy.Monarchy
|
import com.zhuinden.monarchy.Monarchy
|
||||||
import im.vector.matrix.android.api.session.events.model.Event
|
import im.vector.matrix.android.api.session.events.model.*
|
||||||
import im.vector.matrix.android.api.session.events.model.EventType
|
import im.vector.matrix.android.api.session.room.model.message.MessageContent
|
||||||
import im.vector.matrix.android.api.session.events.model.UnsignedData
|
|
||||||
import im.vector.matrix.android.api.session.events.model.toModel
|
|
||||||
import im.vector.matrix.android.api.session.room.model.annotation.ReactionContent
|
|
||||||
import im.vector.matrix.android.internal.database.mapper.ContentMapper
|
import im.vector.matrix.android.internal.database.mapper.ContentMapper
|
||||||
import im.vector.matrix.android.internal.database.mapper.EventMapper
|
import im.vector.matrix.android.internal.database.mapper.EventMapper
|
||||||
import im.vector.matrix.android.internal.database.model.EventAnnotationsSummaryEntity
|
|
||||||
import im.vector.matrix.android.internal.database.model.EventEntity
|
import im.vector.matrix.android.internal.database.model.EventEntity
|
||||||
import im.vector.matrix.android.internal.database.model.ReactionAggregatedSummaryEntityFields
|
|
||||||
import im.vector.matrix.android.internal.database.query.where
|
import im.vector.matrix.android.internal.database.query.where
|
||||||
import im.vector.matrix.android.internal.di.MoshiProvider
|
import im.vector.matrix.android.internal.di.MoshiProvider
|
||||||
|
import im.vector.matrix.android.internal.session.room.EventRelationsAggregationUpdater
|
||||||
import im.vector.matrix.android.internal.task.Task
|
import im.vector.matrix.android.internal.task.Task
|
||||||
import im.vector.matrix.android.internal.util.tryTransactionSync
|
import im.vector.matrix.android.internal.util.tryTransactionSync
|
||||||
import io.realm.Realm
|
import io.realm.Realm
|
||||||
@ -44,7 +40,9 @@ internal interface PruneEventTask : Task<PruneEventTask.Params, Unit> {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal class DefaultPruneEventTask(private val monarchy: Monarchy) : PruneEventTask {
|
internal class DefaultPruneEventTask(
|
||||||
|
private val monarchy: Monarchy,
|
||||||
|
private val eventRelationsAggregationUpdater: EventRelationsAggregationUpdater) : PruneEventTask {
|
||||||
|
|
||||||
override fun execute(params: PruneEventTask.Params): Try<Unit> {
|
override fun execute(params: PruneEventTask.Params): Try<Unit> {
|
||||||
return monarchy.tryTransactionSync { realm ->
|
return monarchy.tryTransactionSync { realm ->
|
||||||
@ -72,52 +70,26 @@ internal class DefaultPruneEventTask(private val monarchy: Monarchy) : PruneEven
|
|||||||
Timber.d("REDACTION for message ${eventToPrune.eventId}")
|
Timber.d("REDACTION for message ${eventToPrune.eventId}")
|
||||||
val unsignedData = EventMapper.map(eventToPrune).unsignedData
|
val unsignedData = EventMapper.map(eventToPrune).unsignedData
|
||||||
?: UnsignedData(null, null)
|
?: UnsignedData(null, null)
|
||||||
|
|
||||||
|
//was this event a m.replace
|
||||||
|
val contentModel = ContentMapper.map(eventToPrune.content)?.toModel<MessageContent>()
|
||||||
|
if (RelationType.REPLACE == contentModel?.relatesTo?.type && contentModel.relatesTo?.eventId != null) {
|
||||||
|
eventRelationsAggregationUpdater.handleRedactionOfReplace(eventToPrune, contentModel.relatesTo!!.eventId!!, realm)
|
||||||
|
}
|
||||||
|
|
||||||
val modified = unsignedData.copy(redactedEvent = redactionEvent)
|
val modified = unsignedData.copy(redactedEvent = redactionEvent)
|
||||||
eventToPrune.content = ContentMapper.map(emptyMap())
|
eventToPrune.content = ContentMapper.map(emptyMap())
|
||||||
eventToPrune.unsignedData = MoshiProvider.providesMoshi().adapter(UnsignedData::class.java).toJson(modified)
|
eventToPrune.unsignedData = MoshiProvider.providesMoshi().adapter(UnsignedData::class.java).toJson(modified)
|
||||||
|
|
||||||
}
|
}
|
||||||
EventType.REACTION -> {
|
EventType.REACTION -> {
|
||||||
Timber.d("REDACTION of reaction ${eventToPrune.eventId}")
|
eventRelationsAggregationUpdater.handleReactionRedact(eventToPrune, realm, userId)
|
||||||
//delete a reaction, need to update the annotation summary if any
|
|
||||||
val reactionContent: ReactionContent = EventMapper.map(eventToPrune).content.toModel()
|
|
||||||
?: return
|
|
||||||
val eventThatWasReacted = reactionContent.relatesTo?.eventId ?: return
|
|
||||||
|
|
||||||
val reactionkey = reactionContent.relatesTo.key
|
|
||||||
Timber.d("REMOVE reaction for key $reactionkey")
|
|
||||||
val summary = EventAnnotationsSummaryEntity.where(realm, eventThatWasReacted).findFirst()
|
|
||||||
if (summary != null) {
|
|
||||||
summary.reactionsSummary.where()
|
|
||||||
.equalTo(ReactionAggregatedSummaryEntityFields.KEY, reactionkey)
|
|
||||||
.findFirst()?.let { summary ->
|
|
||||||
Timber.d("Find summary for key with ${summary.sourceEvents.size} known reactions (count:${summary.count})")
|
|
||||||
Timber.d("Known reactions ${summary.sourceEvents.joinToString(",")}")
|
|
||||||
if (summary.sourceEvents.contains(eventToPrune.eventId)) {
|
|
||||||
Timber.d("REMOVE reaction for key $reactionkey")
|
|
||||||
summary.sourceEvents.remove(eventToPrune.eventId)
|
|
||||||
Timber.d("Known reactions after ${summary.sourceEvents.joinToString(",")}")
|
|
||||||
summary.count = summary.count - 1
|
|
||||||
if (eventToPrune.sender == userId) {
|
|
||||||
//Was it a redact on my reaction?
|
|
||||||
summary.addedByMe = false
|
|
||||||
}
|
|
||||||
if (summary.count == 0) {
|
|
||||||
//delete!
|
|
||||||
summary.deleteFromRealm()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Timber.e("## Cannot remove summary from count, corresponding reaction ${eventToPrune.eventId} is not known")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Timber.e("## Cannot find summary for key $reactionkey")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private fun computeAllowedKeys(type: String): List<String> {
|
private fun computeAllowedKeys(type: String): List<String> {
|
||||||
// Add filtered content, allowed keys in content depends on the event type
|
// Add filtered content, allowed keys in content depends on the event type
|
||||||
return when (type) {
|
return when (type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user