You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Chimo 7d832b7ff4
Handle /actions/apisearchjson.php searches
Qvitter uses this, for example

Ref. #3
5 years ago
actions Fix encoding issues with accented characters 5 years ago
classes Initial multi-field search page 6 years ago
lib Handle /actions/apisearchjson.php searches 5 years ago
scripts import-notice: Fix command-line flags 6 years ago
.gitignore First commit 6 years ago
ElasticSearchPlugin.php Initial multi-field search page 6 years ago
README.md Update README 6 years ago
composer.json First commit 6 years ago
composer.lock First commit 6 years ago

README.md

Elasticsearch Backend for GNU social

Installation

  1. Navigate to your /local/plugins directory (create it if it doesn't exist)
  2. git clone https://github.com/chimo/gs-elasticsearch.git ElasticSearch
  3. Run composer install in the ElasticSearch folder to install the dependencies

Configuration

Tell /config.php to use it with (replace 127.0.0.1:9200 with the address/port of your elasticsearch backend server):

    $config['elasticsearch']['hosts'] = [ '127.0.0.1:9200' ];
    $config['elasticsearch']['index_name'] = 'gnusocial';
    addPlugin('ElasticSearch');

Usage

You can use the Lucene query syntax when searching.

Searching Notices

Supported fields:

  • text: Filters by notice text (default field)
  • author: Notice author (in webfinger format: username@example.org)
  • type: Notice type (ex: post, share, like, etc)
  • created: Date the notice was created

The /search/notice page searches notice text by default. You can filter by notice author with the author field parameter.

For example, the following input will find all notices containing the word "social": social

The following input will find all notices containing the word "social" authored by username "gnu": author:gnu social

Searching Profiles

Supported fields:

  • nickname (default field)
  • fullname
  • bio
  • location
  • created
  • modified

The /search/people page searches profile nicknames by default. You can fiter by the other fields above.