]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Settings/Display.php
Merge pull request #12469 from MrPetovan/bug/12462-tos-rules
[friendica.git] / src / Module / Settings / Display.php
index dd97ffc90d9f54c35c495ef5f6c06f07f69f04ab..0766d2a13ea6a3d67f4646fc5e3b38b360067346 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 namespace Friendica\Module\Settings;
 
+use Friendica\App;
+use Friendica\Content\Text\BBCode;
+use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\Hook;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
 use Friendica\Core\Renderer;
-use Friendica\Core\Session;
+use Friendica\Core\Session\Capability\IHandleUserSessions;
 use Friendica\Core\Theme;
-use Friendica\Database\DBA;
-use Friendica\DI;
 use Friendica\Model\User;
 use Friendica\Module\BaseSettings;
+use Friendica\Module\Response;
+use Friendica\Navigation\SystemMessages;
 use Friendica\Network\HTTPException;
-use Friendica\Util\Strings;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
 
 /**
  * Module to update user settings
  */
 class Display extends BaseSettings
 {
-       public static function post(array $parameters = [])
+       /** @var IManageConfigValues */
+       private $config;
+       /** @var IManagePersonalConfigValues */
+       private $pConfig;
+       /** @var App */
+       private $app;
+       /** @var SystemMessages */
+       private $systemMessages;
+
+       public function __construct(SystemMessages $systemMessages, App $app, IManagePersonalConfigValues $pConfig, IManageConfigValues $config, IHandleUserSessions $session, App\Page $page, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
        {
-               if (!DI::app()->isLoggedIn()) {
-                       throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
+               parent::__construct($session, $page, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->config         = $config;
+               $this->pConfig        = $pConfig;
+               $this->app            = $app;
+               $this->systemMessages = $systemMessages;
+       }
+
+       protected function post(array $request = [])
+       {
+               $uid = $this->session->getLocalUserId();
+               if (!$uid) {
+                       throw new HTTPException\ForbiddenException($this->t('Permission denied.'));
                }
 
                self::checkFormSecurityTokenRedirectOnError('/settings/display', 'settings_display');
 
-               $user = User::getById(local_user());
-
-               $theme              = !empty($_POST['theme'])              ? Strings::escapeTags(trim($_POST['theme'])) : $user['theme'];
-               $mobile_theme       = !empty($_POST['mobile_theme'])       ? Strings::escapeTags(trim($_POST['mobile_theme'])) : '';
-               $nosmile            = !empty($_POST['nosmile'])            ? intval($_POST['nosmile'])            : 0;
-               $first_day_of_week  = !empty($_POST['first_day_of_week'])  ? intval($_POST['first_day_of_week'])  : 0;
-               $infinite_scroll    = !empty($_POST['infinite_scroll'])    ? intval($_POST['infinite_scroll'])    : 0;
-               $no_auto_update     = !empty($_POST['no_auto_update'])     ? intval($_POST['no_auto_update'])     : 0;
-               $no_smart_threading = !empty($_POST['no_smart_threading']) ? intval($_POST['no_smart_threading']) : 0;
-               $hide_dislike       = !empty($_POST['hide_dislike'])       ? intval($_POST['hide_dislike'])       : 0;
-               $display_resharer   = !empty($_POST['display_resharer'])   ? intval($_POST['display_resharer'])   : 0;
-               $stay_local         = !empty($_POST['stay_local'])         ? intval($_POST['stay_local'])         : 0;
-               $browser_update     = !empty($_POST['browser_update'])     ? intval($_POST['browser_update'])     : 0;
+               $user = User::getById($uid);
+
+               $theme                  = !empty($request['theme'])                  ? trim($request['theme'])                    : $user['theme'];
+               $mobile_theme           = !empty($request['mobile_theme'])           ? trim($request['mobile_theme'])             : '';
+               $enable_smile           = !empty($request['enable_smile'])           ? intval($request['enable_smile'])           : 0;
+               $first_day_of_week      = !empty($request['first_day_of_week'])      ? intval($request['first_day_of_week'])      : 0;
+               $calendar_default_view  = !empty($request['calendar_default_view'])  ? trim($request['calendar_default_view'])    : 'month';
+               $infinite_scroll        = !empty($request['infinite_scroll'])        ? intval($request['infinite_scroll'])        : 0;
+               $no_auto_update         = !empty($request['no_auto_update'])         ? intval($request['no_auto_update'])         : 0;
+               $enable_smart_threading = !empty($request['enable_smart_threading']) ? intval($request['enable_smart_threading']) : 0;
+               $enable_dislike         = !empty($request['enable_dislike'])         ? intval($request['enable_dislike'])         : 0;
+               $display_resharer       = !empty($request['display_resharer'])       ? intval($request['display_resharer'])       : 0;
+               $stay_local             = !empty($request['stay_local'])             ? intval($request['stay_local'])             : 0;
+               $preview_mode           = !empty($request['preview_mode'])           ? intval($request['preview_mode'])           : 0;
+               $browser_update         = !empty($request['browser_update'])         ? intval($request['browser_update'])         : 0;
                if ($browser_update != -1) {
                        $browser_update = $browser_update * 1000;
                        if ($browser_update < 10000) {
@@ -65,88 +93,92 @@ class Display extends BaseSettings
                        }
                }
 
-               $itemspage_network = !empty($_POST['itemspage_network']) ?
-                       intval($_POST['itemspage_network']) :
-                       DI::config()->get('system', 'itemspage_network');
+               $itemspage_network = !empty($request['itemspage_network']) ?
+                       intval($request['itemspage_network']) :
+                       $this->config->get('system', 'itemspage_network');
                if ($itemspage_network > 100) {
                        $itemspage_network = 100;
                }
-               $itemspage_mobile_network = !empty($_POST['itemspage_mobile_network']) ?
-                       intval($_POST['itemspage_mobile_network']) :
-                       DI::config()->get('system', 'itemspage_network_mobile');
+               $itemspage_mobile_network = !empty($request['itemspage_mobile_network']) ?
+                       intval($request['itemspage_mobile_network']) :
+                       $this->config->get('system', 'itemspage_network_mobile');
                if ($itemspage_mobile_network > 100) {
                        $itemspage_mobile_network = 100;
                }
 
                if ($mobile_theme !== '') {
-                       DI::pConfig()->set(local_user(), 'system', 'mobile_theme', $mobile_theme);
+                       $this->pConfig->set($uid, 'system', 'mobile_theme', $mobile_theme);
                }
 
-               DI::pConfig()->set(local_user(), 'system', 'itemspage_network'       , $itemspage_network);
-               DI::pConfig()->set(local_user(), 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
-               DI::pConfig()->set(local_user(), 'system', 'update_interval'         , $browser_update);
-               DI::pConfig()->set(local_user(), 'system', 'no_auto_update'          , $no_auto_update);
-               DI::pConfig()->set(local_user(), 'system', 'no_smilies'              , $nosmile);
-               DI::pConfig()->set(local_user(), 'system', 'infinite_scroll'         , $infinite_scroll);
-               DI::pConfig()->set(local_user(), 'system', 'no_smart_threading'      , $no_smart_threading);
-               DI::pConfig()->set(local_user(), 'system', 'hide_dislike'            , $hide_dislike);
-               DI::pConfig()->set(local_user(), 'system', 'display_resharer'        , $display_resharer);
-               DI::pConfig()->set(local_user(), 'system', 'stay_local'              , $stay_local);
-               DI::pConfig()->set(local_user(), 'system', 'first_day_of_week'       , $first_day_of_week);
+               $this->pConfig->set($uid, 'system', 'itemspage_network'       , $itemspage_network);
+               $this->pConfig->set($uid, 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
+               $this->pConfig->set($uid, 'system', 'update_interval'         , $browser_update);
+               $this->pConfig->set($uid, 'system', 'no_auto_update'          , $no_auto_update);
+               $this->pConfig->set($uid, 'system', 'no_smilies'              , !$enable_smile);
+               $this->pConfig->set($uid, 'system', 'infinite_scroll'         , $infinite_scroll);
+               $this->pConfig->set($uid, 'system', 'no_smart_threading'      , !$enable_smart_threading);
+               $this->pConfig->set($uid, 'system', 'hide_dislike'            , !$enable_dislike);
+               $this->pConfig->set($uid, 'system', 'display_resharer'        , $display_resharer);
+               $this->pConfig->set($uid, 'system', 'stay_local'              , $stay_local);
+               $this->pConfig->set($uid, 'system', 'preview_mode'            , $preview_mode);
+
+               $this->pConfig->set($uid, 'calendar', 'first_day_of_week'     , $first_day_of_week);
+               $this->pConfig->set($uid, 'calendar', 'default_view'           , $calendar_default_view);
 
                if (in_array($theme, Theme::getAllowedList())) {
                        if ($theme == $user['theme']) {
                                // call theme_post only if theme has not been changed
-                               if (($themeconfigfile = Theme::getConfigFile($theme)) !== null) {
+                               if ($themeconfigfile = Theme::getConfigFile($theme)) {
                                        require_once $themeconfigfile;
-                                       theme_post(DI::app());
+                                       theme_post($this->app);
                                }
                        } else {
-                               DBA::update('user', ['theme' => $theme], ['uid' => local_user()]);
+                               User::update(['theme' => $theme], $uid);
                        }
                } else {
-                       notice(DI::l10n()->t('The theme you chose isn\'t available.'));
+                       $this->systemMessages->addNotice($this->t('The theme you chose isn\'t available.'));
                }
 
-               Hook::callAll('display_settings_post', $_POST);
+               Hook::callAll('display_settings_post', $request);
 
-               DI::baseUrl()->redirect('settings/display');
+               $this->baseUrl->redirect('settings/display');
        }
 
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               parent::content($parameters);
+               parent::content();
 
-               if (!local_user()) {
-                       throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
+               $uid = $this->session->getLocalUserId();
+               if (!$uid) {
+                       throw new HTTPException\ForbiddenException($this->t('Permission denied.'));
                }
 
-               $default_theme = DI::config()->get('system', 'theme');
+               $default_theme = $this->config->get('system', 'theme');
                if (!$default_theme) {
                        $default_theme = 'default';
                }
 
-               $default_mobile_theme = DI::config()->get('system', 'mobile-theme');
+               $default_mobile_theme = $this->config->get('system', 'mobile-theme');
                if (!$default_mobile_theme) {
                        $default_mobile_theme = 'none';
                }
 
-               $user = User::getById(local_user());
+               $user = User::getById($uid);
 
                $allowed_themes = Theme::getAllowedList();
 
                $themes = [];
-               $mobile_themes = ["---" => DI::l10n()->t('No special theme for mobile devices')];
+               $mobile_themes = ['---' => $this->t('No special theme for mobile devices')];
                foreach ($allowed_themes as $theme) {
                        $is_experimental = file_exists('view/theme/' . $theme . '/experimental');
                        $is_unsupported  = file_exists('view/theme/' . $theme . '/unsupported');
                        $is_mobile       = file_exists('view/theme/' . $theme . '/mobile');
-                       if (!$is_experimental || (DI::config()->get('experimentals', 'exp_themes') || is_null(DI::config()->get('experimentals', 'exp_themes')))) {
+                       if (!$is_experimental || $this->config->get('experimental', 'exp_themes')) {
                                $theme_name = ucfirst($theme);
                                if ($is_unsupported) {
-                                       $theme_name = DI::l10n()->t('%s - (Unsupported)', $theme_name);
+                                       $theme_name = $this->t('%s - (Unsupported)', $theme_name);
                                } elseif ($is_experimental) {
-                                       $theme_name = DI::l10n()->t('%s - (Experimental)', $theme_name);
+                                       $theme_name = $this->t('%s - (Experimental)', $theme_name);
                                }
 
                                if ($is_mobile) {
@@ -158,68 +190,92 @@ class Display extends BaseSettings
                }
 
                $theme_selected        = $user['theme'] ?: $default_theme;
-               $mobile_theme_selected = Session::get('mobile-theme', $default_mobile_theme);
+               $mobile_theme_selected = $this->session->get('mobile-theme', $default_mobile_theme);
 
-               $itemspage_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_network'));
-               $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : DI::config()->get('system', 'itemspage_network'));
-               $itemspage_mobile_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network'));
-               $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : DI::config()->get('system', 'itemspage_network_mobile'));
+               $itemspage_network = intval($this->pConfig->get($uid, 'system', 'itemspage_network'));
+               $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : $this->config->get('system', 'itemspage_network'));
+               $itemspage_mobile_network = intval($this->pConfig->get($uid, 'system', 'itemspage_mobile_network'));
+               $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : $this->config->get('system', 'itemspage_network_mobile'));
 
-               $browser_update = intval(DI::pConfig()->get(local_user(), 'system', 'update_interval'));
-               if (intval($browser_update) != -1) {
+               $browser_update = intval($this->pConfig->get($uid, 'system', 'update_interval'));
+               if ($browser_update != -1) {
                        $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
                }
 
-               $no_auto_update     = DI::pConfig()->get(local_user(), 'system', 'no_auto_update', 0);
-               $nosmile            = DI::pConfig()->get(local_user(), 'system', 'no_smilies', 0);
-               $infinite_scroll    = DI::pConfig()->get(local_user(), 'system', 'infinite_scroll', 0);
-               $no_smart_threading = DI::pConfig()->get(local_user(), 'system', 'no_smart_threading', 0);
-               $hide_dislike       = DI::pConfig()->get(local_user(), 'system', 'hide_dislike', 0);
-               $display_resharer   = DI::pConfig()->get(local_user(), 'system', 'display_resharer', 0);
-               $stay_local         = DI::pConfig()->get(local_user(), 'system', 'stay_local', 0);
-
-
-               $first_day_of_week = DI::pConfig()->get(local_user(), 'system', 'first_day_of_week', 0);
-               $weekdays = [0 => DI::l10n()->t("Sunday"), 1 => DI::l10n()->t("Monday")];
+               $no_auto_update         =  $this->pConfig->get($uid, 'system', 'no_auto_update', 0);
+               $enable_smile           = !$this->pConfig->get($uid, 'system', 'no_smilies', 0);
+               $infinite_scroll        =  $this->pConfig->get($uid, 'system', 'infinite_scroll', 0);
+               $enable_smart_threading = !$this->pConfig->get($uid, 'system', 'no_smart_threading', 0);
+               $enable_dislike         = !$this->pConfig->get($uid, 'system', 'hide_dislike', 0);
+               $display_resharer       =  $this->pConfig->get($uid, 'system', 'display_resharer', 0);
+               $stay_local             =  $this->pConfig->get($uid, 'system', 'stay_local', 0);
+
+               $preview_mode  =  $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE);
+               $preview_modes = [
+                       BBCode::PREVIEW_NONE     => $this->t('No preview'),
+                       BBCode::PREVIEW_NO_IMAGE => $this->t('No image'),
+                       BBCode::PREVIEW_SMALL    => $this->t('Small Image'),
+                       BBCode::PREVIEW_LARGE    => $this->t('Large Image'),
+               ];
+
+
+               $first_day_of_week = $this->pConfig->get($uid, 'system', 'first_day_of_week', 0);
+               $weekdays          = [
+                       0 => $this->t('Sunday'),
+                       1 => $this->t('Monday'),
+                       2 => $this->t('Tuesday'),
+                       3 => $this->t('Wednesday'),
+                       4 => $this->t('Thursday'),
+                       5 => $this->t('Friday'),
+                       6 => $this->t('Saturday')
+               ];
+
+               $calendar_default_view = $this->pConfig->get($uid, 'calendar', 'default_view', 'month');
+               $calendarViews         = [
+                       'month'      => $this->t('month'),
+                       'agendaWeek' => $this->t('week'),
+                       'agendaDay'  => $this->t('day'),
+                       'listMonth'  => $this->t('list')
+               ];
 
                $theme_config = '';
                if ($themeconfigfile = Theme::getConfigFile($theme_selected)) {
                        require_once $themeconfigfile;
-                       $theme_config = theme_content(DI::app());
+                       $theme_config = theme_content($this->app);
                }
 
                $tpl = Renderer::getMarkupTemplate('settings/display.tpl');
-               $o = Renderer::replaceMacros($tpl, [
-                       '$ptitle'         => DI::l10n()->t('Display Settings'),
-                       '$submit'         => DI::l10n()->t('Save Settings'),
-                       '$d_tset'         => DI::l10n()->t('General Theme Settings'),
-                       '$d_ctset'        => DI::l10n()->t('Custom Theme Settings'),
-                       '$d_cset'         => DI::l10n()->t('Content Settings'),
-                       '$stitle'         => DI::l10n()->t('Theme settings'),
-                       '$calendar_title' => DI::l10n()->t('Calendar'),
+               return Renderer::replaceMacros($tpl, [
+                       '$ptitle'         => $this->t('Display Settings'),
+                       '$submit'         => $this->t('Save Settings'),
+                       '$d_tset'         => $this->t('General Theme Settings'),
+                       '$d_ctset'        => $this->t('Custom Theme Settings'),
+                       '$d_cset'         => $this->t('Content Settings'),
+                       '$stitle'         => $this->t('Theme settings'),
+                       '$calendar_title' => $this->t('Calendar'),
 
                        '$form_security_token' => self::getFormSecurityToken('settings_display'),
-                       '$baseurl' => DI::baseUrl()->get(true),
-                       '$uid'     => local_user(),
+                       '$baseurl'             => $this->baseUrl->get(true),
+                       '$uid'                 => $uid,
 
-                       '$theme'            => ['theme', DI::l10n()->t('Display Theme:'), $theme_selected, '', $themes, true],
-                       '$mobile_theme' => ['mobile_theme', DI::l10n()->t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false],
+                       '$theme'            => ['theme', $this->t('Display Theme:'), $theme_selected, '', $themes, true],
+                       '$mobile_theme' => ['mobile_theme', $this->t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false],
                        '$theme_config' => $theme_config,
 
-                       '$itemspage_network'        => ['itemspage_network'       , DI::l10n()->t('Number of items to display per page:'), $itemspage_network, DI::l10n()->t('Maximum of 100 items')],
-                       '$itemspage_mobile_network' => ['itemspage_mobile_network', DI::l10n()->t('Number of items to display per page when viewed from mobile device:'), $itemspage_mobile_network, DI::l10n()->t('Maximum of 100 items')],
-                       '$ajaxint'                  => ['browser_update'          , DI::l10n()->t('Update browser every xx seconds'), $browser_update, DI::l10n()->t('Minimum of 10 seconds. Enter -1 to disable it.')],
-                       '$no_auto_update'           => ['no_auto_update'          , DI::l10n()->t('Automatic updates only at the top of the post stream pages'), $no_auto_update, DI::l10n()->t('Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page.')],
-                       '$nosmile'                      => ['nosmile'                 , DI::l10n()->t('Don\'t show emoticons'), $nosmile, DI::l10n()->t('Normally emoticons are replaced with matching symbols. This setting disables this behaviour.')],
-                       '$infinite_scroll'          => ['infinite_scroll'         , DI::l10n()->t('Infinite scroll'), $infinite_scroll, DI::l10n()->t('Automatic fetch new items when reaching the page end.')],
-                       '$no_smart_threading'       => ['no_smart_threading'      , DI::l10n()->t('Disable Smart Threading'), $no_smart_threading, DI::l10n()->t('Disable the automatic suppression of extraneous thread indentation.')],
-                       '$hide_dislike'             => ['hide_dislike'            , DI::l10n()->t('Hide the Dislike feature'), $hide_dislike, DI::l10n()->t('Hides the Dislike button and dislike reactions on posts and comments.')],
-                       '$display_resharer'         => ['display_resharer'        , DI::l10n()->t('Display the resharer'), $display_resharer, DI::l10n()->t('Display the first resharer as icon and text on a reshared item.')],
-                       '$stay_local'               => ['stay_local'              , DI::l10n()->t('Stay local'), $stay_local, DI::l10n()->t("Don't go to a remote system when following a contact link.")],
-
-                       '$first_day_of_week' => ['first_day_of_week', DI::l10n()->t('Beginning of week:'), $first_day_of_week, '', $weekdays, false],
+                       '$itemspage_network'        => ['itemspage_network'       , $this->t('Number of items to display per page:'), $itemspage_network, $this->t('Maximum of 100 items')],
+                       '$itemspage_mobile_network' => ['itemspage_mobile_network', $this->t('Number of items to display per page when viewed from mobile device:'), $itemspage_mobile_network, $this->t('Maximum of 100 items')],
+                       '$ajaxint'                  => ['browser_update'          , $this->t('Update browser every xx seconds'), $browser_update, $this->t('Minimum of 10 seconds. Enter -1 to disable it.')],
+                       '$no_auto_update'           => ['no_auto_update'          , $this->t('Automatic updates only at the top of the post stream pages'), $no_auto_update, $this->t('Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page.')],
+                       '$enable_smile'             => ['enable_smile'            , $this->t('Display emoticons'), $enable_smile, $this->t('When enabled, emoticons are replaced with matching symbols.')],
+                       '$infinite_scroll'          => ['infinite_scroll'         , $this->t('Infinite scroll'), $infinite_scroll, $this->t('Automatic fetch new items when reaching the page end.')],
+                       '$enable_smart_threading'   => ['enable_smart_threading'  , $this->t('Enable Smart Threading'), $enable_smart_threading, $this->t('Enable the automatic suppression of extraneous thread indentation.')],
+                       '$enable_dislike'           => ['enable_dislike'          , $this->t('Display the Dislike feature'), $enable_dislike, $this->t('Display the Dislike button and dislike reactions on posts and comments.')],
+                       '$display_resharer'         => ['display_resharer'        , $this->t('Display the resharer'), $display_resharer, $this->t('Display the first resharer as icon and text on a reshared item.')],
+                       '$stay_local'               => ['stay_local'              , $this->t('Stay local'), $stay_local, $this->t("Don't go to a remote system when following a contact link.")],
+                       '$preview_mode'             => ['preview_mode'            , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false],
+
+                       '$first_day_of_week'     => ['first_day_of_week'    , $this->t('Beginning of week:')    , $first_day_of_week    , '', $weekdays     , false],
+                       '$calendar_default_view' => ['calendar_default_view', $this->t('Default calendar view:'), $calendar_default_view, '', $calendarViews, false],
                ]);
-
-               return $o;
        }
 }