]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Item/Compose.php
Merge remote-tracking branch 'upstream/develop' into inbox-gsid
[friendica.git] / src / Module / Item / Compose.php
index 78c4710a3633009f4861da43190c042343ca470a..d44fe2cd7d84e0133ebcac06a7b059dd9e9b3487 100644 (file)
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Item;
 
+use DateTime;
+use Friendica\App;
 use Friendica\BaseModule;
 use Friendica\Content\Feature;
 use Friendica\Core\ACL;
-use Friendica\Core\Config;
+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\System;
 use Friendica\Core\Theme;
 use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model\Contact;
-use Friendica\Model\FileTag;
-use Friendica\Model\Group;
 use Friendica\Model\Item;
 use Friendica\Model\User;
+use Friendica\Module\Response;
 use Friendica\Module\Security\Login;
+use Friendica\Navigation\SystemMessages;
 use Friendica\Network\HTTPException\NotImplementedException;
 use Friendica\Util\ACLFormatter;
 use Friendica\Util\Crypto;
+use Friendica\Util\Profiler;
+use Friendica\Util\Temporal;
+use Psr\Log\LoggerInterface;
 
 class Compose extends BaseModule
 {
-       public static function post(array $parameters = [])
+       /** @var SystemMessages */
+       private $systemMessages;
+
+       /** @var ACLFormatter */
+       private $ACLFormatter;
+
+       /** @var App\Page */
+       private $page;
+
+       /** @var IManagePersonalConfigValues */
+       private $pConfig;
+
+       /** @var IManageConfigValues */
+       private $config;
+
+       public function __construct(IManageConfigValues $config, IManagePersonalConfigValues $pConfig, App\Page $page, ACLFormatter $ACLFormatter, SystemMessages $systemMessages, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
+       {
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->systemMessages = $systemMessages;
+               $this->ACLFormatter   = $ACLFormatter;
+               $this->page           = $page;
+               $this->pConfig        = $pConfig;
+               $this->config         = $config;
+       }
+
+       protected function post(array $request = [])
        {
                if (!empty($_REQUEST['body'])) {
                        $_REQUEST['return'] = 'network';
                        require_once 'mod/item.php';
                        item_post(DI::app());
                } else {
-                       notice(L10n::t('Please enter a post body.'));
+                       $this->systemMessages->addNotice($this->l10n->t('Please enter a post body.'));
                }
        }
 
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               if (!local_user()) {
-                       return Login::form('compose', false);
+               if (!DI::userSession()->getLocalUserId()) {
+                       return Login::form('compose');
                }
 
                $a = DI::app();
 
                if ($a->getCurrentTheme() !== 'frio') {
-                       throw new NotImplementedException(L10n::t('This feature is only available with the frio theme.'));
+                       throw new NotImplementedException($this->l10n->t('This feature is only available with the frio theme.'));
                }
 
-               /// @TODO Retrieve parameter from router
-               $posttype = $parameters['type'] ?? Item::PT_ARTICLE;
+               $posttype = $this->parameters['type'] ?? Item::PT_ARTICLE;
                if (!in_array($posttype, [Item::PT_ARTICLE, Item::PT_PERSONAL_NOTE])) {
                        switch ($posttype) {
                                case 'note':
@@ -61,28 +110,25 @@ class Compose extends BaseModule
                        }
                }
 
-               $user = User::getById(local_user(), ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'hidewall', 'default-location']);
+               $user = User::getById(DI::userSession()->getLocalUserId(), ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'default-location']);
 
-               /** @var ACLFormatter $aclFormatter */
-               $aclFormatter = self::getClass(ACLFormatter::class);
-
-               $contact_allow_list = $aclFormatter->expand($user['allow_cid']);
-               $group_allow_list   = $aclFormatter->expand($user['allow_gid']);
-               $contact_deny_list  = $aclFormatter->expand($user['deny_cid']);
-               $group_deny_list    = $aclFormatter->expand($user['deny_gid']);
+               $contact_allow_list = $this->ACLFormatter->expand($user['allow_cid']);
+               $group_allow_list   = $this->ACLFormatter->expand($user['allow_gid']);
+               $contact_deny_list  = $this->ACLFormatter->expand($user['deny_cid']);
+               $group_deny_list    = $this->ACLFormatter->expand($user['deny_gid']);
 
                switch ($posttype) {
                        case Item::PT_PERSONAL_NOTE:
-                               $compose_title = L10n::t('Compose new personal note');
+                               $compose_title = $this->l10n->t('Compose new personal note');
                                $type = 'note';
                                $doesFederate = false;
-                               $contact_allow_list = [$a->contact['id']];
+                               $contact_allow_list = [$a->getContactId()];
                                $group_allow_list = [];
                                $contact_deny_list = [];
                                $group_deny_list = [];
                                break;
                        default:
-                               $compose_title = L10n::t('Compose new post');
+                               $compose_title = $this->l10n->t('Compose new post');
                                $type = 'post';
                                $doesFederate = true;
 
@@ -115,41 +161,68 @@ class Compose extends BaseModule
                Hook::callAll('jot_tool', $jotplugins);
 
                // Output
-               $a->page->registerFooterScript(Theme::getPathForFile('js/ajaxupload.js'));
-               $a->page->registerFooterScript(Theme::getPathForFile('js/linkPreview.js'));
-               $a->page->registerFooterScript(Theme::getPathForFile('js/compose.js'));
+               $this->page->registerFooterScript(Theme::getPathForFile('js/ajaxupload.js'));
+               $this->page->registerFooterScript(Theme::getPathForFile('js/linkPreview.js'));
+               $this->page->registerFooterScript(Theme::getPathForFile('js/compose.js'));
+
+               $contact = Contact::getById($a->getContactId());
+
+               if ($this->pConfig->get(DI::userSession()->getLocalUserId(), 'system', 'set_creation_date')) {
+                       $created_at = Temporal::getDateTimeField(
+                               new \DateTime(DBA::NULL_DATETIME),
+                               new \DateTime('now'),
+                               null,
+                               $this->l10n->t('Created at'),
+                               'created_at'
+                       );
+               } else {
+                       $created_at = '';
+               }
 
                $tpl = Renderer::getMarkupTemplate('item/compose.tpl');
                return Renderer::replaceMacros($tpl, [
-                       '$compose_title'=> $compose_title,
-                       '$visibility_title'=> L10n::t('Visibility'),
+                       '$l10n' => [
+                               'compose_title'        => $compose_title,
+                               'default'              => '',
+                               'visibility_title'     => $this->l10n->t('Visibility'),
+                               'mytitle'              => $this->l10n->t('This is you'),
+                               'submit'               => $this->l10n->t('Submit'),
+                               'edbold'               => $this->l10n->t('Bold'),
+                               'editalic'             => $this->l10n->t('Italic'),
+                               'eduline'              => $this->l10n->t('Underline'),
+                               'edquote'              => $this->l10n->t('Quote'),
+                               'edcode'               => $this->l10n->t('Code'),
+                               'edimg'                => $this->l10n->t('Image'),
+                               'edurl'                => $this->l10n->t('Link'),
+                               'edattach'             => $this->l10n->t('Link or Media'),
+                               'prompttext'           => $this->l10n->t('Please enter a image/video/audio/webpage URL:'),
+                               'preview'              => $this->l10n->t('Preview'),
+                               'location_set'         => $this->l10n->t('Set your location'),
+                               'location_clear'       => $this->l10n->t('Clear the location'),
+                               'location_unavailable' => $this->l10n->t('Location services are unavailable on your device'),
+                               'location_disabled'    => $this->l10n->t('Location services are disabled. Please check the website\'s permissions on your device'),
+                               'wait'                 => $this->l10n->t('Please wait'),
+                               'placeholdertitle'     => $this->l10n->t('Set title'),
+                               'placeholdercategory'  => Feature::isEnabled(DI::userSession()->getLocalUserId(),'categories') ? $this->l10n->t('Categories (comma-separated list)') : '',
+                               'always_open_compose'  => $this->pConfig->get(DI::userSession()->getLocalUserId(), 'frio', 'always_open_compose',
+                                       $this->config->get('frio', 'always_open_compose', false)) ? '' :
+                                               $this->l10n->t('You can make this page always open when you use the New Post button in the <a href="/settings/display">Theme Customization settings</a>.'),
+                       ],
+
                        '$id'           => 0,
                        '$posttype'     => $posttype,
                        '$type'         => $type,
                        '$wall'         => $wall,
-                       '$default'      => '',
-                       '$mylink'       => $a->removeBaseURL($a->contact['url']),
-                       '$mytitle'      => L10n::t('This is you'),
-                       '$myphoto'      => $a->removeBaseURL($a->contact['thumb']),
-                       '$submit'       => L10n::t('Submit'),
-                       '$edbold'       => L10n::t('Bold'),
-                       '$editalic'     => L10n::t('Italic'),
-                       '$eduline'      => L10n::t('Underline'),
-                       '$edquote'      => L10n::t('Quote'),
-                       '$edcode'       => L10n::t('Code'),
-                       '$edimg'        => L10n::t('Image'),
-                       '$edurl'        => L10n::t('Link'),
-                       '$edattach'     => L10n::t('Link or Media'),
-                       '$prompttext'   => L10n::t('Please enter a image/video/audio/webpage URL:'),
-                       '$preview'      => L10n::t('Preview'),
-                       '$location_set' => L10n::t('Set your location'),
-                       '$location_clear' => L10n::t('Clear the location'),
-                       '$location_unavailable' => L10n::t('Location services are unavailable on your device'),
-                       '$location_disabled' => L10n::t('Location services are disabled. Please check the website\'s permissions on your device'),
-                       '$wait'         => L10n::t('Please wait'),
-                       '$placeholdertitle' => L10n::t('Set title'),
-                       '$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? L10n::t('Categories (comma-separated list)') : ''),
-
+                       '$mylink'       => $this->baseUrl->remove($contact['url']),
+                       '$myphoto'      => $this->baseUrl->remove($contact['thumb']),
+                       '$scheduled_at' => Temporal::getDateTimeField(
+                               new DateTime(),
+                               new DateTime('now + 6 months'),
+                               null,
+                               $this->l10n->t('Scheduled at'),
+                               'scheduled_at'
+                       ),
+                       '$created_at'   => $created_at,
                        '$title'        => $title,
                        '$category'     => $category,
                        '$body'         => $body,
@@ -161,9 +234,8 @@ class Compose extends BaseModule
                        '$group_deny'   => implode(',', $group_deny_list),
 
                        '$jotplugins'   => $jotplugins,
-                       '$sourceapp'    => L10n::t($a->sourcename),
                        '$rand_num'     => Crypto::randomDigits(12),
-                       '$acl_selector'  => ACL::getFullSelectorHTML($a->page, $a->user, $doesFederate, [
+                       '$acl_selector'  => ACL::getFullSelectorHTML($this->page, $a->getLoggedInUserId(), $doesFederate, [
                                'allow_cid' => $contact_allow_list,
                                'allow_gid' => $group_allow_list,
                                'deny_cid'  => $contact_deny_list,