123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- //
- // VLCDropboxController.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 23.05.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCDropboxController.h"
- #import "NSString+SupportedMedia.h"
- #import "VLCAppDelegate.h"
- @interface VLCDropboxController ()
- {
- DBRestClient *_restClient;
- NSArray *_currentFileList;
- NSMutableArray *_listOfDropboxFilesToDownload;
- BOOL _downloadInProgress;
- NSInteger _outstandingNetworkRequests;
- }
- @end
- @implementation VLCDropboxController
- #pragma mark - session handling
- - (void)startSession
- {
- }
- - (void)logout
- {
- [[DBSession sharedSession] unlinkAll];
- }
- - (BOOL)sessionIsLinked
- {
- return [[DBSession sharedSession] isLinked];
- }
- - (DBRestClient *)restClient {
- if (!_restClient) {
- _restClient = [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
- _restClient.delegate = self;
- }
- return _restClient;
- }
- #pragma mark - file management
- - (void)requestDirectoryListingAtPath:(NSString *)path
- {
- if (self.sessionIsLinked)
- [[self restClient] loadMetadata:path];
- }
- - (void)downloadFileToDocumentFolder:(DBMetadata *)file
- {
- if (!file.isDirectory) {
- if (!_listOfDropboxFilesToDownload)
- _listOfDropboxFilesToDownload = [[NSMutableArray alloc] init];
- [_listOfDropboxFilesToDownload addObject:file];
- if ([self.delegate respondsToSelector:@selector(numberOfFilesWaitingToBeDownloadedChanged)])
- [self.delegate numberOfFilesWaitingToBeDownloadedChanged];
- [self _triggerNextDownload];
- }
- }
- - (void)streamFile:(DBMetadata *)file
- {
- if (!file.isDirectory)
- [[self restClient] loadStreamableURLForFile:file.path];
- }
- - (void)_triggerNextDownload
- {
- if (_listOfDropboxFilesToDownload.count > 0 && !_downloadInProgress) {
- [self _reallyDownloadFileToDocumentFolder:_listOfDropboxFilesToDownload[0]];
- [_listOfDropboxFilesToDownload removeObjectAtIndex:0];
- if ([self.delegate respondsToSelector:@selector(numberOfFilesWaitingToBeDownloadedChanged)])
- [self.delegate numberOfFilesWaitingToBeDownloadedChanged];
- }
- }
- - (void)_reallyDownloadFileToDocumentFolder:(DBMetadata *)file
- {
- NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *filePath = [searchPaths[0] stringByAppendingFormat:@"/%@", file.filename];
- [[self restClient] loadFile:file.path intoPath:filePath];
- if ([self.delegate respondsToSelector:@selector(operationWithProgressInformationStarted)])
- [self.delegate operationWithProgressInformationStarted];
- _downloadInProgress = YES;
- }
- #pragma mark - restClient delegate
- - (BOOL)_supportedFileExtension:(NSString *)filename
- {
- if ([filename isSupportedMediaFormat] || [filename isSupportedAudioMediaFormat] || [filename isSupportedSubtitleFormat])
- return YES;
- return NO;
- }
- - (void)restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)metadata {
- NSMutableArray *listOfGoodFilesAndFolders = [[NSMutableArray alloc] init];
- if (metadata.isDirectory) {
- NSArray *contents = metadata.contents;
- NSUInteger metaDataCount = metadata.contents.count;
- for (NSUInteger x = 0; x < metaDataCount; x++) {
- DBMetadata *file = contents[x];
- if ([file isDirectory] || [self _supportedFileExtension:file.filename])
- [listOfGoodFilesAndFolders addObject:file];
- }
- }
- _currentFileList = [NSArray arrayWithArray:listOfGoodFilesAndFolders];
- APLog(@"found filtered metadata for %i files", _currentFileList.count);
- if ([self.delegate respondsToSelector:@selector(mediaListUpdated)])
- [self.delegate mediaListUpdated];
- }
- - (void)restClient:(DBRestClient *)client loadMetadataFailedWithError:(NSError *)error
- {
- APLog(@"DBMetadata download failed with error %i", error.code);
- [self _handleError:error];
- }
- - (void)restClient:(DBRestClient*)client loadedFile:(NSString*)localPath
- {
- /* update library now that we got a file */
- VLCAppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
- [appDelegate updateMediaList];
- if ([self.delegate respondsToSelector:@selector(operationWithProgressInformationStopped)])
- [self.delegate operationWithProgressInformationStopped];
- _downloadInProgress = NO;
- [self _triggerNextDownload];
- }
- - (void)restClient:(DBRestClient*)client loadFileFailedWithError:(NSError*)error
- {
- APLog(@"DBFile download failed with error %i", error.code);
- [self _handleError:error];
- if ([self.delegate respondsToSelector:@selector(operationWithProgressInformationStopped)])
- [self.delegate operationWithProgressInformationStopped];
- _downloadInProgress = NO;
- [self _triggerNextDownload];
- }
- - (void)restClient:(DBRestClient*)client loadProgress:(CGFloat)progress forFile:(NSString*)destPath
- {
- if ([self.delegate respondsToSelector:@selector(currentProgressInformation:)])
- [self.delegate currentProgressInformation:progress];
- }
- - (void)restClient:(DBRestClient*)restClient loadedStreamableURL:(NSURL*)url forFile:(NSString*)path
- {
- VLCAppDelegate *appDelegate = (VLCAppDelegate *)[UIApplication sharedApplication].delegate;
- /* DBX returns a https URL which we don't support yet. in turn, we fall back on http */
- [appDelegate openMovieFromURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://%@%@", url.host, url.path]]];
- }
- - (void)restClient:(DBRestClient*)restClient loadStreamableURLFailedWithError:(NSError*)error
- {
- APLog(@"loadStreamableURL failed with error %i", error.code);
- [self _handleError:error];
- }
- #pragma mark - DBSession delegate
- - (void)sessionDidReceiveAuthorizationFailure:(DBSession *)session userId:(NSString *)userId
- {
- APLog(@"DBSession received authorization failure with user ID %@", userId);
- }
- #pragma mark - DBNetworkRequest delegate
- - (void)networkRequestStarted
- {
- _outstandingNetworkRequests++;
- if (_outstandingNetworkRequests == 1) {
- [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
- [(VLCAppDelegate*)[UIApplication sharedApplication].delegate disableIdleTimer];
- }
- }
- - (void)networkRequestStopped
- {
- _outstandingNetworkRequests--;
- if (_outstandingNetworkRequests == 0) {
- [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
- [(VLCAppDelegate*)[UIApplication sharedApplication].delegate activateIdleTimer];
- }
- }
- #pragma mark - VLC internal communication and delegate
- - (NSArray *)currentListFiles
- {
- return _currentFileList;
- }
- - (NSInteger)numberOfFilesWaitingToBeDownloaded
- {
- if (_listOfDropboxFilesToDownload)
- return _listOfDropboxFilesToDownload.count;
- return 0;
- }
- #pragma mark - user feedback
- - (void)_handleError:(NSError *)error
- {
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:NSLocalizedString(@"ERROR_NUMBER", @""), error.code] message:error.localizedDescription delegate:self cancelButtonTitle:NSLocalizedString(@"BUTTON_CANCEL", @"") otherButtonTitles:nil];
- [alert show];
- }
- @end
|