]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/advancedcontentfilter.php
Merge pull request #596 from MrPetovan/task/add-advancedcontentfilter-addon
[friendica-addons.git] / advancedcontentfilter / advancedcontentfilter.php
1 <?php
2 /**
3  * Name: Advanced content Filter
4  * Description: Expression-based content filter
5  * Version: 1.0
6  * Author: Hypolite Petovan <https://friendica.mrpetovan.com/profile/hypolite>
7  * Maintainer: Hypolite Petovan <https://friendica.mrpetovan.com/profile/hypolite>
8  *
9  * Copyright (c) 2018 Hypolite Petovan
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions are met:
14  *    * Redistributions of source code must retain the above copyright notice,
15  *     this list of conditions and the following disclaimer.
16  *    * Redistributions in binary form must reproduce the above
17  *    * copyright notice, this list of conditions and the following disclaimer in
18  *      the documentation and/or other materials provided with the distribution.
19  *    * Neither the name of Friendica nor the names of its contributors
20  *      may be used to endorse or promote products derived from this software
21  *      without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL FRIENDICA BE LIABLE FOR ANY DIRECT,
27  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
32  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  *
34  */
35
36 use Friendica\App;
37 use Friendica\Core\Addon;
38 use Friendica\Core\L10n;
39 use Friendica\Core\System;
40 use Friendica\Database\DBStructure;
41 use Friendica\Network\HTTPException;
42 use Psr\Http\Message\ResponseInterface;
43 use Psr\Http\Message\ServerRequestInterface;
44 use Symfony\Component\ExpressionLanguage;
45
46 require_once 'boot.php';
47 require_once 'include/conversation.php';
48 require_once 'include/dba.php';
49 require_once 'include/security.php';
50
51 require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
52
53 function advancedcontentfilter_install()
54 {
55         Addon::registerHook('dbstructure_definition'     , __FILE__, 'advancedcontentfilter_dbstructure_definition');
56         Addon::registerHook('prepare_body_content_filter', __FILE__, 'advancedcontentfilter_prepare_body_content_filter');
57         Addon::registerHook('addon_settings'             , __FILE__, 'advancedcontentfilter_addon_settings');
58
59         DBStructure::update(false, true);
60
61         logger("installed advancedcontentfilter");
62 }
63
64 function advancedcontentfilter_uninstall()
65 {
66         Addon::unregisterHook('dbstructure_definition'     , __FILE__, 'advancedcontentfilter_dbstructure_definition');
67         Addon::unregisterHook('prepare_body_content_filter', __FILE__, 'advancedcontentfilter_prepare_body_content_filter');
68         Addon::unregisterHook('addon_settings'             , __FILE__, 'advancedcontentfilter_addon_settings');
69 }
70
71 /*
72  * Hooks
73  */
74
75 function advancedcontentfilter_dbstructure_definition(App $a, &$database)
76 {
77         $database["advancedcontentfilter_rules"] = [
78                 "comment" => "Advancedcontentfilter addon rules",
79                 "fields" => [
80                         "id"         => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented rule id"],
81                         "uid"        => ["type" => "int unsigned", "not null" => "1", "comment" => "Owner user id"],
82                         "name"       => ["type" => "varchar(255)", "not null" => "1", "comment" => "Rule name"],
83                         "expression" => ["type" => "mediumtext"  , "not null" => "1", "comment" => "Expression text"],
84                         "serialized" => ["type" => "mediumtext"  , "not null" => "1", "comment" => "Serialized parsed expression"],
85                         "active"     => ["type" => "boolean"     , "not null" => "1", "default" => "1", "comment" => "Whether the rule is active or not"],
86                         "created"    => ["type" => "datetime"    , "not null" => "1", "default" => NULL_DATE, "comment" => "Creation date"],
87                 ],
88                 "indexes" => [
89                         "PRIMARY" => ["id"],
90                         "uid_active" => ["uid", "active"],
91                 ]
92         ];
93 }
94
95 function advancedcontentfilter_prepare_body_content_filter(App $a, &$hook_data)
96 {
97         static $expressionLanguage;
98
99         if (is_null($expressionLanguage)) {
100                 $expressionLanguage = new ExpressionLanguage\ExpressionLanguage();
101         }
102
103         if (!local_user()) {
104                 return;
105         }
106
107         $vars = [];
108         foreach ($hook_data['item'] as $key => $value) {
109                 $vars[str_replace('-', '_', $key)] = $value;
110         }
111
112         $rules = Friendica\Core\Cache::get('rules_' . local_user());
113         if (!isset($rules)) {
114                 $rules = dba::inArray(dba::select(
115                         'advancedcontentfilter_rules',
116                         ['name', 'expression', 'serialized'],
117                         ['uid' => local_user(), 'active' => true]
118                 ));
119         }
120
121         if ($rules) {
122                 foreach($rules as $rule) {
123                         try {
124                                 $serializedParsedExpression = new ExpressionLanguage\SerializedParsedExpression(
125                                         $rule['expression'],
126                                         $rule['serialized']
127                                 );
128
129                                 $found = (bool) $expressionLanguage->evaluate($serializedParsedExpression, $vars);
130                         } catch (Exception $e) {
131                                 $found = false;
132                         }
133
134                         if ($found) {
135                                 $hook_data['filter_reasons'][] = L10n::t('Filtered by rule: %s', $rule['name']);
136                                 break;
137                         }
138                 }
139         }
140 }
141
142
143 function advancedcontentfilter_addon_settings(App $a, &$s)
144 {
145         if (!local_user()) {
146                 return;
147         }
148
149         $advancedcontentfilter = L10n::t('Advanced Content Filter');
150
151         $s .= <<<HTML
152                 <span class="settings-block fakelink" style="display: block;"><h3><a href="advancedcontentfilter">$advancedcontentfilter <i class="glyphicon glyphicon-share"></i></a></h3></span>
153 HTML;
154
155         return;
156 }
157
158 /*
159  * Module
160  */
161
162 function advancedcontentfilter_module() {}
163
164 function advancedcontentfilter_init(App $a)
165 {
166         if ($a->argv[1] == 'api') {
167                 $slim = new \Slim\App();
168
169                 require __DIR__ . '/src/middlewares.php';
170
171                 require __DIR__ . '/src/routes.php';
172                 $slim->run();
173
174                 exit;
175         }
176 }
177
178 function advancedcontentfilter_content(App $a)
179 {
180         if (!local_user()) {
181                 return \Friendica\Module\Login::form('/' . implode('/', $a->argv));
182         }
183
184         if ($a->argc > 0 && $a->argv[1] == 'help') {
185                 $lang = $a->user['language'];
186
187                 $default_dir = 'addon/advancedcontentfilter/doc/';
188                 $help_file = 'advancedcontentfilter.md';
189                 $help_path = $default_dir . $help_file;
190                 if (file_exists($default_dir . $lang . '/' . $help_file)) {
191                         $help_path = $default_dir . $lang . '/' . $help_file;
192                 }
193
194                 $content = file_get_contents($help_path);
195
196                 $html = \Friendica\Content\Text\Markdown::convert($content, false);
197
198                 $html = str_replace('code>', 'key>', $html);
199
200                 return $html;
201         } else {
202                 $t = get_markup_template('settings.tpl', 'addon/advancedcontentfilter/');
203                 return replace_macros($t, [
204                         '$current_theme' => $a->getCurrentTheme(),
205                         '$backtosettings' => L10n::t('Back to Addon Settings'),
206                         '$title' => L10n::t('Advanced Content Filter'),
207                         '$add_a_rule' => L10n::t('Add a Rule'),
208                         '$help' => L10n::t('Help'),
209                         '$advanced_content_filter_intro' => L10n::t('Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the <a href="advancedcontentfilter/help">help page</a>.'),
210                         '$your_rules' => L10n::t('Your rules'),
211                         '$no_rules' => L10n::t('You have no rules yet! Start adding one by clicking on the button above next to the title.'),
212                         '$disabled' => L10n::t('Disabled'),
213                         '$enabled' => L10n::t('Enabled'),
214                         '$disable_this_rule' => L10n::t('Disable this rule'),
215                         '$enable_this_rule' => L10n::t('Enable this rule'),
216                         '$edit_this_rule' => L10n::t('Edit this rule'),
217                         '$edit_the_rule' => L10n::t('Edit the rule'),
218                         '$save_this_rule' => L10n::t('Save this rule'),
219                         '$delete_this_rule' => L10n::t('Delete this rule'),
220                         '$rule' => L10n::t('Rule'),
221                         '$close' => L10n::t('Close'),
222                         '$addtitle' => L10n::t('Add new rule'),
223                         '$rule_name' => L10n::t('Rule Name'),
224                         '$rule_expression' => L10n::t('Rule Expression'),
225                         '$examples' => L10n::t('<p>Examples:</p><ul><li><pre>author_link == \'https://friendica.mrpetovan.com/profile/hypolite\'</pre></li><li>tags</li></ul>'),
226                         '$cancel' => L10n::t('Cancel'),
227                         '$rules' => advancedcontentfilter_get_rules(),
228                         '$baseurl' => System::baseUrl(true),
229                         '$form_security_token' => get_form_security_token()
230                 ]);
231         }
232 }
233
234 /*
235  * Common functions
236  */
237 function advancedcontentfilter_build_fields($data)
238 {
239         $fields = [];
240
241         if (!empty($data['name'])) {
242                 $fields['name'] = $data['name'];
243         }
244
245         if (!empty($data['expression'])) {
246                 $allowed_keys = [
247                         'author_id', 'author_link', 'author_name', 'author_avatar',
248                         'owner_id', 'owner_link', 'owner_name', 'owner_avatar',
249                         'contact_id', 'uid', 'id', 'parent', 'uri',
250                         'thr_parent', 'parent_uri',
251                         'content_warning',
252                         'commented', 'created', 'edited', 'received',
253                         'verb', 'object_type', 'postopts', 'plink', 'guid', 'wall', 'private', 'starred',
254                         'title', 'body',
255                         'file', 'event_id', 'location', 'coord', 'app', 'attach',
256                         'rendered_hash', 'rendered_html', 'object',
257                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
258                         'item_id', 'item_network', 'author_thumb', 'owner_thumb',
259                         'network', 'url', 'name', 'writable', 'self',
260                         'cid', 'alias',
261                         'event_created', 'event_edited', 'event_start', 'event_finish', 'event_summary',
262                         'event_desc', 'event_location', 'event_type', 'event_nofinish', 'event_adjust', 'event_ignore',
263                         'children', 'pagedrop', 'tags', 'hashtags', 'mentions',
264                 ];
265
266                 $expressionLanguage = new ExpressionLanguage\ExpressionLanguage();
267
268                 $parsedExpression = $expressionLanguage->parse($data['expression'], $allowed_keys);
269
270                 $serialized = serialize($parsedExpression->getNodes());
271
272                 $fields['expression'] = $data['expression'];
273                 $fields['serialized'] = $serialized;
274         }
275
276         if (isset($data['active'])) {
277                 $fields['active'] = intval($data['active']);
278         } else {
279                 $fields['active'] = 1;
280         }
281
282         return $fields;
283 }
284
285 /*
286  * API
287  */
288
289 function advancedcontentfilter_get_rules()
290 {
291         if (!local_user()) {
292                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
293         }
294
295         $rules = dba::inArray(dba::select('advancedcontentfilter_rules', [], ['uid' => local_user()]));
296
297         return json_encode($rules);
298 }
299
300 function advancedcontentfilter_get_rules_id(ServerRequestInterface $request, ResponseInterface $response, $args)
301 {
302         if (!local_user()) {
303                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
304         }
305
306         $rule = dba::selectFirst('advancedcontentfilter_rules', [], ['id' => $args['id'], 'uid' => local_user()]);
307
308         return json_encode($rule);
309 }
310
311 function advancedcontentfilter_post_rules(ServerRequestInterface $request)
312 {
313         if (!local_user()) {
314                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
315         }
316
317         if (!check_form_security_token()) {
318                 throw new HTTPException\BadRequestException(L10n::t('Invalid form security token, please refresh the page.'));
319         }
320
321         $data = json_decode($request->getBody(), true);
322
323         try {
324                 $fields = advancedcontentfilter_build_fields($data);
325         } catch (Exception $e) {
326                 throw new HTTPException\BadRequestException($e->getMessage(), 0, $e);
327         }
328
329         if (empty($fields['name']) || empty($fields['expression'])) {
330                 throw new HTTPException\BadRequestException(L10n::t('The rule name and expression are required.'));
331         }
332
333         $fields['uid'] = local_user();
334         $fields['created'] = \Friendica\Util\DateTimeFormat::utcNow();
335
336         if (!dba::insert('advancedcontentfilter_rules', $fields)) {
337                 throw new HTTPException\ServiceUnavaiableException(dba::errorMessage());
338         }
339
340         $rule = dba::selectFirst('advancedcontentfilter_rules', [], ['id' => dba::lastInsertId()]);
341
342         return json_encode(['message' => L10n::t('Rule successfully added'), 'rule' => $rule]);
343 }
344
345 function advancedcontentfilter_put_rules_id(ServerRequestInterface $request, ResponseInterface $response, $args)
346 {
347         if (!local_user()) {
348                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
349         }
350
351         if (!check_form_security_token()) {
352                 throw new HTTPException\BadRequestException(L10n::t('Invalid form security token, please refresh the page.'));
353         }
354
355         if (!dba::exists('advancedcontentfilter_rules', ['id' => $args['id'], 'uid' => local_user()])) {
356                 throw new HTTPException\NotFoundException(L10n::t('Rule doesn\'t exist or doesn\'t belong to you.'));
357         }
358
359         $data = json_decode($request->getBody(), true);
360
361         try {
362                 $fields = advancedcontentfilter_build_fields($data);
363         } catch (Exception $e) {
364                 throw new HTTPException\BadRequestException($e->getMessage(), 0, $e);
365         }
366
367         if (!dba::update('advancedcontentfilter_rules', $fields, ['id' => $args['id']])) {
368                 throw new HTTPException\ServiceUnavaiableException(dba::errorMessage());
369         }
370
371         return json_encode(['message' => L10n::t('Rule successfully updated')]);
372 }
373
374 function advancedcontentfilter_delete_rules_id(ServerRequestInterface $request, ResponseInterface $response, $args)
375 {
376         if (!local_user()) {
377                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
378         }
379
380         if (!check_form_security_token()) {
381                 throw new HTTPException\BadRequestException(L10n::t('Invalid form security token, please refresh the page.'));
382         }
383
384         if (!dba::exists('advancedcontentfilter_rules', ['id' => $args['id'], 'uid' => local_user()])) {
385                 throw new HTTPException\NotFoundException(L10n::t('Rule doesn\'t exist or doesn\'t belong to you.'));
386         }
387
388         if (!dba::delete('advancedcontentfilter_rules', ['id' => $args['id']])) {
389                 throw new HTTPException\ServiceUnavaiableException(dba::errorMessage());
390         }
391
392         return json_encode(['message' => L10n::t('Rule successfully deleted')]);
393 }
394
395 function advancedcontentfilter_get_variables_guid(ServerRequestInterface $request, ResponseInterface $response, $args)
396 {
397         if (!local_user()) {
398                 throw new HTTPException\UnauthorizedException(L10n::t('You must be logged in to use this method'));
399         }
400
401         if (!isset($args['guid'])) {
402                 throw new HTTPException\BadRequestException(L10n::t('Missing argument: guid.'));
403         }
404
405         $item = dba::fetch_first(item_query() . " AND `item`.`guid` = ? AND (`item`.`uid` = ? OR `item`.`uid` = 0) ORDER BY `item`.`uid` DESC", $args['guid'], local_user());
406
407         if (!\Friendica\Database\DBM::is_result($item)) {
408                 throw new HTTPException\NotFoundException(L10n::t('Unknown post with guid: %s', $args['guid']));
409         }
410
411         $tags = \Friendica\Model\Term::populateTagsFromItem($item);
412
413         $item['tags'] = $tags['tags'];
414         $item['hashtags'] = $tags['hashtags'];
415         $item['mentions'] = $tags['mentions'];
416
417         $return = [];
418         foreach ($item as $key => $value) {
419                 $return[str_replace('-', '_', $key)] = $value;
420         }
421
422         return json_encode(['variables' => str_replace('\\\'', '\'', var_export($return, true))]);
423 }