-
Notifications
You must be signed in to change notification settings - Fork 7
feat: add type safe message sync network dtos #3822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MohamadJaara
wants to merge
11
commits into
epic/shard-device
Choose a base branch
from
mo/message-sync-network-dtos
base: epic/shard-device
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4ef2572
feat: implement RemoteBackupApi
MohamadJaara 4c1db3c
feat: implement wrapStreamingRequest for error handling in streaming …
MohamadJaara dd0ad13
detekt
MohamadJaara 4366f16
remove unused backupServiceUrl parameter from RemoteBackupApi
MohamadJaara cf62f87
adjust tests
MohamadJaara fc2c31b
feat: add typed DTOs for message sync payloads
MohamadJaara 02064ee
Merge branch 'refs/heads/epic/shared-device' into mo/message-sync-net…
MohamadJaara 60626b3
adjust structs naming
MohamadJaara 2531fd4
refactor: replace hardcoded response data with structured JSON respon…
MohamadJaara e0633fd
feat: add remote backup protobuf definitions
MohamadJaara 87a6bde
feat: update message sync request and response DTOs to handle events
MohamadJaara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
34 changes: 0 additions & 34 deletions
34
...ain/kotlin/com/wire/kalium/network/api/authenticated/remoteBackup/MessageSyncUpsertDTO.kt
This file was deleted.
Oops, something went wrong.
137 changes: 137 additions & 0 deletions
137
...n/com/wire/kalium/network/api/authenticated/remoteBackup/RemoteBAckupMessageContentDTO.kt
This file contains hidden or 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,137 @@ | ||
| /* | ||
| * Wire | ||
| * Copyright (C) 2026 Wire Swiss GmbH | ||
| * | ||
| * This program is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU General Public License as published by | ||
| * the Free Software Foundation, either version 3 of the License, or | ||
| * (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program. If not, see http://www.gnu.org/licenses/. | ||
| */ | ||
| package com.wire.kalium.network.api.authenticated.remoteBackup | ||
|
|
||
| import com.wire.kalium.network.api.model.QualifiedID | ||
| import kotlinx.serialization.SerialName | ||
| import kotlinx.serialization.Serializable | ||
|
|
||
| /** | ||
| * Sealed class representing different types of message content for sync. | ||
| * This mirrors the structure of BackupMessageContent. | ||
| */ | ||
| @Serializable | ||
| sealed class RemoteBAckupMessageContentDTO { | ||
|
|
||
| @Serializable | ||
| @SerialName("text") | ||
| data class Text( | ||
| @SerialName("text") | ||
| val text: String, | ||
| @SerialName("mentions") | ||
| val mentions: List<MessageSyncMentionDTO> = emptyList(), | ||
| @SerialName("quotedMessageId") | ||
| val quotedMessageId: String? = null | ||
| ) : RemoteBAckupMessageContentDTO() | ||
|
|
||
| @Serializable | ||
| @SerialName("asset") | ||
| data class Asset( | ||
| @SerialName("mimeType") | ||
| val mimeType: String, | ||
| @SerialName("size") | ||
| val size: Int, | ||
| @SerialName("name") | ||
| val name: String?, | ||
| @SerialName("otrKey") | ||
| val otrKey: String, | ||
| @SerialName("sha256") | ||
| val sha256: String, | ||
| @SerialName("assetId") | ||
| val assetId: String, | ||
| @SerialName("assetToken") | ||
| val assetToken: String?, | ||
| @SerialName("assetDomain") | ||
| val assetDomain: String?, | ||
| @SerialName("encryption") | ||
| val encryption: String?, | ||
| @SerialName("metaData") | ||
| val metaData: MessageSyncAssetMetadataDTO? | ||
| ) : RemoteBAckupMessageContentDTO() | ||
|
|
||
| @Serializable | ||
| @SerialName("location") | ||
| data class Location( | ||
| @SerialName("longitude") | ||
| val longitude: Float, | ||
| @SerialName("latitude") | ||
| val latitude: Float, | ||
| @SerialName("name") | ||
| val name: String?, | ||
| @SerialName("zoom") | ||
| val zoom: Int? | ||
| ) : RemoteBAckupMessageContentDTO() | ||
| } | ||
|
|
||
| /** | ||
| * DTO for user mentions in text messages. | ||
| */ | ||
| @Serializable | ||
| data class MessageSyncMentionDTO( | ||
| @SerialName("userId") | ||
| val userId: QualifiedID, | ||
| @SerialName("start") | ||
| val start: Int, | ||
| @SerialName("length") | ||
| val length: Int | ||
| ) | ||
|
|
||
| /** | ||
| * Sealed class representing different types of asset metadata. | ||
| */ | ||
| @Serializable | ||
| sealed class MessageSyncAssetMetadataDTO { | ||
|
|
||
| @Serializable | ||
| @SerialName("image") | ||
| data class Image( | ||
| @SerialName("width") | ||
| val width: Int, | ||
| @SerialName("height") | ||
| val height: Int, | ||
| @SerialName("tag") | ||
| val tag: String? | ||
| ) : MessageSyncAssetMetadataDTO() | ||
|
|
||
| @Serializable | ||
| @SerialName("video") | ||
| data class Video( | ||
| @SerialName("width") | ||
| val width: Int?, | ||
| @SerialName("height") | ||
| val height: Int?, | ||
| @SerialName("duration") | ||
| val duration: Long? | ||
| ) : MessageSyncAssetMetadataDTO() | ||
|
|
||
| @Serializable | ||
| @SerialName("audio") | ||
| data class Audio( | ||
| @SerialName("normalization") | ||
| val normalization: String?, | ||
| @SerialName("duration") | ||
| val duration: Long? | ||
| ) : MessageSyncAssetMetadataDTO() | ||
|
|
||
| @Serializable | ||
| @SerialName("generic") | ||
| data class Generic( | ||
| @SerialName("name") | ||
| val name: String? | ||
| ) : MessageSyncAssetMetadataDTO() | ||
| } | ||
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a typo in class name (uppercase A)