lib_rss.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. <?php
  2. if (version_compare(PHP_VERSION, FRESHRSS_MIN_PHP_VERSION, '<')) {
  3. die(sprintf('FreshRSS error: FreshRSS requires PHP %s+!', FRESHRSS_MIN_PHP_VERSION));
  4. }
  5. if (!function_exists('mb_strcut')) {
  6. function mb_strcut($str, $start, $length = null, $encoding = 'UTF-8') {
  7. return substr($str, $start, $length);
  8. }
  9. }
  10. // @phpstan-ignore-next-line
  11. if (COPY_SYSLOG_TO_STDERR) {
  12. openlog('FreshRSS', LOG_CONS | LOG_ODELAY | LOG_PID | LOG_PERROR, LOG_USER);
  13. } else {
  14. openlog('FreshRSS', LOG_CONS | LOG_ODELAY | LOG_PID, LOG_USER);
  15. }
  16. /**
  17. * Build a directory path by concatenating a list of directory names.
  18. *
  19. * @param string ...$path_parts a list of directory names
  20. * @return string corresponding to the final pathname
  21. */
  22. function join_path(...$path_parts): string {
  23. return join(DIRECTORY_SEPARATOR, $path_parts);
  24. }
  25. //<Auto-loading>
  26. function classAutoloader($class) {
  27. if (strpos($class, 'FreshRSS') === 0) {
  28. $components = explode('_', $class);
  29. switch (count($components)) {
  30. case 1:
  31. include(APP_PATH . '/' . $components[0] . '.php');
  32. return;
  33. case 2:
  34. include(APP_PATH . '/Models/' . $components[1] . '.php');
  35. return;
  36. case 3: //Controllers, Exceptions
  37. include(APP_PATH . '/' . $components[2] . 's/' . $components[1] . $components[2] . '.php');
  38. return;
  39. }
  40. } elseif (strpos($class, 'Minz') === 0) {
  41. include(LIB_PATH . '/' . str_replace('_', '/', $class) . '.php');
  42. } elseif (strpos($class, 'SimplePie') === 0) {
  43. include(LIB_PATH . '/SimplePie/' . str_replace('_', '/', $class) . '.php');
  44. } elseif (strpos($class, 'PHPMailer') === 0) {
  45. include(LIB_PATH . '/' . str_replace('\\', '/', $class) . '.php');
  46. }
  47. }
  48. spl_autoload_register('classAutoloader');
  49. //</Auto-loading>
  50. /**
  51. * @param string $url
  52. * @return string
  53. */
  54. function idn_to_puny($url) {
  55. if (function_exists('idn_to_ascii')) {
  56. $idn = parse_url($url, PHP_URL_HOST);
  57. if ($idn != '') {
  58. // https://wiki.php.net/rfc/deprecate-and-remove-intl_idna_variant_2003
  59. if (defined('INTL_IDNA_VARIANT_UTS46')) {
  60. $puny = idn_to_ascii($idn, IDNA_DEFAULT, INTL_IDNA_VARIANT_UTS46);
  61. } elseif (defined('INTL_IDNA_VARIANT_2003')) {
  62. $puny = idn_to_ascii($idn, IDNA_DEFAULT, INTL_IDNA_VARIANT_2003);
  63. } else {
  64. $puny = idn_to_ascii($idn);
  65. }
  66. $pos = strpos($url, $idn);
  67. if ($puny != '' && $pos !== false) {
  68. $url = substr_replace($url, $puny, $pos, strlen($idn));
  69. }
  70. }
  71. }
  72. return $url;
  73. }
  74. /**
  75. * @param string $url
  76. * @param bool $fixScheme
  77. * @return string|false
  78. */
  79. function checkUrl($url, $fixScheme = true) {
  80. $url = trim($url);
  81. if ($url == '') {
  82. return '';
  83. }
  84. if ($fixScheme && !preg_match('#^https?://#i', $url)) {
  85. $url = 'https://' . ltrim($url, '/');
  86. }
  87. $url = idn_to_puny($url); //PHP bug #53474 IDN
  88. $urlRelaxed = str_replace('_', 'z', $url); //PHP discussion #64948 Underscore
  89. if (filter_var($urlRelaxed, FILTER_VALIDATE_URL)) {
  90. return $url;
  91. } else {
  92. return false;
  93. }
  94. }
  95. /**
  96. * @param string $text
  97. * @return string
  98. */
  99. function safe_ascii($text) {
  100. return filter_var($text, FILTER_DEFAULT, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH);
  101. }
  102. if (function_exists('mb_convert_encoding')) {
  103. /**
  104. * @param string $text
  105. * @return string
  106. */
  107. function safe_utf8($text) {
  108. return mb_convert_encoding($text, 'UTF-8', 'UTF-8');
  109. }
  110. } elseif (function_exists('iconv')) {
  111. /**
  112. * @param string $text
  113. * @return string
  114. */
  115. function safe_utf8($text) {
  116. return iconv('UTF-8', 'UTF-8//IGNORE', $text);
  117. }
  118. } else {
  119. /**
  120. * @param string $text
  121. * @return string
  122. */
  123. function safe_utf8($text) {
  124. return $text;
  125. }
  126. }
  127. /**
  128. * @param string $text
  129. * @param bool $extended
  130. * @return string
  131. */
  132. function escapeToUnicodeAlternative($text, $extended = true) {
  133. $text = htmlspecialchars_decode($text, ENT_QUOTES);
  134. //Problematic characters
  135. $problem = array('&', '<', '>');
  136. //Use their fullwidth Unicode form instead:
  137. $replace = array('&', '<', '>');
  138. // https://raw.githubusercontent.com/mihaip/google-reader-api/master/wiki/StreamId.wiki
  139. if ($extended) {
  140. $problem += array("'", '"', '^', '?', '\\', '/', ',', ';');
  141. $replace += array("’", '"', '^', '?', '\', '/', ',', ';');
  142. }
  143. return trim(str_replace($problem, $replace, $text));
  144. }
  145. function format_number($n, $precision = 0) {
  146. // number_format does not seem to be Unicode-compatible
  147. return str_replace(' ', ' ', // Thin non-breaking space
  148. number_format($n, $precision, '.', ' ')
  149. );
  150. }
  151. function format_bytes($bytes, $precision = 2, $system = 'IEC') {
  152. if ($system === 'IEC') {
  153. $base = 1024;
  154. $units = array('B', 'KiB', 'MiB', 'GiB', 'TiB');
  155. } elseif ($system === 'SI') {
  156. $base = 1000;
  157. $units = array('B', 'KB', 'MB', 'GB', 'TB');
  158. } else {
  159. return format_number($bytes, $precision);
  160. }
  161. $bytes = max(intval($bytes), 0);
  162. $pow = $bytes === 0 ? 0 : floor(log($bytes) / log($base));
  163. $pow = min($pow, count($units) - 1);
  164. $bytes /= pow($base, $pow);
  165. return format_number($bytes, $precision) . ' ' . $units[$pow];
  166. }
  167. function timestamptodate ($t, $hour = true) {
  168. $month = _t('gen.date.' . date('M', $t));
  169. if ($hour) {
  170. $date = _t('gen.date.format_date_hour', $month);
  171. } else {
  172. $date = _t('gen.date.format_date', $month);
  173. }
  174. return @date ($date, $t);
  175. }
  176. /**
  177. * @param string $text
  178. * @return string
  179. */
  180. function html_only_entity_decode($text) {
  181. static $htmlEntitiesOnly = null;
  182. if ($htmlEntitiesOnly === null) {
  183. $htmlEntitiesOnly = array_flip(array_diff(
  184. get_html_translation_table(HTML_ENTITIES, ENT_NOQUOTES, 'UTF-8'), //Decode HTML entities
  185. get_html_translation_table(HTML_SPECIALCHARS, ENT_NOQUOTES, 'UTF-8') //Preserve XML entities
  186. ));
  187. }
  188. return $text == '' ? '' : strtr($text, $htmlEntitiesOnly);
  189. }
  190. /**
  191. * @param array<string,mixed> $attributes
  192. * @return SimplePie
  193. */
  194. function customSimplePie($attributes = array()) {
  195. $limits = FreshRSS_Context::$system_conf->limits;
  196. $simplePie = new SimplePie();
  197. $simplePie->set_useragent(FRESHRSS_USERAGENT);
  198. $simplePie->set_syslog(FreshRSS_Context::$system_conf->simplepie_syslog_enabled);
  199. $simplePie->set_cache_name_function('sha1');
  200. $simplePie->set_cache_location(CACHE_PATH);
  201. $simplePie->set_cache_duration($limits['cache_duration']);
  202. $feed_timeout = empty($attributes['timeout']) ? 0 : intval($attributes['timeout']);
  203. $simplePie->set_timeout($feed_timeout > 0 ? $feed_timeout : $limits['timeout']);
  204. $curl_options = FreshRSS_Context::$system_conf->curl_options;
  205. if (isset($attributes['ssl_verify'])) {
  206. $curl_options[CURLOPT_SSL_VERIFYHOST] = $attributes['ssl_verify'] ? 2 : 0;
  207. $curl_options[CURLOPT_SSL_VERIFYPEER] = $attributes['ssl_verify'] ? true : false;
  208. if (!$attributes['ssl_verify']) {
  209. $curl_options[CURLOPT_SSL_CIPHER_LIST] = 'DEFAULT@SECLEVEL=1';
  210. }
  211. }
  212. if (!empty($attributes['curl_params']) && is_array($attributes['curl_params'])) {
  213. foreach ($attributes['curl_params'] as $co => $v) {
  214. $curl_options[$co] = $v;
  215. }
  216. }
  217. $simplePie->set_curl_options($curl_options);
  218. $simplePie->strip_comments(true);
  219. $simplePie->strip_htmltags(array(
  220. 'base', 'blink', 'body', 'doctype', 'embed',
  221. 'font', 'form', 'frame', 'frameset', 'html',
  222. 'link', 'input', 'marquee', 'meta', 'noscript',
  223. 'object', 'param', 'plaintext', 'script', 'style',
  224. 'svg', //TODO: Support SVG after sanitizing and URL rewriting of xlink:href
  225. ));
  226. $simplePie->strip_attributes(array_merge($simplePie->strip_attributes, array(
  227. 'autoplay', 'class', 'onload', 'onunload', 'onclick', 'ondblclick', 'onmousedown', 'onmouseup',
  228. 'onmouseover', 'onmousemove', 'onmouseout', 'onfocus', 'onblur',
  229. 'onkeypress', 'onkeydown', 'onkeyup', 'onselect', 'onchange', 'seamless', 'sizes', 'srcset')));
  230. $simplePie->add_attributes(array(
  231. 'audio' => array('controls' => 'controls', 'preload' => 'none'),
  232. 'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'),
  233. 'video' => array('controls' => 'controls', 'preload' => 'none'),
  234. ));
  235. $simplePie->set_url_replacements(array(
  236. 'a' => 'href',
  237. 'area' => 'href',
  238. 'audio' => 'src',
  239. 'blockquote' => 'cite',
  240. 'del' => 'cite',
  241. 'form' => 'action',
  242. 'iframe' => 'src',
  243. 'img' => array(
  244. 'longdesc',
  245. 'src'
  246. ),
  247. 'input' => 'src',
  248. 'ins' => 'cite',
  249. 'q' => 'cite',
  250. 'source' => 'src',
  251. 'track' => 'src',
  252. 'video' => array(
  253. 'poster',
  254. 'src',
  255. ),
  256. ));
  257. $https_domains = array();
  258. $force = @file(FRESHRSS_PATH . '/force-https.default.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
  259. if (is_array($force)) {
  260. $https_domains = array_merge($https_domains, $force);
  261. }
  262. $force = @file(DATA_PATH . '/force-https.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
  263. if (is_array($force)) {
  264. $https_domains = array_merge($https_domains, $force);
  265. }
  266. $simplePie->set_https_domains($https_domains);
  267. return $simplePie;
  268. }
  269. function sanitizeHTML($data, $base = '', $maxLength = false) {
  270. if (!is_string($data) || ($maxLength !== false && $maxLength <= 0)) {
  271. return '';
  272. }
  273. if ($maxLength !== false) {
  274. $data = mb_strcut($data, 0, $maxLength, 'UTF-8');
  275. }
  276. static $simplePie = null;
  277. if ($simplePie == null) {
  278. $simplePie = customSimplePie();
  279. $simplePie->init();
  280. }
  281. $result = html_only_entity_decode($simplePie->sanitize->sanitize($data, SIMPLEPIE_CONSTRUCT_HTML, $base));
  282. if ($maxLength !== false && strlen($result) > $maxLength) {
  283. //Sanitizing has made the result too long so try again shorter
  284. $data = mb_strcut($result, 0, (2 * $maxLength) - strlen($result) - 2, 'UTF-8');
  285. return sanitizeHTML($data, $base, $maxLength);
  286. }
  287. return $result;
  288. }
  289. /**
  290. * Validate an email address, supports internationalized addresses.
  291. *
  292. * @param string $email The address to validate
  293. *
  294. * @return bool true if email is valid, else false
  295. */
  296. function validateEmailAddress($email) {
  297. $mailer = new PHPMailer\PHPMailer\PHPMailer();
  298. $mailer->CharSet = 'utf-8';
  299. $punyemail = $mailer->punyencodeAddress($email);
  300. return PHPMailer\PHPMailer\PHPMailer::validateAddress($punyemail, 'html5');
  301. }
  302. /**
  303. * Add support of image lazy loading
  304. * Move content from src attribute to data-original
  305. * @param string $content is the text we want to parse
  306. */
  307. function lazyimg($content) {
  308. return preg_replace(
  309. '/<((?:img|iframe)[^>]+?)src=[\'"]([^"\']+)[\'"]([^>]*)>/i',
  310. '<$1src="' . Minz_Url::display('/themes/icons/grey.gif') . '" data-original="$2"$3>',
  311. $content
  312. );
  313. }
  314. /**
  315. * @return string
  316. */
  317. function uTimeString() {
  318. $t = @gettimeofday();
  319. return $t['sec'] . str_pad('' . $t['usec'], 6, '0', STR_PAD_LEFT);
  320. }
  321. function invalidateHttpCache($username = '') {
  322. if (!FreshRSS_user_Controller::checkUsername($username)) {
  323. Minz_Session::_param('touch', uTimeString());
  324. $username = Minz_Session::param('currentUser', '_');
  325. }
  326. $ok = @touch(DATA_PATH . '/users/' . $username . '/log.txt');
  327. //if (!$ok) {
  328. //TODO: Display notification error on front-end
  329. //}
  330. return $ok;
  331. }
  332. /**
  333. * @return array<string>
  334. */
  335. function listUsers() {
  336. $final_list = array();
  337. $base_path = join_path(DATA_PATH, 'users');
  338. $dir_list = array_values(array_diff(
  339. scandir($base_path),
  340. array('..', '.', '_')
  341. ));
  342. foreach ($dir_list as $file) {
  343. if ($file[0] !== '.' && is_dir(join_path($base_path, $file)) && file_exists(join_path($base_path, $file, 'config.php'))) {
  344. $final_list[] = $file;
  345. }
  346. }
  347. return $final_list;
  348. }
  349. /**
  350. * Return if the maximum number of registrations has been reached.
  351. *
  352. * Note a max_regstrations of 0 means there is no limit.
  353. *
  354. * @return boolean true if number of users >= max registrations, false else.
  355. */
  356. function max_registrations_reached() {
  357. $limit_registrations = FreshRSS_Context::$system_conf->limits['max_registrations'];
  358. $number_accounts = count(listUsers());
  359. return $limit_registrations > 0 && $number_accounts >= $limit_registrations;
  360. }
  361. /**
  362. * Register and return the configuration for a given user.
  363. *
  364. * Note this function has been created to generate temporary configuration
  365. * objects. If you need a long-time configuration, please don't use this function.
  366. *
  367. * @param string $username the name of the user of which we want the configuration.
  368. * @return FreshRSS_UserConfiguration|null object, or null if the configuration cannot be loaded.
  369. */
  370. function get_user_configuration($username) {
  371. if (!FreshRSS_user_Controller::checkUsername($username)) {
  372. return null;
  373. }
  374. $namespace = 'user_' . $username;
  375. try {
  376. Minz_Configuration::register($namespace,
  377. USERS_PATH . '/' . $username . '/config.php',
  378. FRESHRSS_PATH . '/config-user.default.php');
  379. } catch (Minz_ConfigurationNamespaceException $e) {
  380. // namespace already exists, do nothing.
  381. Minz_Log::warning($e->getMessage(), USERS_PATH . '/_/log.txt');
  382. } catch (Minz_FileNotExistException $e) {
  383. Minz_Log::warning($e->getMessage(), USERS_PATH . '/_/log.txt');
  384. return null;
  385. }
  386. /**
  387. * @var FreshRSS_UserConfiguration $user_conf
  388. */
  389. $user_conf = Minz_Configuration::get($namespace);
  390. return $user_conf;
  391. }
  392. /**
  393. * @return string
  394. */
  395. function httpAuthUser() {
  396. if (!empty($_SERVER['REMOTE_USER'])) {
  397. return $_SERVER['REMOTE_USER'];
  398. } elseif (!empty($_SERVER['REDIRECT_REMOTE_USER'])) {
  399. return $_SERVER['REDIRECT_REMOTE_USER'];
  400. } elseif (!empty($_SERVER['HTTP_X_WEBAUTH_USER'])) {
  401. return $_SERVER['HTTP_X_WEBAUTH_USER'];
  402. }
  403. return '';
  404. }
  405. /**
  406. * @return bool
  407. */
  408. function cryptAvailable() {
  409. try {
  410. $hash = '$2y$04$usesomesillystringfore7hnbRJHxXVLeakoG8K30oukPsA.ztMG';
  411. return $hash === @crypt('password', $hash);
  412. } catch (Exception $e) {
  413. Minz_Log::warning($e->getMessage());
  414. }
  415. return false;
  416. }
  417. /**
  418. * Check PHP and its extensions are well-installed.
  419. *
  420. * @return array<string,bool> of tested values.
  421. */
  422. function check_install_php() {
  423. $pdo_mysql = extension_loaded('pdo_mysql');
  424. $pdo_pgsql = extension_loaded('pdo_pgsql');
  425. $pdo_sqlite = extension_loaded('pdo_sqlite');
  426. return array(
  427. 'php' => version_compare(PHP_VERSION, FRESHRSS_MIN_PHP_VERSION) >= 0,
  428. 'curl' => extension_loaded('curl'),
  429. 'pdo' => $pdo_mysql || $pdo_sqlite || $pdo_pgsql,
  430. 'pcre' => extension_loaded('pcre'),
  431. 'ctype' => extension_loaded('ctype'),
  432. 'fileinfo' => extension_loaded('fileinfo'),
  433. 'dom' => class_exists('DOMDocument'),
  434. 'json' => extension_loaded('json'),
  435. 'mbstring' => extension_loaded('mbstring'),
  436. 'zip' => extension_loaded('zip'),
  437. );
  438. }
  439. /**
  440. * Check different data files and directories exist.
  441. *
  442. * @return array<string,bool> of tested values.
  443. */
  444. function check_install_files() {
  445. return array(
  446. // @phpstan-ignore-next-line
  447. 'data' => DATA_PATH && is_writable(DATA_PATH),
  448. // @phpstan-ignore-next-line
  449. 'cache' => CACHE_PATH && is_writable(CACHE_PATH),
  450. // @phpstan-ignore-next-line
  451. 'users' => USERS_PATH && is_writable(USERS_PATH),
  452. 'favicons' => is_writable(DATA_PATH . '/favicons'),
  453. 'tokens' => is_writable(DATA_PATH . '/tokens'),
  454. );
  455. }
  456. /**
  457. * Check database is well-installed.
  458. *
  459. * @return array<string,bool> of tested values.
  460. */
  461. function check_install_database() {
  462. $status = array(
  463. 'connection' => true,
  464. 'tables' => false,
  465. 'categories' => false,
  466. 'feeds' => false,
  467. 'entries' => false,
  468. 'entrytmp' => false,
  469. 'tag' => false,
  470. 'entrytag' => false,
  471. );
  472. try {
  473. $dbDAO = FreshRSS_Factory::createDatabaseDAO();
  474. $status['tables'] = $dbDAO->tablesAreCorrect();
  475. $status['categories'] = $dbDAO->categoryIsCorrect();
  476. $status['feeds'] = $dbDAO->feedIsCorrect();
  477. $status['entries'] = $dbDAO->entryIsCorrect();
  478. $status['entrytmp'] = $dbDAO->entrytmpIsCorrect();
  479. $status['tag'] = $dbDAO->tagIsCorrect();
  480. $status['entrytag'] = $dbDAO->entrytagIsCorrect();
  481. } catch(Minz_PDOConnectionException $e) {
  482. $status['connection'] = false;
  483. }
  484. return $status;
  485. }
  486. /**
  487. * Remove a directory recursively.
  488. *
  489. * From http://php.net/rmdir#110489
  490. *
  491. * @param string $dir the directory to remove
  492. */
  493. function recursive_unlink($dir) {
  494. if (!is_dir($dir)) {
  495. return true;
  496. }
  497. $files = array_diff(scandir($dir), array('.', '..'));
  498. foreach ($files as $filename) {
  499. $filename = $dir . '/' . $filename;
  500. if (is_dir($filename)) {
  501. @chmod($filename, 0777);
  502. recursive_unlink($filename);
  503. } else {
  504. unlink($filename);
  505. }
  506. }
  507. return rmdir($dir);
  508. }
  509. /**
  510. * Remove queries where $get is appearing.
  511. * @param string $get the get attribute which should be removed.
  512. * @param array<int,array<string,string>> $queries an array of queries.
  513. * @return array<int,array<string,string>> without queries where $get is appearing.
  514. */
  515. function remove_query_by_get($get, $queries) {
  516. $final_queries = array();
  517. foreach ($queries as $key => $query) {
  518. if (empty($query['get']) || $query['get'] !== $get) {
  519. $final_queries[$key] = $query;
  520. }
  521. }
  522. return $final_queries;
  523. }
  524. //RFC 4648
  525. function base64url_encode($data) {
  526. return strtr(rtrim(base64_encode($data), '='), '+/', '-_');
  527. }
  528. //RFC 4648
  529. function base64url_decode($data) {
  530. return base64_decode(strtr($data, '-_', '+/'));
  531. }
  532. function _i($icon, $url_only = false) {
  533. return FreshRSS_Themes::icon($icon, $url_only);
  534. }
  535. const SHORTCUT_KEYS = [
  536. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  537. 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
  538. 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
  539. 'F1', 'F2', 'F3', 'F4', 'F5', 'F6', 'F7', 'F8', 'F9', 'F10', 'F11', 'F12',
  540. 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowUp', 'Backspace', 'Delete',
  541. 'End', 'Enter', 'Escape', 'Home', 'Insert', 'PageDown', 'PageUp', 'Space', 'Tab',
  542. ];
  543. function getNonStandardShortcuts($shortcuts) {
  544. $standard = strtolower(implode(' ', SHORTCUT_KEYS));
  545. $nonStandard = array_filter($shortcuts, function ($shortcut) use ($standard) {
  546. $shortcut = trim($shortcut);
  547. return $shortcut !== '' & stripos($standard, $shortcut) === false;
  548. });
  549. return $nonStandard;
  550. }
  551. function errorMessage($errorTitle, $error = '') {
  552. $errorTitle = htmlspecialchars($errorTitle, ENT_NOQUOTES, 'UTF-8');
  553. $message = '';
  554. $details = '';
  555. // Prevent empty tags by checking if error isn not empty first
  556. if ($error) {
  557. $error = htmlspecialchars($error, ENT_NOQUOTES, 'UTF-8');
  558. // First line is the main message, other lines are the details
  559. list($message, $details) = explode("\n", $error, 2);
  560. $message = "<h2>{$message}</h2>";
  561. $details = "<pre>{$details}</pre>";
  562. }
  563. return <<<MSG
  564. <h1>{$errorTitle}</h1>
  565. {$message}
  566. {$details}
  567. <h2>Check the logs</h2>
  568. <p>FreshRSS logs are located in <code>./FreshRSS/data/users/*/log*.txt</code></p>
  569. <p><em>N.B.:</em> A typical problem is wrong file permissions in the <code>./FreshRSS/data/</code> folder
  570. so make sure the Web server can write there and in sub-directories.</p>
  571. <h3>Common locations for additional logs</h3>
  572. <p><em>N.B.:</em> Adapt names and paths according to your local setup.</p>
  573. <ul>
  574. <li>If using Docker: <code>docker logs -f freshrss</code></li>
  575. <li>To check Web server logs on a Linux system using systemd: <code>journalctl -xeu apache2</code>
  576. and if you are using php-fpm: <code>journalctl -xeu php-fpm</code></li>
  577. <li>Otherwise, Web server logs are typically located in <code>/var/log/apache2/</code> or similar</li>
  578. <li>System logs may also contain relevant information in <code>/var/log/syslog</code>, or if using systemd: <code>sudo journalctl -xe</code></li>
  579. </ul>
  580. <p>More logs can be generated by enabling <code>'environment' => 'development',</code> in <code>./FreshRSS/data/config.php</code></p>
  581. <p>Running the feed update script (with the same user and PHP version as your Web server) might provide other hints, e.g.:
  582. <code>sudo -u www-data /usr/bin/php ./FreshRSS/app/actualize_script.php</code></p>
  583. MSG;
  584. }