FreshRSS.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. class FreshRSS extends Minz_FrontController {
  3. /**
  4. * Initialize the different FreshRSS / Minz components.
  5. *
  6. * PLEASE DON'T CHANGE THE ORDER OF INITIALIZATIONS UNLESS YOU KNOW WHAT
  7. * YOU DO!!
  8. *
  9. * Here is the list of components:
  10. * - Create a configuration setter and register it to system conf
  11. * - Init extension manager and enable system extensions (has to be done asap)
  12. * - Init authentication system
  13. * - Init user configuration (need auth system)
  14. * - Init FreshRSS context (need user conf)
  15. * - Init i18n (need context)
  16. * - Init sharing system (need user conf and i18n)
  17. * - Init generic styles and scripts (need user conf)
  18. * - Init notifications
  19. * - Enable user extensions (need all the other initializations)
  20. */
  21. public function init() {
  22. if (!isset($_SESSION)) {
  23. Minz_Session::init('FreshRSS');
  24. }
  25. // Register the configuration setter for the system configuration
  26. $configuration_setter = new FreshRSS_ConfigurationSetter();
  27. $system_conf = Minz_Configuration::get('system');
  28. $system_conf->_configurationSetter($configuration_setter);
  29. // Load list of extensions and enable the "system" ones.
  30. Minz_ExtensionManager::init();
  31. // Auth has to be initialized before using currentUser session parameter
  32. // because it's this part which create this parameter.
  33. self::initAuth();
  34. // Then, register the user configuration and use the configuration setter
  35. // created above.
  36. $current_user = Minz_Session::param('currentUser', '_');
  37. Minz_Configuration::register('user',
  38. join_path(USERS_PATH, $current_user, 'config.php'),
  39. join_path(FRESHRSS_PATH, 'config-user.default.php'),
  40. $configuration_setter);
  41. // Finish to initialize the other FreshRSS / Minz components.
  42. FreshRSS_Context::init();
  43. self::initI18n();
  44. self::loadNotifications();
  45. // Enable extensions for the current (logged) user.
  46. if (FreshRSS_Auth::hasAccess() || $system_conf->allow_anonymous) {
  47. $ext_list = FreshRSS_Context::$user_conf->extensions_enabled;
  48. Minz_ExtensionManager::enableByList($ext_list);
  49. }
  50. self::checkEmailValidated();
  51. Minz_ExtensionManager::callHook('freshrss_init');
  52. }
  53. private static function initAuth() {
  54. FreshRSS_Auth::init();
  55. if (Minz_Request::isPost()) {
  56. if (!is_referer_from_same_domain()) {
  57. // Basic protection against XSRF attacks
  58. FreshRSS_Auth::removeAccess();
  59. $http_referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
  60. Minz_Translate::init('en'); //TODO: Better choice of fallback language
  61. Minz_Error::error(403, array('error' => array(
  62. _t('feedback.access.denied'),
  63. ' [HTTP_REFERER=' . htmlspecialchars($http_referer, ENT_NOQUOTES, 'UTF-8') . ']'
  64. )));
  65. }
  66. if (!(FreshRSS_Auth::isCsrfOk() ||
  67. (Minz_Request::controllerName() === 'auth' && Minz_Request::actionName() === 'login') ||
  68. (Minz_Request::controllerName() === 'user' && Minz_Request::actionName() === 'create' &&
  69. !FreshRSS_Auth::hasAccess('admin'))
  70. )) {
  71. // Token-based protection against XSRF attacks, except for the login or self-create user forms
  72. Minz_Translate::init('en'); //TODO: Better choice of fallback language
  73. Minz_Error::error(403, array('error' => array(
  74. _t('feedback.access.denied'),
  75. ' [CSRF]'
  76. )));
  77. }
  78. }
  79. }
  80. private static function initI18n() {
  81. Minz_Session::_param('language', FreshRSS_Context::$user_conf->language);
  82. Minz_Translate::init(FreshRSS_Context::$user_conf->language);
  83. }
  84. public static function loadStylesAndScripts() {
  85. $theme = FreshRSS_Themes::load(FreshRSS_Context::$user_conf->theme);
  86. if ($theme) {
  87. foreach(array_reverse($theme['files']) as $file) {
  88. if ($file[0] === '_') {
  89. $theme_id = 'base-theme';
  90. $filename = substr($file, 1);
  91. } else {
  92. $theme_id = $theme['id'];
  93. $filename = $file;
  94. }
  95. $filetime = @filemtime(PUBLIC_PATH . '/themes/' . $theme_id . '/' . $filename);
  96. $url = '/themes/' . $theme_id . '/' . $filename . '?' . $filetime;
  97. Minz_View::prependStyle(Minz_Url::display($url));
  98. }
  99. }
  100. //Use prepend to insert before extensions. Added in reverse order.
  101. if (Minz_Request::controllerName() !== 'index') {
  102. Minz_View::prependScript(Minz_Url::display('/scripts/extra.js?' . @filemtime(PUBLIC_PATH . '/scripts/extra.js')));
  103. }
  104. Minz_View::prependScript(Minz_Url::display('/scripts/main.js?' . @filemtime(PUBLIC_PATH . '/scripts/main.js')));
  105. }
  106. private static function loadNotifications() {
  107. $notif = Minz_Session::param('notification');
  108. if ($notif) {
  109. Minz_View::_param('notification', $notif);
  110. Minz_Session::_param('notification');
  111. }
  112. }
  113. public static function preLayout() {
  114. switch (Minz_Request::controllerName()) {
  115. case 'index':
  116. $urlToAuthorize = array_filter(array_map(function ($a) {
  117. if (isset($a['method']) && $a['method'] === 'POST') {
  118. return $a['url'];
  119. }
  120. }, FreshRSS_Context::$user_conf->sharing));
  121. $connectSrc = count($urlToAuthorize) ? sprintf("; connect-src 'self' %s", implode(' ', $urlToAuthorize)) : '';
  122. header(sprintf("Content-Security-Policy: default-src 'self'; frame-src *; img-src * data:; media-src *%s", $connectSrc));
  123. break;
  124. case 'stats':
  125. header("Content-Security-Policy: default-src 'self'; style-src 'self' 'unsafe-inline'");
  126. break;
  127. default:
  128. header("Content-Security-Policy: default-src 'self'");
  129. break;
  130. }
  131. header("X-Content-Type-Options: nosniff");
  132. FreshRSS_Share::load(join_path(APP_PATH, 'shares.php'));
  133. self::loadStylesAndScripts();
  134. }
  135. private static function checkEmailValidated() {
  136. $email_not_verified = FreshRSS_Auth::hasAccess() && FreshRSS_Context::$user_conf->email_validation_token !== '';
  137. $action_is_allowed = (
  138. Minz_Request::is('user', 'validateEmail') ||
  139. Minz_Request::is('user', 'sendValidationEmail') ||
  140. Minz_Request::is('user', 'profile') ||
  141. Minz_Request::is('user', 'delete') ||
  142. Minz_Request::is('auth', 'logout') ||
  143. Minz_Request::is('javascript', 'nonce')
  144. );
  145. if ($email_not_verified && !$action_is_allowed) {
  146. Minz_Request::forward(array(
  147. 'c' => 'user',
  148. 'a' => 'validateEmail',
  149. ), true);
  150. }
  151. }
  152. }