]> git.mxchange.org Git - friendica-addons.git/blob - showmore/showmore.php
The $node parameter of DomDocument::saveHTML was added only in php version 5.3.6.
[friendica-addons.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
11 function showmore_install() {
12         register_hook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
13         register_hook('plugin_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
14         register_hook('plugin_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
15 }
16
17 function showmore_uninstall() {
18         unregister_hook('prepare_body', 'addon/showmore/showmore.php', 'showmore_prepare_body');
19         unregister_hook('plugin_settings', 'addon/showmore/showmore.php', 'showmore_addon_settings');
20         unregister_hook('plugin_settings_post', 'addon/showmore/showmore.php', 'showmore_addon_settings_post');
21 }
22
23 function showmore_addon_settings(&$a,&$s) {
24
25         if(! local_user())
26                 return;
27
28         /* Add our stylesheet to the page so we can make our settings look nice */
29
30         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'.$a->get_baseurl().'/addon/showmore/showmore.css'.'" media="all"/>'."\r\n";
31
32         $enable_checked = (intval(get_pconfig(local_user(),'showmore','disable')) ? '' : ' checked="checked"');
33         $chars = get_pconfig(local_user(),'showmore','chars');
34         if(!$chars)
35                 $chars = '1100';
36
37         $s .= '<div class="settings-block">';
38         $s .= '<h3>' . t('"Show more" Settings').'</h3>';
39         $s .= '<div id="showmore-wrapper">';
40
41         $s .= '<label id="showmore-enable-label" for="showmore-enable">'.t('Enable Show More').'</label>';
42         $s .= '<input id="showmore-enable" type="checkbox" name="showmore-enable" value="1"'.$enable_checked.' />';
43         $s .= '<div class="clear"></div>';
44         $s .= '<label id="showmore-label" for="showmore-chars">'.t('Cutting posts after how much characters').' </label>';
45         $s .= '<input id="showmore-words" type="text" name="showmore-chars" value="'.$chars.'" />';
46         $s .= '</div><div class="clear"></div>';
47
48         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="showmore-submit" name="showmore-submit" class="settings-submit" value="' . t('Submit') . '" /></div>';
49 //      $s .= '<div class="showmore-desc">' . t('Use /expression/ to provide regular expressions') . '</div>';
50         $s .= '</div>';
51
52         return;
53 }
54
55 function showmore_addon_settings_post(&$a,&$b) {
56
57         if(! local_user())
58                 return;
59
60         if($_POST['showmore-submit']) {
61                 set_pconfig(local_user(),'showmore','chars',trim($_POST['showmore-chars']));
62                 $enable = ((x($_POST,'showmore-enable')) ? intval($_POST['showmore-enable']) : 0);
63                 $disable = 1-$enable;
64                 set_pconfig(local_user(),'showmore','disable', $disable);
65                 info( t('Show More Settings saved.') . EOL);
66         }
67 }
68
69 function get_body_length($body) {
70         $string = trim($body);
71
72         // We need to get rid of hidden tags (display: none)
73         $dom = DomDocument::loadHTML($body);
74         $xpath = new DOMXPath($dom);
75
76         /*
77          * Checking any possible syntax of the style attribute with xpath is impossible
78          * So we just get any element with a style attribute, and check them with a regexp
79          */
80         $xr = $xpath->query('//*[@style]');
81         foreach($xr as $node) {
82                 if(preg_match('/.*display: *none *;.*/',$node->getAttribute('style'))) {
83                         // Hidden, remove it from its parent
84                         $node->parentNode->removeChild($node);
85                 }
86         }
87         // Now we can get the body of our HTML DomDocument, it contains only what is visible
88         $string = $dom->saveHTML();
89
90         $string = strip_tags($string);
91         return strlen($string);
92 }
93
94 function showmore_prepare_body(&$a,&$b) {
95
96         $words = null;
97         if(get_pconfig(local_user(),'showmore','disable'))
98                 return;
99
100         $chars = (int)get_pconfig(local_user(),'showmore','chars');
101         if(!$chars)
102                 $chars = 1100;
103
104         if (get_body_length($b['html']) > $chars) {
105                 $found = true;
106                 $shortened = trim(showmore_cutitem($b['html'], $chars))."...";
107         }
108
109         if($found) {
110                 $rnd = random_string(8);
111                 $b['html'] = '<span id="showmore-teaser-'.$rnd.'" style="display: block;">'.$shortened." ".
112                                 '<span id="showmore-wrap-'.$rnd.'" style="white-space:nowrap;" class="fakelink" onclick="openClose(\'showmore-'.$rnd.'\'); openClose(\'showmore-teaser-'.$rnd.'\');" >'.sprintf(t('show more')).'</span></span>'.
113                                 '<div id="showmore-'.$rnd.'" style="display: none;">'.$b['html'].'</div>';
114         }
115 }
116
117 function showmore_cutitem($text, $limit) {
118         $text = trim($text);
119
120         $text = mb_convert_encoding($text, 'HTML-ENTITIES', "UTF-8");
121
122         $text = substr($text, 0, $limit);
123
124         $pos1 = strrpos($text, "<");
125         $pos2 = strrpos($text, ">");
126         $pos3 = strrpos($text, "&");
127         $pos4 = strrpos($text, ";");
128
129         if ($pos1 > $pos3) {
130                 if ($pos1 > $pos2)
131                         $text = substr($text, 0, $pos1);
132         } else {
133                 if ($pos3 > $pos4)
134                         $text = substr($text, 0, $pos3);
135         }
136
137         $doc = new DOMDocument();
138         $doc->preserveWhiteSpace = false;
139
140         $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
141         @$doc->loadHTML($doctype."<html><body>".$text."</body></html>");
142
143         $text = $doc->saveHTML();
144         $text = str_replace(array("<html><body>", "</body></html>", $doctype), array("", "", ""), $text);
145
146         return($text);
147 }