2014-02-15 15:42:06 -07:00
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2014-06-09 12:16:14 -07:00
|
|
|
|
using System.Linq;
|
2014-02-15 15:42:06 -07:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Implementations.Security
|
|
|
|
|
{
|
|
|
|
|
public class UsageReporter
|
|
|
|
|
{
|
|
|
|
|
private readonly IApplicationHost _applicationHost;
|
|
|
|
|
private readonly INetworkManager _networkManager;
|
|
|
|
|
private readonly IHttpClient _httpClient;
|
|
|
|
|
|
|
|
|
|
public UsageReporter(IApplicationHost applicationHost, INetworkManager networkManager, IHttpClient httpClient)
|
|
|
|
|
{
|
|
|
|
|
_applicationHost = applicationHost;
|
|
|
|
|
_networkManager = networkManager;
|
|
|
|
|
_httpClient = httpClient;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-28 07:21:07 -07:00
|
|
|
|
public Task ReportServerUsage(CancellationToken cancellationToken)
|
2014-02-15 15:42:06 -07:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var mac = _networkManager.GetMacAddress();
|
|
|
|
|
|
|
|
|
|
var data = new Dictionary<string, string>
|
|
|
|
|
{
|
|
|
|
|
{ "feature", _applicationHost.Name },
|
|
|
|
|
{ "mac", mac },
|
|
|
|
|
{ "ver", _applicationHost.ApplicationVersion.ToString() },
|
|
|
|
|
{ "platform", Environment.OSVersion.VersionString },
|
2014-08-24 20:54:45 -07:00
|
|
|
|
{ "isservice", _applicationHost.IsRunningAsService.ToString().ToLower()}
|
2014-02-15 15:42:06 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return _httpClient.Post(Constants.Constants.MbAdminUrl + "service/registration/ping", data, cancellationToken);
|
|
|
|
|
}
|
2014-05-28 07:21:07 -07:00
|
|
|
|
|
|
|
|
|
public Task ReportAppUsage(ClientInfo app, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-05-28 09:30:38 -07:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var data = new Dictionary<string, string>
|
|
|
|
|
{
|
|
|
|
|
{ "feature", app.AppName ?? "Unknown App" },
|
|
|
|
|
{ "mac", app.DeviceId ?? _networkManager.GetMacAddress() },
|
|
|
|
|
{ "ver", app.AppVersion ?? "Unknown" },
|
|
|
|
|
{ "platform", app.DeviceName },
|
|
|
|
|
};
|
2014-05-28 07:21:07 -07:00
|
|
|
|
|
2014-05-28 09:30:38 -07:00
|
|
|
|
return _httpClient.Post(Constants.Constants.MbAdminUrl + "service/registration/ping", data, cancellationToken);
|
2014-05-28 07:21:07 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ClientInfo
|
|
|
|
|
{
|
|
|
|
|
public string AppName { get; set; }
|
|
|
|
|
public string AppVersion { get; set; }
|
2014-05-28 07:30:55 -07:00
|
|
|
|
public string DeviceName { get; set; }
|
2014-05-28 07:25:53 -07:00
|
|
|
|
public string DeviceId { get; set; }
|
2014-02-15 15:42:06 -07:00
|
|
|
|
}
|
|
|
|
|
}
|