* @author Bernhard Posselt * @copyright 2012 Alessandro Cosentino * @copyright 2012-2014 Bernhard Posselt */ namespace OCA\News\Controller; use OCA\News\Service\FeedServiceV2; use \OCP\IRequest; use \OCP\IConfig; use \OCP\AppFramework\Http; use \OCA\News\Service\Exceptions\ServiceException; use \OCA\News\Service\Exceptions\ServiceNotFoundException; use \OCA\News\Service\ItemService; use OCP\IUserSession; class ItemController extends Controller { use JSONHttpErrorTrait; private $itemService; /** * @var FeedServiceV2 */ private $feedService; /** * @var IConfig */ private $settings; public function __construct( IRequest $request, FeedServiceV2 $feedService, ItemService $itemService, IConfig $settings, ?IUserSession $userSession ) { parent::__construct($request, $userSession); $this->itemService = $itemService; $this->feedService = $feedService; $this->settings = $settings; } /** * @NoAdminRequired * * @param int $type * @param int $id * @param int $limit * @param int $offset * @param bool $showAll * @param bool $oldestFirst * @param string $search * @return array */ public function index( int $type = 3, int $id = 0, int $limit = 50, int $offset = 0, ?bool $showAll = null, ?bool $oldestFirst = null, string $search = '' ) { // in case this is called directly and not from the website use the // internal state if ($showAll === null) { $showAll = $this->settings->getUserValue( $this->getUserId(), $this->appName, 'showAll' ) === '1'; } if ($oldestFirst === null) { $oldestFirst = $this->settings->getUserValue( $this->getUserId(), $this->appName, 'oldestFirst' ) === '1'; } $this->settings->setUserValue( $this->getUserId(), $this->appName, 'lastViewedFeedId', $id ); $this->settings->setUserValue( $this->getUserId(), $this->appName, 'lastViewedFeedType', $type ); $params = []; // split search parameter on url space $search = trim(urldecode($search)); $search = preg_replace('/\s+/', ' ', $search); // remove multiple ws if ($search === '') { $search = []; } else { $search = explode(' ', $search); } try { // the offset is 0 if the user clicks on a new feed // we need to pass the newest feeds to not let the unread count get // out of sync if ($offset === 0) { $params['newestItemId'] = $this->itemService->getNewestItemId($this->getUserId()); $params['feeds'] = $this->feedService->findAllForUser($this->getUserId()); $params['starred'] = $this->itemService->starredCount($this->getUserId()); } $params['items'] = $this->itemService->findAllItems( $id, $type, $limit, $offset, $showAll, $oldestFirst, $this->getUserId(), $search ); // this gets thrown if there are no items // in that case just return an empty array } catch (ServiceException $ex) { } return $params; } /** * @NoAdminRequired * * @param int $type * @param int $id * @param int $lastModified * @return array */ public function newItems($type, $id, $lastModified = 0) { $showAll = $this->settings->getUserValue( $this->getUserId(), $this->appName, 'showAll' ) === '1'; $params = []; try { $params['newestItemId'] = $this->itemService->getNewestItemId($this->getUserId()); $params['feeds'] = $this->feedService->findAllForUser($this->getUserId()); $params['starred'] = $this->itemService->starredCount($this->getUserId()); $params['items'] = $this->itemService->findAllNew( $id, $type, $lastModified, $showAll, $this->getUserId() ); // this gets thrown if there are no items // in that case just return an empty array } catch (ServiceException $ex) { } return $params; } /** * @NoAdminRequired * * @param int $feedId * @param string $guidHash * @param bool $isStarred * @return array|\OCP\AppFramework\Http\JSONResponse */ public function star($feedId, $guidHash, $isStarred) { try { $this->itemService->star( $feedId, $guidHash, $isStarred, $this->getUserId() ); } catch (ServiceException $ex) { return $this->error($ex, Http::STATUS_NOT_FOUND); } return []; } /** * @NoAdminRequired * * @param int $itemId * @param bool $isRead * @return array|\OCP\AppFramework\Http\JSONResponse */ public function read($itemId, $isRead = true) { try { $this->itemService->read($itemId, $isRead, $this->getUserId()); } catch (ServiceException $ex) { return $this->error($ex, Http::STATUS_NOT_FOUND); } return []; } /** * @NoAdminRequired * * @param int $highestItemId * @return array */ public function readAll($highestItemId) { $this->itemService->readAll($highestItemId, $this->getUserId()); return ['feeds' => $this->feedService->findAllForUser($this->getUserId())]; } /** * @NoAdminRequired * * @param int[] $itemIds item ids * * @return void */ public function readMultiple($itemIds): void { foreach ($itemIds as $id) { try { $this->itemService->read($id, true, $this->getUserId()); } catch (ServiceNotFoundException $ex) { continue; } } } }