friendica-addons/langfilter/langfilter.php

154 lines
6.4 KiB
PHP
Raw Normal View History

<?php
/*
* Name: Language Filter
* Version: 0.1
* Description: Filters out postings in languages not spoken by the users
* Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
* License: MIT
*/
use Friendica\App;
use Friendica\Core\Addon;
2018-01-22 19:03:11 +00:00
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
/* Define the hooks we want to use
* that is, we have settings, we need to save the settings and we want
* to modify the content of a posting when friendica prepares it.
*/
function langfilter_install()
{
Addon::registerHook('prepare_body', 'addon/langfilter/langfilter.php', 'langfilter_prepare_body', 10);
Addon::registerHook('addon_settings', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings');
Addon::registerHook('addon_settings_post', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings_post');
}
function langfilter_uninstall()
{
Addon::unregisterHook('prepare_body', 'addon/langfilter/langfilter.php', 'langfilter_prepare_body');
Addon::unregisterHook('addon_settings', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings');
Addon::unregisterHook('addon_settings_post', 'addon/langfilter/langfilter.php', 'langfilter_addon_settings_post');
}
/* The settings
* 1st check if somebody logged in is calling
* 2nd get the current settings
* 3rd parse a SMARTY3 template, replacing some translateable strings for the form
*/
2018-02-12 00:00:01 +00:00
function langfilter_addon_settings(&$a,&$s) {
if(! local_user())
return;
2018-02-12 00:00:01 +00:00
$enable_checked = (intval(get_pconfig(local_user(),'langfilter','disable')) ? '' : ' checked="checked" ');
$languages = get_pconfig(local_user(),'langfilter','languages');
$minconfidence = get_pconfig(local_user(),'langfilter','minconfidence')*100;
$minlength = get_pconfig(local_user(),'langfilter','minlength');
if(! $languages)
$languages = 'en,de,fr,it,es';
$t = get_markup_template("settings.tpl", "addon/langfilter/");
2018-01-15 13:15:33 +00:00
$s .= replace_macros($t, [
2018-01-22 19:03:11 +00:00
'$title' => L10n::t("Language Filter"),
'$intro' => L10n::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.'),
'$enabled' => ['langfilter_enable', L10n::t('Use the language filter'), $enable_checked, ''],
'$languages' => ['langfilter_languages', L10n::t('I speak'), $languages, L10n::t('List of abbreviations (iso2 codes) for languages you speak, comma separated. For example "de,it".')],
'$minconfidence' => ['langfilter_minconfidence', L10n::t('Minimum confidence in language detection'), $minconfidence, L10n::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.')],
'$minlength' => ['langfilter_minlength', L10n::t('Minimum length of message body'), $minlength, L10n::t('Minimum length of message body for language filter to be used. Posts shorter than this number of characters will not be filtered.')],
'$submit' => L10n::t('Save Settings'),
2018-01-15 13:15:33 +00:00
]);
return;
}
/* Save the settings
* 1st check it's a logged in user calling
* 2nd check the langfilter form is to be saved
* 3rd save the settings to the DB for later usage
*/
2018-02-12 00:00:01 +00:00
function langfilter_addon_settings_post(&$a,&$b) {
if(! local_user())
return;
if ($_POST['langfilter-settings-submit']) {
PConfig::set(local_user(), 'langfilter', 'languages', trim($_POST['langfilter_languages']));
$enable = ((x($_POST, 'langfilter_enable')) ? intval($_POST['langfilter_enable']) : 0);
$disable = 1 - $enable;
PConfig::set(local_user(), 'langfilter', 'disable', $disable);
$minconfidence = 0 + $_POST['langfilter_minconfidence'];
if (!$minconfidence) {
$minconfidence = 0;
} elseif ($minconfidence < 0) {
$minconfidence = 0;
} elseif ($minconfidence > 100) {
$minconfidence = 100;
}
PConfig::set(local_user(), 'langfilter', 'minconfidence', $minconfidence / 100.0);
$minlength = 0 + $_POST['langfilter_minlength'];
if (!$minlength) {
$minlength = 32;
} elseif ($minlengt8h < 0) {
$minlength = 32;
}
PConfig::set(local_user(), 'langfilter', 'minlength', $minlength);
2018-01-22 19:03:11 +00:00
info(L10n::t('Language Filter Settings saved.') . EOL);
}
}
/* Actually filter postings by their language
* 1st check if the user wants to filter postings
* 2nd get the user settings which languages shall be not filtered out
* 3rd extract the language of a posting
* 4th if the determined language does not fit to the spoken languages
* of the user, then collapse the posting, but provide a link to
* expand it again.
*/
2018-02-12 00:00:01 +00:00
function langfilter_prepare_body(&$a,&$b) {
2018-02-12 00:00:01 +00:00
$logged_user = local_user();
if ( ! $logged_user ) return;
2015-09-09 17:41:38 +00:00
2018-02-12 00:00:01 +00:00
# Never filter own messages
# TODO: find a better way to extract this
$logged_user_profile = $a->config['system']['url'] . '/profile/' . $a->user['nickname'];
if ( $logged_user_profile == $b['item']['author-link'] ) return;
2018-02-12 00:00:01 +00:00
# Don't filter if language filter is disabled
if( get_pconfig($logged_user,'langfilter','disable') ) return;
2015-09-10 07:54:26 +00:00
2018-02-12 00:00:01 +00:00
# Don't filter if body lenght is below minimum
$minlen = get_pconfig(local_user(),'langfilter','minlength');
if ( ! $minlen ) $minlen = 32;
if ( strlen($b['item']['body']) < $minlen ) return;
2018-02-12 00:00:01 +00:00
$spoken_config = get_pconfig(local_user(),'langfilter','languages');
$minconfidence = get_pconfig(local_user(),'langfilter','minconfidence');
2018-02-12 00:00:01 +00:00
# Don't filter if no spoken languages are configured
if ( ! $spoken_config ) return;
$spoken_languages = explode(',', $spoken_config);
2018-02-12 00:00:01 +00:00
# Extract the language of the post
$opts = $b['item']['postopts'];
if ( ! $opts ) return; # no options associated to post
if ( ! preg_match('/\blang=([^;]*);([^:]*)/', $opts, $matches ) )
return; # no lang options associated to post
2018-02-12 00:00:01 +00:00
$lang = $matches[1];
$confidence = $matches[2];
2018-02-12 00:00:01 +00:00
# Do not filter if language detection confidence is too low
if ( $minconfidence && $confidence < $minconfidence ) return;
2018-02-12 00:00:01 +00:00
$iso2 = Text_LanguageDetect_ISO639::nameToCode2($lang);
2018-02-12 00:00:01 +00:00
if ( ! $iso2 ) return;
$spoken = in_array($iso2, $spoken_languages);
if (!$spoken) {
$rnd = random_string(8);
2018-01-22 19:03:11 +00:00
$b['html'] = '<div id="langfilter-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'langfilter-' . $rnd . '\'); >' . L10n::t('unspoken language %s - Click to open/close', $lang) . '</div><div id="langfilter-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
}
}
2018-02-12 00:00:01 +00:00
?>