Merge branch 'MDL-62175-master' of git://github.com/jleyva/moodle
[moodle.git] / search / upgrade.txt
blobb355730cd583915b0b4344bf55be71a481b27dd0
1 This files describes API changes in /search/*,
2 information provided here is intended especially for developers.
4 === 3.5 ===
6 * Search areas may now optionally implement the get_contexts_to_reindex function (for modules and
7   blocks, see also get_contexts_to_reindex_extra_sql). This allows a search area to customise the
8   order in which it is reindexed when doing a gradual reindex, so as to reindex the most important
9   contexts first. If not implemented, the default behaviour for modules and blocks is to reindex
10   the newest items first; for other types of search area it will just index the whole system
11   context, oldest data first.
12 * Search engines may now implement get_supported_orders function to provide multiple ordering
13   options (other than 'relevance' which is default). If there is more than one order then a choice
14   will be shown to users. (This is an optional feature, existing search engine plugins do not need
15   to be modified in order to continue working.)
16 * Module search areas that wish to support group filtering should set the new optional search
17   document field groupid (note: to remain compatible with earlier versions, do this inside an if
18   statement so that it only happens on 3.4+) and return true to the supports_group_restriction
19   function. See documentation in \core_search\base_mod class and example in \mod_forum\search\post.
20 * When a search engine supports group filtering, the \core_search\manager::search function now
21   accepts the optional 'groupids' parameter in its $data input. This parameter is an array of one
22   or more group IDs. If supplied, only results from those groups will be returned.
23 * Search engine plugins will need to be be modified if they wish to support group filtering.
24   (Search engines should continue to work unmodified, but will not then support group filtering.)
25   The modification steps are:
26   - Implement the new update_schema function to make the schema change (add groupid field).
27   - Ensure that the groupid field is stored correctly when provided in a document while indexing.
28   - Return true to new supports_group_filtering() function.
29   - execute_query should support the new $data->groupids parameter (to allow users to restrict
30     search results to specific groups) and the modified meaning of the second parameter,
31     $accessinfo (to automatically restrict search results users cannot access due to groups).
32     See implementation in Solr search engine.
33 * Search engine plugins can optionally use a new $this->should_skip_schema_check() function to
34   decide when to skip slow schema checking inside the is_server_ready function, improving user
35   performance on the search page. The Solr plugin implements this.
36 * API function \core_search\manager::instance() now includes a $fast parameter to skip schema
37   checks (as above).
39 * Search engines should now implement the 'userids' option to restrict search results to those from
40   specific users, and return true to the new supports_users() function. The supplied Solr search
41   engine includes this feature. If this is not implemented, the search engine will continue to work
42   but the 'Users' search option will not appear.
44 === 3.4 ===
46 * Search indexing now supports time limits to make the scheduled task run more neatly. In order for
47   this to work, search engine plugins will need to implement the 'stopat' parameter if they
48   override the add_documents() function, and return an extra parameter from this function (see base
49   class in engine.php). Unmodified plugins will still work, but without supporting time limits.
50 * Search areas should now implement the get_document_recordset function instead of the old
51   get_recordset_by_timestamp API (implement both if the area should work in older Moodle versions
52   as well). The new function is the same as the old one, but has an additional context parameter.
53   There is a helper function get_context_restriction_sql to make this easy to implement; see code
54   in base_activity.php for an example of how to implement this in your search area. (The
55   change was required to make search work after restoring sites. It also allows more flexible
56   reindexing in other cases.)
58 === 3.2 ===
60 * Base search area classes have been renamed, please update your search areas to use the classes below:
61   - \core_search\area\base has been renamed to \core_search\base
62   - \core_search\area\base_mod has been renamed to \core_search\base_mod
63   - \core_search\area\base_activity has been renamed to \core_search\base_activity