PHP通過xmlrpc註冊ejabberd使用者

來源:互聯網
上載者:User
正在研發一款社交軟體,架構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! :)

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.