]> git.mxchange.org Git - friendica-addons.git/blobdiff - showmore/showmore.php
[securemail] Bump phpseclib dependency to version 3.0.19
[friendica-addons.git] / showmore / showmore.php
index b46fe7400663d5fcc075d05b71095eb2a4ae790d..8e85925aec8e5f19fa0884af4e587f868bfd4b48 100644 (file)
@@ -7,74 +7,55 @@
  *         based upon NSFW from Mike Macgirvin <http://macgirvin.com/profile/mike>
  *
  */
-use Friendica\Core\Addon;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
+
+use Friendica\App;
+use Friendica\Core\Hook;
+use Friendica\Core\Renderer;
+use Friendica\DI;
 use Friendica\Util\Strings;
 
 function showmore_install()
 {
-       Addon::registerHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
-       Addon::registerHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
-       Addon::registerHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
+       Hook::register('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
+       Hook::register('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
+       Hook::register('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
 }
 
-function showmore_uninstall()
+function showmore_addon_settings(array &$data)
 {
-       Addon::unregisterHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
-       Addon::unregisterHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
-       Addon::unregisterHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
-}
-
-function showmore_addon_settings(&$a, &$s)
-{
-       if (!local_user()) {
+       if (!DI::userSession()->getLocalUserId()) {
                return;
        }
 
-       /* Add our stylesheet to the page so we can make our settings look nice */
-
-       $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->getBaseURL().'/addon/showmore/showmore.css'.'" media="all"/>'."\r\n";
+       DI::page()->registerStylesheet(__DIR__ . '/showmore.css', 'all');
 
-       $enable_checked = (intval(PConfig::get(local_user(), 'showmore', 'disable')) ? '' : ' checked="checked"');
-       $chars = PConfig::get(local_user(), 'showmore', 'chars', 1100);
+       $enabled = !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'showmore', 'disable');
+       $chars   = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'showmore', 'chars', 1100);
 
-       $s .= '<span id="settings_showmore_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_showmore_expanded\'); openClose(\'settings_showmore_inflated\');">';
-       $s .= '<h3>' . L10n::t('"Show more" Settings').'</h3>';
-       $s .= '</span>';
-       $s .= '<div id="settings_showmore_expanded" class="settings-block" style="display: none;">';
-       $s .= '<span class="fakelink" onclick="openClose(\'settings_showmore_expanded\'); openClose(\'settings_showmore_inflated\');">';
-       $s .= '<h3>' . L10n::t('"Show more" Settings').'</h3>';
-       $s .= '</span>';
+       $t    = Renderer::getMarkupTemplate('settings.tpl', 'addon/showmore/');
+       $html = Renderer::replaceMacros($t, [
+               '$enabled' => ['showmore-enable', DI::l10n()->t('Enable Show More'), $enabled],
+               '$chars'   => ['showmore-chars', DI::l10n()->t('Cutting posts after how many characters'), $chars],
+       ]);
 
-       $s .= '<div id="showmore-wrapper">';
-
-       $s .= '<label id="showmore-enable-label" for="showmore-enable">'.L10n::t('Enable Show More').'</label>';
-       $s .= '<input id="showmore-enable" type="checkbox" name="showmore-enable" value="1"'.$enable_checked.' />';
-       $s .= '<div class="clear"></div>';
-       $s .= '<label id="showmore-label" for="showmore-chars">'.L10n::t('Cutting posts after how much characters').' </label>';
-       $s .= '<input id="showmore-words" type="text" name="showmore-chars" value="'.$chars.'" />';
-       $s .= '</div><div class="clear"></div>';
-
-       $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="showmore-submit" name="showmore-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
-//     $s .= '<div class="showmore-desc">' . L10n::t('Use /expression/ to provide regular expressions') . '</div>';
-       $s .= '</div>';
-
-       return;
+       $data = [
+               'addon' => 'showmore',
+               'title' => DI::l10n()->t('"Show more" Settings'),
+               'html'  => $html,
+       ];
 }
 
-function showmore_addon_settings_post(&$a, &$b)
+function showmore_addon_settings_post(array &$b)
 {
-       if (!local_user()) {
+       if (!DI::userSession()->getLocalUserId()) {
                return;
        }
 
        if (!empty($_POST['showmore-submit'])) {
-               PConfig::set(local_user(), 'showmore', 'chars', trim($_POST['showmore-chars']));
-               $enable = (x($_POST, 'showmore-enable') ? intval($_POST['showmore-enable']) : 0);
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'showmore', 'chars', trim($_POST['showmore-chars']));
+               $enable = (!empty($_POST['showmore-enable']) ? intval($_POST['showmore-enable']) : 0);
                $disable = 1-$enable;
-               PConfig::set(local_user(), 'showmore', 'disable', $disable);
-               info(L10n::t('Show More Settings saved.') . EOL);
+               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'showmore', 'disable', $disable);
        }
 }
 
@@ -90,8 +71,9 @@ function get_body_length($body)
        // We need to get rid of hidden tags (display: none)
 
        // Get rid of the warning. It would be better to have some valid html as input
-       $dom = @DomDocument::loadHTML($body);
-       $xpath = new DOMXPath($dom);
+       $doc = new DOMDocument();
+       @$doc->loadHTML($body);
+       $xpath = new DOMXPath($doc);
 
        /*
         * Checking any possible syntax of the style attribute with xpath is impossible
@@ -105,24 +87,24 @@ function get_body_length($body)
                }
        }
        // Now we can get the body of our HTML DomDocument, it contains only what is visible
-       $string = $dom->saveHTML();
+       $string = $doc->saveHTML();
 
        $string = strip_tags($string);
        return strlen($string);
 }
 
-function showmore_prepare_body(\Friendica\App $a, &$hook_data)
+function showmore_prepare_body(&$hook_data)
 {
        // No combination with content filters
        if (!empty($hook_data['filter_reasons'])) {
                return;
        }
 
-       if (PConfig::get(local_user(), 'showmore', 'disable')) {
+       if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'showmore', 'disable')) {
                return;
        }
 
-       $chars = (int) PConfig::get(local_user(), 'showmore', 'chars', 1100);
+       $chars = (int) DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'showmore', 'chars', 1100);
 
        if (get_body_length($hook_data['html']) > $chars) {
                $found = true;
@@ -133,9 +115,9 @@ function showmore_prepare_body(\Friendica\App $a, &$hook_data)
 
        if ($found) {
                $rnd = Strings::getRandomHex(8);
-               $hook_data['html'] = '<span id="showmore-teaser-' . $rnd . '" class="showmore-teaser" style="display: block;">' . $shortened . " " .
-                       '<span id="showmore-wrap-' . $rnd . '" style="white-space:nowrap;" class="showmore-wrap fakelink" onclick="openClose(\'showmore-' . $rnd . '\'); openClose(\'showmore-teaser-' . $rnd . '\');" >' . L10n::t('show more') . '</span></span>' .
-                       '<div id="showmore-' . $rnd . '" class="showmore-content" style="display: none;">' . $hook_data['html'] . '</div>';
+               $hook_data['html'] = '<span id="showmore-teaser-' . $rnd . '" class="showmore-teaser" style="display: block;" aria-hidden="true" dir="auto">' . $shortened . " " .
+                       '<span id="showmore-wrap-' . $rnd . '" style="white-space:nowrap;" class="showmore-wrap fakelink" onclick="openClose(\'showmore-' . $rnd . '\'); openClose(\'showmore-teaser-' . $rnd . '\');">' . DI::l10n()->t('show more') . '</span></span>' .
+                       '<div id="showmore-' . $rnd . '" class="showmore-content" style="display: none;" aria-hidden="false" dir="auto">' . $hook_data['html'] . '</div>';
        }
 }