2014-09-06 20:09:35 +00:00
|
|
|
|
using MediaBrowser.Common;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2015-01-02 05:36:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Model.Connect;
|
2014-02-15 22:42:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-01-02 05:36:27 +00:00
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Linq;
|
2014-02-15 22:42:06 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-09-06 20:09:35 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.EntryPoints
|
2014-02-15 22:42:06 +00:00
|
|
|
|
{
|
|
|
|
|
public class UsageReporter
|
|
|
|
|
{
|
|
|
|
|
private readonly IApplicationHost _applicationHost;
|
|
|
|
|
private readonly IHttpClient _httpClient;
|
2015-01-02 05:36:27 +00:00
|
|
|
|
private readonly IUserManager _userManager;
|
2014-12-17 05:30:31 +00:00
|
|
|
|
private const string MbAdminUrl = "http://www.mb3admin.com/admin/";
|
2014-02-15 22:42:06 +00:00
|
|
|
|
|
2015-01-10 19:42:14 +00:00
|
|
|
|
public UsageReporter(IApplicationHost applicationHost, IHttpClient httpClient, IUserManager userManager)
|
2014-02-15 22:42:06 +00:00
|
|
|
|
{
|
|
|
|
|
_applicationHost = applicationHost;
|
|
|
|
|
_httpClient = httpClient;
|
2015-01-02 05:36:27 +00:00
|
|
|
|
_userManager = userManager;
|
2014-02-15 22:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-28 14:21:07 +00:00
|
|
|
|
public Task ReportServerUsage(CancellationToken cancellationToken)
|
2014-02-15 22:42:06 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var data = new Dictionary<string, string>
|
|
|
|
|
{
|
|
|
|
|
{ "feature", _applicationHost.Name },
|
2015-01-10 19:42:14 +00:00
|
|
|
|
{ "mac", _applicationHost.SystemId },
|
2014-09-06 20:07:24 +00:00
|
|
|
|
{ "serverid", _applicationHost.SystemId },
|
|
|
|
|
{ "deviceid", _applicationHost.SystemId },
|
2014-02-15 22:42:06 +00:00
|
|
|
|
{ "ver", _applicationHost.ApplicationVersion.ToString() },
|
2014-11-23 23:10:41 +00:00
|
|
|
|
{ "platform", _applicationHost.OperatingSystemDisplayName },
|
2014-08-25 03:54:45 +00:00
|
|
|
|
{ "isservice", _applicationHost.IsRunningAsService.ToString().ToLower()}
|
2014-02-15 22:42:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-01-02 05:36:27 +00:00
|
|
|
|
var users = _userManager.Users.ToList();
|
|
|
|
|
|
|
|
|
|
data["localusers"] = users.Count(i => !i.ConnectLinkType.HasValue).ToString(CultureInfo.InvariantCulture);
|
|
|
|
|
data["guests"] = users.Count(i => i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.Guest).ToString(CultureInfo.InvariantCulture);
|
|
|
|
|
data["linkedusers"] = users.Count(i => i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.LinkedUser).ToString(CultureInfo.InvariantCulture);
|
|
|
|
|
|
2014-12-01 12:43:34 +00:00
|
|
|
|
return _httpClient.Post(MbAdminUrl + "service/registration/ping", data, cancellationToken);
|
2014-02-15 22:42:06 +00:00
|
|
|
|
}
|
2014-05-28 14:21:07 +00:00
|
|
|
|
|
|
|
|
|
public Task ReportAppUsage(ClientInfo app, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-09-06 17:46:09 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(app.DeviceId))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Client info must have a device Id");
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-28 16:30:38 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var data = new Dictionary<string, string>
|
|
|
|
|
{
|
|
|
|
|
{ "feature", app.AppName ?? "Unknown App" },
|
2014-09-06 20:07:24 +00:00
|
|
|
|
{ "serverid", _applicationHost.SystemId },
|
|
|
|
|
{ "deviceid", app.DeviceId },
|
2014-09-06 17:46:09 +00:00
|
|
|
|
{ "mac", app.DeviceId },
|
2014-05-28 16:30:38 +00:00
|
|
|
|
{ "ver", app.AppVersion ?? "Unknown" },
|
|
|
|
|
{ "platform", app.DeviceName },
|
|
|
|
|
};
|
2014-05-28 14:21:07 +00:00
|
|
|
|
|
2014-12-01 12:43:34 +00:00
|
|
|
|
return _httpClient.Post(MbAdminUrl + "service/registration/ping", data, cancellationToken);
|
2014-05-28 14:21:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ClientInfo
|
|
|
|
|
{
|
|
|
|
|
public string AppName { get; set; }
|
|
|
|
|
public string AppVersion { get; set; }
|
2014-05-28 14:30:55 +00:00
|
|
|
|
public string DeviceName { get; set; }
|
2014-05-28 14:25:53 +00:00
|
|
|
|
public string DeviceId { get; set; }
|
2014-02-15 22:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|