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.
112 lines
3.4 KiB
112 lines
3.4 KiB
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Contains class used to prepare the messages for display.
|
|
*
|
|
* TODO: This file should be removed once the related web services go through final deprecation.
|
|
* Followup: MDL-63261
|
|
*
|
|
* @package core_message
|
|
* @copyright 2016 Mark Nelson <markn@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace core_message\output\messagearea;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
use core_message\api;
|
|
use renderable;
|
|
use templatable;
|
|
|
|
/**
|
|
* Class to prepare the messages for display.
|
|
*
|
|
* @package core_message
|
|
* @copyright 2016 Mark Nelson <markn@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class messages implements templatable, renderable {
|
|
|
|
/**
|
|
* @var array The messages.
|
|
*/
|
|
public $messages;
|
|
|
|
/**
|
|
* @var int The current user id.
|
|
*/
|
|
public $currentuserid;
|
|
|
|
/**
|
|
* @var int The other user id.
|
|
*/
|
|
public $otheruserid;
|
|
|
|
/**
|
|
* @var \stdClass The other user.
|
|
*/
|
|
public $otheruser;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param int $currentuserid The current user we are wanting to view messages for
|
|
* @param int $otheruserid The other user we are wanting to view messages for
|
|
* @param array $messages
|
|
*/
|
|
public function __construct($currentuserid, $otheruserid, $messages) {
|
|
$ufields = 'id, ' . get_all_user_name_fields(true) . ', lastaccess';
|
|
|
|
$this->currentuserid = $currentuserid;
|
|
if ($otheruserid) {
|
|
$this->otheruserid = $otheruserid;
|
|
$this->otheruser = \core_user::get_user($otheruserid, $ufields, MUST_EXIST);
|
|
}
|
|
$this->messages = $messages;
|
|
}
|
|
|
|
public function export_for_template(\renderer_base $output) {
|
|
global $USER;
|
|
|
|
$data = new \stdClass();
|
|
$data->iscurrentuser = $USER->id == $this->currentuserid;
|
|
$data->currentuserid = $this->currentuserid;
|
|
if ($this->otheruserid) {
|
|
$data->otheruserid = $this->otheruserid;
|
|
$data->otheruserfullname = fullname($this->otheruser);
|
|
}
|
|
$data->isonline = null;
|
|
if ($this->otheruserid) {
|
|
if (\core_message\helper::show_online_status($this->otheruser)) {
|
|
$data->isonline = \core_message\helper::is_online($this->otheruser->lastaccess);
|
|
}
|
|
}
|
|
$data->showonlinestatus = is_null($data->isonline) ? false : true;
|
|
|
|
$data->messages = array();
|
|
foreach ($this->messages as $message) {
|
|
$message = new message($message);
|
|
$data->messages[] = $message->export_for_template($output);
|
|
}
|
|
|
|
$blockeduserid = $this->otheruserid ?? $USER->id;
|
|
$data->isblocked = api::is_blocked($this->currentuserid, $blockeduserid);
|
|
|
|
return $data;
|
|
}
|
|
}
|
|
|