|
|
|
@ -8,6 +8,7 @@ using System.Globalization;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.EntryPoints
|
|
|
|
|
{
|
|
|
|
@ -16,13 +17,15 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
|
|
|
|
|
private readonly IApplicationHost _applicationHost;
|
|
|
|
|
private readonly IHttpClient _httpClient;
|
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private const string MbAdminUrl = "http://www.mb3admin.com/admin/";
|
|
|
|
|
|
|
|
|
|
public UsageReporter(IApplicationHost applicationHost, IHttpClient httpClient, IUserManager userManager)
|
|
|
|
|
public UsageReporter(IApplicationHost applicationHost, IHttpClient httpClient, IUserManager userManager, ILogger logger)
|
|
|
|
|
{
|
|
|
|
|
_applicationHost = applicationHost;
|
|
|
|
|
_httpClient = httpClient;
|
|
|
|
|
_userManager = userManager;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task ReportServerUsage(CancellationToken cancellationToken)
|
|
|
|
@ -58,6 +61,12 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
|
|
|
|
|
throw new ArgumentException("Client info must have a device Id");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.Info("App Activity: app: {0}, version: {1}, deviceId: {2}, deviceName: {3}",
|
|
|
|
|
app.AppName ?? "Unknown App",
|
|
|
|
|
app.AppVersion ?? "Unknown",
|
|
|
|
|
app.DeviceId,
|
|
|
|
|
app.DeviceName ?? "Unknown");
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var data = new Dictionary<string, string>
|
|
|
|
|