123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- //
- // VLCDropboxController.m
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 23.05.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "VLCDropboxController.h"
- #import "VLCAppDelegate.h"
- @interface VLCDropboxController ()
- {
- DBRestClient *_restClient;
- NSArray *_currentFileList;
- 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) {
- NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *filePath = [searchPaths[0] stringByAppendingString:file.filename];
- //FIXME: add UI hook to display activity
- [[self restClient] loadFile:file.path intoPath:filePath];
- if ([self.delegate respondsToSelector:@selector(operationWithProgressInformationStarted)])
- [self.delegate operationWithProgressInformationStarted];
- }
- }
- #pragma mark - restClient delegate
- - (BOOL)_supportedFileExtension:(NSString *)filename
- {
- if ([filename rangeOfString:kSupportedFileExtensions options:NSRegularExpressionSearch|NSCaseInsensitiveSearch].length != 0 || [filename rangeOfString:kSupportedSubtitleFileExtensions options:NSRegularExpressionSearch|NSCaseInsensitiveSearch].length != 0)
- 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);
- }
- - (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];
- }
- - (void)restClient:(DBRestClient*)client loadFileFailedWithError:(NSError*)error
- {
- APLog(@"DBFile download failed with error %i", error.code);
- if ([self.delegate respondsToSelector:@selector(operationWithProgressInformationStopped)])
- [self.delegate operationWithProgressInformationStopped];
- }
- - (void)restClient:(DBRestClient*)client loadProgress:(CGFloat)progress forFile:(NSString*)destPath
- {
- if ([self.delegate respondsToSelector:@selector(currentProgressInformation:)])
- [self.delegate currentProgressInformation:progress];
- }
- #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];
- }
- - (void)networkRequestStopped
- {
- _outstandingNetworkRequests--;
- if (_outstandingNetworkRequests == 0)
- [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
- }
- #pragma mark - VLC internal communication and delegate
- - (NSArray *)currentListFiles
- {
- return _currentFileList;
- }
- @end
|