123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- /*****************************************************************************
- * VLCPlexMediaInformationViewController.m
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- *
- * Authors: Pierre Sagaspe <pierre.sagaspe # me.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCPlexMediaInformationViewController.h"
- #import "VLCPlexParser.h"
- #import "VLCAppDelegate.h"
- #import "NSString+SupportedMedia.h"
- #import "UIDevice+VLC.h"
- @interface VLCPlexMediaInformationViewController ()
- {
- NSMutableArray *_mutableMediaInformation;
- NSString *_PlexServerAddress;
- NSString *_PlexServerPort;
- NSString *_PlexServerPath;
- VLCPlexParser *_PlexParser;
- }
- @end
- @implementation VLCPlexMediaInformationViewController
- - (id)initPlexMediaInformation:(NSMutableArray *)mediaInformation serverAddress:(NSString *)serverAddress portNumber:(NSString *)portNumber atPath:(NSString *)path
- {
- self = [super init];
- if (self) {
- _mutableMediaInformation = [[NSMutableArray alloc] init];
- [_mutableMediaInformation addObjectsFromArray:mediaInformation];
- _PlexServerAddress = serverAddress;
- _PlexServerPort = portNumber;
- _PlexServerPath = path;
- _PlexParser = [[VLCPlexParser alloc] init];
- }
- return self;
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- [self.view setBackgroundColor:[UIColor VLCDarkBackgroundColor]];
- [self.summary setBackgroundColor:[UIColor VLCDarkBackgroundColor]];
- self.automaticallyAdjustsScrollViewInsets = NO;
- self.navigationController.navigationBar.translucent = NO;
- NSString *title = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"title"];
- NSString *thumbPath = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"thumb"];
- UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:thumbPath]]];
- NSInteger size = [[[_mutableMediaInformation objectAtIndex:0] objectForKey:@"size"] integerValue];
- NSString *mediaSize = [NSByteCountFormatter stringFromByteCount:size countStyle:NSByteCountFormatterCountStyleFile];
- NSString *durationInSeconds = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"duration"];
- NSString *displaySize = [NSString stringWithFormat:@"%@ (%@)", mediaSize, durationInSeconds];
- NSString *tag = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"state"];
- NSString *displaySummary = [NSString stringWithFormat:@"%@", [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"summary"]];
- NSString *audioCodec = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"audioCodec"];
- if (!audioCodec)
- audioCodec = @"no track";
- NSString *videoCodec = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"videoCodec"];
- if (!videoCodec)
- videoCodec = @"no track";
- NSString *displayCodec = [NSString stringWithFormat:@"audio(%@) video(%@)", audioCodec, videoCodec];
- NSString *grandparentTitle = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"grandparentTitle"];
- if (grandparentTitle)
- self.title = grandparentTitle;
- [self.thumb setContentMode:UIViewContentModeScaleAspectFit];
- [self.thumb setImage:image];
- [self.mediaTitle setText:title];
- [self.codec setText:displayCodec];
- [self.size setText:displaySize];
- [self.summary setText:displaySummary];
- if ([tag isEqualToString:@"watched"]) {
- [self.badgeUnread setHidden:YES];
- [self.markMediaButton setTitle:NSLocalizedString(@"PLEX_UNWATCHED", nil)];
- } else if ([tag isEqualToString:@"unwatched"]) {
- [self.badgeUnread setHidden:NO];
- [self.markMediaButton setTitle:NSLocalizedString(@"PLEX_WATCHED", nil)];
- } else {
- [self.badgeUnread setHidden:NO];
- [self.markMediaButton setEnabled:NO];
- }
- [self.badgeUnread setNeedsDisplay];
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
- }
- #pragma mark - Specifics
- - (void)_playMediaItem:(NSMutableArray *)mutableMediaObject
- {
- NSString *newPath = nil;
- NSString *keyValue = [[mutableMediaObject objectAtIndex:0] objectForKey:@"key"];
- if ([keyValue rangeOfString:@"library"].location == NSNotFound)
- newPath = [_PlexServerPath stringByAppendingPathComponent:keyValue];
- else
- newPath = keyValue;
- if ([[[mutableMediaObject objectAtIndex:0] objectForKey:@"container"] isEqualToString:@"item"]) {
- [mutableMediaObject removeAllObjects];
- mutableMediaObject = [_PlexParser PlexMediaServerParser:_PlexServerAddress port:_PlexServerPort navigationPath:newPath];
- NSString *URLofSubtitle = nil;
- if ([[mutableMediaObject objectAtIndex:0] objectForKey:@"keySubtitle"])
- URLofSubtitle = [_PlexParser getFileSubtitleFromPlexServer:mutableMediaObject modeStream:YES];
- NSURL *itemURL = [NSURL URLWithString:[[mutableMediaObject objectAtIndex:0] objectForKey:@"keyMedia"]];
- if (itemURL) {
- VLCAppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
- [appDelegate openMovieWithExternalSubtitleFromURL:itemURL externalSubURL:URLofSubtitle];
- }
- }
- }
- - (void)_download:(NSMutableArray *)mutableMediaObject
- {
- NSString *path = [[mutableMediaObject objectAtIndex:0] objectForKey:@"key"];
- [mutableMediaObject removeAllObjects];
- mutableMediaObject = [_PlexParser PlexMediaServerParser:_PlexServerAddress port:_PlexServerPort navigationPath:path];
- NSInteger size = [[[mutableMediaObject objectAtIndex:0] objectForKey:@"size"] integerValue];
- if (size < [[UIDevice currentDevice] freeDiskspace].longLongValue) {
- if ([[mutableMediaObject objectAtIndex:0] objectForKey:@"keySubtitle"])
- [_PlexParser getFileSubtitleFromPlexServer:mutableMediaObject modeStream:NO];
- [self _downloadFileFromMediaItem:mutableMediaObject];
- } else {
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"DISK_FULL", nil) message:[NSString stringWithFormat:NSLocalizedString(@"DISK_FULL_FORMAT", nil), [[mutableMediaObject objectAtIndex:0] objectForKey:@"title"], [[UIDevice currentDevice] model]] delegate:self cancelButtonTitle:NSLocalizedString(@"BUTTON_OK", nil) otherButtonTitles:nil];
- [alert show];
- }
- }
- - (void)_downloadFileFromMediaItem:(NSMutableArray *)mutableMediaObject
- {
- NSURL *itemURL = [NSURL URLWithString:[[mutableMediaObject objectAtIndex:0] objectForKey:@"keyMedia"]];
- if (![[itemURL absoluteString] isSupportedFormat]) {
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"FILE_NOT_SUPPORTED", nil) message:[NSString stringWithFormat:NSLocalizedString(@"FILE_NOT_SUPPORTED_LONG", nil), [itemURL absoluteString]] delegate:self cancelButtonTitle:NSLocalizedString(@"BUTTON_CANCEL", nil) otherButtonTitles:nil];
- [alert show];
- } else if (itemURL) {
- NSString *fileName = [[mutableMediaObject objectAtIndex:0] objectForKey:@"namefile"];
- [[(VLCAppDelegate *)[UIApplication sharedApplication].delegate downloadViewController] addURLToDownloadList:itemURL fileNameOfMedia:fileName];
- }
- }
- #pragma mark - Action
- - (IBAction)play:(id)sender
- {
- [self _playMediaItem:_mutableMediaInformation];
- [[self navigationController] popViewControllerAnimated:YES];
- }
- - (IBAction)download:(id)sender
- {
- [self _download:_mutableMediaInformation];
- [[self navigationController] popViewControllerAnimated:YES];
- }
- - (IBAction)markMedia:(id)sender
- {
- NSString *ratingKey = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"ratingKey"];
- NSString *tag = [[_mutableMediaInformation objectAtIndex:0] objectForKey:@"state"];
- NSInteger status = [_PlexParser MarkWatchedUnwatchedMedia:_PlexServerAddress port:_PlexServerPort videoRatingKey:ratingKey state:tag];
- if (status == 200) {
- if ([tag isEqualToString:@"watched"]) {
- tag = @"unwatched";
- [self.badgeUnread setHidden:NO];
- [self.markMediaButton setTitle:NSLocalizedString(@"PLEX_WATCHED", nil)];
- } else if ([tag isEqualToString:@"unwatched"]) {
- tag = @"watched";
- [self.badgeUnread setHidden:YES];
- [self.markMediaButton setTitle:NSLocalizedString(@"PLEX_UNWATCHED", nil)];
- }
- } else
- [self.badgeUnread setHidden:YES];
- [self.badgeUnread setNeedsDisplay];
- [[_mutableMediaInformation objectAtIndex:0] setObject:tag forKey:@"state"];
- }
- #pragma mark - UI interaction
- - (BOOL)shouldAutorotate
- {
- UIInterfaceOrientation toInterfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation];
- if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone && toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
- return NO;
- return YES;
- }
- @end
|