1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/models/presence/Presence.php
2015-08-19 11:28:28 +02:00

185 lines
5.5 KiB
PHP

<?php
namespace Modl;
class Presence extends Model {
protected $id;
protected $session;
protected $jid;
// General presence informations
protected $resource;
protected $value;
protected $priority;
protected $status;
// Client Informations
protected $node;
protected $ver;
// Delay - XEP 0203
protected $delay;
// Last Activity - XEP 0256
protected $last;
// Current Jabber OpenPGP Usage - XEP-0027
protected $publickey;
protected $muc;
protected $mucjid;
protected $mucaffiliation;
protected $mucrole;
// vcard-temp:x:update, not saved in the DB
public $photo = false;
public function __construct() {
$this->_struct = '
{
"id" :
{"type":"string", "size":128, "mandatory":true },
"session" :
{"type":"string", "size":64, "mandatory":true, "key":true },
"jid" :
{"type":"string", "size":64, "mandatory":true, "key":true },
"resource" :
{"type":"string", "size":64, "key":true },
"value" :
{"type":"int", "size":11, "mandatory":true },
"priority" :
{"type":"int", "size":11 },
"status" :
{"type":"text"},
"node" :
{"type":"string", "size":128 },
"ver" :
{"type":"string", "size":128 },
"delay" :
{"type":"date"},
"last" :
{"type":"int", "size":11 },
"publickey" :
{"type":"text"},
"muc" :
{"type":"int", "size":1 },
"mucjid" :
{"type":"string", "size":64 },
"mucaffiliation" :
{"type":"string", "size":32 },
"mucrole" :
{"type":"string", "size":32 }
}';
parent::__construct();
}
public function setPresence($stanza) {
$jid = explode('/',(string)$stanza->attributes()->from);
if($stanza->attributes()->to)
$to = current(explode('/',(string)$stanza->attributes()->to));
else
$to = $jid[0];
$this->session = $to;
$this->jid = $jid[0];
if(isset($jid[1]))
$this->resource = $jid[1];
else
$this->resource = 'default';
$this->status = (string)$stanza->status;
if($stanza->c) {
$this->node = (string)$stanza->c->attributes()->node;
$this->ver = (string)$stanza->c->attributes()->ver;
}
if($stanza->priority)
$this->priority = (string)$stanza->priority;
if((string)$stanza->attributes()->type == 'error') {
$this->value = 6;
} elseif((string)$stanza->attributes()->type == 'unavailable') {
$this->value = 5;
} elseif((string)$stanza->show == 'away') {
$this->value = 2;
} elseif((string)$stanza->show == 'dnd') {
$this->value = 3;
} elseif((string)$stanza->show == 'xa') {
$this->value = 4;
} else {
$this->value = 1;
}
// Specific XEP
if($stanza->x) {
foreach($stanza->children() as $name => $c) {
switch($c->attributes()->xmlns) {
case 'jabber:x:signed' :
$this->publickey = (string)$c;
break;
case 'http://jabber.org/protocol/muc#user' :
$this->muc = true;
if($c->item->attributes()->jid)
$this->mucjid = cleanJid((string)$c->item->attributes()->jid);
else
$this->mucjid = (string)$stanza->attributes()->from;
$this->mucrole = (string)$c->item->attributes()->role;
$this->mucaffiliation = (string)$c->item->attributes()->affiliation;
break;
case 'vcard-temp:x:update' :
$this->photo = true;
break;
}
}
}
if($stanza->delay) {
$this->delay =
gmdate(
'Y-m-d H:i:s',
strtotime(
(string)$stanza->delay->attributes()->stamp
)
)
;
}
if($stanza->query) {
$this->last = (int)$stanza->query->attributes()->seconds;
}
}
public function getPresence() {
$txt = array(
1 => 'online',
2 => 'away',
3 => 'dnd',
4 => 'xa',
5 => 'offline',
6 => 'server_error'
);
$arr = array();
$arr['jid'] = $this->jid;
$arr['resource'] = $this->resource;
$arr['presence'] = $this->value;
$arr['presence_txt'] = $txt[$this->value];
$arr['priority'] = $this->priority;
$arr['status'] = $this->status;
$arr['node'] = $this->node;
$arr['ver'] = $this->ver;
return $arr;
}
public function isChatroom() {
if(filter_var($this->jid, FILTER_VALIDATE_EMAIL))
return false;
else
return true;
}
}