]> git.mxchange.org Git - friendica-addons.git/blob - blockem/blockem.php
3183915c5aa56bb2d14184f0ff04ad744d8d167f
[friendica-addons.git] / blockem / blockem.php
1 <?php
2 /**
3  * Name: blockem
4  * Description: Allows users to hide content by collapsing posts and replies.
5  * Version: 1.0
6  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7  * Author: Roland Haeder <https://f.haeder.net/roland>
8  */
9
10 use Friendica\App;
11 use Friendica\Core\Hook;
12 use Friendica\DI;
13 use Friendica\Util\Strings;
14
15 global $blockem_words;
16
17 function blockem_install()
18 {
19         Hook::register('prepare_body_content_filter', 'addon/blockem/blockem.php', 'blockem_prepare_body_content_filter');
20         Hook::register('display_item'               , 'addon/blockem/blockem.php', 'blockem_display_item');
21         Hook::register('addon_settings'             , 'addon/blockem/blockem.php', 'blockem_addon_settings');
22         Hook::register('addon_settings_post'        , 'addon/blockem/blockem.php', 'blockem_addon_settings_post');
23         Hook::register('conversation_start'         , 'addon/blockem/blockem.php', 'blockem_conversation_start');
24         Hook::register('item_photo_menu'            , 'addon/blockem/blockem.php', 'blockem_item_photo_menu');
25         Hook::register('enotify_store'              , 'addon/blockem/blockem.php', 'blockem_enotify_store');
26 }
27
28 function blockem_addon_settings (App $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         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/blockem/blockem.css' . '" media="all" />' . "\r\n";
36
37         $words = DI::pConfig()->get(local_user(), 'blockem', 'words');
38
39         if (!$words) {
40                 $words = '';
41         }
42
43         $s .= '<span id="settings_blockem_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_blockem_expanded\'); openClose(\'settings_blockem_inflated\');">';
44         $s .= '<h3>' . DI::l10n()->t('Blockem') . '</h3>';
45         $s .= '</span>';
46         $s .= '<div id="settings_blockem_expanded" class="settings-block" style="display: none;">';
47         $s .= '<span class="fakelink" onclick="openClose(\'settings_blockem_expanded\'); openClose(\'settings_blockem_inflated\');">';
48         $s .= '<h3>' . DI::l10n()->t('Blockem') . '</h3>';
49         $s .= '</span>';
50
51         $s .= '<div id="blockem-wrapper">';
52         $s .= '<div id="blockem-desc">'. DI::l10n()->t("Hides user's content by collapsing posts. Also replaces their avatar with generic image.") . ' </div>';
53         $s .= '<label id="blockem-label" for="blockem-words">' . DI::l10n()->t('Comma separated profile URLS:') . ' </label>';
54         $s .= '<textarea id="blockem-words" type="text" name="blockem-words" >' . htmlspecialchars($words) . '</textarea>';
55         $s .= '</div><div class="clear"></div>';
56
57         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="blockem-submit" name="blockem-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
58
59         return;
60
61 }
62
63 function blockem_addon_settings_post(App $a, array &$b)
64 {
65         if (!local_user()) {
66                 return;
67         }
68
69         if (!empty($_POST['blockem-submit'])) {
70                 DI::pConfig()->set(local_user(), 'blockem', 'words', trim($_POST['blockem-words']));
71         }
72 }
73
74 function blockem_enotify_store(App $a, array &$b)
75 {
76         $words = DI::pConfig()->get($b['uid'], 'blockem', 'words');
77
78         if ($words) {
79                 $arr = explode(',', $words);
80         } else {
81                 return;
82         }
83
84         $found = false;
85
86         if (count($arr)) {
87                 foreach ($arr as $word) {
88                         if (!strlen(trim($word))) {
89                                 continue;
90                         }
91
92                         if (Strings::compareLink($b['url'], $word)) {
93                                 $found = true;
94                                 break;
95                         }
96                 }
97         }
98
99         if ($found) {
100                 // empty out the fields
101                 $b = [];
102         }
103 }
104
105 function blockem_prepare_body_content_filter(App $a, array &$hook_data)
106 {
107         if (!local_user()) {
108                 return;
109         }
110
111         $profiles_string = null;
112
113         if (local_user()) {
114                 $profiles_string = DI::pConfig()->get(local_user(), 'blockem', 'words');
115         }
116
117         if ($profiles_string) {
118                 $profiles_array = explode(',', $profiles_string);
119         } else {
120                 return;
121         }
122
123         $found = false;
124
125         foreach ($profiles_array as $word) {
126                 if (Strings::compareLink($hook_data['item']['author-link'], trim($word))) {
127                         $found = true;
128                         break;
129                 }
130         }
131
132         if ($found) {
133                 $hook_data['filter_reasons'][] = DI::l10n()->t('Filtered user: %s', $hook_data['item']['author-name']);
134         }
135 }
136
137 function blockem_display_item(App $a, array &$b = null)
138 {
139         if (!empty($b['output']['body']) && strstr($b['output']['body'], 'id="blockem-wrap-')) {
140                 $b['output']['thumb'] = DI::baseUrl()->get() . "/images/person-80.jpg";
141         }
142 }
143
144 function blockem_conversation_start(App $a, array &$b)
145 {
146         global $blockem_words;
147
148         if (!local_user()) {
149                 return;
150         }
151
152         $words = DI::pConfig()->get(local_user(), 'blockem', 'words');
153
154         if ($words) {
155                 $blockem_words = explode(',', $words);
156         }
157
158         DI::page()['htmlhead'] .= <<< EOT
159
160 <script>
161 function blockemBlock(author) {
162         $.get('blockem?block=' +author, function(data) {
163                 location.reload(true);
164         });
165 }
166 function blockemUnblock(author) {
167         $.get('blockem?unblock=' +author, function(data) {
168                 location.reload(true);
169         });
170 }
171 </script>
172
173 EOT;
174 }
175
176 function blockem_item_photo_menu(App $a, array &$b)
177 {
178         global $blockem_words;
179
180         if (!local_user() || $b['item']['self']) {
181                 return;
182         }
183
184         $blocked = false;
185         $author = $b['item']['author-link'];
186
187         if (!empty($blockem_words)) {
188                 foreach($blockem_words as $bloke) {
189                         if (Strings::compareLink($bloke,$author)) {
190                                 $blocked = true;
191                                 break;
192                         }
193                 }
194         }
195         if ($blocked) {
196                 $b['menu'][DI::l10n()->t('Unblock Author')] = 'javascript:blockemUnblock(\'' . $author . '\');';
197         } else {
198                 $b['menu'][DI::l10n()->t('Block Author')] = 'javascript:blockemBlock(\'' . $author . '\');';
199         }
200 }
201
202 function blockem_module()
203 {
204 }
205
206 function blockem_init(App $a)
207 {
208         if (!local_user()) {
209                 return;
210         }
211
212         $words = DI::pConfig()->get(local_user(), 'blockem', 'words');
213
214         if (array_key_exists('block', $_GET) && $_GET['block']) {
215                 if (strlen($words)) {
216                         $words .= ',';
217                 }
218
219                 $words .= trim($_GET['block']);
220         }
221
222         if (array_key_exists('unblock', $_GET) && $_GET['unblock']) {
223                 $arr = explode(',',$words);
224                 $newarr = [];
225
226                 if (count($arr)) {
227                         foreach ($arr as $x) {
228                                 if (!Strings::compareLink(trim($x), trim($_GET['unblock']))) {
229                                         $newarr[] = $x;
230                                 }
231                         }
232                 }
233
234                 $words = implode(',', $newarr);
235         }
236
237         DI::pConfig()->set(local_user(), 'blockem', 'words', $words);
238         exit();
239 }