123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- //
- // VLCMenuTableViewController.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 10.08.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCMenuTableViewController.h"
- #import "GHRevealViewController.h"
- #import "GHMenuCell.h"
- #import "Reachability.h"
- #import <QuartzCore/QuartzCore.h>
- #import "VLCWiFiUploadTableViewCell.h"
- #import "VLCHTTPUploaderController.h"
- #import "VLCAppDelegate.h"
- #import "HTTPServer.h"
- #import "IASKAppSettingsViewController.h"
- #import "GHRevealViewController.h"
- #import "VLCLocalServerListViewController.h"
- #import "VLCOpenNetworkStreamViewController.h"
- #import "VLCSettingsController.h"
- #import "UINavigationController+Theme.h"
- #import "UIBarButtonItem+Theme.h"
- #import "VLCAboutViewController.h"
- #import "VLCPlaylistViewController.h"
- #import "VLCBugreporter.h"
- @interface VLCMenuTableViewController () <UITableViewDataSource, UITableViewDelegate>
- {
- NSArray *_sectionHeaderTexts;
- NSArray *_menuItemsSectionOne;
- NSArray *_menuItemsSectionTwo;
- NSArray *_menuItemsSectionThree;
- UILabel *_uploadLocationLabel;
- UISwitch *_uploadSwitch;
- Reachability *_reachability;
- }
- @property (nonatomic) VLCHTTPUploaderController *uploadController;
- @property (nonatomic) VLCAppDelegate *appDelegate;
- @property (nonatomic) GHRevealViewController *revealController;
- @end
- @implementation VLCMenuTableViewController
- - (void)dealloc
- {
- [_reachability stopNotifier];
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- self.view.frame = CGRectMake(0.0f, 0.0f, kGHRevealSidebarWidth, CGRectGetHeight(self.view.bounds));
- self.view.autoresizingMask = UIViewAutoresizingFlexibleHeight;
- _sectionHeaderTexts = @[@"SECTION_HEADER_LIBRARY", @"SECTION_HEADER_NETWORK", @"Settings"];
- _menuItemsSectionOne = @[@"LIBRARY_ALL_FILES"];
- _menuItemsSectionTwo = @[@"LOCAL_NETWORK", @"OPEN_NETWORK", @"DOWNLOAD_FROM_HTTP", @"WiFi Upload", @"Dropbox"];
- _menuItemsSectionThree = @[@"Settings", @"ABOUT_APP"];
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0.0f, 44.0f, kGHRevealSidebarWidth, CGRectGetHeight(self.view.bounds) - 44.0f)
- style:UITableViewStylePlain];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
- _tableView.backgroundColor = [UIColor clearColor];
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.rowHeight = [VLCWiFiUploadTableViewCell heightOfCell];
- self.view = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, kGHRevealSidebarWidth, CGRectGetHeight(self.view.bounds))];
- [self.view addSubview:_tableView];
- UIImageView *brandingBackgroundImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, kGHRevealSidebarWidth, 44.0f)];
- brandingBackgroundImageView.contentMode = UIViewContentModeScaleToFill;
- brandingBackgroundImageView.image = [UIImage imageNamed:@"headerSidebar"];
- [self.view addSubview:brandingBackgroundImageView];
- UIImageView *brandingImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, kGHRevealSidebarWidth, 44.0f)];
- brandingImageView.contentMode = UIViewContentModeCenter;
- brandingImageView.image = [UIImage imageNamed:@"title"];
- [self.view addSubview:brandingImageView];
- [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionTop];
- _reachability = [Reachability reachabilityForLocalWiFi];
- [_reachability startNotifier];
- [self netReachabilityChanged:nil];
- self.appDelegate = [[UIApplication sharedApplication] delegate];
- self.uploadController = self.appDelegate.uploadController;
- self.revealController = self.appDelegate.revealController;
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(netReachabilityChanged:) name:kReachabilityChangedNotification object:nil];
- }
- - (void)viewWillAppear:(BOOL)animated {
- self.view.frame = CGRectMake(0.0f, 0.0f,kGHRevealSidebarWidth, CGRectGetHeight(self.view.bounds));
- }
- - (void)netReachabilityChanged:(NSNotification *)notification
- {
- if (_reachability.currentReachabilityStatus == ReachableViaWiFi) {
- _uploadSwitch.enabled = YES;
- _uploadLocationLabel.text = NSLocalizedString(@"HTTP_UPLOAD_SERVER_OFF", @"");
- } else {
- _uploadSwitch.enabled = NO;
- _uploadSwitch.on = NO;
- _uploadLocationLabel.text = NSLocalizedString(@"HTTP_UPLOAD_NO_CONNECTIVITY", @"");
- }
- }
- - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
- return (orientation == UIInterfaceOrientationPortraitUpsideDown)
- ? (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
- : YES;
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 3;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- if (section == 0) // media
- return 1;
- else if (section == 1) // network
- return 5;
- else if (section == 2) // settings & co
- return 2;
- else
- return 0;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"VLCMenuCell";
- static NSString *WiFiCellIdentifier = @"VLCMenuWiFiCell";
- NSString *title;
- if (indexPath.section == 0)
- title = NSLocalizedString(_menuItemsSectionOne[indexPath.row], @"");
- else if(indexPath.section == 1)
- title = NSLocalizedString(_menuItemsSectionTwo[indexPath.row], @"");
- else if(indexPath.section == 2)
- title = NSLocalizedString(_menuItemsSectionThree[indexPath.row], @"");
- UITableViewCell *cell;
- if ([title isEqualToString:@"WiFi Upload"]) {
- cell = (VLCWiFiUploadTableViewCell *)[tableView dequeueReusableCellWithIdentifier:WiFiCellIdentifier];
- if (cell == nil)
- cell = [VLCWiFiUploadTableViewCell cellWithReuseIdentifier:WiFiCellIdentifier];
- } else {
- cell = (GHMenuCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil)
- cell = [[GHMenuCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
- }
- if ([title isEqualToString:@"Dropbox"]) {
- [[(GHMenuCell*)cell titleImageView] setImage: [UIImage imageNamed:@"dropboxLabel"]];
- cell.textLabel.text = @"";
- } else if ([title isEqualToString:@"WiFi Upload"]) {
- _uploadLocationLabel = [(VLCWiFiUploadTableViewCell*)cell uploadAddressLabel];
- _uploadSwitch = [(VLCWiFiUploadTableViewCell*)cell serverOnSwitch];
- [_uploadSwitch addTarget:self action:@selector(toggleHTTPServer:) forControlEvents:UIControlEventTouchUpInside];
- BOOL isHTTPServerOn = [[NSUserDefaults standardUserDefaults] boolForKey:kVLCSettingSaveHTTPUploadServerStatus];
- [_uploadSwitch setOn:isHTTPServerOn];
- [self updateHTTPServerAddress];
- } else
- cell.textLabel.text = title;
- return cell;
- }
- #pragma mark - tv delegate
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- if (section < 3)
- return 21.f;
- return 0.;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- NSObject *headerText = NSLocalizedString(_sectionHeaderTexts[section], @"");
- UIView *headerView = nil;
- if (headerText != [NSNull null]) {
- headerView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [UIScreen mainScreen].bounds.size.height, 21.0f)];
- CAGradientLayer *gradient = [CAGradientLayer layer];
- gradient.frame = headerView.bounds;
- gradient.colors = @[
- (id)[UIColor colorWithRed:(67.0f/255.0f) green:(74.0f/255.0f) blue:(94.0f/255.0f) alpha:1.0f].CGColor,
- (id)[UIColor colorWithRed:(57.0f/255.0f) green:(64.0f/255.0f) blue:(82.0f/255.0f) alpha:1.0f].CGColor,
- ];
- [headerView.layer insertSublayer:gradient atIndex:0];
- UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectInset(headerView.bounds, 12.0f, 5.0f)];
- textLabel.text = (NSString *) headerText;
- textLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:([UIFont systemFontSize] * 0.8f)];
- textLabel.shadowOffset = CGSizeMake(0.0f, 1.0f);
- textLabel.shadowColor = [UIColor colorWithWhite:0.0f alpha:0.25f];
- textLabel.textColor = [UIColor colorWithRed:(125.0f/255.0f) green:(129.0f/255.0f) blue:(146.0f/255.0f) alpha:1.0f];
- textLabel.backgroundColor = [UIColor clearColor];
- [headerView addSubview:textLabel];
- UIView *topLine = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [UIScreen mainScreen].bounds.size.height, 1.0f)];
- topLine.backgroundColor = [UIColor colorWithRed:(78.0f/255.0f) green:(86.0f/255.0f) blue:(103.0f/255.0f) alpha:1.0f];
- [headerView addSubview:topLine];
- UIView *bottomLine = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 21.0f, [UIScreen mainScreen].bounds.size.height, 1.0f)];
- bottomLine.backgroundColor = [UIColor colorWithRed:(36.0f/255.0f) green:(42.0f/255.0f) blue:(5.0f/255.0f) alpha:1.0f];
- [headerView addSubview:bottomLine];
- }
- return headerView;
- }
- #pragma mark - menu implementation
- - (void)updateHTTPServerAddress
- {
- HTTPServer *server = self.uploadController.httpServer;
- if (server.isRunning) {
- if (server.listeningPort != 80)
- _uploadLocationLabel.text = [NSString stringWithFormat:@"http://%@:%i", [self.uploadController currentIPAddress], server.listeningPort];
- else
- _uploadLocationLabel.text = [NSString stringWithFormat:@"http://%@", [self.uploadController currentIPAddress]];
- } else
- _uploadLocationLabel.text = NSLocalizedString(@"HTTP_UPLOAD_SERVER_OFF", @"");
- }
- - (IBAction)toggleHTTPServer:(UISwitch *)sender
- {
- [[NSUserDefaults standardUserDefaults] setBool:sender.on forKey:kVLCSettingSaveHTTPUploadServerStatus];
- [self.uploadController changeHTTPServerState:sender.on];
- [self updateHTTPServerAddress];
- [[NSUserDefaults standardUserDefaults] synchronize];
- }
- - (void)_revealItem:(NSUInteger)itemIndex inSection:(NSUInteger)sectionNumber
- {
- UIViewController *viewController;
- if (sectionNumber == 1) {
- if (itemIndex == 0)
- viewController = [[VLCLocalServerListViewController alloc] init];
- else if (itemIndex == 1)
- viewController = [[VLCOpenNetworkStreamViewController alloc] init];
- else if (itemIndex == 2)
- viewController = self.appDelegate.downloadViewController;
- else if (itemIndex == 4)
- viewController = self.appDelegate.dropboxTableViewController;
- } else if (sectionNumber == 2) {
- if (itemIndex == 0) {
- if (!self.settingsController)
- self.settingsController = [[VLCSettingsController alloc] init];
- if (!self.settingsViewController) {
- self.settingsViewController = [[IASKAppSettingsViewController alloc] initWithStyle:UITableViewStyleGrouped];
- self.settingsController.viewController = self.settingsViewController;
- self.settingsViewController.navigationItem.leftBarButtonItem = [UIBarButtonItem themedRevealMenuButtonWithTarget:self.settingsController.viewController andSelector:@selector(dismiss:)];
- }
- self.settingsViewController.modalPresentationStyle = UIModalPresentationFormSheet;
- self.settingsViewController.delegate = self.settingsController;
- self.settingsViewController.showDoneButton = NO;
- self.settingsViewController.showCreditsFooter = NO;
- viewController = self.settingsController.viewController;
- } else if (itemIndex == 1)
- viewController = [[VLCAboutViewController alloc] init];
- } else
- viewController = self.appDelegate.playlistViewController;
- if (!viewController)
- return;
- UINavigationController *navCon = [[UINavigationController alloc] initWithRootViewController:viewController];
- [navCon loadTheme];
- _revealController.contentViewController = navCon;
- [_revealController toggleSidebar:NO duration:kGHRevealSidebarDefaultAnimationDuration];
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- [self _revealItem:indexPath.row inSection:indexPath.section];
- }
- #pragma mark Public Methods
- - (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition {
- [self.tableView selectRowAtIndexPath:indexPath animated:animated scrollPosition:scrollPosition];
- if (scrollPosition == UITableViewScrollPositionNone)
- [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:scrollPosition animated:animated];
- [self _revealItem:indexPath.row inSection:indexPath.section];
- }
- #pragma mark - shake to support
- - (BOOL)canBecomeFirstResponder {
- return YES;
- }
- - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
- if (motion == UIEventSubtypeMotionShake)
- [[VLCBugreporter sharedInstance] handleBugreportRequest];
- }
- @end
|