|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common
|
|
|
|
|
{
|
|
|
|
|
public interface IConsoleService
|
|
|
|
|
{
|
|
|
|
|
void PrintHelp();
|
|
|
|
|
void PrintServiceAlreadyExist();
|
|
|
|
|
void PrintServiceDoesNotExist();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ConsoleService : IConsoleService
|
|
|
|
|
{
|
|
|
|
|
public static bool IsConsoleAvailable => Console.In != StreamReader.Null;
|
|
|
|
|
|
|
|
|
|
public void PrintHelp()
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine();
|
|
|
|
|
Console.WriteLine(" Usage: {0} <command> ", Process.GetCurrentProcess().MainModule.ModuleName);
|
|
|
|
|
Console.WriteLine(" Commands:");
|
|
|
|
|
|
|
|
|
|
if (OsInfo.IsWindows)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(" /{0} Install the application as a Windows Service ({1}).", StartupContext.INSTALL_SERVICE, ServiceProvider.SERVICE_NAME);
|
|
|
|
|
Console.WriteLine(" /{0} Uninstall already installed Windows Service ({1}).", StartupContext.UNINSTALL_SERVICE, ServiceProvider.SERVICE_NAME);
|
|
|
|
|
Console.WriteLine(" /{0} Register URL and open firewall port (allows access from other devices on your network).", StartupContext.REGISTER_URL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Console.WriteLine(" /{0} Don't open Prowlarr in a browser", StartupContext.NO_BROWSER);
|
|
|
|
|
Console.WriteLine(" /{0} Start Prowlarr terminating any other instances", StartupContext.TERMINATE);
|
|
|
|
|
Console.WriteLine(" /{0}=path Path to use as the AppData location (stores database, config, logs, etc)", StartupContext.APPDATA);
|
|
|
|
|
Console.WriteLine(" <No Arguments> Run application in console mode.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void PrintServiceAlreadyExist()
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("A service with the same name ({0}) already exists. Aborting installation", ServiceProvider.SERVICE_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void PrintServiceDoesNotExist()
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Can't find service ({0})", ServiceProvider.SERVICE_NAME);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|