kitconcept.solr
is an opinionated Solr integration package for Plone sites. It leverages (and depends on) collective.solr
, by adding a new endpoint @solr
that supports search requests with facetted results.
name | context |
---|---|
@solr |
Plone site or Folderish content |
The @solr
endpoint is used from the kitconcept.volto-solr
Volto add-on package for the implementation of the site search. It can also be used for custom components. The parameters roughly follow the parameters of the normal site search service, but differ in some respects.
TBD give more information about this.
For now, please refer to the source code of the solr.py
module, in case you want to use for your own purposes.
Add kitconcept.solr
as a dependency on your package's setup.py
install_requires = [
"kitconcept.solr",
"Plone",
"plone.restapi",
"setuptools",
],
Also, add kitconcept.solr
to your package's configure.zcml
(or dependencies.zcml
):
<include package="kitconcept.solr" />
With Plone 6.0 you must add an additional dependency "plone.restapi>=8.40.0"
.
The package also keeps support with Plone 5.2 where "plone.restapi>=8.21.2"
is a working version. It will not support image scales, but the package will work gracefully without displaying image previews in the search result list.
To automatically enable this package when your add-on is installed, add the following line inside the package's profiles/default/metadata.xml
dependencies
element:
<dependency>profile-kitconcept.solr:default</dependency>
We welcome contributions to kitconcept.solr
.
You can create an issue in the issue tracker, or contact a maintainer.
- Python 3.8 or later
- Docker
Install all development dependencies -- including Plone -- and create a new instance using:
make install
By default, we use the latest Plone version in the 6.x series.
Most of the development configuration is managed with plone.meta
, so avoid manually editing the following files:
.editorconfig
.flake8
.gitignore
.pre-commit-config.yaml
news/.changelog_template.jinja
pyproject.toml
tox.ini
In addition there is Solr related configuration that is outlined in the following chapters.
Solr is configured by a default configuration that can be found in the /solr/etc/
folder in this repository. This contains, most notably, the schema.xml
that defines the indexes for Solr. This package also builds docker images with the default Solr version, set up with this default configuration.
If you need to customize the Solr configuration (such as adding new indexes, etc.) then you should copy the solr
folder into your own project, customize it as you wish, and then build your own docker images (or compile your own Solr server) based on this configuration.
A typical use case for why you would want to do this, is if you add new fields to some content types, and you want to render the values for these additional fields in the search results. In this case you want to add the additional fields as indexes to Solr. You probably would not need this, unless you change anything on the result type templates in the kitconcept.volto-solr
front-end package.
The package supports the usage of the kitconcept.volto-solr
add-on, and it is designed to be used together with it.
The configuration can be specified in a customized way. Without any additional configuration, the package will use the default, which is specified in json format in the kitconcept.solr.interfaces.IKitconceptSolrSettings
registry.
This configuration settings affect the behavior of both the kitconcept.solr
(this) back-end package, and the kitconcept.volto-solr
front-end package (a Volto add-on). In addition, kitconcept.volto-solr
has its own Volto add-on configuration which is not explained here, for these options please refer to the documentation of the add-on package.
Explanation for the configuration options:
Contains the fields that solr should return. If the search result templates in the volto add-on are modified, and require more fields than in the default list, the fields must explicitly be added here.
In addition, the same fields must be present in the Solr index - if either the Solr index or the field in fieldList
is missing, the field value will silently be not returned. No error will be shown.
Example value:
[
"UID",
"Title",
"Description",
"Type",
"effective",
"start",
"created",
"end",
"path_string",
"mime_type",
"phone",
"email",
"location",
"image_scales",
"image_field"
]
A list of dictionary items representing the facet tabs in the search page.
The label
field specifies the label to be shown on the tab in English. It's the front-end package's responsibility to provide translations for this, as kitconcept.volto-solr
does this for the defaults, which can be used as an example.
The filter
field defines the Solr search condition to the given facet tab. This can be a content type, or in fact any condition understood by Solr, please consult the Solr documentation for more details.
Example value:
[
{
"label": "All",
"filter": "Type(*)"
},
{
"label": "Pages",
"filter": "Type:(Page)"
},
{
"label": "Events",
"filter": "Type:(Event)"
},
{
"label": "Images",
"filter": "Type:(Image)"
},
{
"label": "Files",
"filter": "Type:(File)"
}
]
If needed, the default kitconcept.solr.interfaces.IKitconceptSolrSettings
can be customized in the registry via GenericSetup.
Helpers for activate and reindex solr are importable from the package.
Example for a reindex script that can be called from Makefile:
from kitconcept.solr.reindex_helpers import activate_and_reindex
from Testing.makerequest import makerequest
from zope.site.hooks import setSite
import sys
import transaction
if __name__ == "__main__":
app = makerequest(app) # noQA
# Set site to Plone
site_id = "Plone"
portal = app.unrestrictedTraverse(site_id)
setSite(portal)
activate_and_reindex(portal, clear="--clear" in sys.argv)
transaction.commit()
app._p_jar.sync()
Example for an upgrade step that adds the kitconcept.solr
package, and one that does the solr activation for the first time:
from kitconcept.solr.reindex_helpers import activate_and_reindex
from plone import api
import logging
logger = logging.getLogger("your_package_name_here")
# We suggest to add two distinct upgrade step for the package installation
# and the solr activation, in case of a failure this allows to
# identify the problem easier.
def install_kitconcept_solr(context):
st = api.portal.get_tool("portal_setup")
st.runAllImportStepsFromProfile("kitconcept.solr:default")
logger.info("Installed kitconcept.solr")
def activate_and_reindex_solr(context):
activate_and_reindex(context)
logger.info("Activated and reindexed solr")
make i18n
make format
Testing of this package is done with pytest
and tox
.
Run all tests with:
make test
Run all tests but stop on the first error and open a pdb
session:
./bin/tox -e test -- -x --pdb
Run only tests that match TestEndpointEncoding
:
./bin/tox -e test -- -k TestEndpointEncoding
Run only tests that match TestEndpointEncoding
, but stop on the first error and open a pdb
session:
./bin/tox -e test -- -k TestEndpointEncoding -x --pdb
The development of this add-on has been kindly sponsored by German Aerospace Center (DLR) and Forschungszentrum Jülich.
Developed by kitconcept
The project is licensed under GPLv2.