mirror of https://github.com/Radarr/Radarr
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Text.RegularExpressions;
|
|||
|
using NzbDrone.Common;
|
|||
|
using NzbDrone.Common.Messaging;
|
|||
|
using NzbDrone.Core.Lifecycle;
|
|||
|
|
|||
|
namespace NzbDrone.Api.Client
|
|||
|
{
|
|||
|
public class ClientSettings : IHandle<ApplicationStartedEvent>
|
|||
|
{
|
|||
|
private readonly EnvironmentProvider _environmentProvider;
|
|||
|
|
|||
|
private static readonly Regex VersionRegex = new Regex(@"(?<=Version:\s')(.*)(?=')", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|||
|
|
|||
|
public ClientSettings(EnvironmentProvider environmentProvider)
|
|||
|
{
|
|||
|
_environmentProvider = environmentProvider;
|
|||
|
}
|
|||
|
|
|||
|
public void Handle(ApplicationStartedEvent message)
|
|||
|
{
|
|||
|
//TODO: Update the APIKey (when we have it)
|
|||
|
|
|||
|
var appFile = Path.Combine(_environmentProvider.StartUpPath, "UI", "app.js");
|
|||
|
var contents = File.ReadAllText(appFile);
|
|||
|
var version = _environmentProvider.Version;
|
|||
|
|
|||
|
contents = VersionRegex.Replace(contents, version.ToString());
|
|||
|
|
|||
|
File.WriteAllText(appFile, contents);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|