2019-01-18 11:12:08 +01:00
|
|
|
/*
|
2019-01-25 14:04:59 +01:00
|
|
|
* Copyright 2019 New Vector Ltd
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* 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
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* 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.
|
2019-01-18 11:12:08 +01:00
|
|
|
*/
|
|
|
|
|
2018-10-23 18:25:28 +02:00
|
|
|
package im.vector.matrix.android.api.session.room.model
|
|
|
|
|
2019-01-29 14:16:22 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.model.tag.RoomTag
|
2019-07-01 12:35:48 +02:00
|
|
|
import im.vector.matrix.android.api.session.room.timeline.TimelineEvent
|
2019-01-29 14:16:22 +01:00
|
|
|
|
2019-01-25 15:44:41 +01:00
|
|
|
/**
|
|
|
|
* This class holds some data of a room.
|
|
|
|
* It can be retrieved by [im.vector.matrix.android.api.session.room.Room] and [im.vector.matrix.android.api.session.room.RoomService]
|
|
|
|
*/
|
2018-10-23 18:25:28 +02:00
|
|
|
data class RoomSummary(
|
|
|
|
val roomId: String,
|
2018-10-29 14:57:36 +01:00
|
|
|
val displayName: String = "",
|
|
|
|
val topic: String = "",
|
2018-10-30 18:22:29 +01:00
|
|
|
val avatarUrl: String = "",
|
2019-04-17 15:48:59 +02:00
|
|
|
val isDirect: Boolean = false,
|
2019-07-01 12:35:48 +02:00
|
|
|
val latestEvent: TimelineEvent? = null,
|
2019-01-25 18:04:08 +01:00
|
|
|
val otherMemberIds: List<String> = emptyList(),
|
2019-05-06 19:17:30 +02:00
|
|
|
val notificationCount: Int = 0,
|
|
|
|
val highlightCount: Int = 0,
|
|
|
|
val tags: List<RoomTag> = emptyList(),
|
2019-07-25 19:34:39 +02:00
|
|
|
val membership: Membership = Membership.NONE,
|
2019-08-20 19:12:22 +02:00
|
|
|
val versioningState: VersioningState = VersioningState.NONE,
|
|
|
|
val readMarkerId: String? = null
|
2019-07-26 19:17:12 +02:00
|
|
|
) {
|
|
|
|
|
|
|
|
val isVersioned: Boolean
|
|
|
|
get() = versioningState != VersioningState.NONE
|
2019-08-20 19:12:22 +02:00
|
|
|
|
|
|
|
val hasNewMessages: Boolean
|
|
|
|
get() = notificationCount != 0
|
|
|
|
}
|
|
|
|
|