PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, November 6, 2022

[FIXED] How to create conference rooms in Openfire with XMPPHP?

 November 06, 2022     openfire, xmpp, xmpphp     No comments   

Issue

I'm developing a system which at some point I'll have to allow users to create their own conference rooms.

I was reading about create rooms and wrote some code with XMPP which results in the verbose log below.

1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: <presence from='24527@localhost/xmpphp' to='sala3@myconference.localhost/xmpphp'><x xmlns='http://jabber.org/protocol/muc'/></presence>
1422017436 [VERBOSE]: Successfully sent 134 bytes.
1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: <iq from='24527@localhost/xmpphp' id='create1' to='sala3@myconference.localhost/xmpphp' type='set'><query xmlns='http://jabber.org/protocol/muc#owner'><x xmlns='jabber:x:data' type='submit'/></query></iq>
1422017436 [VERBOSE]: Successfully sent 203 bytes.
1422017436 [VERBOSE]: Disconnecting...
1422017436 [VERBOSE]: Socket is ready; send it.
1422017436 [VERBOSE]: SENT: </stream:stream>
1422017436 [VERBOSE]: Successfully sent 16 bytes.
1422017436 [VERBOSE]: RECV: <presence from="sala3@myconference.localhost/xmpphp" to="24527@localhost/xmpphp"><x xmlns="http://jabber.org/protocol/muc#user"><item jid="24527@localhost/xmpphp" affiliation="owner" role="moderator"/><status code="110"/><status code="100"/><status code="201"/></x></presence>
1422017436 [DEBUG]: Calling presence_handler
1422017436 [DEBUG]: Presence: sala3@myconference.localhost/xmpphp [available] 
1422017436 [DEBUG]: EVENT: presence
1422017436 [VERBOSE]: RECV: <iq type="result" id="create1" from="sala3@myconference.localhost/xmpphp" to="24527@localhost/xmpphp"/>
1422017436 [VERBOSE]: RECV: </stream:stream>
1422017436 [DEBUG]: EVENT: end_stream

It seems to be working, as I can read here:

1422017436 [DEBUG]: Calling presence_handler
1422017436 [DEBUG]: Presence: sala3@myconference.localhost/xmpphp [available] 
1422017436 [DEBUG]: EVENT: presence
1422017436 [VERBOSE]: RECV: <iq type="result" id="create1" from="sala3@myconference.localhost/xmpphp" to="24527@localhost/xmpphp"/>
1422017436 [VERBOSE]: RECV: </stream:stream>

But I cannot find the sala3 room in Openfire Panel. Is there anything wrong with my SENT packets?

Thanks.


Solution

It is still ugly, but it worked.

I added it to XMPP.php

public function createGroup() {

        $out = "<presence from='24527@localhost/xmpphp' to='sala4@myconference.localhost/xmpphp'><x xmlns='http://jabber.org/protocol/muc'/></presence>";
        $this->send($out);
    }

    public function createGroup2() {

        $out = "<iq from='24527@localhost/desktop'
                    id='create1'
                    to='sala4@myconference.localhost/xmpphp'
                    type='get'>
                  <query xmlns='http://jabber.org/protocol/muc#owner'/>
                </iq>";

        $this->send($out);
    }

    public function sendConfigRoom() {

        $out = "<iq from='24527@localhost/desktop'
                id='create2'
                to='sala4@myconference.localhost/xmpphp'
                type='set'>
              <query xmlns='http://jabber.org/protocol/muc#owner'>
                <x xmlns='jabber:x:data' type='submit'>
                  <field var='FORM_TYPE'>
                    <value>http://jabber.org/protocol/muc#roomconfig</value>
                  </field>
                  <field var='muc#roomconfig_roomname'>
                    <value>A Dark Cave</value>
                  </field>
                  <field var='muc#roomconfig_roomdesc'>
                    <value>The place for all good witches!</value>
                  </field>
                  <field var='muc#roomconfig_enablelogging'>
                    <value>0</value>
                  </field>
                  <field var='muc#roomconfig_changesubject'>
                    <value>1</value>
                  </field>
                  <field var='muc#roomconfig_allowinvites'>
                    <value>0</value>
                  </field>
                  <field var='muc#roomconfig_allowpm'>
                    <value>anyone</value>
                  </field>
                  <field var='muc#roomconfig_maxusers'>
                    <value>10</value>
                  </field>
                  <field var='muc#roomconfig_publicroom'>
                    <value>0</value>
                  </field>
                  <field var='muc#roomconfig_persistentroom'>
                    <value>1</value>
                  </field>
                  <field var='muc#roomconfig_moderatedroom'>
                    <value>0</value>
                  </field>
                  <field var='muc#roomconfig_membersonly'>
                    <value>0</value>
                  </field>
                  <field var='muc#roomconfig_passwordprotectedroom'>
                    <value>1</value>
                  </field>
                  <field var='muc#roomconfig_roomsecret'>
                    <value>cauldronburn</value>
                  </field>
                  <field var='muc#roomconfig_whois'>
                    <value>moderators</value>
                  </field>
                  <field var='muc#maxhistoryfetch'>
                    <value>50</value>
                  </field>
                  <field var='muc#roomconfig_roomadmins'>

                    <value>24527@localhost</value>
                  </field>
                </x>
              </query>
            </iq> ";

        $this->send($out);
    }

And my createGroup.php:

<?php

// activate full error reporting
//error_reporting(E_ALL & E_STRICT);
error_reporting(E_ALL);
ini_set('display_errors', 'On');
include 'XMPPHP/XMPP.php';
    // load the image from filesystem

#Use XMPPHP_Log::LEVEL_VERBOSE to get more logging for error reports
#If this doesn't work, are you running 64-bit PHP with < 5.2.6?
    $conn = new XMPPHP_XMPP('myserver', 5222, '24527', 'my pw', 'xmpphp', 'localhost', $printlog=true, $loglevel=XMPPHP_Log::LEVEL_VERBOSE);

    $conn->connect();
    $conn->processUntil('session_start');
    $conn->useEncryption(false);
    $conn->createGroup();
    $conn->processUntil('presence');

    $conn->createGroup2();
    $conn->processUntil('result');

    $conn->sendConfigsRoom();

    #$conn->processUntil(array('result', 'error'));
    $conn->disconnect();


Answered By - Alex M.
Answer Checked By - David Marino (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing