]> git.mxchange.org Git - friendica.git/commitdiff
Rename BookMarklet to Bookmarklet
authorPhilipp Holzer <admin@philipp.info>
Sun, 5 May 2019 15:59:57 +0000 (17:59 +0200)
committerPhilipp Holzer <admin@philipp.info>
Sun, 5 May 2019 15:59:57 +0000 (17:59 +0200)
src/App/Router.php
src/Module/BookMarklet.php [deleted file]
src/Module/Bookmarklet.php [new file with mode: 0644]

index 1dffb6b406f0d3b22bd75880710bd56a5eee8437..11ce6867706805cb503286563887cad5fd4d0c80 100644 (file)
@@ -89,7 +89,7 @@ class Router
                $this->routeCollector->addRoute(['GET'],         '/apps',                Module\Apps::class);
                $this->routeCollector->addRoute(['GET'],         '/attach/{item:\d+}',   Module\Attach::class);
                $this->routeCollector->addRoute(['GET'],         '/babel',               Module\Babel::class);
-               $this->routeCollector->addRoute(['GET'],         '/bookmarklet',         Module\BookMarklet::class);
+               $this->routeCollector->addRoute(['GET'],         '/bookmarklet',         Module\Bookmarklet::class);
                $this->routeCollector->addGroup('/contact', function (RouteCollector $collector) {
                        $collector->addRoute(['GET'], '[/]',                                 Module\Contact::class);
                        $collector->addRoute(['GET'], '/{id:\d+}[/posts|conversations]',     Module\Contact::class);
diff --git a/src/Module/BookMarklet.php b/src/Module/BookMarklet.php
deleted file mode 100644 (file)
index 51feb25..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-
-namespace Friendica\Module;
-
-use Friendica\BaseModule;
-use Friendica\Core\ACL;
-use Friendica\Core\L10n;
-use Friendica\Network\HTTPException;
-use Friendica\Util\Strings;
-
-/**
- * Creates a bookmarklet
- * Shows either a editor browser or adds the given bookmarklet to the current user
- */
-class BookMarklet extends BaseModule
-{
-       public static function content()
-       {
-               $_GET['mode'] = 'minimal';
-
-               $app = self::getApp();
-               $config = $app->getConfig();
-
-               if (!local_user()) {
-                       $output = '<h2>' . L10n::t('Login') . '</h2>';
-                       $output .= Login::form($app->query_string, intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
-                       return $output;
-               }
-
-               $referer = Strings::normaliseLink(defaults($_SERVER, 'HTTP_REFERER', ''));
-               $page = Strings::normaliseLink($app->getBaseURL() . "/bookmarklet");
-
-               if (!strstr($referer, $page)) {
-                       if (empty($_REQUEST["url"])) {
-                               throw new HTTPException\BadRequestException(L10n::t('This page is missing a url parameter.'));
-                       }
-
-                       $content = add_page_info($_REQUEST["url"]);
-
-                       $x = [
-                               'is_owner'         => true,
-                               'allow_location'   => $app->user['allow_location'],
-                               'default_location' => $app->user['default-location'],
-                               'nickname'         => $app->user['nickname'],
-                               'lockstate'        => ((is_array($app->user) && ((strlen($app->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($app->user['deny_cid'])) || (strlen($app->user['deny_gid'])))) ? 'lock' : 'unlock'),
-                               'default_perms'    => ACL::getDefaultUserPermissions($app->user),
-                               'acl'              => ACL::getFullSelectorHTML($app->user, true),
-                               'bang'             => '',
-                               'visitor'          => 'block',
-                               'profile_uid'      => local_user(),
-                               'title'            => trim(defaults($_REQUEST, 'title', ''), '*'),
-                               'content'          => $content
-                       ];
-                       $output = status_editor($app, $x, 0, false);
-                       $output .= "<script>window.resizeTo(800,550);</script>";
-               } else {
-                       $output = '<h2>' . L10n::t('The post was created') . '</h2>';
-                       $output .= "<script>window.close()</script>";
-               }
-
-               return $output;
-       }
-}
diff --git a/src/Module/Bookmarklet.php b/src/Module/Bookmarklet.php
new file mode 100644 (file)
index 0000000..1b6ff38
--- /dev/null
@@ -0,0 +1,63 @@
+<?php
+
+namespace Friendica\Module;
+
+use Friendica\BaseModule;
+use Friendica\Core\ACL;
+use Friendica\Core\L10n;
+use Friendica\Network\HTTPException;
+use Friendica\Util\Strings;
+
+/**
+ * Creates a bookmarklet
+ * Shows either a editor browser or adds the given bookmarklet to the current user
+ */
+class Bookmarklet extends BaseModule
+{
+       public static function content()
+       {
+               $_GET['mode'] = 'minimal';
+
+               $app = self::getApp();
+               $config = $app->getConfig();
+
+               if (!local_user()) {
+                       $output = '<h2>' . L10n::t('Login') . '</h2>';
+                       $output .= Login::form($app->query_string, intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
+                       return $output;
+               }
+
+               $referer = Strings::normaliseLink(defaults($_SERVER, 'HTTP_REFERER', ''));
+               $page = Strings::normaliseLink($app->getBaseURL() . "/bookmarklet");
+
+               if (!strstr($referer, $page)) {
+                       if (empty($_REQUEST["url"])) {
+                               throw new HTTPException\BadRequestException(L10n::t('This page is missing a url parameter.'));
+                       }
+
+                       $content = add_page_info($_REQUEST["url"]);
+
+                       $x = [
+                               'is_owner'         => true,
+                               'allow_location'   => $app->user['allow_location'],
+                               'default_location' => $app->user['default-location'],
+                               'nickname'         => $app->user['nickname'],
+                               'lockstate'        => ((is_array($app->user) && ((strlen($app->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($app->user['deny_cid'])) || (strlen($app->user['deny_gid'])))) ? 'lock' : 'unlock'),
+                               'default_perms'    => ACL::getDefaultUserPermissions($app->user),
+                               'acl'              => ACL::getFullSelectorHTML($app->user, true),
+                               'bang'             => '',
+                               'visitor'          => 'block',
+                               'profile_uid'      => local_user(),
+                               'title'            => trim(defaults($_REQUEST, 'title', ''), '*'),
+                               'content'          => $content
+                       ];
+                       $output = status_editor($app, $x, 0, false);
+                       $output .= "<script>window.resizeTo(800,550);</script>";
+               } else {
+                       $output = '<h2>' . L10n::t('The post was created') . '</h2>';
+                       $output .= "<script>window.close()</script>";
+               }
+
+               return $output;
+       }
+}