正在研發一款社交軟體,架構im使用了ejabberd作為xmpp伺服器,於是遇到了如何通過php註冊xmpp使用者的問題。
解決方案有幾個:
1.用xmpphp架構發送含中繼資料的訊息到伺服器要求處理,這個可參考:
2.使用php的xmpp庫jaxl,其demo代碼中包含一個register_user的指令碼,通過shell調用:
php example/register_user.php YOUR_DOMAIN
即可產生使用者,缺點是效能較差且慢,不建議
3.最優方法是使用ejabberd內建的命令列工具ejabberdctl來直接產生使用者。網上的回答基本是通過修改sudo使用者組許可權來直接在php使用exec語句來執行此命令
$username = 'tester';$password = 'testerspassword';$node = 'myserver.com';exec('sudo /usr/sbin/ejabberdctl register '.$username.' '.$node.' '.$password.' 2>&1',$output,$status);if($output == 0){ // Success!}else{ // Failure, $output has the details echo ''; foreach($output as $o) { echo $o."\n"; } echo '
';}
需要在sudoer檔案中添加ejabberd使用者權限,相對不安全也比較麻煩,也不推薦。
其實ejabberd在最近的版本中已經整合了xmlrpc模組,通過該模組可直接存取4560連接埠使用ejabberd的一些內部命令。官網介紹地址:https://www.ejabberd.im/ejabberd_xmlrpc
由於我使用macos在ejabberd官網下載的一鍵安裝包,安裝完後需要cd到/Application/ejabberd_PATH/conf/檔案夾中修改ejabberd.yml設定檔,在module中找到xml_rpc一行去掉#(取消注釋),重啟後 telnet HOST地址 4560 看能否接通,即說明xmlrpc已經可以用了
關於php端的代碼在介紹地址中已有提及,以下是php通過ejabberdctl註冊一個使用者的demo的代碼:
$params=array('user'=>'someUser','host'=>'ejabberdHost','password'=>'somPassword');$request = xmlrpc_encode_request('register', $params, (array('encoding' => 'utf-8')));$context = stream_context_create(array('http' => array('method' => "POST",'header' => "User-Agent: XMLRPC::Client mod_xmlrpc\r\n" ."Content-Type: text/xml\r\n" ."Content-Length: ".strlen($request),'content' => $request)));$file = file_get_contents("http://127.0.0.1:4560", false, $context);$response = xmlrpc_decode($file);if (xmlrpc_is_fault($response)) {trigger_error("xmlrpc: $response[faultString] ($response[faultCode])");} else {print_r($response);}
列印後即產生註冊成功的結果
Have a nice try! :)