diff --git a/xmpp/xmpp.css b/xmpp/xmpp.css new file mode 100644 index 00000000..d7c514fa --- /dev/null +++ b/xmpp/xmpp.css @@ -0,0 +1,10 @@ +#xmpp-enabled-label, #xmpp-individual-label, #xmpp-bosh-proxy-label + { + float: left; + width: 200px; +} + +#xmpp-enabled, #xmpp-individual, #xmpp-bosh-proxy { + float: left; +} + diff --git a/xmpp/xmpp.php b/xmpp/xmpp.php index 07f01397..21ac59cd 100644 --- a/xmpp/xmpp.php +++ b/xmpp/xmpp.php @@ -7,15 +7,82 @@ */ 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() { + 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'))) + 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); +} + +function xmpp_plugin_settings(&$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"; + + /* Get the current state of our config variable */ + + $enabled = intval(get_pconfig(local_user(),'xmpp','enabled')); + $enabled_checked = (($enabled) ? ' checked="checked" ' : ''); + + $individual = intval(get_pconfig(local_user(),'xmpp','individual')); + $individual_checked = (($individual) ? ' checked="checked" ' : ''); + + $bosh_proxy = get_pconfig(local_user(),"xmpp","bosh_proxy"); + + /* Add some HTML to the existing form */ + $s .= ''; + $s .= '

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

'; + $s .= '
'; + $s .= ''; + +} + function xmpp_login($a,$b) { if (!$_SESSION["allow_api"]) { $password = substr(random_string(),0,16); @@ -24,26 +91,25 @@ function xmpp_login($a,$b) { } function xmpp_plugin_admin(&$a, &$o){ - $t = get_markup_template("admin.tpl", "addon/xmpp/"); + $t = get_markup_template("admin.tpl", "addon/xmpp/"); - $o = replace_macros($t, array( - '$submit' => t('Save Settings'), - '$bosh_proxy' => array('bosh_proxy', t('BOSH proxy'), 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 = 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.')), + )); } 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 ); + $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_script(&$a,&$s) { xmpp_converse($a,$s); - //xmpp_jappix($a,$s); } function xmpp_converse(&$a,&$s) { @@ -56,12 +122,15 @@ function xmpp_converse(&$a,&$s) { if ($a->is_mobile || $a->is_tablet) return; + if (!get_pconfig(local_user(),"xmpp","enabled")) + return; + $a->page['htmlhead'] .= ''."\n"; $a->page['htmlhead'] .= ''."\n"; - $bosh_proxy = get_config("xmpp", "bosh_proxy"); + if (get_config("xmpp", "central_userbase") AND !get_pconfig(local_user(),"xmpp","individual")) { + $bosh_proxy = get_config("xmpp", "bosh_proxy"); - if (get_config("xmpp", "central_userbase")) { $password = get_pconfig(local_user(), "xmpp", "password"); if ($password == "") { @@ -75,10 +144,15 @@ function xmpp_converse(&$a,&$s) { authentication: 'login', jid: '$jid', password: '$password', - allow_logout: true, - auto_list_rooms: true,"; - } else + allow_logout: false,"; + } else { + $bosh_proxy = get_pconfig(local_user(), "xmpp", "bosh_proxy"); + $auto_login = ""; + } + + if ($bosh_proxy == "") + return; if (in_array($a->argv[0], array("manage", "logout"))) $additional_commands = "converse.user.logout();\n"; @@ -86,9 +160,6 @@ function xmpp_converse(&$a,&$s) { $additional_commands = ""; $on_ready = ""; - //$on_ready = "converse.rooms.open(['support@conference.pirati.ca']);\n"; - -// converse.contacts.add('ike@jabber.piratenpartei.de'); $initialize = "converse.initialize({ bosh_service_url: '$bosh_proxy', @@ -123,60 +194,4 @@ function xmpp_converse(&$a,&$s) { }); "; } - -function xmpp_jappix(&$a,&$s) { - if (!local_user()) - return; - - if ($_GET["mode"] == "minimal") - return; - - $bosh_proxy = get_config("xmpp", "bosh_proxy"); - - if (get_config("xmpp", "central_userbase")) { - $password = get_pconfig(local_user(), "xmpp", "password"); - - if ($password == "") { - $password = substr(random_string(),0,16); - set_pconfig(local_user(), "xmpp", "password", $password); - } - - $user = $a->user["nickname"]; - $domain = $a->get_hostname(); - - $auto_login = "auto_login: true, - authentication: 'login', - jid: '$jid', - password: '$password', - allow_logout: false,"; - } else - $auto_login = ""; - - //$a->page['htmlhead'] .= ""; - - $a->page['htmlhead'] .= " - "; -} - ?>