mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
601 lines
16 KiB
Objective-C
601 lines
16 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSWindowManager.h"
|
|
#import "Environment.h"
|
|
#import "UIColor+OWS.h"
|
|
#import "UIFont+OWS.h"
|
|
#import "UIView+OWS.h"
|
|
#import <SignalMessaging/SignalMessaging-Swift.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NSString *const OWSWindowManagerCallDidChangeNotification = @"OWSWindowManagerCallDidChangeNotification";
|
|
|
|
const CGFloat OWSWindowManagerCallBannerHeight(void)
|
|
{
|
|
if (@available(iOS 11.4, *)) {
|
|
return CurrentAppContext().statusBarHeight + 20;
|
|
}
|
|
|
|
if (![UIDevice currentDevice].hasIPhoneXNotch) {
|
|
return CurrentAppContext().statusBarHeight + 20;
|
|
}
|
|
|
|
// Hardcode CallBanner height for iPhone X's on older iOS.
|
|
//
|
|
// As of iOS11.4 and iOS12, this no longer seems to be an issue, but previously statusBarHeight returned
|
|
// something like 20pts (IIRC), meaning our call banner did not extend sufficiently past the iPhone X notch.
|
|
//
|
|
// Before noticing that this behavior changed, I actually assumed that notch height was intentionally excluded from
|
|
// the statusBarHeight, and that this was not a bug, else I'd have taken better notes.
|
|
return 64;
|
|
}
|
|
|
|
// Behind everything, especially the root window.
|
|
const UIWindowLevel UIWindowLevel_Background = -1.f;
|
|
|
|
const UIWindowLevel UIWindowLevel_ReturnToCall(void);
|
|
const UIWindowLevel UIWindowLevel_ReturnToCall(void)
|
|
{
|
|
return UIWindowLevelStatusBar - 1;
|
|
}
|
|
|
|
// In front of the root window, behind the screen blocking window.
|
|
const UIWindowLevel UIWindowLevel_CallView(void);
|
|
const UIWindowLevel UIWindowLevel_CallView(void)
|
|
{
|
|
return UIWindowLevelNormal + 1.f;
|
|
}
|
|
|
|
// In front of the status bar and CallView
|
|
const UIWindowLevel UIWindowLevel_ScreenBlocking(void);
|
|
const UIWindowLevel UIWindowLevel_ScreenBlocking(void)
|
|
{
|
|
return UIWindowLevelStatusBar + 2.f;
|
|
}
|
|
|
|
// In front of everything
|
|
const UIWindowLevel UIWindowLevel_MessageActions(void);
|
|
const UIWindowLevel UIWindowLevel_MessageActions(void)
|
|
{
|
|
// Note: To cover the keyboard, this is higher than the ScreenBlocking level,
|
|
// but this window is hidden when screen protection is shown.
|
|
return CGFLOAT_MAX - 100;
|
|
}
|
|
|
|
|
|
@interface MessageActionsWindow : UIWindow
|
|
|
|
@end
|
|
|
|
@implementation MessageActionsWindow
|
|
|
|
- (UIWindowLevel)windowLevel
|
|
{
|
|
// As of iOS11, setWindowLevel clamps the value below
|
|
// the height of the keyboard window.
|
|
// Because we want to display above the keyboard, we hardcode
|
|
// the `windowLevel` getter.
|
|
return UIWindowLevel_MessageActions();
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation OWSWindowRootViewController
|
|
|
|
- (BOOL)canBecomeFirstResponder
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
#pragma mark - Orientation
|
|
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
|
|
{
|
|
return UIInterfaceOrientationMaskPortrait;
|
|
}
|
|
|
|
@end
|
|
|
|
@interface OWSWindowRootNavigationViewController : UINavigationController
|
|
|
|
@end
|
|
|
|
@implementation OWSWindowRootNavigationViewController : UINavigationController
|
|
|
|
#pragma mark - Orientation
|
|
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
|
|
{
|
|
return UIInterfaceOrientationMaskPortrait;
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface OWSWindowManager () <ReturnToCallViewControllerDelegate>
|
|
|
|
// UIWindowLevelNormal
|
|
@property (nonatomic) UIWindow *rootWindow;
|
|
|
|
// UIWindowLevel_ReturnToCall
|
|
@property (nonatomic) UIWindow *returnToCallWindow;
|
|
@property (nonatomic) ReturnToCallViewController *returnToCallViewController;
|
|
|
|
// UIWindowLevel_CallView
|
|
@property (nonatomic) UIWindow *callViewWindow;
|
|
@property (nonatomic) UINavigationController *callNavigationController;
|
|
|
|
// UIWindowLevel_MessageActions
|
|
@property (nonatomic) UIWindow *menuActionsWindow;
|
|
@property (nonatomic, nullable) UIViewController *menuActionsViewController;
|
|
|
|
// UIWindowLevel_Background if inactive,
|
|
// UIWindowLevel_ScreenBlocking() if active.
|
|
@property (nonatomic) UIWindow *screenBlockingWindow;
|
|
|
|
@property (nonatomic) BOOL isScreenBlockActive;
|
|
|
|
@property (nonatomic) BOOL shouldShowCallView;
|
|
|
|
@property (nonatomic, nullable) UIViewController *callViewController;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSWindowManager
|
|
|
|
+ (instancetype)sharedManager
|
|
{
|
|
OWSAssertDebug(Environment.shared.windowManager);
|
|
|
|
return Environment.shared.windowManager;
|
|
}
|
|
|
|
- (instancetype)initDefault
|
|
{
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
OWSAssertIsOnMainThread();
|
|
OWSSingletonAssert();
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)setupWithRootWindow:(UIWindow *)rootWindow screenBlockingWindow:(UIWindow *)screenBlockingWindow
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(rootWindow);
|
|
OWSAssertDebug(!self.rootWindow);
|
|
OWSAssertDebug(screenBlockingWindow);
|
|
OWSAssertDebug(!self.screenBlockingWindow);
|
|
|
|
self.rootWindow = rootWindow;
|
|
self.screenBlockingWindow = screenBlockingWindow;
|
|
|
|
self.returnToCallWindow = [self createReturnToCallWindow:rootWindow];
|
|
self.callViewWindow = [self createCallViewWindow:rootWindow];
|
|
self.menuActionsWindow = [self createMenuActionsWindowWithRoowWindow:rootWindow];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(didChangeStatusBarFrame:)
|
|
name:UIApplicationDidChangeStatusBarFrameNotification
|
|
object:nil];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(applicationWillResignActive:)
|
|
name:OWSApplicationWillResignActiveNotification
|
|
object:nil];
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (void)didChangeStatusBarFrame:(NSNotification *)notification
|
|
{
|
|
// Apple bug? Upon returning from landscape, this method *is* fired, but both the notification and [UIApplication
|
|
// sharedApplication].statusBarFrame still show a height of 0. So to work around we also call
|
|
// `ensureReturnToCallWindowFrame` before showing the call banner.
|
|
[self ensureReturnToCallWindowFrame];
|
|
}
|
|
|
|
- (void)ensureReturnToCallWindowFrame
|
|
{
|
|
CGRect newFrame = self.returnToCallWindow.frame;
|
|
newFrame.size.height = OWSWindowManagerCallBannerHeight();
|
|
OWSLogDebug(@"returnToCallWindowFrame: %@", NSStringFromCGRect(newFrame));
|
|
self.returnToCallWindow.frame = newFrame;
|
|
}
|
|
|
|
- (void)applicationWillResignActive:(NSNotification *)notification
|
|
{
|
|
[self hideMenuActionsWindow];
|
|
}
|
|
|
|
- (UIWindow *)createReturnToCallWindow:(UIWindow *)rootWindow
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(rootWindow);
|
|
|
|
// "Return to call" should remain at the top of the screen.
|
|
CGRect windowFrame = UIScreen.mainScreen.bounds;
|
|
windowFrame.size.height = OWSWindowManagerCallBannerHeight();
|
|
UIWindow *window = [[UIWindow alloc] initWithFrame:windowFrame];
|
|
window.hidden = YES;
|
|
window.windowLevel = UIWindowLevel_ReturnToCall();
|
|
window.opaque = YES;
|
|
|
|
ReturnToCallViewController *viewController = [ReturnToCallViewController new];
|
|
self.returnToCallViewController = viewController;
|
|
viewController.delegate = self;
|
|
|
|
window.rootViewController = viewController;
|
|
|
|
return window;
|
|
}
|
|
|
|
- (UIWindow *)createMenuActionsWindowWithRoowWindow:(UIWindow *)rootWindow
|
|
{
|
|
UIWindow *window;
|
|
if (@available(iOS 11, *)) {
|
|
// On iOS11, setting the windowLevel is insufficient, so we override
|
|
// the `windowLevel` getter.
|
|
window = [[MessageActionsWindow alloc] initWithFrame:rootWindow.bounds];
|
|
} else {
|
|
// On iOS9, 10 overriding the `windowLevel` getter does not cause the
|
|
// window to be displayed above the keyboard, but setting the window
|
|
// level works.
|
|
window = [[UIWindow alloc] initWithFrame:rootWindow.bounds];
|
|
window.windowLevel = UIWindowLevel_MessageActions();
|
|
}
|
|
|
|
window.hidden = YES;
|
|
window.backgroundColor = UIColor.clearColor;
|
|
|
|
return window;
|
|
}
|
|
|
|
- (UIWindow *)createCallViewWindow:(UIWindow *)rootWindow
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(rootWindow);
|
|
|
|
UIWindow *window = [[UIWindow alloc] initWithFrame:rootWindow.bounds];
|
|
window.hidden = YES;
|
|
window.windowLevel = UIWindowLevel_CallView();
|
|
window.opaque = YES;
|
|
// TODO: What's the right color to use here?
|
|
window.backgroundColor = [UIColor ows_materialBlueColor];
|
|
|
|
UIViewController *viewController = [OWSWindowRootViewController new];
|
|
viewController.view.backgroundColor = [UIColor ows_materialBlueColor];
|
|
|
|
// NOTE: Do not use OWSNavigationController for call window.
|
|
// It adjusts the size of the navigation bar to reflect the
|
|
// call window. We don't want those adjustments made within
|
|
// the call window itself.
|
|
OWSWindowRootNavigationViewController *navigationController =
|
|
[[OWSWindowRootNavigationViewController alloc] initWithRootViewController:viewController];
|
|
navigationController.navigationBarHidden = YES;
|
|
OWSAssertDebug(!self.callNavigationController);
|
|
self.callNavigationController = navigationController;
|
|
|
|
window.rootViewController = navigationController;
|
|
|
|
return window;
|
|
}
|
|
|
|
- (void)setIsScreenBlockActive:(BOOL)isScreenBlockActive
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
_isScreenBlockActive = isScreenBlockActive;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
#pragma mark - Message Actions
|
|
|
|
- (BOOL)isPresentingMenuActions
|
|
{
|
|
return self.menuActionsViewController != nil;
|
|
}
|
|
|
|
- (void)showMenuActionsWindow:(UIViewController *)menuActionsViewController
|
|
{
|
|
OWSAssertDebug(self.menuActionsViewController == nil);
|
|
|
|
self.menuActionsViewController = menuActionsViewController;
|
|
self.menuActionsWindow.rootViewController = menuActionsViewController;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (void)hideMenuActionsWindow
|
|
{
|
|
self.menuActionsWindow.rootViewController = nil;
|
|
self.menuActionsViewController = nil;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
#pragma mark - Calls
|
|
|
|
- (void)setCallViewController:(nullable UIViewController *)callViewController
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (callViewController == _callViewController) {
|
|
return;
|
|
}
|
|
|
|
_callViewController = callViewController;
|
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:OWSWindowManagerCallDidChangeNotification object:nil];
|
|
}
|
|
|
|
- (void)startCall:(UIViewController *)callViewController
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(callViewController);
|
|
OWSAssertDebug(!self.callViewController);
|
|
|
|
self.callViewController = callViewController;
|
|
|
|
// Attach callViewController to window.
|
|
[self.callNavigationController popToRootViewControllerAnimated:NO];
|
|
[self.callNavigationController pushViewController:callViewController animated:NO];
|
|
self.shouldShowCallView = YES;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (void)endCall:(UIViewController *)callViewController
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(callViewController);
|
|
OWSAssertDebug(self.callViewController);
|
|
|
|
if (self.callViewController != callViewController) {
|
|
OWSLogWarn(@"Ignoring end call request from obsolete call view controller.");
|
|
return;
|
|
}
|
|
|
|
// Dettach callViewController from window.
|
|
[self.callNavigationController popToRootViewControllerAnimated:NO];
|
|
self.callViewController = nil;
|
|
|
|
self.shouldShowCallView = NO;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (void)leaveCallView
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(self.callViewController);
|
|
OWSAssertDebug(self.shouldShowCallView);
|
|
|
|
self.shouldShowCallView = NO;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (void)showCallView
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(self.callViewController);
|
|
OWSAssertDebug(!self.shouldShowCallView);
|
|
|
|
self.shouldShowCallView = YES;
|
|
|
|
[self ensureWindowState];
|
|
}
|
|
|
|
- (BOOL)hasCall
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
return self.callViewController != nil;
|
|
}
|
|
|
|
#pragma mark - Window State
|
|
|
|
- (void)ensureWindowState
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
OWSAssertDebug(self.rootWindow);
|
|
OWSAssertDebug(self.returnToCallWindow);
|
|
OWSAssertDebug(self.callViewWindow);
|
|
OWSAssertDebug(self.screenBlockingWindow);
|
|
|
|
// To avoid bad frames, we never want to hide the blocking window, so we manipulate
|
|
// its window level to "hide" it behind other windows. The other windows have fixed
|
|
// window level and are shown/hidden as necessary.
|
|
//
|
|
// Note that we always "hide" before we "show".
|
|
if (self.isScreenBlockActive) {
|
|
// Show Screen Block.
|
|
|
|
[self ensureRootWindowHidden];
|
|
[self ensureReturnToCallWindowHidden];
|
|
[self ensureCallViewWindowHidden];
|
|
[self ensureMessageActionsWindowHidden];
|
|
[self ensureScreenBlockWindowShown];
|
|
} else if (self.callViewController && self.shouldShowCallView) {
|
|
// Show Call View.
|
|
|
|
[self ensureRootWindowHidden];
|
|
[self ensureReturnToCallWindowHidden];
|
|
[self ensureCallViewWindowShown];
|
|
[self ensureMessageActionsWindowHidden];
|
|
[self ensureScreenBlockWindowHidden];
|
|
} else {
|
|
// Show Root Window
|
|
|
|
[self ensureRootWindowShown];
|
|
[self ensureCallViewWindowHidden];
|
|
[self ensureScreenBlockWindowHidden];
|
|
|
|
if (self.callViewController) {
|
|
// Add "Return to Call" banner
|
|
|
|
[self ensureReturnToCallWindowShown];
|
|
} else {
|
|
[self ensureReturnToCallWindowHidden];
|
|
}
|
|
|
|
if (self.menuActionsViewController) {
|
|
// Add "Message Actions" action sheet
|
|
|
|
[self ensureMessageActionsWindowShown];
|
|
|
|
// Don't hide rootWindow so as not to dismiss keyboard.
|
|
OWSAssertDebug(!self.rootWindow.isHidden);
|
|
} else {
|
|
[self ensureMessageActionsWindowHidden];
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)ensureRootWindowShown
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.rootWindow.hidden) {
|
|
OWSLogInfo(@"showing root window.");
|
|
}
|
|
|
|
// By calling makeKeyAndVisible we ensure the rootViewController becomes firt responder.
|
|
// In the normal case, that means the SignalViewController will call `becomeFirstResponder`
|
|
// on the vc on top of its navigation stack.
|
|
[self.rootWindow makeKeyAndVisible];
|
|
}
|
|
|
|
- (void)ensureRootWindowHidden
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (!self.rootWindow.hidden) {
|
|
OWSLogInfo(@"hiding root window.");
|
|
}
|
|
|
|
self.rootWindow.hidden = YES;
|
|
}
|
|
|
|
- (void)ensureReturnToCallWindowShown
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (!self.returnToCallWindow.hidden) {
|
|
return;
|
|
}
|
|
|
|
[self ensureReturnToCallWindowFrame];
|
|
OWSLogInfo(@"showing 'return to call' window.");
|
|
self.returnToCallWindow.hidden = NO;
|
|
[self.returnToCallViewController startAnimating];
|
|
}
|
|
|
|
- (void)ensureReturnToCallWindowHidden
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.returnToCallWindow.hidden) {
|
|
return;
|
|
}
|
|
|
|
OWSLogInfo(@"hiding 'return to call' window.");
|
|
self.returnToCallWindow.hidden = YES;
|
|
[self.returnToCallViewController stopAnimating];
|
|
}
|
|
|
|
- (void)ensureCallViewWindowShown
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.callViewWindow.hidden) {
|
|
OWSLogInfo(@"showing call window.");
|
|
}
|
|
|
|
[self.callViewWindow makeKeyAndVisible];
|
|
}
|
|
|
|
- (void)ensureCallViewWindowHidden
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (!self.callViewWindow.hidden) {
|
|
OWSLogInfo(@"hiding call window.");
|
|
}
|
|
|
|
self.callViewWindow.hidden = YES;
|
|
}
|
|
|
|
- (void)ensureMessageActionsWindowShown
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.menuActionsWindow.hidden) {
|
|
OWSLogInfo(@"showing message actions window.");
|
|
}
|
|
|
|
// Do not make key, we want the keyboard to stay popped.
|
|
self.menuActionsWindow.hidden = NO;
|
|
}
|
|
|
|
- (void)ensureMessageActionsWindowHidden
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (!self.menuActionsWindow.hidden) {
|
|
OWSLogInfo(@"hiding message actions window.");
|
|
}
|
|
|
|
self.menuActionsWindow.hidden = YES;
|
|
}
|
|
|
|
- (void)ensureScreenBlockWindowShown
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.screenBlockingWindow.windowLevel != UIWindowLevel_ScreenBlocking()) {
|
|
OWSLogInfo(@"showing block window.");
|
|
}
|
|
|
|
self.screenBlockingWindow.windowLevel = UIWindowLevel_ScreenBlocking();
|
|
[self.screenBlockingWindow makeKeyAndVisible];
|
|
}
|
|
|
|
- (void)ensureScreenBlockWindowHidden
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
if (self.screenBlockingWindow.windowLevel != UIWindowLevel_Background) {
|
|
OWSLogInfo(@"hiding block window.");
|
|
}
|
|
|
|
// Never hide the blocking window (that can lead to bad frames).
|
|
// Instead, manipulate its window level to move it in front of
|
|
// or behind the root window.
|
|
self.screenBlockingWindow.windowLevel = UIWindowLevel_Background;
|
|
}
|
|
|
|
#pragma mark - ReturnToCallViewControllerDelegate
|
|
|
|
- (void)returnToCallWasTapped:(ReturnToCallViewController *)viewController
|
|
{
|
|
[self showCallView];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|