123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- /*****************************************************************************
- * VLCAppDelegate.m
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Gleb Pinigin <gpinigin # gmail.com>
- * Jean-Romain Prévost <jr # 3on.fr>
- * Luis Fernandes <zipleen # gmail.com>
- * Carola Nitz <nitz.carola # googlemail.com>
- * Tamas Timar <ttimar.vlc # gmail.com>
- * Tobias Conradi <videolan # tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCAppDelegate.h"
- #import "VLCMediaFileDiscoverer.h"
- #import "NSString+SupportedMedia.h"
- #import "UIDevice+VLC.h"
- #import "VLCLibraryViewController.h"
- #import "VLCHTTPUploaderController.h"
- #import "VLCMigrationViewController.h"
- #import <BoxSDK/BoxSDK.h>
- #import "VLCPlaybackController.h"
- #import "VLCPlaybackController+MediaLibrary.h"
- #import "VLCPlayerDisplayController.h"
- #import <MediaPlayer/MediaPlayer.h>
- #import <DropboxSDK/DropboxSDK.h>
- #import <HockeySDK/HockeySDK.h>
- #import "VLCSidebarController.h"
- #import "VLCKeychainCoordinator.h"
- #import "VLCActivityManager.h"
- NSString *const VLCDropboxSessionWasAuthorized = @"VLCDropboxSessionWasAuthorized";
- #define BETA_DISTRIBUTION 1
- @interface VLCAppDelegate () <VLCMediaFileDiscovererDelegate>
- {
- BOOL _passcodeValidated;
- BOOL _isRunningMigration;
- BOOL _isComingFromHandoff;
- VLCWatchCommunication *_watchCommunication;
- }
- @end
- @implementation VLCAppDelegate
- + (void)initialize
- {
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- NSNumber *skipLoopFilterDefaultValue;
- int deviceSpeedCategory = [[UIDevice currentDevice] speedCategory];
- if (deviceSpeedCategory < 3)
- skipLoopFilterDefaultValue = kVLCSettingSkipLoopFilterNonKey;
- else
- skipLoopFilterDefaultValue = kVLCSettingSkipLoopFilterNonRef;
- NSDictionary *appDefaults = @{kVLCSettingPasscodeKey : @"",
- kVLCSettingPasscodeAllowTouchID : @(1),
- kVLCSettingContinueAudioInBackgroundKey : @(YES),
- kVLCSettingStretchAudio : @(NO),
- kVLCSettingTextEncoding : kVLCSettingTextEncodingDefaultValue,
- kVLCSettingSkipLoopFilter : skipLoopFilterDefaultValue,
- kVLCSettingSubtitlesFont : kVLCSettingSubtitlesFontDefaultValue,
- kVLCSettingSubtitlesFontColor : kVLCSettingSubtitlesFontColorDefaultValue,
- kVLCSettingSubtitlesFontSize : kVLCSettingSubtitlesFontSizeDefaultValue,
- kVLCSettingSubtitlesBoldFont: kVLCSettingSubtitlesBoldFontDefaultValue,
- kVLCSettingDeinterlace : kVLCSettingDeinterlaceDefaultValue,
- kVLCSettingNetworkCaching : kVLCSettingNetworkCachingDefaultValue,
- kVLCSettingVolumeGesture : @(YES),
- kVLCSettingPlayPauseGesture : @(YES),
- kVLCSettingBrightnessGesture : @(YES),
- kVLCSettingSeekGesture : @(YES),
- kVLCSettingCloseGesture : @(YES),
- kVLCSettingVariableJumpDuration : @(NO),
- kVLCSettingVideoFullscreenPlayback : @(YES),
- kVLCSettingContinuePlayback : @(1),
- kVLCSettingContinueAudioPlayback : @(1),
- kVLCSettingFTPTextEncoding : kVLCSettingFTPTextEncodingDefaultValue,
- kVLCSettingWiFiSharingIPv6 : kVLCSettingWiFiSharingIPv6DefaultValue,
- kVLCSettingEqualizerProfile : kVLCSettingEqualizerProfileDefaultValue,
- kVLCSettingPlaybackForwardSkipLength : kVLCSettingPlaybackForwardSkipLengthDefaultValue,
- kVLCSettingPlaybackBackwardSkipLength : kVLCSettingPlaybackBackwardSkipLengthDefaultValue,
- kVLCSettingOpenAppForPlayback : kVLCSettingOpenAppForPlaybackDefaultValue};
- [defaults registerDefaults:appDefaults];
- }
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- BITHockeyManager *hockeyManager = [BITHockeyManager sharedHockeyManager];
- [hockeyManager configureWithBetaIdentifier:@"0114ca8e265244ce588d2ebd035c3577"
- liveIdentifier:@"c95f4227dff96c61f8b3a46a25edc584"
- delegate:nil];
- // Configure the SDK in here only!
- [hockeyManager startManager];
- [hockeyManager.authenticator authenticateInstallation];
- /* listen to validation notification */
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(passcodeWasValidated:)
- name:VLCPasscodeValidated
- object:nil];
- // Change the keyboard for UISearchBar
- [[UITextField appearance] setKeyboardAppearance:UIKeyboardAppearanceDark];
- // For the cursor
- [[UITextField appearance] setTintColor:[UIColor VLCOrangeTintColor]];
- // Don't override the 'Cancel' button color in the search bar with the previous UITextField call. Use the default blue color
- [[UIBarButtonItem appearanceWhenContainedIn:[UISearchBar class], nil] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0]} forState:UIControlStateNormal];
- // For the edit selection indicators
- [[UITableView appearance] setTintColor:[UIColor VLCOrangeTintColor]];
- [[UISwitch appearance] setOnTintColor:[UIColor VLCOrangeTintColor]];
- // Init the HTTP Server and clean its cache
- [[VLCHTTPUploaderController sharedInstance] cleanCache];
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- // enable crash preventer
- void (^setupBlock)() = ^{
- _libraryViewController = [[VLCLibraryViewController alloc] init];
- VLCSidebarController *sidebarVC = [VLCSidebarController sharedInstance];
- VLCNavigationController *navCon = [[VLCNavigationController alloc] initWithRootViewController:_libraryViewController];
- sidebarVC.contentViewController = navCon;
- VLCPlayerDisplayController *playerDisplayController = [VLCPlayerDisplayController sharedInstance];
- playerDisplayController.childViewController = sidebarVC.fullViewController;
- self.window.rootViewController = playerDisplayController;
- [self.window makeKeyAndVisible];
- [self validatePasscode];
- BOOL spotlightEnabled = ![[VLCKeychainCoordinator defaultCoordinator] passcodeLockEnabled];
- [[MLMediaLibrary sharedMediaLibrary] setSpotlightIndexingEnabled:spotlightEnabled];
- [[MLMediaLibrary sharedMediaLibrary] applicationWillStart];
- VLCMediaFileDiscoverer *discoverer = [VLCMediaFileDiscoverer sharedInstance];
- [discoverer addObserver:self];
- [discoverer startDiscovering];
- };
- NSError *error = nil;
- if ([[MLMediaLibrary sharedMediaLibrary] libraryMigrationNeeded]){
- _isRunningMigration = YES;
- VLCMigrationViewController *migrationController = [[VLCMigrationViewController alloc] initWithNibName:@"VLCMigrationViewController" bundle:nil];
- migrationController.completionHandler = ^{
- //migrate
- setupBlock();
- _isRunningMigration = NO;
- [[MLMediaLibrary sharedMediaLibrary] updateMediaDatabase];
- [[VLCMediaFileDiscoverer sharedInstance] updateMediaList];
- };
- self.window.rootViewController = migrationController;
- [self.window makeKeyAndVisible];
- } else {
- if (error != nil) {
- APLog(@"removed persistentStore since it was corrupt");
- NSURL *storeURL = ((MLMediaLibrary *)[MLMediaLibrary sharedMediaLibrary]).persistentStoreURL;
- [[NSFileManager defaultManager] removeItemAtURL:storeURL error:&error];
- }
- setupBlock();
- }
- if ([VLCWatchCommunication isSupported]) {
- _watchCommunication = [VLCWatchCommunication sharedInstance];
- // TODO: push DB changes instead
- // [_watchCommunication startRelayingNotificationName:NSManagedObjectContextDidSaveNotification object:nil];
- [_watchCommunication startRelayingNotificationName:VLCPlaybackControllerPlaybackMetadataDidChange object:nil];
- }
- return YES;
- }
- - (void)dealloc
- {
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- #pragma mark - Handoff
- - (BOOL)application:(UIApplication *)application willContinueUserActivityWithType:(NSString *)userActivityType
- {
- if ([userActivityType isEqualToString:kVLCUserActivityLibraryMode] ||
- [userActivityType isEqualToString:kVLCUserActivityPlaying] ||
- [userActivityType isEqualToString:kVLCUserActivityLibrarySelection])
- return YES;
- return NO;
- }
- - (BOOL)application:(UIApplication *)application
- continueUserActivity:(NSUserActivity *)userActivity
- restorationHandler:(void (^)(NSArray *))restorationHandler
- {
- NSString *userActivityType = userActivity.activityType;
- NSDictionary *dict = userActivity.userInfo;
- if([userActivityType isEqualToString:kVLCUserActivityLibraryMode] ||
- [userActivityType isEqualToString:kVLCUserActivityLibrarySelection]) {
- VLCLibraryMode libraryMode = (VLCLibraryMode)[(NSNumber *)dict[@"state"] integerValue];
- if (libraryMode <= VLCLibraryModeAllSeries) {
- [[VLCSidebarController sharedInstance] selectRowAtIndexPath:[NSIndexPath indexPathForRow:libraryMode inSection:0]
- scrollPosition:UITableViewScrollPositionTop];
- [self.libraryViewController setLibraryMode:libraryMode];
- }
- [self.libraryViewController restoreUserActivityState:userActivity];
- _isComingFromHandoff = YES;
- return YES;
- } else {
- NSURL *uriRepresentation = nil;
- if ([userActivityType isEqualToString:CSSearchableItemActionType]) {
- uriRepresentation = [NSURL URLWithString:dict[CSSearchableItemActivityIdentifier]];
- } else {
- uriRepresentation = dict[@"playingmedia"];
- }
- if (!uriRepresentation) {
- return NO;
- }
- NSManagedObject *managedObject = [[MLMediaLibrary sharedMediaLibrary] objectForURIRepresentation:uriRepresentation];
- if (managedObject == nil) {
- APLog(@"%s file not found: %@",__PRETTY_FUNCTION__,userActivity);
- return NO;
- }
- [[VLCPlaybackController sharedInstance] openMediaLibraryObject:managedObject];
- return YES;
- }
- return NO;
- }
- - (void)application:(UIApplication *)application
- didFailToContinueUserActivityWithType:(NSString *)userActivityType
- error:(NSError *)error
- {
- if (error.code != NSUserCancelledError){
- //TODO: present alert
- }
- }
- - (BOOL)application:(UIApplication *)application
- openURL:(NSURL *)url
- sourceApplication:(NSString *)sourceApplication
- annotation:(id)annotation
- {
- if ([[DBSession sharedSession] handleOpenURL:url]) {
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCDropboxSessionWasAuthorized object:nil];
- return YES;
- }
- if (_libraryViewController && url != nil) {
- APLog(@"%@ requested %@ to be opened", sourceApplication, url);
- if (url.isFileURL) {
- NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *directoryPath = searchPaths[0];
- NSURL *destinationURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", directoryPath, url.lastPathComponent]];
- NSError *theError;
- [[NSFileManager defaultManager] moveItemAtURL:url toURL:destinationURL error:&theError];
- if (theError.code != noErr)
- APLog(@"saving the file failed (%li): %@", (long)theError.code, theError.localizedDescription);
- [[VLCMediaFileDiscoverer sharedInstance] updateMediaList];
- } else if ([url.scheme isEqualToString:@"vlc-x-callback"] || [url.host isEqualToString:@"x-callback-url"]) {
- // URL confirmes to the x-callback-url specification
- // vlc-x-callback://x-callback-url/action?param=value&x-success=callback
- APLog(@"x-callback-url with host '%@' path '%@' parameters '%@'", url.host, url.path, url.query);
- NSString *action = [url.path stringByReplacingOccurrencesOfString:@"/" withString:@""];
- NSURL *movieURL;
- NSURL *successCallback;
- NSURL *errorCallback;
- NSString *fileName;
- for (NSString *entry in [url.query componentsSeparatedByString:@"&"]) {
- NSArray *keyvalue = [entry componentsSeparatedByString:@"="];
- if (keyvalue.count < 2) continue;
- NSString *key = keyvalue[0];
- NSString *value = [keyvalue[1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- if ([key isEqualToString:@"url"])
- movieURL = [NSURL URLWithString:value];
- else if ([key isEqualToString:@"filename"])
- fileName = value;
- else if ([key isEqualToString:@"x-success"])
- successCallback = [NSURL URLWithString:value];
- else if ([key isEqualToString:@"x-error"])
- errorCallback = [NSURL URLWithString:value];
- }
- if ([action isEqualToString:@"stream"] && movieURL) {
- VLCPlaybackController *vpc = [VLCPlaybackController sharedInstance];
- vpc.fullscreenSessionRequested = YES;
- [vpc playURL:movieURL successCallback:successCallback errorCallback:errorCallback];
- }
- else if ([action isEqualToString:@"download"] && movieURL) {
- [self downloadMovieFromURL:movieURL fileNameOfMedia:fileName];
- }
- } else {
- NSString *receivedUrl = [url absoluteString];
- if ([receivedUrl length] > 6) {
- NSString *verifyVlcUrl = [receivedUrl substringToIndex:6];
- if ([verifyVlcUrl isEqualToString:@"vlc://"]) {
- NSString *parsedString = [receivedUrl substringFromIndex:6];
- NSUInteger location = [parsedString rangeOfString:@"//"].location;
- /* Safari & al mangle vlc://http:// so fix this */
- if (location != NSNotFound && [parsedString characterAtIndex:location - 1] != 0x3a) { // :
- parsedString = [NSString stringWithFormat:@"%@://%@", [parsedString substringToIndex:location], [parsedString substringFromIndex:location+2]];
- } else {
- parsedString = [receivedUrl substringFromIndex:6];
- if (![parsedString hasPrefix:@"http://"] && ![parsedString hasPrefix:@"https://"] && ![parsedString hasPrefix:@"ftp://"]) {
- parsedString = [@"http://" stringByAppendingString:[receivedUrl substringFromIndex:6]];
- }
- }
- url = [NSURL URLWithString:parsedString];
- }
- }
- [[VLCSidebarController sharedInstance] selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]
- scrollPosition:UITableViewScrollPositionNone];
- NSString *scheme = url.scheme;
- if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"] || [scheme isEqualToString:@"ftp"]) {
- VLCAlertView *alert = [[VLCAlertView alloc] initWithTitle:NSLocalizedString(@"OPEN_STREAM_OR_DOWNLOAD", nil) message:url.absoluteString cancelButtonTitle:NSLocalizedString(@"BUTTON_DOWNLOAD", nil) otherButtonTitles:@[NSLocalizedString(@"PLAY_BUTTON", nil)]];
- alert.completion = ^(BOOL cancelled, NSInteger buttonIndex) {
- if (cancelled)
- [self downloadMovieFromURL:url fileNameOfMedia:nil];
- else {
- VLCPlaybackController *vpc = [VLCPlaybackController sharedInstance];
- [vpc playURL:url successCallback:nil errorCallback:nil];
- }
- };
- [alert show];
- } else {
- VLCPlaybackController *vpc = [VLCPlaybackController sharedInstance];
- vpc.fullscreenSessionRequested = YES;
- [vpc playURL:url successCallback:nil errorCallback:nil];
- }
- }
- return YES;
- }
- return NO;
- }
- - (void)applicationWillEnterForeground:(UIApplication *)application
- {
- [[MLMediaLibrary sharedMediaLibrary] applicationWillStart];
- }
- - (void)applicationWillResignActive:(UIApplication *)application
- {
- _passcodeValidated = NO;
- [self.libraryViewController setEditing:NO animated:NO];
- [self validatePasscode];
- [[MLMediaLibrary sharedMediaLibrary] applicationWillExit];
- }
- - (void)applicationDidBecomeActive:(UIApplication *)application
- {
- if (!_isRunningMigration && !_isComingFromHandoff) {
- [[MLMediaLibrary sharedMediaLibrary] updateMediaDatabase];
- [[VLCMediaFileDiscoverer sharedInstance] updateMediaList];
- } else if(_isComingFromHandoff) {
- _isComingFromHandoff = NO;
- }
- }
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- _passcodeValidated = NO;
- [[NSUserDefaults standardUserDefaults] synchronize];
- }
- #pragma mark - media discovering
- - (void)mediaFileAdded:(NSString *)fileName loading:(BOOL)isLoading
- {
- if (!isLoading) {
- MLMediaLibrary *sharedLibrary = [MLMediaLibrary sharedMediaLibrary];
- [sharedLibrary addFilePaths:@[fileName]];
- /* exclude media files from backup (QA1719) */
- NSURL *excludeURL = [NSURL fileURLWithPath:fileName];
- [excludeURL setResourceValue:@YES forKey:NSURLIsExcludedFromBackupKey error:nil];
- // TODO Should we update media db after adding new files?
- [sharedLibrary updateMediaDatabase];
- [_libraryViewController updateViewContents];
- }
- }
- - (void)mediaFileDeleted:(NSString *)name
- {
- [[MLMediaLibrary sharedMediaLibrary] updateMediaDatabase];
- [_libraryViewController updateViewContents];
- }
- - (void)mediaFilesFoundRequiringAdditionToStorageBackend:(NSArray<NSString *>)foundFiles
- {
- [[MLMediaLibrary sharedMediaLibrary] addFilePaths:foundFiles];
- [[(VLCAppDelegate *)[UIApplication sharedApplication].delegate libraryViewController] updateViewContents];
- }
- #pragma mark - pass code validation
- - (void)passcodeWasValidated:(NSNotification *)aNotifcation
- {
- _passcodeValidated = YES;
- [self.libraryViewController updateViewContents];
- if ([VLCPlaybackController sharedInstance].isPlaying)
- [[VLCPlayerDisplayController sharedInstance] pushPlaybackView];
- }
- - (BOOL)passcodeValidated
- {
- return _passcodeValidated;
- }
- - (void)validatePasscode
- {
- VLCKeychainCoordinator *keychainCoordinator = [VLCKeychainCoordinator defaultCoordinator];
- if (!_passcodeValidated && [keychainCoordinator passcodeLockEnabled]) {
- [[VLCPlayerDisplayController sharedInstance] dismissPlaybackView];
- [keychainCoordinator validatePasscode];
- } else
- _passcodeValidated = YES;
- }
- #pragma mark - download handling
- - (void)downloadMovieFromURL:(NSURL *)url
- fileNameOfMedia:(NSString *)fileName
- {
- [[VLCDownloadViewController sharedInstance] addURLToDownloadList:url fileNameOfMedia:fileName];
- [[VLCSidebarController sharedInstance] selectRowAtIndexPath:[NSIndexPath indexPathForRow:2 inSection:1]
- scrollPosition:UITableViewScrollPositionNone];
- }
- #pragma mark - remote events pre 7.1
- - (void)remoteControlReceivedWithEvent:(UIEvent *)event {
- [[VLCPlaybackController sharedInstance] remoteControlReceivedWithEvent:event];
- }
- #pragma mark - watch stuff
- - (void)application:(UIApplication *)application
- handleWatchKitExtensionRequest:(NSDictionary *)userInfo
- reply:(void (^)(NSDictionary *))reply
- {
- if ([VLCWatchCommunication isSupported]) {
- [self.watchCommunication session:[WCSession defaultSession] didReceiveMessage:userInfo replyHandler:reply];
- }
- }
- @end
|