Merge pull request #743 from nupplaphil/rename_App_Methods
[friendica-addons.git/.git] / showmore / showmore.php
1 <?php
2 /**
3  * Name: Show More
4  * Description: Collapse posts
5  * Version: 1.0
6  * Author: Michael Vogel <ike@piratenpartei.de>
7  *         based upon NSFW from Mike Macgirvin <http://macgirvin.com/profile/mike>
8  *
9  */
10 use Friendica\Core\Addon;
11 use Friendica\Core\L10n;
12 use Friendica\Core\PConfig;
13
14 function showmore_install()
15 {
16         Addon::registerHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
17         Addon::registerHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
18         Addon::registerHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
19 }
20
21 function showmore_uninstall()
22 {
23         Addon::unregisterHook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
24         Addon::unregisterHook('addon_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
25         Addon::unregisterHook('addon_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
26 }
27
28 function showmore_addon_settings(&$a, &$s)
29 {
30         if (!local_user()) {
31                 return;
32         }
33
34         /* Add our stylesheet to the page so we can make our settings look nice */
35
36         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->getBaseURL().'/addon/showmore/showmore.css'.'" media="all"/>'."\r\n";
37
38         $enable_checked = (intval(PConfig::get(local_user(), 'showmore', 'disable')) ? '' : ' checked="checked"');
39         $chars = PConfig::get(local_user(), 'showmore', 'chars', 1100);
40
41         $s .= '<span id="settings_showmore_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_showmore_expanded\'); openClose(\'settings_showmore_inflated\');">';
42         $s .= '<h3>' . L10n::t('"Show more" Settings').'</h3>';
43         $s .= '</span>';
44         $s .= '<div id="settings_showmore_expanded" class="settings-block" style="display: none;">';
45         $s .= '<span class="fakelink" onclick="openClose(\'settings_showmore_expanded\'); openClose(\'settings_showmore_inflated\');">';
46         $s .= '<h3>' . L10n::t('"Show more" Settings').'</h3>';
47         $s .= '</span>';
48
49         $s .= '<div id="showmore-wrapper">';
50
51         $s .= '<label id="showmore-enable-label" for="showmore-enable">'.L10n::t('Enable Show More').'</label>';
52         $s .= '<input id="showmore-enable" type="checkbox" name="showmore-enable" value="1"'.$enable_checked.' />';
53         $s .= '<div class="clear"></div>';
54         $s .= '<label id="showmore-label" for="showmore-chars">'.L10n::t('Cutting posts after how much characters').' </label>';
55         $s .= '<input id="showmore-words" type="text" name="showmore-chars" value="'.$chars.'" />';
56         $s .= '</div><div class="clear"></div>';
57
58         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="showmore-submit" name="showmore-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
59 //      $s .= '<div class="showmore-desc">' . L10n::t('Use /expression/ to provide regular expressions') . '</div>';
60         $s .= '</div>';
61
62         return;
63 }
64
65 function showmore_addon_settings_post(&$a, &$b)
66 {
67         if (!local_user()) {
68                 return;
69         }
70
71         if (!empty($_POST['showmore-submit'])) {
72                 PConfig::set(local_user(), 'showmore', 'chars', trim($_POST['showmore-chars']));
73                 $enable = (x($_POST, 'showmore-enable') ? intval($_POST['showmore-enable']) : 0);
74                 $disable = 1-$enable;
75                 PConfig::set(local_user(), 'showmore', 'disable', $disable);
76                 info(L10n::t('Show More Settings saved.') . EOL);
77         }
78 }
79
80 function get_body_length($body)
81 {
82         $string = trim($body);
83
84         // DomDocument doesn't like empty strings
85         if (!strlen($string)) {
86                 return 0;
87         }
88
89         // We need to get rid of hidden tags (display: none)
90
91         // Get rid of the warning. It would be better to have some valid html as input
92         $dom = @DomDocument::loadHTML($body);
93         $xpath = new DOMXPath($dom);
94
95         /*
96          * Checking any possible syntax of the style attribute with xpath is impossible
97          * So we just get any element with a style attribute, and check them with a regexp
98          */
99         $xr = $xpath->query('//*[@style]');
100         foreach ($xr as $node) {
101                 if (preg_match('/.*display: *none *;.*/',$node->getAttribute('style'))) {
102                         // Hidden, remove it from its parent
103                         $node->parentNode->removeChild($node);
104                 }
105         }
106         // Now we can get the body of our HTML DomDocument, it contains only what is visible
107         $string = $dom->saveHTML();
108
109         $string = strip_tags($string);
110         return strlen($string);
111 }
112
113 function showmore_prepare_body(\Friendica\App $a, &$hook_data)
114 {
115         // No combination with content filters
116         if (!empty($hook_data['filter_reasons'])) {
117                 return;
118         }
119
120         if (PConfig::get(local_user(), 'showmore', 'disable')) {
121                 return;
122         }
123
124         $chars = (int) PConfig::get(local_user(), 'showmore', 'chars', 1100);
125
126         if (get_body_length($hook_data['html']) > $chars) {
127                 $found = true;
128                 $shortened = trim(showmore_cutitem($hook_data['html'], $chars)) . "...";
129         } else {
130                 $found = false;
131         }
132
133         if ($found) {
134                 $rnd = random_string(8);
135                 $hook_data['html'] = '<span id="showmore-teaser-' . $rnd . '" class="showmore-teaser" style="display: block;">' . $shortened . " " .
136                         '<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>' .
137                         '<div id="showmore-' . $rnd . '" class="showmore-content" style="display: none;">' . $hook_data['html'] . '</div>';
138         }
139 }
140
141 function showmore_cutitem($text, $limit)
142 {
143         $text = trim($text);
144
145         $text = mb_convert_encoding($text, 'HTML-ENTITIES', "UTF-8");
146
147         $text = substr($text, 0, $limit);
148
149         $pos1 = strrpos($text, "<");
150         $pos2 = strrpos($text, ">");
151         $pos3 = strrpos($text, "&");
152         $pos4 = strrpos($text, ";");
153
154         if ($pos1 > $pos3) {
155                 if ($pos1 > $pos2)
156                         $text = substr($text, 0, $pos1);
157         } else {
158                 if ($pos3 > $pos4)
159                         $text = substr($text, 0, $pos3);
160         }
161
162         $doc = new DOMDocument();
163         $doc->preserveWhiteSpace = false;
164
165         $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
166         @$doc->loadHTML($doctype."<html><body>".$text."</body></html>");
167
168         $text = $doc->saveHTML();
169         $text = str_replace(["<html><body>", "</body></html>", $doctype], ["", "", ""], $text);
170
171         return $text;
172 }