mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
7180e11bdb
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
70 lines
1.6 KiB
PHP
70 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Alessandro Cosentino <cosenal@gmail.com>
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @author David Guillot <david@guillot.me>
|
|
* @copyright 2020 Sean Molenaar <sean@seanmolenaar.eu>
|
|
*/
|
|
|
|
namespace OCA\News\Controller;
|
|
|
|
use OCA\News\AppInfo\Application;
|
|
use OCA\News\Controller\Exceptions\NotLoggedInException;
|
|
use OCP\AppFramework\Controller as BaseController;
|
|
use \OCP\IUser;
|
|
use \OCP\IRequest;
|
|
use \OCP\IUserSession;
|
|
|
|
/**
|
|
* Class ApiController
|
|
*
|
|
* @package OCA\News\Controller
|
|
*/
|
|
class Controller extends BaseController
|
|
{
|
|
/**
|
|
* @var IUserSession|null
|
|
*/
|
|
private $userSession;
|
|
|
|
/**
|
|
* ApiController constructor.
|
|
*
|
|
* Stores the user session to be able to leverage the user in further methods
|
|
*
|
|
* @param IRequest $request The request
|
|
* @param IUserSession|null $userSession The user session
|
|
*/
|
|
public function __construct(IRequest $request, ?IUserSession $userSession)
|
|
{
|
|
parent::__construct(Application::NAME, $request);
|
|
|
|
$this->userSession = $userSession;
|
|
}
|
|
|
|
/**
|
|
* @return IUser|null
|
|
*/
|
|
protected function getUser(): ?IUser
|
|
{
|
|
if ($this->userSession === null) {
|
|
throw new NotLoggedInException();
|
|
}
|
|
|
|
return $this->userSession->getUser();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getUserId()
|
|
{
|
|
return $this->getUser()->getUID();
|
|
}
|
|
}
|