-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.24.7/master'
- Loading branch information
Showing
53 changed files
with
1,438 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// | ||
// Copyright 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. | ||
// | ||
|
||
import Foundation | ||
|
||
@objcMembers | ||
/// `MXAggregatedPollsUpdater` populates the local database with poll events when some of them may be missing. | ||
/// This can happen for example when a user joins a room with an ongoing poll. | ||
/// In this case `poll.start` and `poll.response` events may be missing causing incorrect rendering of polls on the timeline. | ||
/// This type fetches all the related events of a poll when a `poll.end` event triggers. | ||
public final class MXAggregatedPollsUpdater: NSObject { | ||
private let session: MXSession | ||
private let store: MXStore | ||
|
||
public init(session: MXSession, store: MXStore) { | ||
self.session = session | ||
self.store = store | ||
} | ||
|
||
public func refreshPoll(after event: MXEvent) { | ||
// the poll refresh is meant to be done at the end of a poll | ||
guard | ||
event.eventType == .pollEnd, | ||
event.relatesTo.relationType == MXEventRelationTypeReference, | ||
let pollStartEventId = event.relatesTo.eventId | ||
else { | ||
return | ||
} | ||
|
||
// clients having the poll_started event are supposed to have all the history in between because of the /sync api | ||
guard store.eventExists(withEventId: pollStartEventId, inRoom: event.roomId) == false else { | ||
return | ||
} | ||
|
||
session.matrixRestClient.relations( | ||
forEvent: pollStartEventId, | ||
inRoom: event.roomId, | ||
relationType: MXEventRelationTypeReference, | ||
eventType: nil, | ||
from: nil, | ||
direction: MXTimelineDirection.backwards, | ||
limit: nil) { [weak self] response in | ||
switch response { | ||
case .success(let response): | ||
self?.session.store(response: response) | ||
case .failure: | ||
break | ||
} | ||
} | ||
} | ||
} | ||
|
||
private extension MXSession { | ||
func store(response: MXAggregationPaginatedResponse) { | ||
// reverse chronological order | ||
let allEvents = response.chunk + response.originalEventArray | ||
storeIfNeeded(events: allEvents) | ||
} | ||
|
||
func storeIfNeeded(events: [MXEvent]) { | ||
let eventsToStore = events | ||
.filter { event in | ||
store.eventExists(withEventId: event.eventId, inRoom: event.roomId) == false | ||
} | ||
|
||
for event in eventsToStore { | ||
store.storeEvent(forRoom: event.roomId, event: event, direction: .backwards) | ||
} | ||
|
||
if eventsToStore.isEmpty == false { | ||
store.commit?() | ||
} | ||
} | ||
} | ||
|
||
private extension MXAggregationPaginatedResponse { | ||
var originalEventArray: [MXEvent] { | ||
originalEvent.map { [$0] } ?? [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// Copyright 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. | ||
// | ||
|
||
import Foundation | ||
|
||
#if DEBUG | ||
|
||
/// Dummy implementation of background crypto that does nothing and is unable | ||
/// to decrypt notification. | ||
/// | ||
/// Note: This is a temporary class to be used with foreground Crypto V2 which | ||
/// is not currently multi-process safe and thus only one process can be | ||
/// decrypting events. | ||
class MXDummyBackgroundCrypto: MXBackgroundCrypto { | ||
enum Error: Swift.Error { | ||
case unableToDecrypt | ||
} | ||
|
||
func handleSyncResponse(_ syncResponse: MXSyncResponse) { | ||
} | ||
|
||
func canDecryptEvent(_ event: MXEvent) -> Bool { | ||
false | ||
} | ||
|
||
func decryptEvent(_ event: MXEvent) throws { | ||
throw Error.unableToDecrypt | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.