Ejemplo n.º 1
0
        private static async Task <Status> GetNvrStatus(NvrConfig nvrConfig, PresenceRecordingSettings presenceConfig, ILogger logger)
        {
            var nvrClient = new TwicePower.Unifi.UnifiVideoClient(GetHttpClient(nvrConfig.BaseUrl, presenceConfig.SOCKS, presenceConfig.VerifySsl));

            if (await nvrClient.Login(nvrConfig.UserName, nvrConfig.Password))
            {
                var status = await nvrClient.GetStatus();

                return(status);
            }
            else
            {
                logger.LogError("Failed to log on to Unifi Video");
            }
            return(null);
        }
Ejemplo n.º 2
0
        public async Task <int> Run(string[] args)
        {
            var helpoptions = "-? | -h | --help";
            CommandLineApplication commandLineApplication   = new CommandLineApplication(throwOnUnexpectedArg: false);
            CommandOption          optionUserNameController = commandLineApplication.Option("-uc |--username-controller <username>",
                                                                                            $"The user name  for unifi controller.", CommandOptionType.SingleValue);
            CommandOption optionPassWordController = commandLineApplication.Option("-pc |--password-controller <password>",
                                                                                   $"The password for unifi controller.", CommandOptionType.SingleValue);
            CommandOption optionBaseUrlController = commandLineApplication.Option("-urlc | --url-controller <url>",
                                                                                  $"The url for the Unifi Controller.", CommandOptionType.SingleValue);
            CommandOption optionSitename = commandLineApplication.Option("-s | --site-description <sitedescription>",
                                                                         $"The description of site, in the controller, to connect to.", CommandOptionType.SingleValue);

            CommandOption userNameNvr = commandLineApplication.Option("-uv | --username-video <username>",
                                                                      "The user name  for Unifi Video.", CommandOptionType.SingleValue);
            CommandOption passWordNvr = commandLineApplication.Option("-pv | --password-video <password>",
                                                                      "The password for Unifi Video.", CommandOptionType.SingleValue);
            CommandOption baseUrlNvr = commandLineApplication.Option("-urlv | --url-video <url>",
                                                                     "The url for the Unifi Video .", CommandOptionType.SingleValue);

            commandLineApplication.HelpOption(helpoptions);
            var sb = new StringBuilder();

            sb.AppendLine();
            sb.AppendLine("When using any of the command line options for configuration, these values are used instead of the values from appsettings.json");
            sb.AppendLine("If you have issues of feature requests please go to https://github.com/2xPower/Unifi-controller-and-nvr");
            commandLineApplication.ExtendedHelpText = sb.ToString();


            #region Config

            var nvrConfig        = _config.GetSection("video").Get <NvrConfig>();
            var controllerConfig = _config.GetSection("controller").Get <ControllerConfig>();
            var presenceConfig   = _config.GetSection("presence").Get <PresenceRecordingSettings>();

            // configuration check
            _logger.LogDebug($"{nameof(controllerConfig)} is null: {controllerConfig == null}");
            _logger.LogDebug($"{nameof(controllerConfig)} base url: {controllerConfig?.BaseUrl}");

            _logger.LogDebug($"{nameof(nvrConfig)} is null: {nvrConfig == null}");
            _logger.LogDebug($"{nameof(nvrConfig)} base url: {nvrConfig?.BaseUrl}");
            _logger.LogDebug($"{nameof(presenceConfig)} is null: {presenceConfig == null}");

            if (controllerConfig == null)
            {
                _logger.LogWarning("Failed to load Unifi Controller configuration information from config file.");
                controllerConfig = new ControllerConfig();
            }
            if (nvrConfig == null)
            {
                _logger.LogWarning("Failed to load Unifi video (nvr) configuration information from config file.");
                nvrConfig = new NvrConfig();
            }
            if (presenceConfig == null)
            {
                _logger.LogWarning("Failed to load presence configuration information from config file.");
                presenceConfig = new PresenceRecordingSettings();
            }
            #endregion


            commandLineApplication.Command("show",
                                           (target) =>
            {
                target.Description = "Show different types of information (wireless clients, cameras, ...)";
                target.HelpOption(helpoptions);
                target.Command("clients", (listClientCommand) =>
                {
                    listClientCommand.Description = "Shows the list of connected wireless clients for the configured Unifi Controller and Site";
                    listClientCommand.OnExecute(async() => { await OutputConnectedClientsToConsole(controllerConfig, presenceConfig, _logger); });
                });
                target.Command("cameras", (listCameraCommand) =>
                {
                    listCameraCommand.Description = "Shows the list of camera's managed by the configured Unifi NVR";
                    listCameraCommand.OnExecute(async() => { await OutputConnectedCamerasToConsole(nvrConfig, presenceConfig, _logger); });
                });

                target.OnExecute(() =>
                {
                    Console.WriteLine("Specify a subcommand");
                    target.ShowHelp();
                    return(1);
                });
            });

            commandLineApplication.Command("config",
                                           (target) =>
            {
                target.HelpOption(helpoptions);
                target.Description = "Starts the user prompts to create or update the configuration stored in appsettings.json";
                target.OnExecute(async() =>
                {
                    Console.WriteLine();
                    Console.WriteLine("-------------");
                    Console.WriteLine("Configuration".ToUpper());
                    Console.WriteLine("-------------");
                    Console.WriteLine("Press Enter to leave current value unchaged");
                    Console.WriteLine();

                    SetGeneralConfig(presenceConfig);
                    SetControllerConfig(optionUserNameController, optionPassWordController, optionBaseUrlController, optionSitename, controllerConfig);

                    await UpdateConfigDevices(controllerConfig, presenceConfig, _logger);

                    UpdateConfigUnifiVideo(userNameNvr, passWordNvr, baseUrlNvr, nvrConfig);

                    await UpdateConfigCameras(nvrConfig, presenceConfig, _logger);

                    var configString = Newtonsoft.Json.JsonConvert.SerializeObject(new { video = nvrConfig, controller = controllerConfig, presence = presenceConfig });

                    Console.WriteLine();
                    Console.WriteLine("New configuration:");
                    Console.WriteLine();
                    Console.WriteLine(configString);

                    if (Prompt.GetYesNo("Write this configuration to appsettings.json?: ", true))
                    {
                        System.IO.File.WriteAllBytes(System.IO.Path.Combine(Program.InstalledPath, Program.configFileName), Encoding.UTF8.GetBytes(configString));
                        _logger.LogInformation("appsettings.json written");
                    }
                });
            });

            commandLineApplication.Command("update", (target) =>
            {
                target.Description = "Update the configured camera's based on presence of the configured MAC addresses on the wifi network.";
                target.OnExecute(async() =>
                {
                    var currentTime   = DateTime.Now.TimeOfDay;
                    bool shouldRecord = (presenceConfig.EnableNightRecordingIfAtHome && (currentTime.Hours >= 23 || currentTime.Hours < 8)) || !IsOneOrMoreMACPresent(await GetConnectedClients(controllerConfig, presenceConfig, _logger), presenceConfig);

                    _logger.LogInformation($"Should record: {shouldRecord}");
                    var nvrClient = new TwicePower.Unifi.UnifiVideoClient(GetHttpClient(nvrConfig.BaseUrl, presenceConfig.SOCKS, presenceConfig.VerifySsl));
                    var status    = await GetNvrStatus(nvrClient, nvrConfig);
                    if (status != null)
                    {
                        UpdateCameraRecordingState(nvrClient, status, presenceConfig, shouldRecord).GetAwaiter().GetResult();
                    }
                    return(0);
                });
            });

            commandLineApplication.OnExecute(() =>
            {
                commandLineApplication.ShowHelp();
                return(0);
            });

            commandLineApplication.Parse(args);

            MergeConfig(controllerConfig, optionSitename, optionUserNameController, optionPassWordController, optionBaseUrlController);
            MergeConfig(nvrConfig, userNameNvr, passWordNvr, baseUrlNvr);

            commandLineApplication.Execute(args);

            return(0);
        }