X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=xmpp%2Fxmpp.php;h=d9335483a8408c74dae266aed9710af2bc50226d;hp=21ac59cd2f800b95e50b898558caf4cab883aafc;hb=d9330e3b05c71bbd172293fb223271033d3b19f7;hpb=27a6e5829de8eacc6292d9b5549688ad15797e66;ds=sidebyside diff --git a/xmpp/xmpp.php b/xmpp/xmpp.php index 21ac59cd..d9335483 100644 --- a/xmpp/xmpp.php +++ b/xmpp/xmpp.php @@ -1,39 +1,48 @@ */ +use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\PConfig; -function xmpp_install() { +function xmpp_install() +{ register_hook('plugin_settings', 'addon/xmpp/xmpp.php', 'xmpp_plugin_settings'); register_hook('plugin_settings_post', 'addon/xmpp/xmpp.php', 'xmpp_plugin_settings_post'); register_hook('page_end', 'addon/xmpp/xmpp.php', 'xmpp_script'); register_hook('logged_in', 'addon/xmpp/xmpp.php', 'xmpp_login'); } -function xmpp_uninstall() { +function xmpp_uninstall() +{ unregister_hook('plugin_settings', 'addon/xmpp/xmpp.php', 'xmpp_plugin_settings'); unregister_hook('plugin_settings_post', 'addon/xmpp/xmpp.php', 'xmpp_plugin_settings_post'); unregister_hook('page_end', 'addon/xmpp/xmpp.php', 'xmpp_script'); unregister_hook('logged_in', 'addon/xmpp/xmpp.php', 'xmpp_login'); } -function xmpp_plugin_settings_post($a,$post) { - if(! local_user() || (! x($_POST,'xmpp-settings-submit'))) +function xmpp_plugin_settings_post() +{ + if (!local_user() || (!x($_POST, 'xmpp-settings-submit'))) { return; - set_pconfig(local_user(),'xmpp','enabled',intval($_POST['xmpp_enabled'])); - set_pconfig(local_user(),'xmpp','individual',intval($_POST['xmpp_individual'])); - set_pconfig(local_user(),'xmpp','bosh_proxy',$_POST['xmpp_bosh_proxy']); + } + PConfig::set(local_user(), 'xmpp', 'enabled', intval($_POST['xmpp_enabled'])); + PConfig::set(local_user(), 'xmpp', 'individual', intval($_POST['xmpp_individual'])); + PConfig::set(local_user(), 'xmpp', 'bosh_proxy', $_POST['xmpp_bosh_proxy']); - info( t('XMPP settings updated.') . EOL); + info(t('XMPP settings updated.') . EOL); } -function xmpp_plugin_settings(&$a,&$s) { - - if(! local_user()) +function xmpp_plugin_settings(App $a, &$s) +{ + if (!local_user()) { return; + } /* Add our stylesheet to the xmpp so we can make our settings look nice */ @@ -41,13 +50,13 @@ function xmpp_plugin_settings(&$a,&$s) { /* Get the current state of our config variable */ - $enabled = intval(get_pconfig(local_user(),'xmpp','enabled')); + $enabled = intval(PConfig::get(local_user(), 'xmpp', 'enabled')); $enabled_checked = (($enabled) ? ' checked="checked" ' : ''); - $individual = intval(get_pconfig(local_user(),'xmpp','individual')); + $individual = intval(PConfig::get(local_user(), 'xmpp', 'individual')); $individual_checked = (($individual) ? ' checked="checked" ' : ''); - $bosh_proxy = get_pconfig(local_user(),"xmpp","bosh_proxy"); + $bosh_proxy = PConfig::get(local_user(), "xmpp", "bosh_proxy"); /* Add some HTML to the existing form */ $s .= ''; @@ -63,15 +72,15 @@ function xmpp_plugin_settings(&$a,&$s) { $s .= ''; $s .= '
'; - if (get_config("xmpp", "central_userbase")) { + if (Config::get("xmpp", "central_userbase")) { $s .= ''; $s .= ''; $s .= '
'; } - if (!get_config("xmpp", "central_userbase") OR get_pconfig(local_user(),"xmpp","individual")) { - $s .= ''; - $s .= ' '; + if (!Config::get("xmpp", "central_userbase") || PConfig::get(local_user(), "xmpp", "individual")) { + $s .= ''; + $s .= ' '; $s .= '
'; } @@ -80,65 +89,77 @@ function xmpp_plugin_settings(&$a,&$s) { /* provide a submit button */ $s .= '
'; - } -function xmpp_login($a,$b) { +function xmpp_login() +{ if (!$_SESSION["allow_api"]) { - $password = substr(random_string(),0,16); - set_pconfig(local_user(), "xmpp", "password", $password); + $password = random_string(16); + PConfig::set(local_user(), "xmpp", "password", $password); } } -function xmpp_plugin_admin(&$a, &$o){ +function xmpp_plugin_admin(App $a, &$o) +{ $t = get_markup_template("admin.tpl", "addon/xmpp/"); $o = replace_macros($t, array( '$submit' => t('Save Settings'), - '$bosh_proxy' => array('bosh_proxy', t('Jabber BOSH host'), get_config('xmpp', 'bosh_proxy'), ''), - '$central_userbase' => array('central_userbase', t('Use central userbase'), get_config('xmpp', 'central_userbase'), t('If enabled, users will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the "auth_ejabberd.php" script.')), + '$bosh_proxy' => array('bosh_proxy', t('Jabber BOSH host'), Config::get('xmpp', 'bosh_proxy'), ''), + '$central_userbase' => array('central_userbase', t('Use central userbase'), Config::get('xmpp', 'central_userbase'), t('If enabled, users will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the "auth_ejabberd.php" script.')), )); } -function xmpp_plugin_admin_post(&$a){ - $bosh_proxy = ((x($_POST,'bosh_proxy')) ? trim($_POST['bosh_proxy']) : ''); - $central_userbase = ((x($_POST,'central_userbase')) ? intval($_POST['central_userbase']) : false); - set_config('xmpp','bosh_proxy',$bosh_proxy); - set_config('xmpp','central_userbase',$central_userbase); - info( t('Settings updated.'). EOL ); +function xmpp_plugin_admin_post() +{ + $bosh_proxy = ((x($_POST, 'bosh_proxy')) ? trim($_POST['bosh_proxy']) : ''); + $central_userbase = ((x($_POST, 'central_userbase')) ? intval($_POST['central_userbase']) : false); + Config::set('xmpp', 'bosh_proxy', $bosh_proxy); + Config::set('xmpp', 'central_userbase', $central_userbase); + info(t('Settings updated.') . EOL); } -function xmpp_script(&$a,&$s) { - xmpp_converse($a,$s); +function xmpp_script(App $a) +{ + xmpp_converse($a); } -function xmpp_converse(&$a,&$s) { - if (!local_user()) +function xmpp_converse(App $a) +{ + if (!local_user()) { return; + } - if ($_GET["mode"] == "minimal") + if ($_GET["mode"] == "minimal") { return; + } - if ($a->is_mobile || $a->is_tablet) + if ($a->is_mobile || $a->is_tablet) { return; + } - if (!get_pconfig(local_user(),"xmpp","enabled")) + if (!PConfig::get(local_user(), "xmpp", "enabled")) { return; + } + + if (in_array($a->query_string, array("admin/federation/"))) { + return; + } - $a->page['htmlhead'] .= ''."\n"; - $a->page['htmlhead'] .= ''."\n"; + $a->page['htmlhead'] .= '' . "\n"; + $a->page['htmlhead'] .= '' . "\n"; - if (get_config("xmpp", "central_userbase") AND !get_pconfig(local_user(),"xmpp","individual")) { - $bosh_proxy = get_config("xmpp", "bosh_proxy"); + if (Config::get("xmpp", "central_userbase") && !PConfig::get(local_user(), "xmpp", "individual")) { + $bosh_proxy = Config::get("xmpp", "bosh_proxy"); - $password = get_pconfig(local_user(), "xmpp", "password"); + $password = PConfig::get(local_user(), "xmpp", "password", '', true); if ($password == "") { - $password = substr(random_string(),0,16); - set_pconfig(local_user(), "xmpp", "password", $password); + $password = random_string(16); + PConfig::set(local_user(), "xmpp", "password", $password); } - $jid = $a->user["nickname"]."@".$a->get_hostname()."/converse-".substr(random_string(),0,5);; + $jid = $a->user["nickname"] . "@" . $a->get_hostname() . "/converse-" . random_string(5); $auto_login = "auto_login: true, authentication: 'login', @@ -146,18 +167,20 @@ function xmpp_converse(&$a,&$s) { password: '$password', allow_logout: false,"; } else { - $bosh_proxy = get_pconfig(local_user(), "xmpp", "bosh_proxy"); + $bosh_proxy = PConfig::get(local_user(), "xmpp", "bosh_proxy"); $auto_login = ""; } - if ($bosh_proxy == "") + if ($bosh_proxy == "") { return; + } - if (in_array($a->argv[0], array("manage", "logout"))) + if (in_array($a->argv[0], array("manage", "logout"))) { $additional_commands = "converse.user.logout();\n"; - else + } else { $additional_commands = ""; + } $on_ready = ""; @@ -194,4 +217,3 @@ function xmpp_converse(&$a,&$s) { }); "; } -?>