60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\AppAPI\Service;
|
|
|
|
use OCA\AppAPI\AppInfo\Application;
|
|
use OCA\AppAPI\Db\ExApp;
|
|
use OCP\App\IAppManager;
|
|
use OCP\IRequest;
|
|
|
|
class AppAPICommonService {
|
|
|
|
public function __construct(
|
|
private readonly IAppManager $appManager,
|
|
private readonly HarpService $harpService,
|
|
) {
|
|
}
|
|
|
|
public function buildAppAPIAuthHeaders(?IRequest $request, ?string $userId, ExApp $exApp): array {
|
|
$headers = [
|
|
'AA-VERSION' => $this->appManager->getAppVersion(Application::APP_ID, false),
|
|
'EX-APP-ID' => $exApp->getAppid(),
|
|
'EX-APP-VERSION' => $exApp->getVersion(),
|
|
'AUTHORIZATION-APP-API' => base64_encode($userId . ':' . $exApp->getSecret()),
|
|
'AA-REQUEST-ID' => $request instanceof IRequest ? $request->getId() : 'CLI',
|
|
];
|
|
|
|
if ($this->harpService->isHarp($exApp->getDeployConfig())) {
|
|
$harpKey = $this->harpService->getHarpSharedKey($exApp->getDeployConfig());
|
|
$headers['harp-shared-key'] = $harpKey;
|
|
$headers['ex-app-port'] = $exApp->getPort();
|
|
$headers['ex-app-host'] = $this->harpService->getExAppHost($exApp);
|
|
}
|
|
|
|
return $headers;
|
|
}
|
|
|
|
public function buildExAppHost(array $deployConfig): string {
|
|
if (($deployConfig['harp'] ?? false) && !HarpService::isHarpDirectConnect($deployConfig)) {
|
|
return '127.0.0.1';
|
|
}
|
|
if (isset($deployConfig['additional_options']['OVERRIDE_APP_HOST'])) {
|
|
return $deployConfig['additional_options']['OVERRIDE_APP_HOST'];
|
|
}
|
|
if (isset($deployConfig['net'])) {
|
|
if ($deployConfig['net'] === 'host') {
|
|
return '127.0.0.1'; # ExApp using this host network, it is visible for F7cloud on loop-back adapter
|
|
}
|
|
return '0.0.0.0';
|
|
}
|
|
return '127.0.0.1'; # fallback to loop-back adapter
|
|
}
|
|
}
|