ConversationUtils.kt 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.nextcloud.talk.utils
  2. import com.nextcloud.talk.data.user.model.User
  3. import com.nextcloud.talk.models.domain.ConversationModel
  4. import com.nextcloud.talk.models.domain.ConversationType
  5. import com.nextcloud.talk.models.domain.ParticipantType
  6. import com.nextcloud.talk.utils.database.user.CapabilitiesUtilNew
  7. /*
  8. * Nextcloud Talk application
  9. * @author Marcel Hibbe
  10. * Copyright (C) 2023 Marcel Hibbe <dev@mhibbe.de>
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation, either version 3 of the License, or
  15. * at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. */
  25. object ConversationUtils {
  26. private val TAG = ConversationUtils::class.java.simpleName
  27. private const val NOTE_TO_SELF = "Note to self"
  28. fun isPublic(conversation: ConversationModel): Boolean {
  29. return ConversationType.ROOM_PUBLIC_CALL == conversation.type
  30. }
  31. fun isGuest(conversation: ConversationModel): Boolean {
  32. return ParticipantType.GUEST == conversation.participantType ||
  33. ParticipantType.GUEST_MODERATOR == conversation.participantType ||
  34. ParticipantType.USER_FOLLOWING_LINK == conversation.participantType
  35. }
  36. fun isParticipantOwnerOrModerator(conversation: ConversationModel): Boolean {
  37. return ParticipantType.OWNER == conversation.participantType ||
  38. ParticipantType.GUEST_MODERATOR == conversation.participantType ||
  39. ParticipantType.MODERATOR == conversation.participantType
  40. }
  41. private fun isLockedOneToOne(conversation: ConversationModel, conversationUser: User): Boolean {
  42. return conversation.type == ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL &&
  43. CapabilitiesUtilNew.hasSpreedFeatureCapability(conversationUser, "locked-one-to-one-rooms")
  44. }
  45. fun canModerate(conversation: ConversationModel, conversationUser: User): Boolean {
  46. return isParticipantOwnerOrModerator(conversation) &&
  47. !isLockedOneToOne(conversation, conversationUser) &&
  48. conversation.type != ConversationType.FORMER_ONE_TO_ONE &&
  49. !isNoteToSelfConversation(conversation)
  50. }
  51. fun isLobbyViewApplicable(conversation: ConversationModel, conversationUser: User): Boolean {
  52. return !canModerate(conversation, conversationUser) &&
  53. (
  54. conversation.type == ConversationType.ROOM_GROUP_CALL ||
  55. conversation.type == ConversationType.ROOM_PUBLIC_CALL
  56. )
  57. }
  58. fun isNameEditable(conversation: ConversationModel, conversationUser: User): Boolean {
  59. return canModerate(conversation, conversationUser) &&
  60. ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL != conversation.type
  61. }
  62. fun canLeave(conversation: ConversationModel): Boolean {
  63. return if (conversation.canLeaveConversation != null) {
  64. // Available since APIv2
  65. conversation.canLeaveConversation!!
  66. } else {
  67. true
  68. }
  69. }
  70. fun canDelete(conversation: ConversationModel, conversationUser: User): Boolean {
  71. return if (conversation.canDeleteConversation != null) {
  72. // Available since APIv2
  73. conversation.canDeleteConversation!!
  74. } else {
  75. canModerate(conversation, conversationUser)
  76. // Fallback for APIv1
  77. }
  78. }
  79. fun isNoteToSelfConversation(currentConversation: ConversationModel?): Boolean {
  80. return currentConversation != null && currentConversation.name == NOTE_TO_SELF
  81. }
  82. }