logger->error('Failed to register daemon configuration. `host` must not include a protocol.'); return null; } } if ($params['protocol'] !== 'http' && $params['protocol'] !== 'https') { $this->logger->error('Failed to register daemon configuration. `protocol` must be `http` or `https`.'); return null; } $params['deploy_config']['nextcloud_url'] = rtrim($params['deploy_config']['nextcloud_url'], '/'); try { if (isset($params['deploy_config']['haproxy_password']) && $params['deploy_config']['haproxy_password'] !== '') { $params['deploy_config']['haproxy_password'] = $this->crypto->encrypt($params['deploy_config']['haproxy_password']); } return $this->mapper->insert(new DaemonConfig([ 'name' => $params['name'], 'display_name' => $params['display_name'], 'accepts_deploy_id' => $params['accepts_deploy_id'], 'protocol' => $params['protocol'], 'host' => $params['host'], 'deploy_config' => $params['deploy_config'], ])); } catch (Exception $e) { $this->logger->error('Failed to register daemon config. Error: ' . $e->getMessage(), ['exception' => $e]); return null; } } public function unregisterDaemonConfig(DaemonConfig $daemonConfig): ?DaemonConfig { try { return $this->mapper->delete($daemonConfig); } catch (Exception $e) { $this->logger->error('Failed to unregister daemon config. Error: ' . $e->getMessage(), ['exception' => $e]); return null; } } /** * @return DaemonConfig[] */ public function getRegisteredDaemonConfigs(): array { try { return $this->mapper->findAll(); } catch (Exception $e) { $this->logger->debug('Failed to get registered daemon configs. Error: ' . $e->getMessage(), ['exception' => $e]); return []; } } public function getDaemonConfigsWithAppsCount(): array { $daemonsExAppsCount = array_reduce($this->exAppService->getExApps(), function (array $carry, $exApp) { if (!isset($carry[$exApp->getDaemonConfigName()])) { $carry[$exApp->getDaemonConfigName()] = 0; } $carry[$exApp->getDaemonConfigName()] += 1; return $carry; }, []); return array_map(function (DaemonConfig $daemonConfig) use ($daemonsExAppsCount) { $serializedConfig = $daemonConfig->jsonSerialize(); // Check if "haproxy_password" exists in "deployConfig" and mask it if (!empty($serializedConfig['deploy_config']['haproxy_password'])) { $serializedConfig['deploy_config']['haproxy_password'] = 'dummySecret123'; } return [ ...$serializedConfig, 'exAppsCount' => $daemonsExAppsCount[$daemonConfig->getName()] ?? 0, ]; }, $this->getRegisteredDaemonConfigs()); } public function getDaemonConfigByName(string $name): ?DaemonConfig { try { return $this->mapper->findByName($name); } catch (DoesNotExistException|MultipleObjectsReturnedException|Exception $e) { $this->logger->debug('Failed to get daemon config by name. Error: ' . $e->getMessage(), ['exception' => $e]); return null; } } public function updateDaemonConfig(DaemonConfig $daemonConfig): ?DaemonConfig { try { return $this->mapper->update($daemonConfig); } catch (Exception $e) { $this->logger->error('Failed to update DaemonConfig. Error: ' . $e->getMessage(), ['exception' => $e]); return null; } } }