Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
namespace core_communication\task;
18
 
19
use core\task\adhoc_task;
20
use core_communication\processor;
21
 
22
/**
23
 * Class update_room_task to add a task to update a room and execute the task to action the update.
24
 *
25
 * this task will be queued by the communication api and will use the communication handler api to action the updates.
26
 *
27
 * @package    core_communication
28
 * @copyright  2023 Safat Shahin <safat.shahin@moodle.com>
29
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30
 */
31
class update_room_task extends adhoc_task {
32
    public function execute() {
33
        $data = $this->get_custom_data();
34
 
35
        // Call the communication api to action the operation.
36
        $communication = processor::load_by_id($data->id);
37
 
38
        if ($communication === null) {
39
            mtrace("Skipping room creation because the instance does not exist");
40
            return;
41
        }
42
 
43
        $communication->get_room_provider()->update_chat_room();
44
    }
45
 
46
    /**
47
     * Queue the task for the next run.
48
     *
49
     * @param processor $communication The communication processor to perform the action on
50
     */
51
    public static function queue(
52
        processor $communication,
53
    ): void {
54
 
55
        // Add ad-hoc task to update the provider room.
56
        $task = new self();
57
        $task->set_custom_data([
58
            'id' => $communication->get_id(),
59
        ]);
60
 
61
        // Queue the task for the next run.
62
        \core\task\manager::queue_adhoc_task($task);
63
    }
64
}