2016-09-11 07:33:53 +00:00
|
|
|
//
|
|
|
|
// Authors:
|
|
|
|
// Alan McGovern alan.mcgovern@gmail.com
|
|
|
|
// Ben Motmans <ben.motmans@gmail.com>
|
|
|
|
// Nicholas Terry <nick.i.terry@gmail.com>
|
|
|
|
//
|
|
|
|
// Copyright (C) 2006 Alan McGovern
|
|
|
|
// Copyright (C) 2007 Ben Motmans
|
|
|
|
// Copyright (C) 2014 Nicholas Terry
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
// a copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
// the following conditions:
|
2019-01-07 23:24:34 +00:00
|
|
|
//
|
2016-09-11 07:33:53 +00:00
|
|
|
// The above copyright notice and this permission notice shall be
|
|
|
|
// included in all copies or substantial portions of the Software.
|
2019-01-07 23:24:34 +00:00
|
|
|
//
|
2016-09-11 07:33:53 +00:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using System.Net;
|
|
|
|
using Mono.Nat.Upnp;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
using System.Net.NetworkInformation;
|
2016-10-28 01:07:40 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2018-12-13 13:18:25 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2016-10-29 18:59:36 +00:00
|
|
|
using MediaBrowser.Model.Dlna;
|
2017-10-20 03:55:56 +00:00
|
|
|
using System.Threading.Tasks;
|
2016-09-11 07:33:53 +00:00
|
|
|
|
|
|
|
namespace Mono.Nat
|
|
|
|
{
|
|
|
|
internal class UpnpSearcher : ISearcher
|
|
|
|
{
|
|
|
|
public event EventHandler<DeviceEventArgs> DeviceFound;
|
|
|
|
|
2016-10-27 23:53:57 +00:00
|
|
|
private readonly ILogger _logger;
|
2016-10-28 01:07:40 +00:00
|
|
|
private readonly IHttpClient _httpClient;
|
2016-09-11 07:33:53 +00:00
|
|
|
|
2016-10-28 01:07:40 +00:00
|
|
|
public UpnpSearcher(ILogger logger, IHttpClient httpClient)
|
2016-09-11 07:33:53 +00:00
|
|
|
{
|
2016-10-27 23:53:57 +00:00
|
|
|
_logger = logger;
|
2016-10-28 01:07:40 +00:00
|
|
|
_httpClient = httpClient;
|
2016-09-11 07:33:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Search()
|
2019-01-07 23:24:34 +00:00
|
|
|
{
|
|
|
|
}
|
2016-09-11 07:33:53 +00:00
|
|
|
|
2017-10-20 03:55:56 +00:00
|
|
|
public async Task Handle(IPAddress localAddress, UpnpDeviceInfo deviceInfo, IPEndPoint endpoint)
|
2016-09-11 07:33:53 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (localAddress == null)
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(localAddress));
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
|
|
|
|
2016-09-11 07:33:53 +00:00
|
|
|
try
|
|
|
|
{
|
2019-01-07 23:24:34 +00:00
|
|
|
/* For UPnP Port Mapping we need ot find either WANPPPConnection or WANIPConnection.
|
|
|
|
* Any other device type is no good to us for this purpose. See the IGP overview paper
|
|
|
|
* page 5 for an overview of device types and their hierarchy.
|
|
|
|
* http://upnp.org/specs/gw/UPnP-gw-InternetGatewayDevice-v1-Device.pdf */
|
2016-09-11 07:33:53 +00:00
|
|
|
|
|
|
|
/* TODO: Currently we are assuming version 1 of the protocol. We should figure out which
|
2019-01-07 23:24:34 +00:00
|
|
|
* version it is and apply the correct URN. */
|
2016-09-11 07:33:53 +00:00
|
|
|
|
|
|
|
/* Some routers don't correctly implement the version ID on the URN, so we only search for the type
|
2019-01-07 23:24:34 +00:00
|
|
|
* prefix. */
|
2016-09-11 07:33:53 +00:00
|
|
|
|
|
|
|
// We have an internet gateway device now
|
2019-01-13 20:37:13 +00:00
|
|
|
var d = new UpnpNatDevice(localAddress, deviceInfo, endpoint, string.Empty, _logger, _httpClient);
|
2016-09-11 07:33:53 +00:00
|
|
|
|
2017-10-20 03:55:56 +00:00
|
|
|
await d.GetServicesList().ConfigureAwait(false);
|
|
|
|
|
2016-10-27 23:53:57 +00:00
|
|
|
OnDeviceFound(new DeviceEventArgs(d));
|
2016-09-11 07:33:53 +00:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
_logger.LogError(ex, "Error decoding device response");
|
2016-09-11 07:33:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Handle(IPAddress localAddress, byte[] response, IPEndPoint endpoint)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnDeviceFound(DeviceEventArgs args)
|
|
|
|
{
|
|
|
|
if (DeviceFound != null)
|
|
|
|
DeviceFound(this, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
public NatProtocol Protocol
|
|
|
|
{
|
|
|
|
get { return NatProtocol.Upnp; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|