subscriptionController.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * Controller to handle subscription actions.
  5. */
  6. class FreshRSS_subscription_Controller extends FreshRSS_ActionController {
  7. /**
  8. * This action is called before every other action in that class. It is
  9. * the common boilerplate for every action. It is triggered by the
  10. * underlying framework.
  11. */
  12. #[\Override]
  13. public function firstAction(): void {
  14. if (!FreshRSS_Auth::hasAccess()) {
  15. Minz_Error::error(403);
  16. }
  17. $catDAO = FreshRSS_Factory::createCategoryDao();
  18. $catDAO->checkDefault();
  19. $this->view->categories = $catDAO->listSortedCategories(prePopulateFeeds: false, details: true);
  20. $signalError = false;
  21. foreach ($this->view->categories as $cat) {
  22. $feeds = $cat->feeds();
  23. foreach ($feeds as $feed) {
  24. if ($feed->inError()) {
  25. $signalError = true;
  26. }
  27. }
  28. if ($signalError) {
  29. break;
  30. }
  31. }
  32. $this->view->signalError = $signalError;
  33. }
  34. /**
  35. * This action handles the main subscription page
  36. *
  37. * It displays categories and associated feeds.
  38. */
  39. public function indexAction(): void {
  40. FreshRSS_View::appendScript(Minz_Url::display('/scripts/category.js?' . @filemtime(PUBLIC_PATH . '/scripts/category.js')));
  41. FreshRSS_View::appendScript(Minz_Url::display('/scripts/feed.js?' . @filemtime(PUBLIC_PATH . '/scripts/feed.js')));
  42. FreshRSS_View::prependTitle(_t('sub.title') . ' · ');
  43. $this->_csp([
  44. 'default-src' => "'self'",
  45. 'frame-ancestors' => FreshRSS_Context::systemConf()->attributeString('csp.frame-ancestors') ?? "'none'",
  46. 'img-src' => "'self' data: blob:",
  47. ]);
  48. $this->view->onlyFeedsWithError = Minz_Request::paramBoolean('error');
  49. $id = Minz_Request::paramInt('id');
  50. $this->view->displaySlider = false;
  51. if ($id !== 0) {
  52. $type = Minz_Request::paramString('type');
  53. $this->view->displaySlider = true;
  54. switch ($type) {
  55. case 'category':
  56. $categoryDAO = FreshRSS_Factory::createCategoryDao();
  57. $this->view->category = $categoryDAO->searchById($id);
  58. break;
  59. default:
  60. $feedDAO = FreshRSS_Factory::createFeedDao();
  61. $this->view->feed = $feedDAO->searchById($id) ?? FreshRSS_Feed::default();
  62. break;
  63. }
  64. }
  65. }
  66. /**
  67. * This action handles the feed configuration page.
  68. *
  69. * It displays the feed configuration page.
  70. * If this action is reached through a POST request, it stores all new
  71. * configuration values then sends a notification to the user.
  72. *
  73. * The options available on the page are:
  74. * - name
  75. * - description
  76. * - website URL
  77. * - feed URL
  78. * - category id (default: default category id)
  79. * - CSS path to article on website
  80. * - favicon
  81. * - display in main stream (default: 0)
  82. * - HTTP authentication
  83. * - number of article to retain (default: -2)
  84. * - refresh frequency (default: 0)
  85. * Default values are empty strings unless specified.
  86. */
  87. public function feedAction(): void {
  88. if (Minz_Request::paramBoolean('ajax')) {
  89. $this->view->_layout(null);
  90. } else {
  91. FreshRSS_View::appendScript(Minz_Url::display('/scripts/feed.js?' . @filemtime(PUBLIC_PATH . '/scripts/feed.js')));
  92. }
  93. $id = Minz_Request::paramInt('id');
  94. if ($id === 0) {
  95. Minz_Error::error(400);
  96. return;
  97. }
  98. $feedDAO = FreshRSS_Factory::createFeedDao();
  99. $feed = $feedDAO->searchById($id);
  100. if ($feed === null) {
  101. Minz_Error::error(404);
  102. return;
  103. }
  104. $this->view->feed = $feed;
  105. FreshRSS_View::prependTitle($feed->name() . ' · ' . _t('sub.title.feed_management') . ' · ');
  106. $this->_csp([
  107. 'default-src' => "'self'",
  108. 'frame-ancestors' => FreshRSS_Context::systemConf()->attributeString('csp.frame-ancestors') ?? "'none'",
  109. 'img-src' => "'self' data: blob:",
  110. ]);
  111. if (Minz_Request::isPost()) {
  112. $unicityCriteria = Minz_Request::paramString('unicityCriteria');
  113. if (in_array($unicityCriteria, ['id', '', null], strict: true)) {
  114. $unicityCriteria = null;
  115. }
  116. if ($unicityCriteria === null && $feed->attributeBoolean('hasBadGuids')) { // Legacy
  117. $unicityCriteria = 'link';
  118. }
  119. $feed->_attribute('hasBadGuids', null); // Remove legacy
  120. $feed->_attribute('unicityCriteria', $unicityCriteria);
  121. $feed->_attribute('unicityCriteriaForced', Minz_Request::paramBoolean('unicityCriteriaForced') ? true : null);
  122. $user = Minz_Request::paramString('http_user_feed' . $id);
  123. $pass = Minz_Request::paramString('http_pass_feed' . $id);
  124. $httpAuth = '';
  125. if ($user !== '' && $pass !== '') { //TODO: Sanitize
  126. $httpAuth = $user . ':' . $pass;
  127. }
  128. $feed->_ttl(Minz_Request::paramInt('ttl') ?: FreshRSS_Feed::TTL_DEFAULT);
  129. $feed->_mute(Minz_Request::paramBoolean('mute'));
  130. $feed->_attribute('read_upon_gone', Minz_Request::paramTernary('read_upon_gone'));
  131. $feed->_attribute('mark_updated_article_unread', Minz_Request::paramTernary('mark_updated_article_unread'));
  132. $feed->_attribute('read_upon_reception', Minz_Request::paramTernary('read_upon_reception'));
  133. $feed->_attribute('clear_cache', Minz_Request::paramTernary('clear_cache'));
  134. if (Minz_Request::hasParam('show_unread_count')) {
  135. $feed->_attribute('show_unread_count', Minz_Request::paramTernary('show_unread_count'));
  136. }
  137. $keep_max_n_unread = Minz_Request::paramTernary('keep_max_n_unread') === true ? Minz_Request::paramInt('keep_max_n_unread') : null;
  138. $feed->_attribute('keep_max_n_unread', $keep_max_n_unread >= 0 ? $keep_max_n_unread : null);
  139. $read_when_same_title_in_feed = Minz_Request::paramString('read_when_same_title_in_feed');
  140. if ($read_when_same_title_in_feed === '') {
  141. $read_when_same_title_in_feed = null;
  142. } else {
  143. $read_when_same_title_in_feed = (int)$read_when_same_title_in_feed;
  144. if ($read_when_same_title_in_feed <= 0) {
  145. $read_when_same_title_in_feed = false;
  146. }
  147. }
  148. $feed->_attribute('read_when_same_title_in_feed', $read_when_same_title_in_feed);
  149. $cookie = Minz_Request::paramString('curl_params_cookie', plaintext: true);
  150. $cookie_file = Minz_Request::paramBoolean('curl_params_cookiefile');
  151. $max_redirs = Minz_Request::paramInt('curl_params_redirects');
  152. $useragent = Minz_Request::paramString('curl_params_useragent', plaintext: true);
  153. $proxy_address = Minz_Request::paramString('curl_params', plaintext: true);
  154. $proxy_type = Minz_Request::paramIntNull('proxy_type');
  155. $request_method = Minz_Request::paramString('curl_method', plaintext: true);
  156. $request_fields = Minz_Request::paramString('curl_fields', plaintext: true);
  157. $headers = Minz_Request::paramTextToArray('http_headers', plaintext: true);
  158. $opts = [];
  159. if ($proxy_type !== null) {
  160. $opts[CURLOPT_PROXYTYPE] = $proxy_type;
  161. }
  162. if ($proxy_address !== '') {
  163. $opts[CURLOPT_PROXY] = $proxy_address;
  164. }
  165. if ($cookie !== '') {
  166. $opts[CURLOPT_COOKIE] = $cookie;
  167. }
  168. if ($cookie_file) {
  169. // Pass empty cookie file name to enable the libcurl cookie engine
  170. // without reading any existing cookie data.
  171. $opts[CURLOPT_COOKIEFILE] = '';
  172. }
  173. if ($max_redirs != 0) {
  174. $opts[CURLOPT_MAXREDIRS] = $max_redirs;
  175. $opts[CURLOPT_FOLLOWLOCATION] = 1;
  176. }
  177. if ($useragent !== '') {
  178. $opts[CURLOPT_USERAGENT] = $useragent;
  179. }
  180. if ($request_method === 'POST') {
  181. $opts[CURLOPT_POST] = true;
  182. if ($request_fields !== '') {
  183. $opts[CURLOPT_POSTFIELDS] = $request_fields;
  184. if (json_decode($request_fields, true) !== null) {
  185. $opts[CURLOPT_HTTPHEADER] = ['Content-Type: application/json'];
  186. }
  187. }
  188. }
  189. $headers = array_filter($headers, fn(string $header): bool => trim($header) !== '');
  190. if (!empty($headers)) {
  191. $opts[CURLOPT_HTTPHEADER] = array_merge($headers, $opts[CURLOPT_HTTPHEADER] ?? []);
  192. $opts[CURLOPT_HTTPHEADER] = array_unique($opts[CURLOPT_HTTPHEADER]);
  193. }
  194. $feed->_attribute('curl_params', empty($opts) ? null : $opts);
  195. $feed->_attribute('content_action', Minz_Request::paramString('content_action', true) ?: 'replace');
  196. $feed->_attribute('ssl_verify', Minz_Request::paramTernary('ssl_verify'));
  197. $timeout = Minz_Request::paramInt('timeout');
  198. $feed->_attribute('timeout', $timeout > 0 ? $timeout : null);
  199. if (Minz_Request::paramBoolean('use_default_purge_options')) {
  200. $feed->_attribute('archiving', null);
  201. } else {
  202. if (Minz_Request::paramBoolean('enable_keep_max')) {
  203. $keepMax = Minz_Request::paramInt('keep_max') ?: FreshRSS_Feed::ARCHIVING_RETENTION_COUNT_LIMIT;
  204. } else {
  205. $keepMax = false;
  206. }
  207. if (Minz_Request::paramBoolean('enable_keep_period')) {
  208. $keepPeriod = FreshRSS_Feed::ARCHIVING_RETENTION_PERIOD;
  209. if (is_numeric(Minz_Request::paramString('keep_period_count')) && preg_match('/^PT?1[YMWDH]$/', Minz_Request::paramString('keep_period_unit'))) {
  210. $keepPeriod = str_replace('1', Minz_Request::paramString('keep_period_count'), Minz_Request::paramString('keep_period_unit'));
  211. }
  212. } else {
  213. $keepPeriod = false;
  214. }
  215. $feed->_attribute('archiving', [
  216. 'keep_period' => $keepPeriod,
  217. 'keep_max' => $keepMax,
  218. 'keep_min' => Minz_Request::paramInt('keep_min'),
  219. 'keep_favourites' => Minz_Request::paramBoolean('keep_favourites'),
  220. 'keep_labels' => Minz_Request::paramBoolean('keep_labels'),
  221. 'keep_unreads' => Minz_Request::paramBoolean('keep_unreads'),
  222. ]);
  223. }
  224. $feed->_filtersAction('read', Minz_Request::paramTextToArray('filteractions_read', plaintext: true));
  225. $feed->_kind(Minz_Request::paramInt('feed_kind') ?: FreshRSS_Feed::KIND_RSS);
  226. if ($feed->kind() === FreshRSS_Feed::KIND_HTML_XPATH || $feed->kind() === FreshRSS_Feed::KIND_XML_XPATH) {
  227. $xPathSettings = [];
  228. if (Minz_Request::paramString('xPathItem') != '')
  229. $xPathSettings['item'] = Minz_Request::paramString('xPathItem', true);
  230. if (Minz_Request::paramString('xPathItemTitle') != '')
  231. $xPathSettings['itemTitle'] = Minz_Request::paramString('xPathItemTitle', true);
  232. if (Minz_Request::paramString('xPathItemContent') != '')
  233. $xPathSettings['itemContent'] = Minz_Request::paramString('xPathItemContent', true);
  234. if (Minz_Request::paramString('xPathItemUri') != '')
  235. $xPathSettings['itemUri'] = Minz_Request::paramString('xPathItemUri', true);
  236. if (Minz_Request::paramString('xPathItemAuthor') != '')
  237. $xPathSettings['itemAuthor'] = Minz_Request::paramString('xPathItemAuthor', true);
  238. if (Minz_Request::paramString('xPathItemTimestamp') != '')
  239. $xPathSettings['itemTimestamp'] = Minz_Request::paramString('xPathItemTimestamp', true);
  240. if (Minz_Request::paramString('xPathItemTimeFormat') != '')
  241. $xPathSettings['itemTimeFormat'] = Minz_Request::paramString('xPathItemTimeFormat', true);
  242. if (Minz_Request::paramString('xPathItemThumbnail') != '')
  243. $xPathSettings['itemThumbnail'] = Minz_Request::paramString('xPathItemThumbnail', true);
  244. if (Minz_Request::paramString('xPathItemCategories') != '')
  245. $xPathSettings['itemCategories'] = Minz_Request::paramString('xPathItemCategories', true);
  246. if (Minz_Request::paramString('xPathItemUid') != '')
  247. $xPathSettings['itemUid'] = Minz_Request::paramString('xPathItemUid', true);
  248. if (!empty($xPathSettings))
  249. $feed->_attribute('xpath', $xPathSettings);
  250. } elseif ($feed->kind() === FreshRSS_Feed::KIND_JSON_DOTNOTATION || $feed->kind() === FreshRSS_Feed::KIND_HTML_XPATH_JSON_DOTNOTATION) {
  251. $jsonSettings = [];
  252. if (Minz_Request::paramString('jsonFeedTitle') !== '') {
  253. $jsonSettings['feedTitle'] = Minz_Request::paramString('jsonFeedTitle', true);
  254. }
  255. if (Minz_Request::paramString('jsonItem') !== '') {
  256. $jsonSettings['item'] = Minz_Request::paramString('jsonItem', true);
  257. }
  258. if (Minz_Request::paramString('jsonItemTitle') !== '') {
  259. $jsonSettings['itemTitle'] = Minz_Request::paramString('jsonItemTitle', true);
  260. }
  261. if (Minz_Request::paramString('jsonItemContent') !== '') {
  262. $jsonSettings['itemContent'] = Minz_Request::paramString('jsonItemContent', true);
  263. }
  264. if (Minz_Request::paramString('jsonItemUri') !== '') {
  265. $jsonSettings['itemUri'] = Minz_Request::paramString('jsonItemUri', true);
  266. }
  267. if (Minz_Request::paramString('jsonItemAuthor') !== '') {
  268. $jsonSettings['itemAuthor'] = Minz_Request::paramString('jsonItemAuthor', true);
  269. }
  270. if (Minz_Request::paramString('jsonItemTimestamp') !== '') {
  271. $jsonSettings['itemTimestamp'] = Minz_Request::paramString('jsonItemTimestamp', true);
  272. }
  273. if (Minz_Request::paramString('jsonItemTimeFormat') !== '') {
  274. $jsonSettings['itemTimeFormat'] = Minz_Request::paramString('jsonItemTimeFormat', true);
  275. }
  276. if (Minz_Request::paramString('jsonItemThumbnail') !== '') {
  277. $jsonSettings['itemThumbnail'] = Minz_Request::paramString('jsonItemThumbnail', true);
  278. }
  279. if (Minz_Request::paramString('jsonItemCategories') !== '') {
  280. $jsonSettings['itemCategories'] = Minz_Request::paramString('jsonItemCategories', true);
  281. }
  282. if (Minz_Request::paramString('jsonItemUid') !== '') {
  283. $jsonSettings['itemUid'] = Minz_Request::paramString('jsonItemUid', true);
  284. }
  285. if (!empty($jsonSettings)) {
  286. $feed->_attribute('json_dotnotation', $jsonSettings);
  287. }
  288. if (Minz_Request::paramString('xPathToJson', plaintext: true) !== '') {
  289. $feed->_attribute('xPathToJson', Minz_Request::paramString('xPathToJson', plaintext: true));
  290. }
  291. }
  292. $conditions = Minz_Request::paramTextToArray('path_entries_conditions', plaintext: true);
  293. $conditions = array_filter($conditions, fn(string $condition): bool => trim($condition) !== '');
  294. $feed->_attribute('path_entries_conditions', empty($conditions) ? null : $conditions);
  295. $feed->_attribute('path_entries_filter', Minz_Request::paramString('path_entries_filter', true));
  296. // @phpstan-ignore offsetAccess.nonOffsetAccessible
  297. $favicon_path = isset($_FILES['newFavicon']) ? $_FILES['newFavicon']['tmp_name'] : '';
  298. // @phpstan-ignore offsetAccess.nonOffsetAccessible
  299. $favicon_size = isset($_FILES['newFavicon']) ? $_FILES['newFavicon']['size'] : 0;
  300. $favicon_uploaded = $favicon_path !== '';
  301. $resetFavicon = Minz_Request::paramBoolean('resetFavicon');
  302. if ($resetFavicon) {
  303. $feed->resetCustomFavicon();
  304. }
  305. $defaultSortOrder = Minz_Request::paramString('defaultSortOrder', plaintext: true);
  306. if (str_ends_with($defaultSortOrder, '_asc')) {
  307. $feed->_attribute('defaultOrder', 'ASC');
  308. $defaultSortOrder = substr($defaultSortOrder, 0, -strlen('_asc'));
  309. } elseif (str_ends_with($defaultSortOrder, '_desc')) {
  310. $feed->_attribute('defaultOrder', 'DESC');
  311. $defaultSortOrder = substr($defaultSortOrder, 0, -strlen('_desc'));
  312. } else {
  313. $feed->_attribute('defaultOrder');
  314. }
  315. if (in_array($defaultSortOrder, ['id', 'date', 'link', 'title', 'length', 'rand'], true)) {
  316. $feed->_attribute('defaultSort', $defaultSortOrder);
  317. } else {
  318. $feed->_attribute('defaultSort');
  319. }
  320. $values = [
  321. 'name' => Minz_Request::paramString('name'),
  322. 'kind' => $feed->kind(),
  323. 'description' => FreshRSS_SimplePieCustom::sanitizeHTML(Minz_Request::paramString('description', true)),
  324. 'website' => FreshRSS_http_Util::checkUrl(Minz_Request::paramString('website')) ?: '',
  325. 'url' => FreshRSS_http_Util::checkUrl(Minz_Request::paramString('url')) ?: '',
  326. 'category' => Minz_Request::paramInt('category'),
  327. 'pathEntries' => Minz_Request::paramString('path_entries'),
  328. 'priority' => Minz_Request::paramTernary('priority') === null ? FreshRSS_Feed::PRIORITY_MAIN_STREAM : Minz_Request::paramInt('priority'),
  329. 'httpAuth' => $httpAuth,
  330. 'ttl' => $feed->ttl(true),
  331. 'attributes' => $feed->attributes(),
  332. ];
  333. invalidateHttpCache();
  334. $from = Minz_Request::paramString('from');
  335. switch ($from) {
  336. case 'stats':
  337. $url_redirect = ['c' => 'stats', 'a' => 'idle', 'params' => ['id' => $id, 'from' => 'stats']];
  338. break;
  339. case 'normal':
  340. case 'reader':
  341. $get = Minz_Request::paramString('get');
  342. if ($get !== '') {
  343. $url_redirect = ['c' => 'index', 'a' => $from, 'params' => ['id' => $id, 'get' => $get]];
  344. } else {
  345. $url_redirect = ['c' => 'index', 'a' => $from, 'params' => ['id' => $id]];
  346. }
  347. break;
  348. case 'index':
  349. $url_redirect = ['c' => 'subscription', 'params' => ['id' => $id, 'error' => Minz_Request::paramBoolean('error') ? 1 : 0]];
  350. break;
  351. default:
  352. $url_redirect = ['c' => 'subscription', 'a' => 'feed', 'params' => ['id' => $id]];
  353. }
  354. if ($favicon_uploaded && !$resetFavicon) {
  355. $max_size = FreshRSS_Context::systemConf()->limits['max_favicon_upload_size'];
  356. if ($favicon_size > $max_size) {
  357. Minz_Request::bad(_t('feedback.sub.feed.favicon.too_large', format_bytes($max_size)), $url_redirect);
  358. return;
  359. }
  360. try {
  361. $feed->setCustomFavicon(tmpPath: is_string($favicon_path) ? $favicon_path : '', values: $values);
  362. } catch (FreshRSS_UnsupportedImageFormat_Exception $_) {
  363. Minz_Request::bad(_t('feedback.sub.feed.favicon.unsupported_format'), $url_redirect);
  364. return;
  365. } catch (FreshRSS_Feed_Exception $_) {
  366. Minz_Request::bad(_t('feedback.sub.feed.error'), $url_redirect);
  367. return;
  368. }
  369. Minz_Request::good(
  370. _t('feedback.sub.feed.updated'),
  371. $url_redirect,
  372. showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
  373. );
  374. } elseif ($values['url'] != '' && $feedDAO->updateFeed($id, $values) !== false) {
  375. $feed->_categoryId($values['category']);
  376. // update url and website values for faviconPrepare
  377. $feed->_url($values['url'], false);
  378. $feed->_website($values['website'], false);
  379. $feed->faviconPrepare();
  380. Minz_Request::good(
  381. _t('feedback.sub.feed.updated'),
  382. $url_redirect,
  383. showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
  384. );
  385. } else {
  386. if ($values['url'] == '') {
  387. Minz_Log::warning('Invalid feed URL!');
  388. }
  389. Minz_Request::bad(_t('feedback.sub.feed.error'), $url_redirect);
  390. }
  391. }
  392. }
  393. public function viewFilterAction(): void {
  394. $id = Minz_Request::paramInt('id');
  395. if ($id === 0) {
  396. Minz_Error::error(400);
  397. return;
  398. }
  399. $filteractions = Minz_Request::paramTextToArray('filteractions_read', plaintext: true);
  400. $filteractions = array_map(fn(string $action): string => trim($action), $filteractions);
  401. $filteractions = array_filter($filteractions, fn(string $action): bool => $action !== '');
  402. $actionsSearch = new FreshRSS_BooleanSearch('', operator: 'AND');
  403. foreach ($filteractions as $action) {
  404. $actionSearch = new FreshRSS_BooleanSearch($action, operator: 'OR');
  405. if ($actionSearch->toString() === '') {
  406. continue;
  407. }
  408. $actionsSearch->add($actionSearch);
  409. }
  410. $search = new FreshRSS_BooleanSearch('');
  411. $search->add(new FreshRSS_Search("f:$id"));
  412. $search->add($actionsSearch);
  413. Minz_Request::forward([
  414. 'c' => 'index',
  415. 'a' => 'index',
  416. 'params' => [
  417. 'search' => $search->toString(),
  418. ],
  419. ], redirect: true);
  420. }
  421. /**
  422. * This action displays the bookmarklet page.
  423. */
  424. public function bookmarkletAction(): void {
  425. FreshRSS_View::prependTitle(_t('sub.title.subscription_tools') . ' . ');
  426. }
  427. /**
  428. * This action displays the page to add a new feed
  429. */
  430. public function addAction(): void {
  431. FreshRSS_View::appendScript(Minz_Url::display('/scripts/feed.js?' . @filemtime(PUBLIC_PATH . '/scripts/feed.js')));
  432. FreshRSS_View::prependTitle(_t('sub.title.add') . ' . ');
  433. }
  434. }