configureController.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. <?php
  2. /**
  3. * Controller to handle every configuration options.
  4. */
  5. class FreshRSS_configure_Controller extends Minz_ActionController {
  6. /**
  7. * This action is called before every other action in that class. It is
  8. * the common boiler plate for every action. It is triggered by the
  9. * underlying framework.
  10. *
  11. * @todo see if the category default configuration is needed here or if
  12. * we can move it to the categorize action
  13. */
  14. public function firstAction() {
  15. if (!$this->view->loginOk) {
  16. Minz_Error::error(
  17. 403,
  18. array('error' => array(_t('access_denied')))
  19. );
  20. }
  21. $catDAO = new FreshRSS_CategoryDAO();
  22. $catDAO->checkDefault();
  23. }
  24. /**
  25. * This action handles the category configuration page
  26. *
  27. * It displays the category configuration page.
  28. * If this action is reached through a POST request, it loops through
  29. * every category to check for modification then add a new category if
  30. * needed then sends a notification to the user.
  31. * If a category name is emptied, the category is deleted and all
  32. * related feeds are moved to the default category. Related user queries
  33. * are deleted too.
  34. * If a category name is changed, it is updated.
  35. */
  36. public function categorizeAction() {
  37. $feedDAO = FreshRSS_Factory::createFeedDao();
  38. $catDAO = new FreshRSS_CategoryDAO();
  39. $defaultCategory = $catDAO->getDefault();
  40. $defaultId = $defaultCategory->id();
  41. if (Minz_Request::isPost()) {
  42. $cats = Minz_Request::param('categories', array());
  43. $ids = Minz_Request::param('ids', array());
  44. foreach ($cats as $key => $name) {
  45. if (strlen($name) > 0) {
  46. $cat = new FreshRSS_Category($name);
  47. $values = array(
  48. 'name' => $cat->name(),
  49. );
  50. $catDAO->updateCategory($ids[$key], $values);
  51. }
  52. }
  53. invalidateHttpCache();
  54. Minz_Request::good(_t('categories_updated'),
  55. array('c' => 'configure', 'a' => 'categorize'));
  56. }
  57. $this->view->categories = $catDAO->listCategories(false);
  58. $this->view->defaultCategory = $catDAO->getDefault();
  59. $this->view->feeds = $feedDAO->listFeeds();
  60. Minz_View::prependTitle(_t('categories_management') . ' · ');
  61. }
  62. /**
  63. * This action handles the feed configuration page.
  64. *
  65. * It displays the feed configuration page.
  66. * If this action is reached through a POST request, it stores all new
  67. * configuraiton values then sends a notification to the user.
  68. *
  69. * The options available on the page are:
  70. * - name
  71. * - description
  72. * - website URL
  73. * - feed URL
  74. * - category id (default: default category id)
  75. * - CSS path to article on website
  76. * - display in main stream (default: 0)
  77. * - HTTP authentication
  78. * - number of article to retain (default: -2)
  79. * - refresh frequency (default: -2)
  80. * Default values are empty strings unless specified.
  81. */
  82. public function feedAction() {
  83. $catDAO = new FreshRSS_CategoryDAO();
  84. $this->view->categories = $catDAO->listCategories(false);
  85. $feedDAO = FreshRSS_Factory::createFeedDao();
  86. $this->view->feeds = $feedDAO->listFeeds();
  87. $id = Minz_Request::param('id');
  88. if ($id == false && !empty($this->view->feeds)) {
  89. $id = current($this->view->feeds)->id();
  90. }
  91. $this->view->flux = false;
  92. if ($id != false) {
  93. $this->view->flux = $this->view->feeds[$id];
  94. if (!$this->view->flux) {
  95. Minz_Error::error(
  96. 404,
  97. array('error' => array(_t('page_not_found')))
  98. );
  99. } else {
  100. if (Minz_Request::isPost() && $this->view->flux) {
  101. $user = Minz_Request::param('http_user', '');
  102. $pass = Minz_Request::param('http_pass', '');
  103. $httpAuth = '';
  104. if ($user != '' || $pass != '') {
  105. $httpAuth = $user . ':' . $pass;
  106. }
  107. $cat = intval(Minz_Request::param('category', 0));
  108. $values = array(
  109. 'name' => Minz_Request::param('name', ''),
  110. 'description' => sanitizeHTML(Minz_Request::param('description', '', true)),
  111. 'website' => Minz_Request::param('website', ''),
  112. 'url' => Minz_Request::param('url', ''),
  113. 'category' => $cat,
  114. 'pathEntries' => Minz_Request::param('path_entries', ''),
  115. 'priority' => intval(Minz_Request::param('priority', 0)),
  116. 'httpAuth' => $httpAuth,
  117. 'keep_history' => intval(Minz_Request::param('keep_history', -2)),
  118. 'ttl' => intval(Minz_Request::param('ttl', -2)),
  119. );
  120. if ($feedDAO->updateFeed($id, $values)) {
  121. $this->view->flux->_category($cat);
  122. $this->view->flux->faviconPrepare();
  123. $notif = array(
  124. 'type' => 'good',
  125. 'content' => _t('feed_updated')
  126. );
  127. } else {
  128. $notif = array(
  129. 'type' => 'bad',
  130. 'content' => _t('error_occurred_update')
  131. );
  132. }
  133. invalidateHttpCache();
  134. Minz_Session::_param('notification', $notif);
  135. Minz_Request::forward(array('c' => 'configure', 'a' => 'feed', 'params' => array('id' => $id)), true);
  136. }
  137. Minz_View::prependTitle(_t('rss_feed_management') . ' — ' . $this->view->flux->name() . ' · ');
  138. }
  139. } else {
  140. Minz_View::prependTitle(_t('rss_feed_management') . ' · ');
  141. }
  142. }
  143. /**
  144. * This action handles the display configuration page.
  145. *
  146. * It displays the display configuration page.
  147. * If this action is reached through a POST request, it stores all new
  148. * configuration values then sends a notification to the user.
  149. *
  150. * The options available on the page are:
  151. * - language (default: en)
  152. * - theme (default: Origin)
  153. * - content width (default: thin)
  154. * - display of read action in header
  155. * - display of favorite action in header
  156. * - display of date in header
  157. * - display of open action in header
  158. * - display of read action in footer
  159. * - display of favorite action in footer
  160. * - display of sharing action in footer
  161. * - display of tags in footer
  162. * - display of date in footer
  163. * - display of open action in footer
  164. * - html5 notification timeout (default: 0)
  165. * Default values are false unless specified.
  166. */
  167. public function displayAction() {
  168. if (Minz_Request::isPost()) {
  169. $this->view->conf->_language(Minz_Request::param('language', 'en'));
  170. $this->view->conf->_theme(Minz_Request::param('theme', FreshRSS_Themes::$defaultTheme));
  171. $this->view->conf->_content_width(Minz_Request::param('content_width', 'thin'));
  172. $this->view->conf->_topline_read(Minz_Request::param('topline_read', false));
  173. $this->view->conf->_topline_favorite(Minz_Request::param('topline_favorite', false));
  174. $this->view->conf->_topline_date(Minz_Request::param('topline_date', false));
  175. $this->view->conf->_topline_link(Minz_Request::param('topline_link', false));
  176. $this->view->conf->_bottomline_read(Minz_Request::param('bottomline_read', false));
  177. $this->view->conf->_bottomline_favorite(Minz_Request::param('bottomline_favorite', false));
  178. $this->view->conf->_bottomline_sharing(Minz_Request::param('bottomline_sharing', false));
  179. $this->view->conf->_bottomline_tags(Minz_Request::param('bottomline_tags', false));
  180. $this->view->conf->_bottomline_date(Minz_Request::param('bottomline_date', false));
  181. $this->view->conf->_bottomline_link(Minz_Request::param('bottomline_link', false));
  182. $this->view->conf->_html5_notif_timeout(Minz_Request::param('html5_notif_timeout', 0));
  183. $this->view->conf->save();
  184. Minz_Session::_param('language', $this->view->conf->language);
  185. Minz_Translate::reset();
  186. invalidateHttpCache();
  187. Minz_Request::good(_t('configuration_updated'),
  188. array('c' => 'configure', 'a' => 'display'));
  189. }
  190. $this->view->themes = FreshRSS_Themes::get();
  191. Minz_View::prependTitle(_t('display_configuration') . ' · ');
  192. }
  193. /**
  194. * This action handles the reading configuration page.
  195. *
  196. * It displays the reading configuration page.
  197. * If this action is reached through a POST request, it stores all new
  198. * configuration values then sends a notification to the user.
  199. *
  200. * The options available on the page are:
  201. * - number of posts per page (default: 10)
  202. * - view mode (default: normal)
  203. * - default article view (default: all)
  204. * - load automatically articles
  205. * - display expanded articles
  206. * - display expanded categories
  207. * - hide categories and feeds without unread articles
  208. * - jump on next category or feed when marked as read
  209. * - image lazy loading
  210. * - stick open articles to the top
  211. * - display a confirmation when reading all articles
  212. * - article order (default: DESC)
  213. * - mark articles as read when:
  214. * - displayed
  215. * - opened on site
  216. * - scrolled
  217. * - received
  218. * Default values are false unless specified.
  219. */
  220. public function readingAction() {
  221. if (Minz_Request::isPost()) {
  222. $this->view->conf->_posts_per_page(Minz_Request::param('posts_per_page', 10));
  223. $this->view->conf->_view_mode(Minz_Request::param('view_mode', 'normal'));
  224. $this->view->conf->_default_view((int)Minz_Request::param('default_view', FreshRSS_Entry::STATE_ALL));
  225. $this->view->conf->_auto_load_more(Minz_Request::param('auto_load_more', false));
  226. $this->view->conf->_display_posts(Minz_Request::param('display_posts', false));
  227. $this->view->conf->_display_categories(Minz_Request::param('display_categories', false));
  228. $this->view->conf->_hide_read_feeds(Minz_Request::param('hide_read_feeds', false));
  229. $this->view->conf->_onread_jump_next(Minz_Request::param('onread_jump_next', false));
  230. $this->view->conf->_lazyload(Minz_Request::param('lazyload', false));
  231. $this->view->conf->_sticky_post(Minz_Request::param('sticky_post', false));
  232. $this->view->conf->_reading_confirm(Minz_Request::param('reading_confirm', false));
  233. $this->view->conf->_sort_order(Minz_Request::param('sort_order', 'DESC'));
  234. $this->view->conf->_mark_when(array(
  235. 'article' => Minz_Request::param('mark_open_article', false),
  236. 'site' => Minz_Request::param('mark_open_site', false),
  237. 'scroll' => Minz_Request::param('mark_scroll', false),
  238. 'reception' => Minz_Request::param('mark_upon_reception', false),
  239. ));
  240. $this->view->conf->save();
  241. Minz_Session::_param('language', $this->view->conf->language);
  242. Minz_Translate::reset();
  243. invalidateHttpCache();
  244. Minz_Request::good(_t('configuration_updated'),
  245. array('c' => 'configure', 'a' => 'reading'));
  246. }
  247. Minz_View::prependTitle(_t('reading_configuration') . ' · ');
  248. }
  249. /**
  250. * This action handles the sharing configuration page.
  251. *
  252. * It displays the sharing configuration page.
  253. * If this action is reached through a POST request, it stores all
  254. * configuration values then sends a notification to the user.
  255. */
  256. public function sharingAction() {
  257. if (Minz_Request::isPost()) {
  258. $params = Minz_Request::params();
  259. $this->view->conf->_sharing($params['share']);
  260. $this->view->conf->save();
  261. invalidateHttpCache();
  262. Minz_Request::good(_t('configuration_updated'),
  263. array('c' => 'configure', 'a' => 'sharing'));
  264. }
  265. Minz_View::prependTitle(_t('sharing') . ' · ');
  266. }
  267. /**
  268. * This action handles the shortcut configuration page.
  269. *
  270. * It displays the shortcut configuration page.
  271. * If this action is reached through a POST request, it stores all new
  272. * configuration values then sends a notification to the user.
  273. *
  274. * The authorized values for shortcuts are letters (a to z), numbers (0
  275. * to 9), function keys (f1 to f12), backspace, delete, down, end, enter,
  276. * escape, home, insert, left, page down, page up, return, right, space,
  277. * tab and up.
  278. */
  279. public function shortcutAction() {
  280. $list_keys = array('a', 'b', 'backspace', 'c', 'd', 'delete', 'down', 'e', 'end', 'enter',
  281. 'escape', 'f', 'g', 'h', 'home', 'i', 'insert', 'j', 'k', 'l', 'left',
  282. 'm', 'n', 'o', 'p', 'page_down', 'page_up', 'q', 'r', 'return', 'right',
  283. 's', 'space', 't', 'tab', 'u', 'up', 'v', 'w', 'x', 'y',
  284. 'z', 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9',
  285. 'f10', 'f11', 'f12');
  286. $this->view->list_keys = $list_keys;
  287. if (Minz_Request::isPost()) {
  288. $shortcuts = Minz_Request::param('shortcuts');
  289. $shortcuts_ok = array();
  290. foreach ($shortcuts as $key => $value) {
  291. if (in_array($value, $list_keys)) {
  292. $shortcuts_ok[$key] = $value;
  293. }
  294. }
  295. $this->view->conf->_shortcuts($shortcuts_ok);
  296. $this->view->conf->save();
  297. invalidateHttpCache();
  298. Minz_Request::good(_t('shortcuts_updated'),
  299. array('c' => 'configure', 'a' => 'shortcut'));
  300. }
  301. Minz_View::prependTitle(_t('shortcuts') . ' · ');
  302. }
  303. /**
  304. * This action display the user configuration page
  305. *
  306. * @todo move that action in the user controller
  307. */
  308. public function usersAction() {
  309. Minz_View::prependTitle(_t('users') . ' · ');
  310. }
  311. /**
  312. * This action handles the archive configuration page.
  313. *
  314. * It displays the archive configuration page.
  315. * If this action is reached through a POST request, it stores all new
  316. * configuration values then sends a notification to the user.
  317. *
  318. * The options available on that page are:
  319. * - duration to retain old article (default: 3)
  320. * - number of article to retain per feed (default: 0)
  321. * - refresh frequency (default: -2)
  322. *
  323. * @todo explain why the default value is -2 but this value does not
  324. * exist in the drop-down list
  325. */
  326. public function archivingAction() {
  327. if (Minz_Request::isPost()) {
  328. $this->view->conf->_old_entries(Minz_Request::param('old_entries', 3));
  329. $this->view->conf->_keep_history_default(Minz_Request::param('keep_history_default', 0));
  330. $this->view->conf->_ttl_default(Minz_Request::param('ttl_default', -2));
  331. $this->view->conf->save();
  332. invalidateHttpCache();
  333. Minz_Request::good(_t('configuration_updated'),
  334. array('c' => 'configure', 'a' => 'archiving'));
  335. }
  336. Minz_View::prependTitle(_t('archiving_configuration') . ' · ');
  337. $entryDAO = FreshRSS_Factory::createEntryDao();
  338. $this->view->nb_total = $entryDAO->count();
  339. $this->view->size_user = $entryDAO->size();
  340. if (Minz_Configuration::isAdmin(Minz_Session::param('currentUser', '_'))) {
  341. $this->view->size_total = $entryDAO->size(true);
  342. }
  343. }
  344. /**
  345. * This action handles the user queries configuration page.
  346. *
  347. * If this action is reached through a POST request, it stores all new
  348. * configuration values then sends a notification to the user then
  349. * redirect to the same page.
  350. * If this action is not reached through a POST request, it displays the
  351. * configuration page and verifies that every user query is runable by
  352. * checking if categories and feeds are still in use.
  353. */
  354. public function queriesAction() {
  355. if (Minz_Request::isPost()) {
  356. $queries = Minz_Request::param('queries', array());
  357. foreach ($queries as $key => $query) {
  358. if (!$query['name']) {
  359. $query['name'] = _t('query_number', $key + 1);
  360. }
  361. }
  362. $this->view->conf->_queries($queries);
  363. $this->view->conf->save();
  364. Minz_Request::good(_t('configuration_updated'),
  365. array('c' => 'configure', 'a' => 'queries'));
  366. } else {
  367. $this->view->query_get = array();
  368. $cat_dao = new FreshRSS_CategoryDAO();
  369. $feed_dao = FreshRSS_Factory::createFeedDao();
  370. foreach ($this->view->conf->queries as $key => $query) {
  371. if (!isset($query['get'])) {
  372. continue;
  373. }
  374. switch ($query['get'][0]) {
  375. case 'c':
  376. $category = $cat_dao->searchById(substr($query['get'], 2));
  377. $deprecated = true;
  378. $cat_name = '';
  379. if ($category) {
  380. $cat_name = $category->name();
  381. $deprecated = false;
  382. }
  383. $this->view->query_get[$key] = array(
  384. 'type' => 'category',
  385. 'name' => $cat_name,
  386. 'deprecated' => $deprecated,
  387. );
  388. break;
  389. case 'f':
  390. $feed = $feed_dao->searchById(substr($query['get'], 2));
  391. $deprecated = true;
  392. $feed_name = '';
  393. if ($feed) {
  394. $feed_name = $feed->name();
  395. $deprecated = false;
  396. }
  397. $this->view->query_get[$key] = array(
  398. 'type' => 'feed',
  399. 'name' => $feed_name,
  400. 'deprecated' => $deprecated,
  401. );
  402. break;
  403. case 's':
  404. $this->view->query_get[$key] = array(
  405. 'type' => 'favorite',
  406. 'name' => 'favorite',
  407. 'deprecated' => false,
  408. );
  409. break;
  410. case 'a':
  411. $this->view->query_get[$key] = array(
  412. 'type' => 'all',
  413. 'name' => 'all',
  414. 'deprecated' => false,
  415. );
  416. break;
  417. }
  418. }
  419. }
  420. Minz_View::prependTitle(_t('queries') . ' · ');
  421. }
  422. /**
  423. * This action handles the creation of a user query.
  424. *
  425. * It gets the GET parameters and stores them in the configuration query
  426. * storage. Before it is saved, the unwanted parameters are unset to keep
  427. * lean data.
  428. */
  429. public function addQueryAction() {
  430. $whitelist = array('get', 'order', 'name', 'search', 'state');
  431. $queries = $this->view->conf->queries;
  432. $query = Minz_Request::params();
  433. $query['name'] = _t('query_number', count($queries) + 1);
  434. foreach ($query as $key => $value) {
  435. if (!in_array($key, $whitelist)) {
  436. unset($query[$key]);
  437. }
  438. }
  439. if (!empty($query['state']) && $query['state'] & FreshRSS_Entry::STATE_STRICT) {
  440. $query['state'] -= FreshRSS_Entry::STATE_STRICT;
  441. }
  442. $queries[] = $query;
  443. $this->view->conf->_queries($queries);
  444. $this->view->conf->save();
  445. Minz_Request::good(_t('query_created', $query['name']),
  446. array('c' => 'configure', 'a' => 'queries'));
  447. }
  448. }