/***************************************************************************** * VLCLocalNetworkServiceBrowserPlex.m * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import "VLCLocalNetworkServiceBrowserPlex.h" #import "VLCNetworkServerBrowserPlex.h" @implementation VLCLocalNetworkServiceBrowserPlex - (instancetype)init { #if TARGET_OS_TV NSString *name = NSLocalizedString(@"PLEX_SHORT",nil); #else NSString *name = NSLocalizedString(@"PLEX_LONG",nil); #endif return [super initWithName:name serviceType:@"_plexmediasvr._tcp." domain:@""]; } - (VLCLocalNetworkServiceNetService *)localServiceForNetService:(NSNetService *)netService { return [[VLCLocalNetworkServicePlex alloc] initWithNetService:netService serviceName:self.name]; } @end NSString *const VLCNetworkServerProtocolIdentifierPlex = @"plex"; @implementation VLCLocalNetworkServicePlex - (UIImage *)icon { return [UIImage imageNamed:@"PlexServerIcon"]; } - (id)serverBrowser { NSNetService *service = self.netService; if (service.hostName == nil || service.port == 0) { return nil; } NSString *name = service.name; NSString *hostName = service.hostName; NSUInteger portNum = service.port; VLCNetworkServerBrowserPlex *serverBrowser = [[VLCNetworkServerBrowserPlex alloc] initWithName:name host:hostName portNumber:@(portNum) path:@"" authentificication:@""]; return serverBrowser; } @end