Scout Search for Flarum
Integrates Laravel Scout with Flarum discussion and user search.
Just like with Laravel, the data is automatically synced with the search index every time a model is updated in Flarum.
You only need to manually import data when you enable the extension (see commands below).
The external search driver is used server-side to filter down the MySQL results, so it should still be compatible with every other extension and search gambits.
Algolia and Meilisearch drivers are included in the extension.
TNTSearch is supported but requires the manual installation of an additional package.
The Scout database and collection drivers cannot be used (they would be worst than Flarum's built-in database search).
See below for the specific requirements and configuration of each driver.
While only discussions and users are searchable in Flarum, this implementation also uses a posts
search index which is merged with discussion search results in a similar way to the Flarum native search.
The discussion result sort currently prioritize best post matching because I have not found a way to merge the match score of discussions and posts indices.
All CLI commands from Scout are available, with an additional special "import all" command:
php flarum scout:import-all Import all Flarum models into the search index
(a shortcut to scout:import with every searchable class known to Flarum)
php flarum scout:flush {model} Flush all of the model's records from the index
php flarum scout:import {model} Import the given model into the search index
php flarum scout:index {name} Create an index (generally not needed)
php flarum scout:delete-index {name} Delete an index (generally not needed)
Algolia
The Algolia driver requires an account on the eponymous cloud service.
Meilisearch
The Meilisearch driver requires a running Meilisearch server instance.
The server can be hosted anywhere as long as it can be reached over the network.
By default, the extension attempts to connect to a server at 127.0.0.1:7700
.
If you are not running the latest Meilisearch version you might need to explicitly install an older version of the SDK.
Likewise, if you are regularly running composer update
on all your dependencies, you should also add an explicit requirement for the Meilisearch SDK in your composer.json
because the extension requires *
which might jump to a newer Meilisearch SDK version as soon as it comes out.
To install and lock the current latest version:
composer require meilisearch/meilisearch-php
Unfortunately Meilisearch doesn't seem to advertise which specific version of the Composer package is compatible with each server version.
You can find the list of releases at https://packagist.org/packages/meilisearch/meilisearch-php
Once you know which version you need, you can lock it, for example to install the older 0.23:
composer require meilisearch/meilisearch-php:"0.23.*"
The only settings for Meilisearch are Host and Key.
Everything else is configured in the Meilisearch server itself.
Even if you don't configure the Default Results Limit value and use Meilisearch, the extension will automatically set it to 200 for you because the default for Meilisearch (20) is extremely low and result in only 2 pages of results at best.
TNTSearch
The TNTSearch library requires the sqlite PHP extension, therefore it's not included by default with Scout.
To install it, make sure you have the sqlite PHP extension enabled for both command line and webserver and run:
composer require teamtnt/laravel-scout-tntsearch-driver
TNTSearch uses local sqlite databases for each index.
The databases are stored in <flarum>/storage/tntsearch
which must be writable.
The following settings are exposed.
What each setting does isn't entirely clear, TNTSearch own documentation doesn't offer much guidance.
- Max Docs: this likely impacts how many results Flarum will be able to show for a query
- Fuziness (on/off): seems to be the typos/variation matching
- Fuzziness Levenshtein Distance
- Fuzziness Prefix Length: no idea what it does
- Fuzziness Max Expansions no idea what it does
As You Type and Search Boolean are hard-coded to enabled, though they don't seem to work as described in TNTSearch documentation.
Installation
This extension is still experimental. Please test on a staging server first.
I have not tested Algolia personally yet, but from feedback it seems to be working.
composer require clarkwinkelmann/flarum-ext-scout
Supported extensions and fields
This list is not exhaustive.
If you added support for Scout in your extension, let me know so I can update this list.
Discussions
When searching for discussions via Flarum's search feature, the fields for Posts are also queried.
- Title: support built into Scout.
- Formulaire Discussion Fields: supported since Formulaire 1.8 (guest-accessible forms only).
Posts
- Content: support built into Scout, the value used is a plain text version of the output HTML without any tag. Some information like link URLs, image URLs and image alts are therefore not indexed. This might be changed in a future version.
Users
- Display Name: support built into Scout.
- Username: support built into Scout.
- FoF Bio: support built into Scout (not in FoF Bio itself).
- Formulaire Profile Fields: supported since Formulaire 1.8 (guest-accessible forms only).
Email is intentionally not searchable because there's currently no mechanism that would prevent regular users from using that feature to leak email.
Formulaire
Forms and Submissions are optionally indexed via Scout. See Formulaire documentation for details.
Developers
See README on GitHub for up to date information https://github.com/clarkwinkelmann/flarum-ext-scout#developers
Support
This extension is under minimal maintenance.
It was developed for a client and released as open-source for the benefit of the community.
I might publish simple bugfixes or compatibility updates for free.
You can contact me to sponsor additional features or updates.
Support is offered on a "best effort" basis through the Flarum community thread.
Links