mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.2 KiB
88 lines
2.2 KiB
<?php
|
|
|
|
namespace App;
|
|
|
|
use Movim\Model;
|
|
use Movim\Picture;
|
|
|
|
class Conference extends Model
|
|
{
|
|
public $incrementing = false;
|
|
protected $primaryKey = ['session_id', 'conference'];
|
|
protected $fillable = ['conference', 'name', 'nick', 'autojoin'];
|
|
|
|
protected $attributes = [
|
|
'session_id' => SESSION_ID
|
|
];
|
|
|
|
public function save(array $options = [])
|
|
{
|
|
try {
|
|
parent::save($options);
|
|
} catch (\Exception $e) {
|
|
/*
|
|
* Race condition
|
|
*/
|
|
}
|
|
}
|
|
|
|
public function session()
|
|
{
|
|
return $this->hasOne('App\Session');
|
|
}
|
|
|
|
public function presences()
|
|
{
|
|
return $this->hasMany('App\Presence', 'jid', 'conference')
|
|
->where('session_id', $this->session_id)
|
|
->where('resource', '!=', '')
|
|
->orderBy('mucaffiliation', 'desc')
|
|
->orderBy('value');
|
|
}
|
|
|
|
public function presence()
|
|
{
|
|
return $this->hasOne('App\Presence', 'jid', 'conference')
|
|
->where('session_id', $this->session_id)
|
|
->where('mucjid', \App\User::me()->id);
|
|
}
|
|
|
|
public function info()
|
|
{
|
|
return $this->hasOne('App\Info', 'server', 'conference')
|
|
->where('category', 'conference')
|
|
->where('type', 'text');
|
|
}
|
|
|
|
public function contact()
|
|
{
|
|
return $this->hasOne('App\Contact', 'id', 'conference');
|
|
}
|
|
|
|
public function getConnectedAttribute()
|
|
{
|
|
return isset($this->presence);
|
|
}
|
|
|
|
public function getSubjectAttribute()
|
|
{
|
|
$subject = \App\User::me()
|
|
->messages()
|
|
->where('jidfrom', $this->conference)
|
|
->whereNotNull('subject')
|
|
->where('type', 'subject')
|
|
->orderBy('published', 'desc')
|
|
->first();
|
|
|
|
return $subject ? $subject->subject : null;
|
|
}
|
|
|
|
public function getPhoto($size = 'm')
|
|
{
|
|
if ($this->contact) {
|
|
return $this->contact->getPhoto($size);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|