MDL-31989 search_solr: Solr search engine
[moodle.git] / search / engine / solr / setup_schema.php
CommitLineData
95c6aeaf
DM
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/**
18 * Adds moodle fields to solr schema.
19 *
20 * Schema REST API write actions are only available from Solr 4.4 onwards.
21 *
22 * The schema should be managed and mutable to allow this script
23 * to add new fields to the schema.
24 *
25 * @link https://cwiki.apache.org/confluence/display/solr/Managed+Schema+Definition+in+SolrConfig
26 * @package search_solr
27 * @copyright 2015 David Monllao {@link http://www.davidmonllao.com}
28 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 */
30
31require_once(__DIR__ . '/../../../config.php');
32require_once($CFG->libdir.'/adminlib.php');
33
34require_capability('moodle/site:config', context_system::instance());
35
36if (!\core_search\manager::is_global_search_enabled()) {
37 throw new moodle_exception('globalsearchdisabled', 'search');
38}
39
40if ($CFG->searchengine !== 'solr') {
41 throw new moodle_exception('solrnotselected', 'search_solr');
42}
43
44$schema = new \search_solr\schema();
45$schema->setup();
46
47$url = new moodle_url('/admin/settings.php', array('section' => 'searchsolr'));
48redirect($url, get_string('setupok', 'search_solr'), 4);