2018-09-20 07:42:52 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Nextcloud - Social Support
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later. See the COPYING file.
|
|
|
|
*
|
|
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
|
|
* @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Controller;
|
|
|
|
|
|
|
|
|
2018-10-23 13:37:18 +00:00
|
|
|
use OC\Accounts\AccountManager;
|
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;
|
|
|
|
use OCA\Social\Service\ActorService;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCA\Social\Service\MiscService;
|
|
|
|
use OCP\AppFramework\Controller;
|
2018-10-23 13:37:18 +00:00
|
|
|
use OCP\AppFramework\Http\RedirectResponse;
|
|
|
|
use OCP\AppFramework\Http\Template\PublicTemplateResponse;
|
2018-09-20 07:42:52 +00:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\IConfig;
|
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;
|
|
|
|
|
|
|
|
class NavigationController extends Controller {
|
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
/** @var string */
|
|
|
|
private $userId;
|
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/** @var IURLGenerator */
|
|
|
|
private $urlGenerator;
|
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
/** @var ActorService */
|
|
|
|
private $actorService;
|
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
/** @var MiscService */
|
|
|
|
private $miscService;
|
|
|
|
|
2018-10-23 13:37:18 +00:00
|
|
|
/** @var IL10N */
|
|
|
|
private $l10n;
|
2018-09-20 07:42:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* NavigationController constructor.
|
|
|
|
*
|
|
|
|
* @param IRequest $request
|
2018-10-02 10:25:36 +00:00
|
|
|
* @param string $userId
|
2018-09-20 07:42:52 +00:00
|
|
|
* @param IConfig $config
|
|
|
|
* @param IURLGenerator $urlGenerator
|
2018-10-12 06:44:35 +00:00
|
|
|
* @param ActorService $actorService
|
2018-09-20 07:42:52 +00:00
|
|
|
* @param MiscService $miscService
|
|
|
|
*/
|
|
|
|
public function __construct(
|
2018-10-23 13:37:18 +00:00
|
|
|
IRequest $request, $userId, IConfig $config, IURLGenerator $urlGenerator,
|
|
|
|
ActorService $actorService, MiscService $miscService, IL10N $l10n
|
2018-09-20 07:42:52 +00:00
|
|
|
) {
|
|
|
|
parent::__construct(Application::APP_NAME, $request);
|
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
$this->userId = $userId;
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->config = $config;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
$this->actorService = $actorService;
|
2018-09-20 07:42:52 +00:00
|
|
|
$this->miscService = $miscService;
|
2018-10-23 13:37:18 +00:00
|
|
|
$this->l10n = $l10n;
|
2018-09-20 07:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
* @NoSubAdminRequired
|
|
|
|
*
|
|
|
|
* @return TemplateResponse
|
2018-10-02 10:25:36 +00:00
|
|
|
* @throws NoUserException
|
2018-09-20 07:42:52 +00:00
|
|
|
*/
|
2018-10-23 13:37:18 +00:00
|
|
|
public function navigate($path = ''): TemplateResponse {
|
|
|
|
$data = [
|
|
|
|
'serverData' => [
|
|
|
|
'public' => false,
|
|
|
|
]
|
|
|
|
];
|
2018-09-20 07:42:52 +00:00
|
|
|
|
2018-10-02 10:25:36 +00:00
|
|
|
try {
|
|
|
|
$this->actorService->createActor($this->userId, $this->userId);
|
|
|
|
} catch (AccountAlreadyExistsException $e) {
|
|
|
|
// we do nothing
|
|
|
|
}
|
|
|
|
|
2018-10-23 13:37:18 +00:00
|
|
|
|
|
|
|
|
2018-09-20 07:42:52 +00:00
|
|
|
return new TemplateResponse(Application::APP_NAME, 'main', $data);
|
|
|
|
}
|
|
|
|
|
2018-10-23 13:37:18 +00:00
|
|
|
/**
|
|
|
|
* Display the navigation page of the Social app.
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoSubAdminRequired
|
|
|
|
*
|
|
|
|
* @return TemplateResponse
|
|
|
|
* @throws NoUserException
|
|
|
|
*/
|
|
|
|
public function timeline($path = ''): TemplateResponse {
|
|
|
|
return $this->navigate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the navigation page of the Social app.
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoSubAdminRequired
|
|
|
|
*
|
|
|
|
* @return TemplateResponse
|
|
|
|
* @throws NoUserException
|
|
|
|
*/
|
|
|
|
public function account($path = ''): TemplateResponse {
|
|
|
|
return $this->navigate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @PublicPage
|
|
|
|
*
|
|
|
|
* @param $username
|
|
|
|
* @return RedirectResponse|PublicTemplateResponse
|
|
|
|
*/
|
|
|
|
public function public($username) {
|
|
|
|
if (\OC::$server->getUserSession()->isLoggedIn()) {
|
|
|
|
return new RedirectResponse(\OC::$server->getURLGenerator()->linkToRoute('social.Navigation.navigate'));
|
|
|
|
}
|
|
|
|
// TODO public interface for account manager
|
|
|
|
/** @var AccountManager $accountManager */
|
|
|
|
$accountManager = \OC::$server->query(AccountManager::class);
|
|
|
|
$userData = $accountManager->getUser(\OC::$server->getUserManager()->get($username));
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'username' => $username,
|
|
|
|
'displayName' => $this->getPublicValue($userData, AccountManager::PROPERTY_DISPLAYNAME),
|
|
|
|
'website' => $this->getPublicValue($userData, AccountManager::PROPERTY_WEBSITE),
|
|
|
|
'account' => json_encode($userData),
|
|
|
|
'serverData' => [
|
|
|
|
'public' => true,
|
|
|
|
]
|
|
|
|
];
|
|
|
|
$page = new PublicTemplateResponse(Application::APP_NAME, 'main', $data);
|
|
|
|
$page->setHeaderTitle($this->l10n->t('Social') . ' ' . $username);
|
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getPublicValue($userData, $value) {
|
|
|
|
if ($userData[$value]['scope'] === 'public') {
|
|
|
|
return $userData[$value]['value'];
|
|
|
|
}
|
|
|
|
}
|
2018-09-20 07:42:52 +00:00
|
|
|
|
|
|
|
}
|