2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * Adds moodle fields to solr schema.
20 * Schema REST API write actions are only available from Solr 4.4 onwards.
22 * The schema should be managed and mutable to allow this script
23 * to add new fields to the schema.
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
31 define('CLI_SCRIPT', true);
33 require_once(__DIR__ . '/../../../../config.php');
35 echo get_string('addingfields', 'search_solr') . "\n";
37 if (!\core_search\manager::is_global_search_enabled()) {
38 throw new moodle_exception('globalsearchdisabled', 'search');
41 if ($CFG->searchengine !== 'solr') {
42 throw new moodle_exception('solrnotselected', 'search_solr');
45 $schema = new \search_solr\schema();
48 echo get_string('setupok', 'search_solr') . "\n";