Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 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
declare(strict_types=1);
18
 
19
namespace core_webservice\reportbuilder\local\entities;
20
 
21
use lang_string;
22
use core_reportbuilder\local\entities\base;
23
use core_reportbuilder\local\filters\{text, date};
24
use core_reportbuilder\local\helpers\format;
25
use core_reportbuilder\local\report\{column, filter};
26
 
27
/**
28
 * External token report builder entity
29
 *
30
 * @package    core_webservice
31
 * @copyright  2023 Mikel Martín <mikel@moodle.com>
32
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33
 */
34
class token extends base {
35
 
36
    /**
37
     * Database tables that this entity uses and their default aliases
38
     *
39
     * @return array
40
     */
41
    protected function get_default_tables(): array {
42
        return [
43
            'external_tokens',
44
        ];
45
    }
46
 
47
    /**
48
     * The default title for this entity in the list of columns/conditions/filters in the report builder
49
     *
50
     * @return lang_string
51
     */
52
    protected function get_default_entity_title(): lang_string {
53
        return new lang_string('token', 'core_webservice');
54
    }
55
 
56
    /**
57
     * Initialise the entity
58
     *
59
     * @return base
60
     */
61
    public function initialise(): base {
62
        $columns = $this->get_all_columns();
63
        foreach ($columns as $column) {
64
            $this->add_column($column);
65
        }
66
 
67
        // All the filters defined by the entity can also be used as conditions.
68
        $filters = $this->get_all_filters();
69
        foreach ($filters as $filter) {
70
            $this
71
                ->add_filter($filter)
72
                ->add_condition($filter);
73
        }
74
 
75
        return $this;
76
    }
77
 
78
    /**
79
     * Returns list of all available columns
80
     *
81
     * @return column[]
82
     */
83
    protected function get_all_columns(): array {
84
        $tokenalias = $this->get_table_alias('external_tokens');
85
 
86
        // Token name column.
87
        $columnns[] = (new column(
88
            'name',
89
            new lang_string('name'),
90
            $this->get_entity_name()
91
        ))
92
            ->add_joins($this->get_joins())
93
            ->set_type(column::TYPE_TEXT)
94
            ->add_field("{$tokenalias}.name")
95
            ->set_is_sortable(true);
96
 
97
        // IP restriction column.
98
        $columnns[] = (new column(
99
            'iprestriction',
100
            new lang_string('iprestriction', 'core_webservice'),
101
            $this->get_entity_name()
102
        ))
103
            ->add_joins($this->get_joins())
104
            ->set_type(column::TYPE_TEXT)
105
            ->add_field("{$tokenalias}.iprestriction");
106
 
107
        // Valid until column.
108
        $columnns[] = (new column(
109
            'validuntil',
110
            new lang_string('validuntil', 'core_webservice'),
111
            $this->get_entity_name()
112
        ))
113
            ->add_joins($this->get_joins())
114
            ->set_type(column::TYPE_TIMESTAMP)
115
            ->add_field("{$tokenalias}.validuntil")
116
            ->set_is_sortable(true)
117
            ->add_callback([format::class, 'userdate'], get_string('strftimedatetime', 'core_langconfig'))
118
            ->add_callback(fn($value) => $value ?: get_string('validuntil_empty', 'core_webservice'));
119
 
120
        // Last access column.
121
        $columnns[] = (new column(
122
            'lastaccess',
123
            new lang_string('lastaccess'),
124
            $this->get_entity_name()
125
        ))
126
            ->add_joins($this->get_joins())
127
            ->set_type(column::TYPE_TIMESTAMP)
128
            ->add_field("{$tokenalias}.lastaccess")
129
            ->set_is_sortable(true)
130
            ->add_callback([format::class, 'userdate'])
131
            ->add_callback(fn($value) => $value ?: get_string('never'));
132
 
133
        return $columnns;
134
    }
135
 
136
    /**
137
     * Return list of all available filters
138
     *
139
     * @return filter[]
140
     */
141
    protected function get_all_filters(): array {
142
        global $DB;
143
 
144
        $tokenalias = $this->get_table_alias('external_tokens');
145
 
146
        // Name filter.
147
        $filters[] = (new filter(
148
            text::class,
149
            'name',
150
            new lang_string('tokenname', 'core_webservice'),
151
            $this->get_entity_name(),
152
            "{$tokenalias}.name"
153
        ))
154
            ->add_joins($this->get_joins());
155
 
156
        // Valid until filter.
157
        $filters[] = (new filter(
158
            date::class,
159
            'validuntil',
160
            new lang_string('validuntil', 'core_webservice'),
161
            $this->get_entity_name(),
162
            "{$tokenalias}.validuntil"
163
        ))
164
            ->add_joins($this->get_joins());
165
 
166
        return $filters;
167
    }
168
}