mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 06:58:28 +02:00
Merge commit 'f823ab9aae70e8d15ed7cc079210dd9bbbb6c8e1' into feature/foss_update_1_11_19 * commit 'f823ab9aae70e8d15ed7cc079210dd9bbbb6c8e1': finish version++ version++ comments update submodule remove obsolete tests removed unused code update submodule fix Libolm removal update license macro update license Prepare for new sprint # Conflicts: # Config/AppVersion.xcconfig # IDETemplateMacros.plist # LICENSE # README.md # Riot/Categories/MXSession+Riot.m # Riot/Managers/EncryptionKeyManager/EncryptionKeyManager.swift # Riot/Managers/KeyValueStorage/Extensions/Keychain.swift # Riot/Managers/KeyValueStorage/KeyValueStore.swift # Riot/Managers/KeyValueStorage/KeychainStore.swift # Riot/Managers/KeyValueStorage/MemoryStore.swift # Riot/Managers/PushNotification/PushNotificationService.m # Riot/Managers/Settings/RiotSettings.swift # Riot/Managers/Settings/Shared/RiotSharedSettings.swift # Riot/Modules/Analytics/AnalyticsUIElement.swift # Riot/Modules/Application/AppCoordinator.swift # Riot/Modules/Application/LegacyAppDelegate.h # Riot/Modules/Application/LegacyAppDelegate.m # Riot/Modules/Authentication/Legacy/AuthenticationViewController.h # Riot/Modules/Authentication/Legacy/AuthenticationViewController.m # Riot/Modules/Authentication/Legacy/Views/AuthInputsView.h # Riot/Modules/Authentication/Legacy/Views/AuthInputsView.m # Riot/Modules/Common/Recents/DataSources/RecentsDataSource.m # Riot/Modules/Common/Recents/RecentsViewController.m # Riot/Modules/Common/WebViewController/WebViewViewController.m # Riot/Modules/Contacts/Details/ContactDetailsViewController.m # Riot/Modules/Contacts/Views/ContactTableViewCell.m # Riot/Modules/Favorites/FavouritesViewController.h # Riot/Modules/Favorites/FavouritesViewController.m # Riot/Modules/GlobalSearch/UnifiedSearchViewController.m # Riot/Modules/People/PeopleViewController.h # Riot/Modules/People/PeopleViewController.m # Riot/Modules/Room/ContextualMenu/ReactionsMenu/ReactionsMenuViewModel.swift # Riot/Modules/Room/DataSources/RoomDataSource.m # Riot/Modules/Room/Files/RoomFilesViewController.m # Riot/Modules/Room/Members/Detail/RoomMemberDetailsViewController.m # Riot/Modules/Room/Members/RoomParticipantsViewController.m # Riot/Modules/Room/RoomViewController.m # Riot/Modules/Room/Settings/RoomSettingsViewController.m # Riot/Modules/Room/TimelineCells/RoomCreationIntro/RoomCreationIntroCell.swift # Riot/Modules/Room/TimelineCells/RoomCreationIntro/RoomCreationIntroCellContentView.swift # Riot/Modules/Room/TimelineCells/RoomCreationIntro/RoomCreationIntroViewData.swift # Riot/Modules/Room/TimelineCells/RoomTimelineCellIdentifier.h # Riot/Modules/Rooms/RoomsViewController.h # Riot/Modules/Rooms/ShowDirectory/Cells/Network/DirectoryNetworkTableHeaderFooterView.swift # Riot/Modules/Rooms/ShowDirectory/Cells/Room/DirectoryRoomTableViewCell.swift # Riot/Modules/Rooms/ShowDirectory/PublicRoomsDirectoryViewModel.swift # Riot/Modules/Secrets/Recover/RecoverWithKey/SecretsRecoveryWithKeyCoordinator.swift # Riot/Modules/Secrets/Recover/RecoverWithKey/SecretsRecoveryWithKeyViewController.swift # Riot/Modules/Secrets/Recover/RecoverWithPassphrase/SecretsRecoveryWithPassphraseCoordinator.swift # Riot/Modules/Secrets/Recover/RecoverWithPassphrase/SecretsRecoveryWithPassphraseViewController.swift # Riot/Modules/Secrets/Recover/SecretsRecoveryCoordinator.swift # Riot/Modules/SecureBackup/Setup/Intro/SecureBackupSetupIntroViewController.swift # Riot/Modules/SecureBackup/Setup/Intro/SecureBackupSetupIntroViewModel.swift # Riot/Modules/SecureBackup/Setup/Intro/SecureBackupSetupIntroViewModelType.swift # Riot/Modules/SetPinCode/PinCodePreferences.swift # Riot/Modules/SetPinCode/SetupBiometrics/BiometricsAuthenticationPresenter.swift # Riot/Modules/Settings/Security/ManageSession/ManageSessionViewController.m # Riot/Modules/Settings/Security/SecurityViewController.m # Riot/Modules/Settings/SettingsViewController.m # Riot/Modules/SplitView/SplitViewCoordinator.swift # Riot/Modules/SplitView/SplitViewCoordinatorType.swift # Riot/Modules/StartChat/StartChatViewController.m # Riot/Modules/TabBar/MasterTabBarController.h # Riot/Modules/TabBar/MasterTabBarController.m # Riot/Utils/EventFormatter.m # Riot/Utils/HTMLFormatter.swift # Riot/Utils/Tools.m # RiotNSE/NotificationService.swift
173 lines
6.6 KiB
Objective-C
173 lines
6.6 KiB
Objective-C
/*
|
|
Copyright 2020-2024 New Vector Ltd.
|
|
Copyright 2017 Vector Creations Ltd
|
|
Copyright (c) 2021 BWI GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
#import "AuthenticationViewController.h"
|
|
|
|
#import "RoomPreviewData.h"
|
|
#import "HomeViewController.h"
|
|
#import "FavouritesViewController.h"
|
|
#import "PeopleViewController.h"
|
|
#import "RoomsViewController.h"
|
|
#import "SplitViewMasterViewControllerProtocol.h"
|
|
|
|
#define TABBAR_HOME_INDEX 3
|
|
#define TABBAR_FAVOURITES_INDEX 0
|
|
#define TABBAR_PEOPLE_INDEX 1
|
|
#define TABBAR_ROOMS_INDEX 2
|
|
#define TABBAR_COUNT 3
|
|
|
|
typedef NS_ENUM(NSUInteger, MasterTabBarIndex) {
|
|
MasterTabBarIndexHome = TABBAR_HOME_INDEX,
|
|
MasterTabBarIndexFavourites = TABBAR_FAVOURITES_INDEX,
|
|
MasterTabBarIndexPeople = TABBAR_PEOPLE_INDEX,
|
|
MasterTabBarIndexRooms = TABBAR_ROOMS_INDEX
|
|
};
|
|
|
|
@protocol MasterTabBarControllerDelegate;
|
|
@class RoomNavigationParameters;
|
|
@class RoomPreviewNavigationParameters;
|
|
@class ScreenPresentationParameters;
|
|
@class OnboardingCoordinatorBridgePresenter;
|
|
|
|
@interface MasterTabBarController : UITabBarController<SplitViewMasterViewControllerProtocol>
|
|
|
|
// UITabBarController already have a `delegate` property
|
|
@property (weak, nonatomic) id<MasterTabBarControllerDelegate> masterTabBarDelegate;
|
|
|
|
// Associated matrix sessions (empty by default).
|
|
@property (nonatomic, readonly) NSArray<MXSession*> *mxSessions;
|
|
|
|
// Add a matrix session. This session is propagated to all view controllers handled by the tab bar controller.
|
|
- (void)addMatrixSession:(MXSession*)mxSession;
|
|
// Remove a matrix session.
|
|
- (void)removeMatrixSession:(MXSession*)mxSession;
|
|
|
|
/**
|
|
Display the default onboarding flow.
|
|
*/
|
|
- (void)showOnboardingFlow;
|
|
|
|
/**
|
|
Display the onboarding flow configured to log back into a soft logout session.
|
|
|
|
@param softLogoutCredentials the credentials of the soft logout session.
|
|
*/
|
|
- (void)showSoftLogoutOnboardingFlowWithCredentials:(MXCredentials*)softLogoutCredentials;
|
|
|
|
/// Open the room with the provided identifier in a specific matrix session.
|
|
/// @param parameters the presentation parameters that contains room information plus display information.
|
|
/// @param completion the block to execute at the end of the operation.
|
|
- (void)selectRoomWithParameters:(RoomNavigationParameters*)parameters completion:(void (^)(void))completion;
|
|
|
|
/// Open the RoomViewController to display the preview of a room that is unknown for the user.
|
|
/// This room can come from an email invitation link or a simple link to a room.
|
|
/// @param parameters the presentation parameters that contains room preview information plus display information.
|
|
/// @param completion the block to execute at the end of the operation.
|
|
- (void)selectRoomPreviewWithParameters:(RoomPreviewNavigationParameters*)parameters completion:(void (^)(void))completion;
|
|
|
|
/**
|
|
Open a ContactDetailsViewController to display the information of the provided contact.
|
|
*/
|
|
- (void)selectContact:(MXKContact*)contact;
|
|
|
|
- (void)selectContact:(MXKContact*)contact withPresentationParameters:(ScreenPresentationParameters*)presentationParameters;
|
|
|
|
/**
|
|
Open a GroupDetailsViewController to display the information of the provided group.
|
|
|
|
@param group Selected community.
|
|
@param matrixSession the matrix session in which the group should be available.
|
|
*/
|
|
- (void)selectGroup:(MXGroup*)group inMatrixSession:(MXSession*)matrixSession;
|
|
|
|
- (void)selectGroup:(MXGroup*)group inMatrixSession:(MXSession*)matrixSession presentationParameters:(ScreenPresentationParameters*)presentationParameters;
|
|
|
|
/**
|
|
Release the current selected item (if any).
|
|
*/
|
|
- (void)releaseSelectedItem;
|
|
|
|
/**
|
|
The current number of rooms with missed notifications, including the invites.
|
|
*/
|
|
- (NSUInteger)missedDiscussionsCount;
|
|
|
|
/**
|
|
The current number of rooms with unread highlighted messages.
|
|
*/
|
|
- (NSUInteger)missedHighlightDiscussionsCount;
|
|
|
|
/**
|
|
Refresh the missed conversations badges on tab bar icon
|
|
*/
|
|
- (void)refreshTabBarBadges;
|
|
|
|
/**
|
|
Present the 4S setup flow.
|
|
|
|
@param session the matrix session.
|
|
*/
|
|
- (void)presentSecureBackupSetupForMatrixSession:(MXSession*)session;
|
|
|
|
/**
|
|
Verify the current device if needed.
|
|
|
|
@param session the matrix session.
|
|
*/
|
|
- (void)presentVerifyCurrentSessionAlertIfNeededWithSession:(MXSession*)session;
|
|
|
|
/**
|
|
Verify others device if needed.
|
|
|
|
@param session the matrix session.
|
|
*/
|
|
- (void)presentReviewUnverifiedSessionsAlertIfNeededWithSession:(MXSession*)session;
|
|
|
|
|
|
/// Filter rooms for each tab data source with the given room parent id.
|
|
/// It should keep rooms having an ancestor with `roomParentId` as parent id.
|
|
/// @param roomParentId The room parent id used to filter rooms.
|
|
/// @param mxSession The matrix session in which the room filtering should be done.
|
|
- (void)filterRoomsWithParentId:(NSString*)roomParentId
|
|
inMatrixSession:(MXSession*)mxSession;
|
|
|
|
|
|
- (void)bwiOnUnlockedByPin;
|
|
|
|
// Reference to the current onboarding flow. It is always nil unless the flow is being presented.
|
|
@property (nonatomic, readonly) OnboardingCoordinatorBridgePresenter *onboardingCoordinatorBridgePresenter;
|
|
|
|
// Reference to the current splash VC. It is not nil only when the splash screen is displayed.
|
|
@property (nonatomic, readonly) UIViewController *splashViewController;
|
|
|
|
@property (nonatomic, readonly) HomeViewController *homeViewController;
|
|
@property (nonatomic, readonly) FavouritesViewController *favouritesViewController;
|
|
@property (nonatomic, readonly) PeopleViewController *peopleViewController;
|
|
@property (nonatomic, readonly) RoomsViewController *roomsViewController;
|
|
|
|
// Set tab bar item controllers
|
|
- (void)updateViewControllers:(NSArray<UIViewController*>*)viewControllers;
|
|
|
|
- (void)removeTabAt:(MasterTabBarIndex)index;
|
|
|
|
- (void)selectTabAtIndex:(MasterTabBarIndex)tabBarIndex;
|
|
|
|
@end
|
|
|
|
|
|
@protocol MasterTabBarControllerDelegate <NSObject>
|
|
|
|
- (void)masterTabBarControllerDidCompleteAuthentication:(MasterTabBarController *)masterTabBarController;
|
|
- (void)masterTabBarController:(MasterTabBarController*)masterTabBarController needsSideMenuIconWithNotification:(BOOL)displayNotification;
|
|
- (void)masterTabBarController:(MasterTabBarController *)masterTabBarController didSelectRoomWithParameters:(RoomNavigationParameters*)roomNavigationParameters completion:(void (^)(void))completion;
|
|
- (void)masterTabBarController:(MasterTabBarController *)masterTabBarController didSelectRoomPreviewWithParameters:(RoomPreviewNavigationParameters*)roomPreviewNavigationParameters completion:(void (^)(void))completion;
|
|
- (void)masterTabBarController:(MasterTabBarController *)masterTabBarController didSelectContact:(MXKContact*)contact withPresentationParameters:(ScreenPresentationParameters*)presentationParameters;
|
|
|
|
@end
|