2018-09-20 07:42:52 +00:00
|
|
|
<?php
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-09-08 13:46:22 +00:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-09-20 07:42:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Controller;
|
|
|
|
|
2018-11-23 21:07:32 +00:00
|
|
|
use Exception;
|
2018-10-02 10:25:36 +00:00
|
|
|
use OC\User\NoUserException;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCA\Social\AppInfo\Application;
|
2018-10-02 10:25:36 +00:00
|
|
|
use OCA\Social\Exceptions\AccountAlreadyExistsException;
|
2018-11-15 11:26:25 +00:00
|
|
|
use OCA\Social\Exceptions\SocialAppConfigException;
|
2018-12-17 09:12:27 +00:00
|
|
|
use OCA\Social\Exceptions\UrlCloudException;
|
|
|
|
use OCA\Social\Service\AccountService;
|
2018-12-03 10:04:25 +00:00
|
|
|
use OCA\Social\Service\CheckService;
|
2018-11-15 11:26:25 +00:00
|
|
|
use OCA\Social\Service\ConfigService;
|
2018-12-17 09:12:27 +00:00
|
|
|
use OCA\Social\Service\DocumentService;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCA\Social\Service\MiscService;
|
2023-05-25 20:45:28 +00:00
|
|
|
use OCA\Social\Tools\Traits\TArrayTools;
|
|
|
|
use OCA\Social\Tools\Traits\TNCDataResponse;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCP\AppFramework\Controller;
|
2023-05-25 20:45:28 +00:00
|
|
|
use OCP\AppFramework\Http;
|
2018-11-24 14:14:30 +00:00
|
|
|
use OCP\AppFramework\Http\FileDisplayResponse;
|
|
|
|
use OCP\AppFramework\Http\Response;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\IConfig;
|
2023-05-25 20:45:28 +00:00
|
|
|
use OCP\IGroupManager;
|
2020-09-01 22:54:44 +00:00
|
|
|
use OCP\IInitialStateService;
|
2018-10-23 13:37:18 +00:00
|
|
|
use OCP\IL10N;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IURLGenerator;
|
2022-05-11 16:22:54 +00:00
|
|
|
use OCP\Server;
|
2018-09-20 07:42:52 +00:00
|
|
|
|
2019-09-25 12:37:32 +00:00
|
|
|
/**
|
|
|
|
* Class NavigationController
|
|
|
|
*
|
|
|
|
* @package OCA\Social\Controller
|
|
|
|
*/
|
2018-09-20 07:42:52 +00:00
|
|
|
class NavigationController extends Controller {
|
2018-11-12 22:56:22 +00:00
|
|
|
use TArrayTools;
|
2018-11-15 11:26:25 +00:00
|
|
|
use TNCDataResponse;
|
|
|
|
|
2022-04-14 13:56:20 +00:00
|
|
|
private ?string $userId = null;
|
|
|
|
private IConfig $config;
|
|
|
|
private IURLGenerator $urlGenerator;
|
|
|
|
private AccountService $accountService;
|
|
|
|
private DocumentService $documentService;
|
|
|
|
private ConfigService $configService;
|
|
|
|
private MiscService $miscService;
|
|
|
|
private IL10N $l10n;
|
|
|
|
private CheckService $checkService;
|
2022-04-15 13:01:27 +00:00
|
|
|
private IInitialStateService $initialStateService;
|
2018-11-12 22:56:22 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
public function __construct(
|
2022-04-14 13:56:20 +00:00
|
|
|
IL10N $l10n,
|
|
|
|
IRequest $request,
|
|
|
|
?string $userId,
|
|
|
|
IConfig $config,
|
|
|
|
IInitialStateService $initialStateService,
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
AccountService $accountService,
|
|
|
|
DocumentService $documentService,
|
|
|
|
ConfigService $configService,
|
|
|
|
CheckService $checkService,
|
2024-10-28 12:53:06 +00:00
|
|
|
MiscService $miscService,
|
2018-09-20 07:42:52 +00:00
|
|
|
) {
|
2023-06-20 10:02:58 +00:00
|
|
|
parent::__construct(Application::APP_ID, $request);
|
2018-09-20 07:42:52 +00:00
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
$this->userId = $userId;
|
2018-12-17 09:12:27 +00:00
|
|
|
$this->l10n = $l10n;
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->config = $config;
|
2020-09-01 22:54:44 +00:00
|
|
|
$this->initialStateService = $initialStateService;
|
2018-12-17 09:12:27 +00:00
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->urlGenerator = $urlGenerator;
|
2018-12-03 10:04:25 +00:00
|
|
|
$this->checkService = $checkService;
|
2018-12-17 09:12:27 +00:00
|
|
|
$this->accountService = $accountService;
|
2018-11-24 14:14:30 +00:00
|
|
|
$this->documentService = $documentService;
|
2018-11-15 11:26:25 +00:00
|
|
|
$this->configService = $configService;
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->miscService = $miscService;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-10-01 12:14:23 +00:00
|
|
|
* Display the navigation page of the Social app.
|
|
|
|
*
|
2018-09-20 07:42:52 +00:00
|
|
|
* @NoCSRFRequired
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
2018-12-17 09:12:27 +00:00
|
|
|
* @throws UrlCloudException
|
2019-07-22 17:21:40 +00:00
|
|
|
* @throws SocialAppConfigException
|
2018-09-20 07:42:52 +00:00
|
|
|
*/
|
2018-11-30 11:21:11 +00:00
|
|
|
public function navigate(string $path = ''): TemplateResponse {
|
2020-09-01 22:54:44 +00:00
|
|
|
$serverData = [
|
2022-04-15 11:34:01 +00:00
|
|
|
'public' => false,
|
2020-09-01 22:54:44 +00:00
|
|
|
'firstrun' => false,
|
2022-04-15 11:34:01 +00:00
|
|
|
'setup' => false,
|
2022-05-11 16:22:54 +00:00
|
|
|
'isAdmin' => Server::get(IGroupManager::class)
|
2024-10-28 12:53:06 +00:00
|
|
|
->isAdmin($this->userId),
|
2022-04-15 11:34:01 +00:00
|
|
|
'cliUrl' => $this->getCliUrl()
|
2018-10-23 13:37:18 +00:00
|
|
|
];
|
2018-09-20 07:42:52 +00:00
|
|
|
|
2018-11-15 11:26:25 +00:00
|
|
|
try {
|
2020-09-01 22:54:44 +00:00
|
|
|
$serverData['cloudAddress'] = $this->configService->getCloudUrl();
|
2018-11-15 11:26:25 +00:00
|
|
|
} catch (SocialAppConfigException $e) {
|
2019-08-22 21:49:27 +00:00
|
|
|
$this->checkService->checkInstallationStatus(true);
|
2018-12-03 10:04:25 +00:00
|
|
|
$cloudAddress = $this->setupCloudAddress();
|
2018-12-17 09:12:27 +00:00
|
|
|
if ($cloudAddress !== '') {
|
2020-09-01 22:54:44 +00:00
|
|
|
$serverData['cloudAddress'] = $cloudAddress;
|
2018-11-28 11:25:36 +00:00
|
|
|
} else {
|
2020-09-01 22:54:44 +00:00
|
|
|
$serverData['setup'] = true;
|
2018-12-03 10:04:25 +00:00
|
|
|
|
2020-09-01 22:54:44 +00:00
|
|
|
if ($serverData['isAdmin']) {
|
2018-11-28 11:25:36 +00:00
|
|
|
$cloudAddress = $this->request->getParam('cloudAddress');
|
|
|
|
if ($cloudAddress !== null) {
|
2019-07-11 13:58:58 +00:00
|
|
|
$this->configService->setCloudUrl($cloudAddress);
|
2018-11-28 11:25:36 +00:00
|
|
|
} else {
|
2023-06-20 10:02:58 +00:00
|
|
|
$this->initialStateService->provideInitialState(Application::APP_ID, 'serverData', $serverData);
|
|
|
|
return new TemplateResponse(Application::APP_ID, 'main');
|
2018-11-28 11:25:36 +00:00
|
|
|
}
|
2018-11-19 20:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-15 11:26:25 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 19:26:34 +00:00
|
|
|
try {
|
|
|
|
$this->configService->getSocialUrl();
|
|
|
|
} catch (SocialAppConfigException $e) {
|
2019-07-22 17:21:40 +00:00
|
|
|
$this->configService->setSocialUrl();
|
2019-07-11 19:26:34 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 10:04:25 +00:00
|
|
|
/*
|
|
|
|
* Create social user account if it doesn't exist yet
|
|
|
|
*/
|
2018-10-02 10:25:36 +00:00
|
|
|
try {
|
2018-12-17 09:12:27 +00:00
|
|
|
$this->accountService->createActor($this->userId, $this->userId);
|
2020-09-01 22:54:44 +00:00
|
|
|
$serverData['firstrun'] = true;
|
2018-10-02 10:25:36 +00:00
|
|
|
} catch (AccountAlreadyExistsException $e) {
|
|
|
|
// we do nothing
|
2018-11-28 15:39:25 +00:00
|
|
|
} catch (NoUserException $e) {
|
|
|
|
// well, should not happens
|
|
|
|
} catch (SocialAppConfigException $e) {
|
|
|
|
// neither.
|
2018-10-02 10:25:36 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 15:31:24 +00:00
|
|
|
if ($serverData['isAdmin']) {
|
|
|
|
$checks = $this->checkService->checkDefault();
|
|
|
|
$serverData['checks'] = $checks;
|
|
|
|
}
|
|
|
|
|
2023-06-20 10:02:58 +00:00
|
|
|
$this->initialStateService->provideInitialState(Application::APP_ID, 'serverData', $serverData);
|
|
|
|
return new TemplateResponse(Application::APP_ID, 'main');
|
2018-09-20 07:42:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 10:04:25 +00:00
|
|
|
private function setupCloudAddress(): string {
|
2019-07-11 13:58:58 +00:00
|
|
|
$frontControllerActive =
|
|
|
|
($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true
|
|
|
|
|| getenv('front_controller_active') === 'true');
|
2018-12-03 10:04:25 +00:00
|
|
|
|
|
|
|
$cloudAddress = rtrim($this->config->getSystemValue('overwrite.cli.url', ''), '/');
|
|
|
|
if ($cloudAddress !== '') {
|
2019-07-11 13:58:58 +00:00
|
|
|
if (!$frontControllerActive) {
|
|
|
|
$cloudAddress .= '/index.php';
|
|
|
|
}
|
|
|
|
$this->configService->setCloudUrl($cloudAddress);
|
2018-12-17 09:12:27 +00:00
|
|
|
|
2018-12-03 10:04:25 +00:00
|
|
|
return $cloudAddress;
|
|
|
|
}
|
2018-12-17 09:12:27 +00:00
|
|
|
|
2018-12-03 10:04:25 +00:00
|
|
|
return '';
|
|
|
|
}
|
2018-11-15 11:26:25 +00:00
|
|
|
|
2018-12-03 11:10:03 +00:00
|
|
|
private function getCliUrl() {
|
|
|
|
$url = rtrim($this->urlGenerator->getBaseUrl(), '/');
|
2018-12-17 09:12:27 +00:00
|
|
|
$frontControllerActive =
|
|
|
|
($this->config->getSystemValue('htaccess.IgnoreFrontController', false) === true
|
|
|
|
|| getenv('front_controller_active') === 'true');
|
2018-12-03 11:10:03 +00:00
|
|
|
if (!$frontControllerActive) {
|
|
|
|
$url .= '/index.php';
|
|
|
|
}
|
2018-12-17 09:12:27 +00:00
|
|
|
|
2018-12-03 11:10:03 +00:00
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2018-11-15 11:26:25 +00:00
|
|
|
|
2018-10-23 13:37:18 +00:00
|
|
|
/**
|
|
|
|
* Display the navigation page of the Social app.
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
2018-12-17 09:12:27 +00:00
|
|
|
* @throws UrlCloudException
|
2019-09-13 21:56:40 +00:00
|
|
|
* @throws SocialAppConfigException
|
2018-10-23 13:37:18 +00:00
|
|
|
*/
|
2018-11-30 11:21:11 +00:00
|
|
|
public function timeline(string $path = ''): TemplateResponse {
|
2018-10-23 13:37:18 +00:00
|
|
|
return $this->navigate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the navigation page of the Social app.
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
2018-11-30 11:21:11 +00:00
|
|
|
* @param string $path
|
|
|
|
*
|
2018-10-23 13:37:18 +00:00
|
|
|
* @return TemplateResponse
|
2018-12-17 09:12:27 +00:00
|
|
|
* @throws UrlCloudException
|
2019-09-13 21:56:40 +00:00
|
|
|
* @throws SocialAppConfigException
|
2018-10-23 13:37:18 +00:00
|
|
|
*/
|
2018-11-30 11:21:11 +00:00
|
|
|
public function account(string $path = ''): TemplateResponse {
|
2018-10-23 13:37:18 +00:00
|
|
|
return $this->navigate();
|
|
|
|
}
|
|
|
|
|
2018-11-23 21:07:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
2019-07-15 12:38:21 +00:00
|
|
|
* @NoCSRFRequired
|
2018-11-23 21:07:32 +00:00
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
*
|
2018-11-24 14:14:30 +00:00
|
|
|
* @return Response
|
2018-11-23 21:07:32 +00:00
|
|
|
*/
|
2018-11-24 14:14:30 +00:00
|
|
|
public function documentGet(string $id): Response {
|
2018-11-23 21:07:32 +00:00
|
|
|
try {
|
2019-07-20 18:19:59 +00:00
|
|
|
$mime = '';
|
|
|
|
$file = $this->documentService->getFromCache($id, $mime);
|
|
|
|
|
|
|
|
return new FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => $mime]);
|
2018-11-23 21:07:32 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
return $this->fail($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-17 21:34:28 +00:00
|
|
|
*
|
2018-11-23 21:07:32 +00:00
|
|
|
* @PublicPage
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
*
|
2018-11-24 14:14:30 +00:00
|
|
|
* @return Response
|
2018-11-23 21:07:32 +00:00
|
|
|
*/
|
2018-11-24 14:14:30 +00:00
|
|
|
public function documentGetPublic(string $id): Response {
|
2018-11-23 21:07:32 +00:00
|
|
|
try {
|
2019-07-20 18:19:59 +00:00
|
|
|
$mime = '';
|
|
|
|
$file = $this->documentService->getFromCache($id, $mime, true);
|
2018-11-24 14:14:30 +00:00
|
|
|
|
2019-07-20 18:19:59 +00:00
|
|
|
return new FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => $mime]);
|
2018-11-23 21:07:32 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
return $this->fail($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-17 21:34:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function resizedGet(string $id): Response {
|
|
|
|
try {
|
2019-07-20 18:19:59 +00:00
|
|
|
$mime = '';
|
|
|
|
$file = $this->documentService->getResizedFromCache($id, $mime);
|
2019-07-17 21:34:28 +00:00
|
|
|
|
2019-07-20 18:19:59 +00:00
|
|
|
return new FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => $mime]);
|
2019-07-17 21:34:28 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
return $this->fail($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @PublicPage
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function resizedGetPublic(string $id): Response {
|
|
|
|
try {
|
2019-07-20 18:19:59 +00:00
|
|
|
$mime = '';
|
|
|
|
$file = $this->documentService->getResizedFromCache($id, $mime, true);
|
2019-07-17 21:34:28 +00:00
|
|
|
|
2019-07-20 18:19:59 +00:00
|
|
|
return new FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => $mime]);
|
2019-07-17 21:34:28 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
return $this->fail($e);
|
|
|
|
}
|
|
|
|
}
|
2018-09-20 07:42:52 +00:00
|
|
|
}
|