Skip to content
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

feat: propagate if a guest link is password protected #1985

Conversation

MohamadJaara
Copy link
Member


PR Submission Checklist for internal contributors

  • The PR Title

    • conforms to the style of semantic commits messages¹ supported in Wire's Github Workflow²
    • contains a reference JIRA issue number like SQPIT-764
    • answers the question: If merged, this PR will: ... ³
  • The PR Description

    • is free of optional paragraphs and you have filled the relevant parts to the best of your ability

What's new in this PR?

Issues

observe conversation code need to include info about the code if it is password protected or not

Needs releases with:

  • GitHub link to other pull request

Testing

Test Coverage (Optional)

  • I have added automated test to this contribution

How to Test

Briefly describe how this change was tested and if applicable the exact steps taken to verify that it works as expected.

Notes (Optional)

Specify here any other facts that you think are important for this issue.

Attachments (Optional)

Attachments like images, videos, etc. (drag and drop in the text box)


PR Post Submission Checklist for internal contributors (Optional)

  • Wire's Github Workflow has automatically linked the PR to a JIRA issue

PR Post Merge Checklist for internal contributors

  • If any soft of configuration variable was introduced by this PR, it has been added to the relevant documents and the CI jobs have been updated.

References
  1. https://sparkbox.com/foundry/semantic_commit_messages
  2. https://github.com/wireapp/.github#usage
  3. E.g. feat(conversation-list): Sort conversations by most emojis in the title #SQPIT-764.

MohamadJaara and others added 30 commits August 3, 2023 17:26
…eat/handle-code-update-and-delete-event

# Conflicts:
#	logic/src/commonMain/kotlin/com/wire/kalium/logic/feature/conversation/guestroomlink/CanCreatePasswordProtectedLinksUseCase.kt
…r/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
…r/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
…rd-protected-conv-invite-link

# Conflicts:
#	logic/src/commonMain/kotlin/com/wire/kalium/logic/data/event/EventMapper.kt
#	logic/src/commonMain/kotlin/com/wire/kalium/logic/sync/receiver/ConversationEventReceiver.kt
#	network/src/commonMain/kotlin/com/wire/kalium/network/api/v4/authenticated/ConversationApiV4.kt
#	persistence/src/commonMain/db_user/migrations/53.sqm
…eat/create-password-protected-conv-invite-link

# Conflicts:
#	logic/src/commonMain/kotlin/com/wire/kalium/logic/data/conversation/ConversationGroupRepository.kt
#	logic/src/commonMain/kotlin/com/wire/kalium/logic/sync/receiver/ConversationEventReceiver.kt
#	network/src/commonMain/kotlin/com/wire/kalium/network/api/base/authenticated/notification/EventContentDTO.kt
@github-actions
Copy link
Contributor

github-actions bot commented Aug 15, 2023

Unit Test Results

       3 files         3 suites   7m 21s ⏱️
2 131 tests 2 120 ✔️ 11 💤 0

Results for commit 452dc58.

♻️ This comment has been updated with latest results.

@codecov-commenter
Copy link

Codecov Report

Merging #1985 (c57893b) into feat/create-password-protected-conv-invite-link (6433af7) will increase coverage by 0.11%.
The diff coverage is 92.30%.

@@                                  Coverage Diff                                  @@
##             feat/create-password-protected-conv-invite-link    #1985      +/-   ##
=====================================================================================
+ Coverage                                              58.12%   58.23%   +0.11%     
  Complexity                                                23       23              
=====================================================================================
  Files                                                    969      971       +2     
  Lines                                                  36781    36795      +14     
  Branches                                                3356     3356              
=====================================================================================
+ Hits                                                   21380    21429      +49     
+ Misses                                                 13957    13921      -36     
- Partials                                                1444     1445       +1     
Files Changed Coverage Δ
...onversation/UpdateConversationAccessRoleUseCase.kt 93.75% <0.00%> (ø)
...ation/guestroomlink/ObserveGuestRoomLinkUseCase.kt 100.00% <ø> (ø)
...um/persistence/dao/conversation/ConversationDAO.kt 100.00% <ø> (ø)
...c/data/conversation/ConversationGroupRepository.kt 98.81% <100.00%> (+0.02%) ⬆️
...m/logic/data/conversation/ConversationGuestLink.kt 100.00% <100.00%> (ø)
...ersistence/dao/conversation/ConversationDAOImpl.kt 72.72% <100.00%> (+2.13%) ⬆️
...ce/dao/conversation/ConversationGuestLinkEntity.kt 100.00% <100.00%> (ø)

... and 2 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6433af7...c57893b. Read the comment docs.

@datadog-wireapp
Copy link

datadog-wireapp bot commented Aug 15, 2023

Datadog Report

All test runs ee0cb64 🔗

2 Total Test Services: 0 Failed, 0 with New Flaky, 2 Passed

Test Services
Service Name Failed Known Flaky New Flaky Passed Skipped Wall Time Branch View
kalium-ios 0 0 0 2056 79 2m 15.02s Link
kalium-jvm 0 0 0 2204 98 9m 42s Link

Base automatically changed from feat/create-password-protected-conv-invite-link to feat/create-password-protected-invite-code/epic August 15, 2023 13:10
…eat/create-password-protected-invite-code/return-if-the-guest-link-is-password-protected-when-observing
@MohamadJaara MohamadJaara merged commit 24ede05 into feat/create-password-protected-invite-code/epic Aug 15, 2023
12 checks passed
@MohamadJaara MohamadJaara deleted the feat/create-password-protected-invite-code/return-if-the-guest-link-is-password-protected-when-observing branch August 15, 2023 14:02
github-merge-queue bot pushed a commit that referenced this pull request Aug 18, 2023
* feat: add use case to decide if a user can create password protected invite links [WPB-1531] (#1950)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* Update logic/src/commonMain/kotlin/com/wire/kalium/logic/feature/conversation/guestroomlink/CanCreatePasswordProtectedLinksUseCase.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Oussama Hassine <oussama.has100@gmail.com>

* feat: handle code update and delete events (#1960)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* feat: create password protected conv invite link (#1982)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

* support api v4 for password protected invite links

* fix: unresolved reference

* fix merge issues

* feat: generate password protected guest link

* add test

* detekt

* fix test

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* feat: propagate if a guest link is password protected (#1985)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

* support api v4 for password protected invite links

* fix: unresolved reference

* fix merge issues

* feat: generate password protected guest link

* add test

* detekt

* fix test

* feat: propagate if a guest link is password protected

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* merge issue

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Oussama Hassine <oussama.has100@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>
github-merge-queue bot pushed a commit that referenced this pull request Aug 25, 2023
* feat: add use case to decide if a user can create password protected invite links [WPB-1531] (#1950)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* Update logic/src/commonMain/kotlin/com/wire/kalium/logic/feature/conversation/guestroomlink/CanCreatePasswordProtectedLinksUseCase.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Oussama Hassine <oussama.has100@gmail.com>

* feat: handle code update and delete events (#1960)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* feat: create password protected conv invite link (#1982)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

* support api v4 for password protected invite links

* fix: unresolved reference

* fix merge issues

* feat: generate password protected guest link

* add test

* detekt

* fix test

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* feat: propagate if a guest link is password protected (#1985)

* CanCreatePasswordProtectedLinksUseCase

* docs

* detekt

* test

* feat: handle code update and delete event

* test

* code delete code

* inject handler

* detekt

* add fake value for is password protected

* add has password to event DTO

* missing any

* fix test

* detekt

* db migration

* typo in db migration

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeDeletedHandler.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* Update logic/src/commonTest/kotlin/com/wire/kalium/logic/sync/receiver/conversation/CodeUpdateHandlerTest.kt

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>

* file name

* fix(tests): fix e2ei mock order timing

* support api v4 for password protected invite links

* fix: unresolved reference

* fix merge issues

* feat: generate password protected guest link

* add test

* detekt

* fix test

* feat: propagate if a guest link is password protected

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>

* merge issue

* feat: implement cert pinning

* detekt

* detekt

* feat: add cert pinning config

* detekt

* fix CLI and test service

* test

* address PR comments

* add cert pinning config as val instead of fun

---------

Co-authored-by: Alexandre Ferris <ferris.alexandre@gmail.com>
Co-authored-by: Oussama Hassine <oussama.has100@gmail.com>
Co-authored-by: Mojtaba Chenani <chenani@outlook.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants