]> git.mxchange.org Git - friendica-addons.git/blob - langfilter/langfilter.php
Merge pull request #300 from strk/system-detected-language
[friendica-addons.git] / langfilter / langfilter.php
1 <?php
2 /*
3  * Name: Language Filter
4  * Version: 0.1
5  * Description: Filters out postings in languages not spoken by the users
6  * Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
7  * License: MIT
8  */
9
10 require_once('library/langdet/Text/LanguageDetect.php');
11
12 /* Define the hooks we want to use
13  * that is, we have settings, we need to save the settings and we want
14  * to modify the content of a posting when friendica prepares it.
15  */
16 function langfilter_install() {
17         register_hook('prepare_body',         'addon/langfilter/langfilter.php', 'langfilter_prepare_body', 10);
18         register_hook('plugin_settings',      'addon/langfilter/langfilter.php', 'langfilter_addon_settings');
19         register_hook('plugin_settings_post', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings_post');
20 }
21 function langfilter_uninstall() {
22         unregister_hook('prepare_body',         'addon/langfilter/langfilter.php', 'langfilter_prepare_body');
23         unregister_hook('plugin_settings',      'addon/langfilter/langfilter.php', 'langfilter_addon_settings');
24         unregister_hook('plugin_settings_post', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings_post');
25 }
26
27 /* The settings
28  * 1st check if somebody logged in is calling
29  * 2nd get the current settings
30  * 3rd parse a SMARTY3 template, replacing some translateable strings for the form
31  */
32 function langfilter_addon_settings(&$a,&$s) {
33         if(! local_user())
34                 return;
35
36         $enable_checked = (intval(get_pconfig(local_user(),'langfilter','disable')) ? '' : ' checked="checked" ');
37         $languages = get_pconfig(local_user(),'langfilter','languages');
38         if(! $languages)
39                 $languages = 'en,de,fr,it,es';
40
41         $t = get_markup_template("settings.tpl", "addon/langfilter/" );
42         $s .= replace_macros ($t, array(
43             '$title' => t("Language Filter"),
44             '$intro' => t ('This addon tries to identify the language of a postings. If it does not match any language spoken by you (see below) the posting will be collapsed. Remember detecting the language is not perfect, especially with short postings.'),
45             '$enabled' => array('langfilter_enable', t('Use the language filter'), $enable_checked, ''),
46             '$languages' => array('langfilter_languages', t('I speak'), $languages, t('List of abbreviations for languages you speak, comma seperated. For excample "de,it".') ),
47             '$submit' => t('Save Settings'),
48         ));
49
50         return;
51 }
52 /* Save the settings
53  * 1st check it's a logged in user calling
54  * 2nd check the langfilter form is to be saved
55  * 3rd save the settings to the DB for later usage
56  */
57 function langfilter_addon_settings_post(&$a,&$b) {
58         if(! local_user())
59                 return;
60
61         if($_POST['langfilter-settings-submit']) {
62                 set_pconfig(local_user(),'langfilter','languages',trim($_POST['langfilter_languages']));
63                 $enable = ((x($_POST,'langfilter_enable')) ? intval($_POST['langfilter_enable']) : 0);
64                 $disable = 1-$enable;
65                 set_pconfig(local_user(),'langfilter','disable', $disable);
66                 info( t('Language Filter Settings saved.') . EOL);
67         }
68 }
69 /* Actually filter postings by their language
70  * 1st check if the user wants to filter postings
71  * 2nd get the user settings which languages shall be not filtered out
72  * 3rd determine the language of a posting
73  * 4th if the determined language does not fit to the spoken languages
74  *     of the user, then collapse the posting, but provide a link to
75  *     expand it again.
76  */
77 function langfilter_prepare_body(&$a,&$b) {
78         if(get_pconfig(local_user(),'langfilter','disable'))
79                 return;
80
81         # Never filter own messages
82         # TODO: find a better way to extract this
83         $logged_user_profile = $a->config['system']['url'] . '/profile/' . $a->user['nickname'];
84         if ( $logged_user_profile == $b['item']['author-link'] ) return;
85
86         if(local_user()) {
87                 $langs = get_pconfig(local_user(),'langfilter','languages');
88         }
89         if($langs) {
90                 $arr = explode(',',$langs);
91         } else {
92                 return;
93         }
94
95         $found = false;
96
97     $opts = $b['item']['postopts'];
98     if ( $opts ) {
99       if ( preg_match('/^lang=([^;]*)/', $opts, $matches ) )
100       {
101          $lang = $matches[1];
102          $lng = Text_LanguageDetect_ISO639::nameToCode2($lang);
103       }
104     }
105     if ($lng==null)
106                 return;
107     if (! in_array($lng, $arr))
108                 $found = true;
109         if ($lng==null)
110                 $found = false;
111
112         if($found) {
113                 $rnd = random_string(8);
114                 $b['html'] = '<div id="langfilter-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'langfilter-' . $rnd . '\'); >' . sprintf( t('unspoken language %s - Click to open/close'),$lang ) . '</div><div id="langfilter-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
115         }
116 }
117 ?>