1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/sources/app/Controllers/indexController.php

237 lines
6.7 KiB
PHP
Raw Normal View History

2014-07-23 15:52:50 +02:00
<?php
2015-02-08 18:55:48 +01:00
/**
* This class handles main actions of FreshRSS.
*/
2014-07-23 15:52:50 +02:00
class FreshRSS_index_Controller extends Minz_ActionController {
2015-02-08 18:55:48 +01:00
/**
* This action only redirect on the default view mode (normal or global)
*/
public function indexAction() {
$prefered_output = FreshRSS_Context::$user_conf->view_mode;
Minz_Request::forward(array(
2014-07-23 15:52:50 +02:00
'c' => 'index',
2015-02-08 18:55:48 +01:00
'a' => $prefered_output
));
}
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
/**
* This action displays the normal view of FreshRSS.
*/
public function normalAction() {
$allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
if (!FreshRSS_Auth::hasAccess() && !$allow_anonymous) {
Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
2014-07-23 15:52:50 +02:00
return;
}
2015-02-08 18:55:48 +01:00
try {
$this->updateContext();
} catch (FreshRSS_Context_Exception $e) {
Minz_Error::error(404);
2014-07-23 15:52:50 +02:00
}
try {
2015-02-08 18:55:48 +01:00
$entries = $this->listEntriesByContext();
$nb_entries = count($entries);
if ($nb_entries > FreshRSS_Context::$number) {
// We have more elements for pagination
$last_entry = array_pop($entries);
FreshRSS_Context::$next_id = $last_entry->id();
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
$first_entry = $nb_entries > 0 ? $entries[0] : null;
FreshRSS_Context::$id_max = $first_entry === null ?
(time() - 1) . '000000' :
$first_entry->id();
if (FreshRSS_Context::$order === 'ASC') {
// In this case we do not know but we guess id_max
$id_max = (time() - 1) . '000000';
if (strcmp($id_max, FreshRSS_Context::$id_max) > 0) {
FreshRSS_Context::$id_max = $id_max;
}
2014-07-23 15:52:50 +02:00
}
$this->view->entries = $entries;
} catch (FreshRSS_EntriesGetter_Exception $e) {
2015-02-08 18:55:48 +01:00
Minz_Log::notice($e->getMessage());
Minz_Error::error(404);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
$this->view->categories = FreshRSS_Context::$categories;
$this->view->rss_title = FreshRSS_Context::$name . ' | ' . Minz_View::title();
$title = FreshRSS_Context::$name;
if (FreshRSS_Context::$get_unread > 0) {
$title = '(' . FreshRSS_Context::$get_unread . ') ' . $title;
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
Minz_View::prependTitle($title . ' · ');
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This action displays the reader view of FreshRSS.
*
* @todo: change this view into specific CSS rules?
*/
public function readerAction() {
$this->normalAction();
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This action displays the global view of FreshRSS.
*/
public function globalAction() {
$allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
if (!FreshRSS_Auth::hasAccess() && !$allow_anonymous) {
Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
return;
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
Minz_View::appendScript(Minz_Url::display('/scripts/global_view.js?' . @filemtime(PUBLIC_PATH . '/scripts/global_view.js')));
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
try {
$this->updateContext();
} catch (FreshRSS_Context_Exception $e) {
Minz_Error::error(404);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
$this->view->categories = FreshRSS_Context::$categories;
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
$this->view->rss_title = FreshRSS_Context::$name . ' | ' . Minz_View::title();
$title = _t('index.feed.title_global');
if (FreshRSS_Context::$get_unread > 0) {
$title = '(' . FreshRSS_Context::$get_unread . ') ' . $title;
}
Minz_View::prependTitle($title . ' · ');
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This action displays the RSS feed of FreshRSS.
*/
public function rssAction() {
$allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
$token = FreshRSS_Context::$user_conf->token;
$token_param = Minz_Request::param('token', '');
$token_is_ok = ($token != '' && $token === $token_param);
// Check if user has access.
if (!FreshRSS_Auth::hasAccess() &&
!$allow_anonymous &&
!$token_is_ok) {
Minz_Error::error(403);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
try {
$this->updateContext();
} catch (FreshRSS_Context_Exception $e) {
Minz_Error::error(404);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
try {
$this->view->entries = $this->listEntriesByContext();
} catch (FreshRSS_EntriesGetter_Exception $e) {
Minz_Log::notice($e->getMessage());
Minz_Error::error(404);
}
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
// No layout for RSS output.
$this->view->rss_title = FreshRSS_Context::$name . ' | ' . Minz_View::title();
2014-07-23 15:52:50 +02:00
$this->view->_useLayout(false);
2015-02-08 18:55:48 +01:00
header('Content-Type: application/rss+xml; charset=utf-8');
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This action updates the Context object by using request parameters.
*
* Parameters are:
* - state (default: conf->default_view)
* - search (default: empty string)
* - order (default: conf->sort_order)
* - nb (default: conf->posts_per_page)
* - next (default: empty string)
*/
private function updateContext() {
// Update number of read / unread variables.
$entryDAO = FreshRSS_Factory::createEntryDao();
FreshRSS_Context::$total_starred = $entryDAO->countUnreadReadFavorites();
FreshRSS_Context::$total_unread = FreshRSS_CategoryDAO::CountUnreads(
FreshRSS_Context::$categories, 1
);
2014-09-21 12:12:35 +02:00
2015-02-08 18:55:48 +01:00
FreshRSS_Context::_get(Minz_Request::param('get', 'a'));
FreshRSS_Context::$state = Minz_Request::param(
'state', FreshRSS_Context::$user_conf->default_state
);
$state_forced_by_user = Minz_Request::param('state', false) !== false;
if (FreshRSS_Context::$user_conf->default_view === 'adaptive' &&
FreshRSS_Context::$get_unread <= 0 &&
!FreshRSS_Context::isStateEnabled(FreshRSS_Entry::STATE_READ) &&
!$state_forced_by_user) {
FreshRSS_Context::$state |= FreshRSS_Entry::STATE_READ;
2014-09-21 12:12:35 +02:00
}
2015-02-08 18:55:48 +01:00
FreshRSS_Context::$search = Minz_Request::param('search', '');
FreshRSS_Context::$order = Minz_Request::param(
'order', FreshRSS_Context::$user_conf->sort_order
);
FreshRSS_Context::$number = Minz_Request::param(
'nb', FreshRSS_Context::$user_conf->posts_per_page
);
FreshRSS_Context::$first_id = Minz_Request::param('next', '');
2014-09-21 12:12:35 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This method returns a list of entries based on the Context object.
*/
private function listEntriesByContext() {
$entryDAO = FreshRSS_Factory::createEntryDao();
2014-09-27 10:10:43 +02:00
2015-02-08 18:55:48 +01:00
$get = FreshRSS_Context::currentGet(true);
if (count($get) > 1) {
$type = $get[0];
$id = $get[1];
} else {
$type = $get;
$id = '';
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
return $entryDAO->listWhere(
$type, $id, FreshRSS_Context::$state, FreshRSS_Context::$order,
FreshRSS_Context::$number + 1, FreshRSS_Context::$first_id,
FreshRSS_Context::$search
);
2014-07-23 15:52:50 +02:00
}
2014-09-27 10:10:43 +02:00
2015-02-08 18:55:48 +01:00
/**
* This action displays the about page of FreshRSS.
*/
public function aboutAction() {
Minz_View::prependTitle(_t('index.about.title') . ' · ');
}
2014-09-27 10:10:43 +02:00
2015-02-08 18:55:48 +01:00
/**
* This action displays logs of FreshRSS for the current user.
*/
public function logsAction() {
if (!FreshRSS_Auth::hasAccess()) {
Minz_Error::error(403);
2014-09-27 10:10:43 +02:00
}
2015-02-08 18:55:48 +01:00
Minz_View::prependTitle(_t('index.log.title') . ' · ');
2014-09-27 10:10:43 +02:00
if (Minz_Request::isPost()) {
2015-02-08 18:55:48 +01:00
FreshRSS_LogDAO::truncate();
}
2014-09-27 10:10:43 +02:00
2015-02-08 18:55:48 +01:00
$logs = FreshRSS_LogDAO::lines(); //TODO: ask only the necessary lines
2014-09-27 10:10:43 +02:00
2015-02-08 18:55:48 +01:00
//gestion pagination
$page = Minz_Request::param('page', 1);
$this->view->logsPaginator = new Minz_Paginator($logs);
$this->view->logsPaginator->_nbItemsPerPage(50);
$this->view->logsPaginator->_currentPage($page);
2014-09-27 10:10:43 +02:00
}
2014-07-23 15:52:50 +02:00
}