A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

264 lines
7.9 KiB

12 years ago
<?php
class configureController extends ActionController {
public function firstAction () {
if (login_is_conf ($this->view->conf) && !is_logged ()) {
Error::error (
403,
array ('error' => array ('Vous n\'avez pas le droit d\'accéder à cette page'))
);
}
}
12 years ago
public function categorizeAction () {
$catDAO = new CategoryDAO ();
$catDAO->checkDefault ();
if (Request::isPost ()) {
$cats = Request::param ('categories', array ());
$ids = Request::param ('ids', array ());
$newCat = trim (Request::param ('new_category', ''));
foreach ($cats as $key => $name) {
if (strlen ($name) > 0) {
$cat = new Category ($name);
$values = array (
'name' => $cat->name (),
'color' => $cat->color ()
);
$catDAO->updateCategory ($ids[$key], $values);
} elseif ($ids[$key] != '000000') {
$catDAO->deleteCategory ($ids[$key]);
}
}
if ($newCat != '') {
$cat = new Category ($newCat);
$values = array (
'id' => $cat->id (),
'name' => $cat->name (),
'color' => $cat->color ()
);
if ($catDAO->searchByName ($newCat) == false) {
$catDAO->addCategory ($values);
}
}
// notif
$notif = array (
'type' => 'good',
'content' => 'Les catégories ont été mises à jour'
);
Session::_param ('notification', $notif);
Request::forward (array ('c' => 'configure', 'a' => 'categorize'), true);
}
$this->view->categories = $catDAO->listCategories ();
$this->view->defaultCategory = $catDAO->getDefault ();
View::prependTitle ('Gestion des catégories - ');
12 years ago
}
public function feedAction () {
$catDAO = new CategoryDAO ();
$this->view->categories = $catDAO->listCategories ();
$feedDAO = new FeedDAO ();
$this->view->feeds = $feedDAO->listFeeds ();
$id = Request::param ('id');
if ($id == false && !empty ($this->view->feeds)) {
$id = current ($this->view->feeds)->id ();
}
$this->view->flux = false;
if ($id != false) {
$this->view->flux = $feedDAO->searchById ($id);
if (!$this->view->flux) {
Error::error (
404,
array ('error' => array ('La page que vous cherchez n\'existe pas'))
);
} else {
$catDAO = new CategoryDAO ();
$this->view->categories = $catDAO->listCategories ();
if (Request::isPost () && $this->view->flux) {
$cat = Request::param ('category', 0);
$path = Request::param ('path_entries', '');
$priority = Request::param ('priority', 0);
$values = array (
'category' => $cat,
'pathEntries' => $path,
'priority' => $priority
);
if ($feedDAO->updateFeed ($id, $values)) {
$this->view->flux->_category ($cat);
$notif = array (
'type' => 'good',
'content' => 'Le flux a été mis à jour'
);
} else {
$notif = array (
'type' => 'bad',
'content' => 'Une erreur est survenue lors de la mise à jour'
);
}
Session::_param ('notification', $notif);
Request::forward (array ('c' => 'configure', 'a' => 'feed', 'params' => array ('id' => $id)), true);
}
View::prependTitle ('Gestion des flux RSS - ' . $this->view->flux->name () . ' - ');
}
} else {
View::prependTitle ('Gestion des flux RSS - ');
}
12 years ago
}
12 years ago
public function displayAction () {
if (Request::isPost ()) {
$nb = Request::param ('posts_per_page', 10);
$view = Request::param ('default_view', 'all');
$display = Request::param ('display_posts', 'no');
$sort = Request::param ('sort_order', 'low_to_high');
$old = Request::param ('old_entries', 3);
$mail = Request::param ('mail_login', false);
$openArticle = Request::param ('mark_open_article', 'no');
$openSite = Request::param ('mark_open_site', 'no');
$openPage = Request::param ('mark_open_page', 'no');
$urlShaarli = Request::param ('shaarli', '');
12 years ago
$this->view->conf->_postsPerPage (intval ($nb));
$this->view->conf->_defaultView ($view);
$this->view->conf->_displayPosts ($display);
$this->view->conf->_sortOrder ($sort);
$this->view->conf->_oldEntries ($old);
$this->view->conf->_mailLogin ($mail);
$this->view->conf->_markWhen (array (
'article' => $openArticle,
'site' => $openSite,
'page' => $openPage,
));
$this->view->conf->_urlShaarli ($urlShaarli);
12 years ago
$values = array (
'posts_per_page' => $this->view->conf->postsPerPage (),
'default_view' => $this->view->conf->defaultView (),
'display_posts' => $this->view->conf->displayPosts (),
'sort_order' => $this->view->conf->sortOrder (),
'old_entries' => $this->view->conf->oldEntries (),
'mail_login' => $this->view->conf->mailLogin (),
'mark_when' => $this->view->conf->markWhen (),
'url_shaarli' => $this->view->conf->urlShaarli (),
12 years ago
);
12 years ago
$confDAO = new RSSConfigurationDAO ();
$confDAO->update ($values);
12 years ago
Session::_param ('conf', $this->view->conf);
Session::_param ('mail', $this->view->conf->mailLogin ());
// notif
$notif = array (
'type' => 'good',
'content' => 'La configuration a été mise à jour'
);
Session::_param ('notification', $notif);
Request::forward (array ('c' => 'configure', 'a' => 'display'), true);
12 years ago
}
View::prependTitle ('Gestion générale et affichage - ');
12 years ago
}
public function importExportAction () {
$this->view->req = Request::param ('q');
if ($this->view->req == 'export') {
View::_title ('feeds_opml.xml');
$this->view->_useLayout (false);
header('Content-Type: text/xml; charset=utf-8');
header('Content-disposition: attachment; filename=feeds_opml.xml');
$feedDAO = new FeedDAO ();
$catDAO = new CategoryDAO ();
$list = array ();
foreach ($catDAO->listCategories () as $key => $cat) {
$list[$key]['name'] = $cat->name ();
$list[$key]['feeds'] = $feedDAO->listByCategory ($cat->id ());
}
$this->view->categories = $list;
} elseif ($this->view->req == 'import' && Request::isPost ()) {
if ($_FILES['file']['error'] == 0) {
list ($categories, $feeds) = opml_import (file_get_contents ($_FILES['file']['tmp_name']));
Request::_param ('q', 'null');
Request::_param ('categories', $categories);
Request::_param ('feeds', $feeds);
Request::forward (array ('c' => 'feed', 'a' => 'massiveImport'));
}
}
$feedDAO = new FeedDAO ();
$this->view->feeds = $feedDAO->listFeeds ();
$this->view->flux = false;
View::prependTitle ('Importation et exportation OPML - ');
}
public function shortcutAction () {
$list_keys = array ('a', 'b', 'backspace', 'c', 'd', 'delete', 'down', 'e', 'end', 'enter',
'escape', 'f', 'g', 'h', 'i', 'insert', 'j', 'k', 'l', 'left',
'm', 'n', 'o', 'p', 'page_down', 'page_up', 'q', 'r', 'return', 'right',
's', 'space', 't', 'tab', 'u', 'up', 'v', 'w', 'x', 'y',
'z', '0', '1', '2', '3', '4', '5', '6', '7', '8',
'9', 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9',
'f10', 'f11', 'f12');
$this->view->list_keys = $list_keys;
$list_names = array ('mark_read', 'mark_favorite', 'go_website', 'next_entry',
'prev_entry', 'next_page', 'prev_page');
if (Request::isPost ()) {
$shortcuts = Request::param ('shortcuts');
$shortcuts_ok = array ();
foreach ($shortcuts as $key => $value) {
if (in_array ($key, $list_names)
&& in_array ($value, $list_keys)) {
$shortcuts_ok[$key] = $value;
}
}
$this->view->conf->_shortcuts ($shortcuts_ok);
$values = array (
'shortcuts' => $this->view->conf->shortcuts ()
);
$confDAO = new RSSConfigurationDAO ();
$confDAO->update ($values);
Session::_param ('conf', $this->view->conf);
// notif
$notif = array (
'type' => 'good',
'content' => 'Les raccourcis ont été mis à jour'
);
Session::_param ('notification', $notif);
Request::forward (array ('c' => 'configure', 'a' => 'shortcut'), true);
}
View::prependTitle ('Gestion des raccourcis - ');
}
12 years ago
}