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 tool_admin_presets\local\action;
18
 
19
use tool_admin_presets\form\import_form;
20
 
21
/**
22
 * This class extends base class and handles import function.
23
 *
24
 * @package          tool_admin_presets
25
 * @copyright        2021 Pimenko <support@pimenko.com><pimenko.com>
26
 * @author           Jordan Kesraoui | Sylvain Revenu | Pimenko based on David Monllaó <david.monllao@urv.cat> code
27
 * @license          http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28
 */
29
class import extends base {
30
 
31
    /**
32
     * Displays the import moodleform
33
     */
34
    public function show(): void {
35
        $url = new \moodle_url('/admin/tool/admin_presets/index.php', ['action' => 'import', 'mode' => 'execute']);
36
        $this->moodleform = new import_form($url);
37
    }
38
 
39
    /**
40
     * Imports the xmlfile into DB
41
     */
42
    public function execute(): void {
43
        $url = new \moodle_url('/admin/tool/admin_presets/index.php', ['action' => 'import', 'mode' => 'execute']);
44
        $this->moodleform = new import_form($url);
45
 
46
        if ($this->moodleform->is_cancelled()) {
47
            $url = new \moodle_url('/admin/tool/admin_presets/index.php');
48
            redirect($url);
49
        }
50
 
51
        if ($data = $this->moodleform->get_data()) {
52
            // Getting the file.
53
            $xmlcontent = $this->moodleform->get_file_content('xmlfile');
54
            list($xml, $preset, $settingsfound, $pluginsfound) = $this->manager->import_preset($xmlcontent, $data->name);
55
            if (!$xml) {
56
                $url = new \moodle_url('/admin/tool/admin_presets/index.php', ['action' => 'import']);
57
                redirect($url, get_string('wrongfile', 'tool_admin_presets'));
58
            }
59
 
60
            // Store it here for logging and other future id-oriented stuff.
61
            if (!is_null($preset)) {
62
                $this->id = $preset->id;
63
            }
64
 
65
            // If there are no valid or selected settings, raise an error.
66
            if (!$settingsfound && !$pluginsfound) {
67
                $url = new \moodle_url('/admin/tool/admin_presets/index.php', ['action' => 'import']);
68
                redirect($url, get_string('novalidsettings', 'tool_admin_presets'));
69
            }
70
 
71
            // Trigger it after execute finishes.
72
            $this->log();
73
 
74
            $url = new \moodle_url('/admin/tool/admin_presets/index.php', ['action' => 'load', 'id' => $preset->id]);
75
            redirect($url);
76
        }
77
    }
78
 
79
    protected function get_explanatory_description(): ?string {
80
        $text = null;
81
        if ($this->mode == 'show') {
82
            $text = get_string('importdescription', 'tool_admin_presets');
83
        }
84
 
85
        return $text;
86
    }
87
 
88
}