mediagoblin-indexedsearch

A search plugin for GNU mediagoblin.


License
AGPL-3.0
Install
pip install mediagoblin-indexedsearch==0.1.1

Documentation

Search plugin for GNU Mediagoblin

license_badge pypi_badge version_badge status_badge

N.B Only works with mediagoblin 0.9.0 and later.

mediagoblin-indexedsearch is a plugin for GNU Mediagoblin that adds support for searching media.

By default, the search function will query the tags, title and description fields of media for the given phrase.

More complex queries are supported, e.g searching for media with tagged with "hello" and not tagged with "goodbye" (tag:hello -tag:goodbye), or searching for any media added by the user "tom" (user:tom).

(See http://whoosh.readthedocs.org/en/latest/querylang.html for more syntax info.)

This plugin is based on an existing search plugin, https://github.com/ayleph/mediagoblin-basicsearch/, but uses a search index for queries.

Setting up the search plugin

Checkout this repository with:

git clone https://github.com/tofay/mediagoblin-indexedsearch.git

Then install the plugin into your virtualenv for mediagoblin:

cd mediagoblin-indexedsearch/
/path/to/mediagoblin/bin/python setup.py install

Enable the plugin by adding the following line to the [plugins] section of your mediagoblin config file.

[[indexedsearch]]

The following parameters can be specified in the indexedsearch section of your mediagoblin config file:

SEARCH_LINK_STYLE = 'link'

Specifies the style of the search link that is added to the top header bar of the MediaGoblin instance. The options for the search link display style are:

  • form displays a search form next to the Log In link. This is the default display style.
  • link displays a normal text link next to the Log In link.
  • button displays an action button link next to the Log In link.
  • none does not display a link. This is useful if you want to create your own search link in a user_dev template or custom theme.

INDEX_DIR = '/path/to/index/directory'

Specifies the directory in which the plugin will create a search index (the plugin will create the directory if it doesn't exist, assuming correct permissions etc.). By default the index will be created in /path/to/mediagoblin/user_dev/searchindex.

USERS_ONLY = True

Specifies whether or not searching for content requires being logged-in. Defaults to True.