]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Filer/SaveTag.php
Fix: The "extid" field wasn't updated
[friendica.git] / src / Module / Filer / SaveTag.php
index 1db3384ca5eed51977465a0f3c0a55b12ebe1916..013ff565a5b5958a14dff3b29011f42f7ba1fe9b 100644 (file)
@@ -1,12 +1,32 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, 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\Filer;
 
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
+use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Model;
+use Friendica\Network\HTTPException;
 use Friendica\Util\XML;
 
 /**
@@ -14,18 +34,18 @@ use Friendica\Util\XML;
  */
 class SaveTag extends BaseModule
 {
-       public static function init($parameters)
+       public static function init(array $parameters = [])
        {
                if (!local_user()) {
-                       info(L10n::t('You must be logged in to use this module'));
-                       self::getApp()->internalRedirect();
+                       notice(DI::l10n()->t('You must be logged in to use this module'));
+                       DI::baseUrl()->redirect();
                }
        }
 
-       public static function rawContent($parameters)
+       public static function rawContent(array $parameters = [])
        {
-               $a = self::getApp();
-               $logger = $a->getLogger();
+               $a = DI::app();
+               $logger = DI::logger();
 
                $term = XML::unescape(trim($_GET['term'] ?? ''));
                // @TODO: Replace with parameter from router
@@ -34,19 +54,20 @@ class SaveTag extends BaseModule
                $logger->info('filer', ['tag' => $term, 'item' => $item_id]);
 
                if ($item_id && strlen($term)) {
-                       // file item
-                       Model\FileTag::saveFile(local_user(), $item_id, $term);
-                       info(L10n::t('Filetag %s saved to item', $term));
+                       $item = Model\Post::selectFirst(['uri-id'], ['id' => $item_id]);
+                       if (!DBA::isResult($item)) {
+                               throw new HTTPException\NotFoundException();
+                       }
+                       Model\Post\Category::storeFileByURIId($item['uri-id'], local_user(), Model\Post\Category::FILE, $term);
                }
 
                // return filer dialog
-               $filetags = PConfig::get(local_user(), 'system', 'filetags', '');
-               $filetags = Model\FileTag::fileToArray($filetags);
+               $filetags = Model\Post\Category::getArray(local_user(), Model\Post\Category::FILE);
 
                $tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
                echo Renderer::replaceMacros($tpl, [
-                       '$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
-                       '$submit' => L10n::t('Save'),
+                       '$field' => ['term', DI::l10n()->t("Save to Folder:"), '', '', $filetags, DI::l10n()->t('- select -')],
+                       '$submit' => DI::l10n()->t('Save'),
                ]);
 
                exit;