]> git.mxchange.org Git - friendica-addons.git/blob - langfilter/langfilter.php
Merge pull request #333 from tobiasd/20160103-ptbr
[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         $minconfidence = get_pconfig(local_user(),'langfilter','minconfidence')*100;
39         if(! $languages)
40                 $languages = 'en,de,fr,it,es';
41
42         $t = get_markup_template("settings.tpl", "addon/langfilter/" );
43         $s .= replace_macros ($t, array(
44             '$title' => t("Language Filter"),
45             '$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.'),
46             '$enabled' => array('langfilter_enable', t('Use the language filter'), $enable_checked, ''),
47             '$languages' => array('langfilter_languages', t('I speak'), $languages, t('List of abbreviations (iso2 codes) for languages you speak, comma separated. For example "de,it".') ),
48             '$minconfidence' => array('langfilter_minconfidence', t('Minimum confidence in language detection'), $minconfidence, t('Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.') ),
49             '$submit' => t('Save Settings'),
50         ));
51
52         return;
53 }
54 /* Save the settings
55  * 1st check it's a logged in user calling
56  * 2nd check the langfilter form is to be saved
57  * 3rd save the settings to the DB for later usage
58  */
59 function langfilter_addon_settings_post(&$a,&$b) {
60         if(! local_user())
61                 return;
62
63         if($_POST['langfilter-settings-submit']) {
64                 set_pconfig(local_user(),'langfilter','languages',trim($_POST['langfilter_languages']));
65                 $enable = ((x($_POST,'langfilter_enable')) ? intval($_POST['langfilter_enable']) : 0);
66                 $disable = 1-$enable;
67                 set_pconfig(local_user(),'langfilter','disable', $disable);
68                 $minconfidence = 0+$_POST['langfilter_minconfidence'];
69                 if ( ! $minconfidence ) $minconfidence = 0;
70                 else if ( $minconfidence < 0 ) $minconfidence = 0;
71                 else if ( $minconfidence > 100 ) $minconfidence = 100;
72                 set_pconfig(local_user(),'langfilter','minconfidence', $minconfidence/100.0);
73                 info( t('Language Filter Settings saved.') . EOL);
74         }
75 }
76 /* Actually filter postings by their language
77  * 1st check if the user wants to filter postings
78  * 2nd get the user settings which languages shall be not filtered out
79  * 3rd extract the language of a posting
80  * 4th if the determined language does not fit to the spoken languages
81  *     of the user, then collapse the posting, but provide a link to
82  *     expand it again.
83  */
84 function langfilter_prepare_body(&$a,&$b) {
85
86     $logged_user = local_user();
87     if ( ! $logged_user ) return;
88
89     # Never filter own messages
90     # TODO: find a better way to extract this
91     $logged_user_profile = $a->config['system']['url'] . '/profile/' . $a->user['nickname'];
92     if ( $logged_user_profile == $b['item']['author-link'] ) return;
93
94     # Don't filter if language filter is disabled
95     if( get_pconfig($logged_user,'langfilter','disable') ) return;
96
97     $spoken_config = get_pconfig(local_user(),'langfilter','languages');
98     $minconfidence = get_pconfig(local_user(),'langfilter','minconfidence');
99
100     # Don't filter if no spoken languages are configured 
101     if ( ! $spoken_config ) return;
102     $spoken_languages = explode(',', $spoken_config);
103
104     # Extract the language of the post
105     $opts = $b['item']['postopts'];
106     if ( ! $opts ) return; # no options associated to post
107     if ( ! preg_match('/\blang=([^;]*);([^:]*)/', $opts, $matches ) )
108             return; # no lang options associated to post
109
110     $lang = $matches[1];
111     $confidence = $matches[2];
112
113     # Do not filter if language detection confidence is too low
114     if ( $minconfidence && $confidence < $minconfidence ) return;
115
116     $iso2 = Text_LanguageDetect_ISO639::nameToCode2($lang);
117
118     if ( ! $iso2 ) return;
119     $spoken = in_array($iso2, $spoken_languages);
120
121     if( ! $spoken ) {
122         $rnd = random_string(8);
123         $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>';
124     }
125 }
126 ?>