mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
150 lines
6.5 KiB
Objective-C
150 lines
6.5 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "DebugUITableViewController.h"
|
|
#import "DebugUIBackup.h"
|
|
#import "DebugUIContacts.h"
|
|
#import "DebugUIDiskUsage.h"
|
|
#import "DebugUIMessages.h"
|
|
#import "DebugUIMisc.h"
|
|
#import "DebugUISessionState.h"
|
|
#import "DebugUIStress.h"
|
|
#import "DebugUISyncMessages.h"
|
|
#import "Signal-Swift.h"
|
|
#import <SignalServiceKit/TSContactThread.h>
|
|
#import <SignalServiceKit/TSThread.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation DebugUITableViewController
|
|
|
|
- (void)viewWillAppear:(BOOL)animated
|
|
{
|
|
[super viewWillAppear:animated];
|
|
|
|
// Block device from sleeping while in the Debug UI.
|
|
//
|
|
// This is useful if you're using long-running actions in the
|
|
// Debug UI, like "send 1k messages", etc.
|
|
[DeviceSleepManager.sharedInstance addBlockWithBlockObject:self];
|
|
}
|
|
|
|
- (void)viewWillDisappear:(BOOL)animated
|
|
{
|
|
[super viewWillDisappear:animated];
|
|
|
|
[DeviceSleepManager.sharedInstance removeBlockWithBlockObject:self];
|
|
}
|
|
|
|
#pragma mark - Factory Methods
|
|
|
|
- (void)pushPageWithSection:(OWSTableSection *)section
|
|
{
|
|
DebugUITableViewController *viewController = [DebugUITableViewController new];
|
|
OWSTableContents *contents = [OWSTableContents new];
|
|
contents.title = section.headerTitle;
|
|
[contents addSection:section];
|
|
viewController.contents = contents;
|
|
[self.navigationController pushViewController:viewController animated:YES];
|
|
}
|
|
|
|
+ (OWSTableItem *)itemForSubsection:(DebugUIPage *)page
|
|
viewController:(DebugUITableViewController *)viewController
|
|
thread:(nullable TSThread *)thread
|
|
{
|
|
OWSAssert(page);
|
|
OWSAssert(viewController);
|
|
|
|
__weak DebugUITableViewController *weakSelf = viewController;
|
|
return [OWSTableItem disclosureItemWithText:page.name
|
|
actionBlock:^{
|
|
[weakSelf pushPageWithSection:[page sectionForThread:thread]];
|
|
}];
|
|
}
|
|
|
|
+ (void)presentDebugUIForThread:(TSThread *)thread fromViewController:(UIViewController *)fromViewController
|
|
{
|
|
OWSAssert(thread);
|
|
OWSAssert(fromViewController);
|
|
|
|
DebugUITableViewController *viewController = [DebugUITableViewController new];
|
|
|
|
OWSTableContents *contents = [OWSTableContents new];
|
|
contents.title = @"Debug: Conversation";
|
|
|
|
NSMutableArray<OWSTableItem *> *subsectionItems = [NSMutableArray new];
|
|
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIMessages new] viewController:viewController thread:thread]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIContacts new] viewController:viewController thread:thread]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIDiskUsage new] viewController:viewController thread:thread]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUISessionState new] viewController:viewController thread:thread]];
|
|
if ([thread isKindOfClass:[TSContactThread class]]) {
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUICalling new] viewController:viewController thread:thread]];
|
|
}
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUINotifications new] viewController:viewController thread:thread]];
|
|
[subsectionItems addObject:[self itemForSubsection:[DebugUIProfile new] viewController:viewController thread:thread]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIStress new] viewController:viewController thread:thread]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUISyncMessages new] viewController:viewController thread:thread]];
|
|
OWSTableItem *sharedDataFileBrowserItem = [OWSTableItem
|
|
disclosureItemWithText:@"📁 Shared Container"
|
|
actionBlock:^{
|
|
NSURL *baseURL = [NSURL URLWithString:[OWSFileSystem appSharedDataDirectoryPath]];
|
|
DebugUIFileBrowser *fileBrowser = [[DebugUIFileBrowser alloc] initWithFileURL:baseURL];
|
|
[viewController.navigationController pushViewController:fileBrowser animated:YES];
|
|
}];
|
|
[subsectionItems addObject:sharedDataFileBrowserItem];
|
|
OWSTableItem *documentsFileBrowserItem = [OWSTableItem
|
|
disclosureItemWithText:@"📁 App Container"
|
|
actionBlock:^{
|
|
NSURL *baseURL = [NSURL URLWithString:[OWSFileSystem appLibraryDirectoryPath]];
|
|
DebugUIFileBrowser *fileBrowser = [[DebugUIFileBrowser alloc] initWithFileURL:baseURL];
|
|
[viewController.navigationController pushViewController:fileBrowser animated:YES];
|
|
}];
|
|
[subsectionItems addObject:documentsFileBrowserItem];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIBackup new] viewController:viewController thread:thread]];
|
|
[subsectionItems addObject:[self itemForSubsection:[DebugUIMisc new] viewController:viewController thread:thread]];
|
|
|
|
[contents addSection:[OWSTableSection sectionWithTitle:@"Sections" items:subsectionItems]];
|
|
|
|
viewController.contents = contents;
|
|
[viewController presentFromViewController:fromViewController];
|
|
}
|
|
|
|
+ (void)presentDebugUIFromViewController:(UIViewController *)fromViewController
|
|
{
|
|
OWSAssert(fromViewController);
|
|
|
|
DebugUITableViewController *viewController = [DebugUITableViewController new];
|
|
|
|
OWSTableContents *contents = [OWSTableContents new];
|
|
contents.title = @"Debug UI";
|
|
|
|
NSMutableArray<OWSTableItem *> *subsectionItems = [NSMutableArray new];
|
|
[subsectionItems addObject:[self itemForSubsection:[DebugUIContacts new] viewController:viewController thread:nil]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUIDiskUsage new] viewController:viewController thread:nil]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUISessionState new] viewController:viewController thread:nil]];
|
|
[subsectionItems
|
|
addObject:[self itemForSubsection:[DebugUISyncMessages new] viewController:viewController thread:nil]];
|
|
[subsectionItems addObject:[self itemForSubsection:[DebugUIBackup new] viewController:viewController thread:nil]];
|
|
[subsectionItems addObject:[self itemForSubsection:[DebugUIMisc new] viewController:viewController thread:nil]];
|
|
[contents addSection:[OWSTableSection sectionWithTitle:@"Sections" items:subsectionItems]];
|
|
|
|
viewController.contents = contents;
|
|
[viewController presentFromViewController:fromViewController];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|