Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stanzahandler.php « stanzahandlers « lib « build - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b0d78fb945dcbc34ed65716db0624de43d9c618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace OCA\OJSXC\StanzaHandlers;

use Sabre\Xml\Reader;
use Sabre\Xml\Writer;

/**
 * Class StanzaHandler
 *
 * @package OCA\OJSXC\StanzaHandlers
 */
class StanzaHandler
{

	/**
	 * @var string $userId
	 */
	protected $userId;

	/**
	 * @var string $host
	 */
	protected $host;

	/**
	 * @var string $to
	 */
	protected $to;

	/**
	 * StanzaHandler constructor.
	 *
	 * @param string 1$userId
	 * @param string $host
	 */
	public function __construct($userId, $host)
	{
		$this->userId = $userId;
		$this->host = $host;
		$this->from = $this->userId;
	}

	/**
	 * @brief Gets an attribute $attr from $stanza, returns null if it doens't
	 * exists.
	 * @param $stanza
	 * @param $attr
	 * @return null|string
	 */
	protected function getAttribute($stanza, $attr)
	{
		return isset($stanza['attributes'][$attr]) ? (string) $stanza['attributes'][$attr] : null;
	}
}