Merge branch 'MDL-81084-main' of https://github.com/andrewnicols/moodle
[moodle.git] / admin / searchareas.php
blobd5c9b5d83bf3b3071563aa64edcf27f0421f1e27
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.
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/>.
17 /**
18 * Manage global search areas.
20 * @package core_search
21 * @copyright 2016 Dan Poltawski <dan@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 require_once(__DIR__ . '/../config.php');
25 require_once($CFG->libdir . '/adminlib.php');
27 admin_externalpage_setup('searchareas');
29 $areaid = optional_param('areaid', null, PARAM_ALPHANUMEXT);
30 $action = optional_param('action', null, PARAM_ALPHA);
31 $indexingenabled = \core_search\manager::is_indexing_enabled(); // This restricts many of the actions on this page.
33 // Get a search manager instance, which we'll need for display and to handle some actions.
34 try {
35 $searchmanager = \core_search\manager::instance();
36 } catch (core_search\engine_exception $searchmanagererror) {
37 // In action cases, we'll throw this exception below. In non-action cases, we produce a lang string error.
40 $PAGE->set_primary_active_tab('siteadminnode');
42 // Handle all the actions.
43 if ($action) {
44 // If dealing with an areaid, we need to check that the area exists.
45 if ($areaid) {
46 $area = \core_search\manager::get_search_area($areaid);
47 if ($area === false) {
48 throw new moodle_exception('invalidrequest');
52 // All the indexing actions.
53 if (in_array($action, ['delete', 'indexall', 'reindexall', 'deleteall'])) {
55 // All of these actions require that indexing is enabled.
56 if ($indexingenabled) {
58 // For all of these actions, we strictly need a manager instance.
59 if (isset($searchmanagererror)) {
60 throw $searchmanagererror;
63 // Show confirm prompt for all these actions as they may be inadvisable, or may cause
64 // an interruption in search functionality, on production systems.
65 if (!optional_param('confirm', 0, PARAM_INT)) {
66 // Display confirmation prompt.
67 $a = null;
68 if ($areaid) {
69 $a = html_writer::tag('strong', $area->get_visible_name());
72 $actionparams = ['sesskey' => sesskey(), 'action' => $action, 'confirm' => 1];
73 if ($areaid) {
74 $actionparams['areaid'] = $areaid;
76 $actionurl = new moodle_url('/admin/searchareas.php', $actionparams);
77 $cancelurl = new moodle_url('/admin/searchareas.php');
78 echo $OUTPUT->header();
79 echo $OUTPUT->confirm(get_string('confirm_' . $action, 'search', $a),
80 new single_button($actionurl, get_string('continue'), 'post', single_button::BUTTON_PRIMARY),
81 new single_button($cancelurl, get_string('cancel'), 'get'));
82 echo $OUTPUT->footer();
83 exit;
84 } else {
85 // Confirmed, so run the required action.
86 require_sesskey();
88 switch ($action) {
89 case 'delete':
90 $searchmanager->delete_index($areaid);
91 \core\notification::success(get_string('searchindexdeleted', 'admin'));
92 break;
93 case 'indexall':
94 $searchmanager->index();
95 \core\notification::success(get_string('searchindexupdated', 'admin'));
96 break;
97 case 'reindexall':
98 $searchmanager->index(true);
99 \core\notification::success(get_string('searchreindexed', 'admin'));
100 break;
101 case 'deleteall':
102 $searchmanager->delete_index();
103 \core\notification::success(get_string('searchalldeleted', 'admin'));
104 break;
105 default:
106 break;
109 // Redirect back to the main page after taking action.
110 redirect(new moodle_url('/admin/searchareas.php'));
113 } else if (in_array($action, ['enable', 'disable'])) {
114 // Toggling search areas requires no confirmation.
115 require_sesskey();
117 switch ($action) {
118 case 'enable':
119 $area->set_enabled(true);
120 \core\notification::success(get_string('searchareaenabled', 'admin'));
121 break;
122 case 'disable':
123 $area->set_enabled(false);
124 core\notification::success(get_string('searchareadisabled', 'admin'));
125 break;
126 default:
127 break;
130 redirect(new moodle_url('/admin/searchareas.php'));
131 } else {
132 // Invalid action.
133 throw new moodle_exception('invalidaction');
138 // Display.
139 if (isset($searchmanager) && $indexingenabled) {
140 \core\notification::info(get_string('indexinginfo', 'admin'));
141 } else if (isset($searchmanager)) {
142 $params = (object) [
143 'url' => (new moodle_url("/admin/settings.php?section=manageglobalsearch#admin-searchindexwhendisabled"))->out(false)
145 \core\notification::error(get_string('indexwhendisabledfullnotice', 'search', $params));
146 } else {
147 // In non-action cases, init errors are translated and displayed to the user as error notifications.
148 $errorstr = get_string($searchmanagererror->errorcode, $searchmanagererror->module, $searchmanagererror->a);
149 \core\notification::error($errorstr);
152 echo $OUTPUT->header();
154 $table = new html_table();
155 $table->id = 'core-search-areas';
156 $table->head = [
157 get_string('searcharea', 'search'),
158 get_string('searchareacategories', 'search'),
159 get_string('enable'),
160 get_string('newestdocindexed', 'admin'),
161 get_string('searchlastrun', 'admin'),
162 get_string('searchindexactions', 'admin')
165 $searchareas = \core_search\manager::get_search_areas_list();
166 core_collator::asort_objects_by_method($searchareas, 'get_visible_name');
167 $areasconfig = isset($searchmanager) ? $searchmanager->get_areas_config($searchareas) : false;
168 foreach ($searchareas as $area) {
169 $areaid = $area->get_area_id();
170 $columns = array(new html_table_cell($area->get_visible_name()));
172 $areacategories = [];
173 foreach (\core_search\manager::get_search_area_categories() as $category) {
174 if (key_exists($areaid, $category->get_areas())) {
175 $areacategories[] = $category->get_visiblename();
178 $columns[] = new html_table_cell(implode(', ', $areacategories));
180 if ($area->is_enabled()) {
181 $columns[] = $OUTPUT->action_icon(admin_searcharea_action_url('disable', $areaid),
182 new pix_icon('t/hide', get_string('disable'), 'moodle', array('title' => '', 'class' => 'iconsmall')),
183 null, array('title' => get_string('disable')));
185 if ($areasconfig && $indexingenabled) {
186 $columns[] = $areasconfig[$areaid]->lastindexrun;
188 if ($areasconfig[$areaid]->indexingstart) {
189 $timediff = $areasconfig[$areaid]->indexingend - $areasconfig[$areaid]->indexingstart;
190 $laststatus = $timediff . ' , ' .
191 $areasconfig[$areaid]->docsprocessed . ' , ' .
192 $areasconfig[$areaid]->recordsprocessed . ' , ' .
193 $areasconfig[$areaid]->docsignored;
194 if ($areasconfig[$areaid]->partial) {
195 $laststatus .= ' ' . get_string('searchpartial', 'admin');
197 } else {
198 $laststatus = '';
200 $columns[] = $laststatus;
201 $accesshide = html_writer::span($area->get_visible_name(), 'accesshide');
202 $actions = [];
203 $actions[] = $OUTPUT->pix_icon('t/delete', '') .
204 html_writer::link(admin_searcharea_action_url('delete', $areaid),
205 get_string('deleteindex', 'search', $accesshide));
206 if ($area->supports_get_document_recordset()) {
207 $actions[] = $OUTPUT->pix_icon('i/reload', '') . html_writer::link(
208 new moodle_url('searchreindex.php', ['areaid' => $areaid]),
209 get_string('gradualreindex', 'search', $accesshide));
211 $columns[] = html_writer::alist($actions, ['class' => 'unstyled list-unstyled']);
213 } else {
214 if (!$areasconfig) {
215 $blankrow = new html_table_cell(get_string('searchnotavailable', 'admin'));
216 } else {
217 $blankrow = new html_table_cell(get_string('indexwhendisabledshortnotice', 'search'));
219 $blankrow->colspan = 3;
220 $columns[] = $blankrow;
223 } else {
224 $columns[] = $OUTPUT->action_icon(admin_searcharea_action_url('enable', $areaid),
225 new pix_icon('t/show', get_string('enable'), 'moodle', array('title' => '', 'class' => 'iconsmall')),
226 null, array('title' => get_string('enable')));
228 $blankrow = new html_table_cell(get_string('searchareadisabled', 'admin'));
229 $blankrow->colspan = 3;
230 $columns[] = $blankrow;
232 $row = new html_table_row($columns);
233 $table->data[] = $row;
236 // Cross-search area tasks.
237 $options = (isset($searchmanager) && $indexingenabled) ? [] : ['disabled' => true];
238 echo $OUTPUT->box_start('search-areas-actions');
239 echo $OUTPUT->single_button(admin_searcharea_action_url('indexall'), get_string('searchupdateindex', 'admin'), 'get', $options);
240 echo $OUTPUT->single_button(admin_searcharea_action_url('reindexall'), get_string('searchreindexindex', 'admin'), 'get', $options);
241 echo $OUTPUT->single_button(admin_searcharea_action_url('deleteall'), get_string('searchdeleteindex', 'admin'), 'get', $options);
242 echo $OUTPUT->box_end();
244 echo html_writer::table($table);
246 if (isset($searchmanager)) {
247 // Show information about queued index requests for specific contexts.
248 $searchrenderer = $PAGE->get_renderer('core_search');
249 echo $searchrenderer->render_index_requests_info($searchmanager->get_index_requests_info());
252 echo $OUTPUT->footer();
255 * Helper for generating url for management actions.
257 * @param string $action
258 * @param string $areaid
259 * @return moodle_url
261 function admin_searcharea_action_url($action, $areaid = false) {
262 $params = array('action' => $action);
263 if ($areaid) {
264 $params['areaid'] = $areaid;
266 if ($action === 'disable' || $action === 'enable') {
267 $params['sesskey'] = sesskey();
269 return new moodle_url('/admin/searchareas.php', $params);