X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=xmpp%2Fxmpp.php;h=81adec8486b0848f74b7a3fa208c998e6d55ddcc;hb=1030498c0980ebed11147c939837cb930802a0c4;hp=753ea0a505735337692185e69bb3dd0b57fd332f;hpb=6d6e73096afb22e95678c651e055337f1bf5405d;p=friendica-addons.git diff --git a/xmpp/xmpp.php b/xmpp/xmpp.php index 753ea0a5..81adec84 100644 --- a/xmpp/xmpp.php +++ b/xmpp/xmpp.php @@ -4,74 +4,77 @@ * Description: Embedded XMPP (Jabber) client * Version: 0.1 * Author: Michael Vogel + * Status: Unsupported */ -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'); +use Friendica\App; +use Friendica\Core\Hook; +use Friendica\Core\Renderer; +use Friendica\DI; +use Friendica\Util\Strings; + +function xmpp_install() +{ + Hook::register('addon_settings', 'addon/xmpp/xmpp.php', 'xmpp_addon_settings'); + Hook::register('addon_settings_post', 'addon/xmpp/xmpp.php', 'xmpp_addon_settings_post'); + Hook::register('page_end', 'addon/xmpp/xmpp.php', 'xmpp_script'); + Hook::register('logged_in', 'addon/xmpp/xmpp.php', 'xmpp_login'); } -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_addon_settings_post() +{ + if (!local_user() || empty($_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']); + } - info( t('XMPP settings updated.') . EOL); + DI::pConfig()->set(local_user(), 'xmpp', 'enabled', $_POST['xmpp_enabled'] ?? false); + DI::pConfig()->set(local_user(), 'xmpp', 'individual', $_POST['xmpp_individual'] ?? false); + DI::pConfig()->set(local_user(), 'xmpp', 'bosh_proxy', $_POST['xmpp_bosh_proxy'] ?? ''); } -function xmpp_plugin_settings(&$a,&$s) { - - if(! local_user()) +function xmpp_addon_settings(App $a, &$s) +{ + if (!local_user()) { return; + } /* Add our stylesheet to the xmpp so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; + DI::page()['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ - $enabled = intval(get_pconfig(local_user(),'xmpp','enabled')); + $enabled = intval(DI::pConfig()->get(local_user(), 'xmpp', 'enabled')); $enabled_checked = (($enabled) ? ' checked="checked" ' : ''); - $individual = intval(get_pconfig(local_user(),'xmpp','individual')); + $individual = intval(DI::pConfig()->get(local_user(), 'xmpp', 'individual')); $individual_checked = (($individual) ? ' checked="checked" ' : ''); - $bosh_proxy = get_pconfig(local_user(),"xmpp","bosh_proxy"); + $bosh_proxy = DI::pConfig()->get(local_user(), "xmpp", "bosh_proxy"); /* Add some HTML to the existing form */ $s .= ''; - $s .= '

' . t('XMPP-Chat (Jabber)') . '

'; + $s .= '

' . DI::l10n()->t('XMPP-Chat (Jabber)') . '

'; $s .= '
'; $s .= ''; } -function xmpp_login($a,$b) { - if (!$_SESSION["allow_api"]) { - $password = substr(random_string(),0,16); - set_pconfig(local_user(), "xmpp", "password", $password); +function xmpp_login() +{ + if (empty($_SESSION['allow_api'])) { + $password = Strings::getRandomHex(16); + DI::pConfig()->set(local_user(), 'xmpp', 'password', $password); } } -function xmpp_plugin_admin(&$a, &$o){ - $t = get_markup_template("admin.tpl", "addon/xmpp/"); +function xmpp_addon_admin(App $a, &$o) +{ + $t = Renderer::getMarkupTemplate('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.')), - )); + $o = Renderer::replaceMacros($t, [ + '$submit' => DI::l10n()->t('Save Settings'), + '$bosh_proxy' => ['bosh_proxy', DI::l10n()->t('Jabber BOSH host'), DI::config()->get('xmpp', 'bosh_proxy'), ''], + '$central_userbase' => ['central_userbase', DI::l10n()->t('Use central userbase'), DI::config()->get('xmpp', 'central_userbase'), DI::l10n()->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_addon_admin_post() +{ + $bosh_proxy = (!empty($_POST['bosh_proxy']) ? trim($_POST['bosh_proxy']) : ''); + $central_userbase = (!empty($_POST['central_userbase']) ? intval($_POST['central_userbase']) : false); + + DI::config()->set('xmpp', 'bosh_proxy', $bosh_proxy); + DI::config()->set('xmpp', 'central_userbase', $central_userbase); } -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 (DI::mode()->isMobile() || DI::mode()->isMobile()) { return; + } - if (!get_pconfig(local_user(),"xmpp","enabled")) + if (!DI::pConfig()->get(local_user(), "xmpp", "enabled")) { return; + } - if (in_array($a->query_string, array("admin/federation/"))) + if (in_array(DI::args()->getQueryString(), ["admin/federation/"])) { return; + } - $a->page['htmlhead'] .= ''."\n"; - $a->page['htmlhead'] .= ''."\n"; + DI::page()['htmlhead'] .= '' . "\n"; + DI::page()['htmlhead'] .= '' . "\n"; - if (get_config("xmpp", "central_userbase") AND !get_pconfig(local_user(),"xmpp","individual")) { - $bosh_proxy = get_config("xmpp", "bosh_proxy"); + if (DI::config()->get("xmpp", "central_userbase") && !DI::pConfig()->get(local_user(), "xmpp", "individual")) { + $bosh_proxy = DI::config()->get("xmpp", "bosh_proxy"); - $password = get_pconfig(local_user(), "xmpp", "password"); + $password = DI::pConfig()->get(local_user(), "xmpp", "password", '', true); if ($password == "") { - $password = substr(random_string(),0,16); - set_pconfig(local_user(), "xmpp", "password", $password); + $password = Strings::getRandomHex(16); + DI::pConfig()->set(local_user(), "xmpp", "password", $password); } - $jid = $a->user["nickname"]."@".$a->get_hostname()."/converse-".substr(random_string(),0,5);; + $jid = $a->user["nickname"] . "@" . DI::baseUrl()->getHostname() . "/converse-" . Strings::getRandomHex(5); $auto_login = "auto_login: true, authentication: 'login', @@ -149,18 +161,20 @@ function xmpp_converse(&$a,&$s) { password: '$password', allow_logout: false,"; } else { - $bosh_proxy = get_pconfig(local_user(), "xmpp", "bosh_proxy"); + $bosh_proxy = DI::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], ["delegation", "logout"])) { $additional_commands = "converse.user.logout();\n"; - else + } else { $additional_commands = ""; + } $on_ready = ""; @@ -187,7 +201,7 @@ function xmpp_converse(&$a,&$s) { xhr_user_search: false });\n"; - $a->page['htmlhead'] .= ""; } -?>