szurubooru/API.md

888 lines
23 KiB
Markdown
Raw Normal View History

2016-04-09 08:59:40 +02:00
`szurubooru` uses REST API for all operations.
2016-04-13 13:33:03 +02:00
# Table of contents
2016-04-09 08:59:40 +02:00
1. [General rules](#general-rules)
- [Authentication](#authentication)
- [Basic requests](#basic-requests)
- [File uploads](#file-uploads)
- [Error handling](#error-handling)
2. [API reference](#api-reference)
- Tag categories
- [Listing tag categories](#listing-tag-categories)
- [Creating tag category](#creating-tag-category)
- [Updating tag category](#updating-tag-category)
- [Getting tag category](#getting-tag-category)
- [Deleting tag category](#deleting-tag-category)
- Tags
- [Listing tags](#listing-tags)
- [Creating tag](#creating-tag)
- [Updating tag](#updating-tag)
- [Getting tag](#getting-tag)
- [Deleting tag](#deleting-tag)
- Users
- [Listing users](#listing-users)
- [Creating user](#creating-user)
- [Updating user](#updating-user)
- [Getting user](#getting-user)
- [Deleting user](#deleting-user)
- Password reset
- [Password reset - step 1: mail request](#password-reset---step-2-confirmation)
- [Password reset - step 2: confirmation](#password-reset---step-2-confirmation)
2016-04-09 08:59:40 +02:00
3. [Resources](#resources)
- [User](#user)
2016-04-15 23:02:30 +02:00
- [Tag](#tag)
2016-04-09 08:59:40 +02:00
4. [Search](#search)
2016-04-13 13:33:03 +02:00
# General rules
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
## Authentication
2016-04-09 08:59:40 +02:00
Authentication is achieved by means of [basic HTTP
auth](https://en.wikipedia.org/wiki/Basic_access_authentication). For this
reason, it is recommended to connect through HTTPS. There are no sessions, so
every privileged request must be authenticated. Available privileges depend on
the user's rank. The way how rank translates to privileges is defined in the
server's configuration.
It is recommended to add `?bump-login` GET parameter to the first request in a
client "session" (where the definition of a session is up to the client), so
that the user's last login time is kept up to date.
2016-04-13 13:33:03 +02:00
## Basic requests
2016-04-09 08:59:40 +02:00
Every request must use `Content-Type: application/json` and `Accept:
application/json`. An exception to this rule are requests that upload files.
2016-04-13 13:33:03 +02:00
## File uploads
2016-04-09 08:59:40 +02:00
Requests that upload files must use `multipart/form-data` encoding. JSON
metadata must then be included as field of name `metadata`, whereas files must
be included as separate fields with names specific to each request type.
2016-04-13 13:33:03 +02:00
## Error handling
2016-04-09 08:59:40 +02:00
All errors (except for unhandled fatal server errors) send relevant HTTP status
code together with JSON of following structure:
```json5
{
"title": "Generic title of error message, e.g. 'Not found'",
"description": "Detailed description of what went wrong, e.g. 'User `rr-` not found."
}
```
2016-04-13 13:33:03 +02:00
# API reference
2016-04-09 08:59:40 +02:00
Depending on the deployment, the URLs might be relative to some base path such
2016-04-13 13:33:03 +02:00
as `/api/`. Values denoted with diamond braces (`<like this>`) signify variable
2016-04-09 08:59:40 +02:00
data.
## Listing tag categories
- **Request**
`GET /tag-categories`
- **Output**
```json5
{
"tagCategories": [
<tag-category>,
<tag-category>,
<tag-category>
]
}
```
...where `<tag-category>` is a [tag category resource](#tag-category).
- **Errors**
- privileges are too low
- **Description**
Lists all tag categories. Doesn't support paging.
**Note**: independently, the server exports current tag category list
snapshots to the data directory under `tags.json` name. Its purpose is to
reduce the trips frontend needs to make when doing autocompletion, and ease
caching. The data directory and its URL are controlled with `data_dir` and
`data_url` variables in server's configuration.
## Creating tag category
- **Request**
`POST /tag-categories`
- **Input**
```json5
{
"name": <name>,
"color": <color>
}
```
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tagCategory": <tag-category>,
"snapshots": [
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>}
]
}
```
2016-04-20 11:15:36 +02:00
...where `<tag-category>` is a [tag category resource](#tag-category), and
`snapshots` contain its earlier versions.
- **Errors**
- the name is used by an existing tag category (names are case insensitive)
- the name is invalid or missing
- the color is invalid or missing
- privileges are too low
- **Description**
Creates a new tag category using specified parameters. Name must match
`tag_category_name_regex` from server's configuration.
## Updating tag category
- **Request**
`PUT /tag-category/<name>`
- **Input**
```json5
{
"name": <name>, // optional
"color": <color>, // optional
}
```
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tagCategory": <tag-category>,
"snapshots": [
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>}
]
}
```
2016-04-20 11:15:36 +02:00
...where `<tag-category>` is a [tag category resource](#tag-category), and
`snapshots` contain its earlier versions.
- **Errors**
- the tag category does not exist
- the name is used by an existing tag category (names are case insensitive)
- the name is invalid
- the color is invalid
- privileges are too low
- **Description**
Updates an existing tag category using specified parameters. Name must
match `tag_category_name_regex` from server's configuration. All fields are
optional - update concerns only provided fields.
## Getting tag category
- **Request**
`GET /tag-category/<name>`
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tagCategory": <tag-category>,
"snapshots": [
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>},
{"data": <tag-category-snapshot>, "time": <snapshot-time>}
]
}
```
2016-04-20 11:15:36 +02:00
...where `<tag-category>` is a [tag category resource](#tag-category), and
`snapshots` contain its earlier versions.
- **Errors**
- the tag category does not exist
- privileges are too low
- **Description**
Retrieves information about an existing tag category.
## Deleting tag category
- **Request**
`DELETE /tag-category/<name>`
- **Output**
```json5
{}
```
- **Errors**
- the tag category does not exist
- the tag category is used by some tags
- the tag category is the last tag category available
- privileges are too low
- **Description**
Deletes existing tag category. The tag category to be deleted must have no
usages.
2016-04-15 23:02:30 +02:00
## Listing tags
2016-04-16 20:55:15 +02:00
- **Request**
`GET /tags/?page=<page>&pageSize=<page-size>&query=<query>`
- **Output**
```json5
{
"query": "haruhi",
"tags": [
<tag>,
<tag>,
<tag>,
<tag>,
<tag>
],
"page": 1,
"pageSize": 5,
"total": 7
}
```
...where `<tag>` is a [tag resource](#tag) and `query` contains standard
[search query](#search).
- **Errors**
- privileges are too low
- **Description**
Searches for tags.
2016-04-16 22:57:02 +02:00
**Note**: independently, the server exports current tag list snapshots to
the data directory under `tags.json` name. Its purpose is to reduce the
trips frontend needs to make when doing autocompletion, and ease caching.
The data directory and its URL are controlled with `data_dir` and
`data_url` variables in server's configuration.
2016-04-16 20:55:15 +02:00
**Anonymous tokens**
Same as `name` token.
**Named tokens**
| `<value>` | Description |
| ------------------- | ------------------------------------- |
| `name` | having given name (accepts wildcards) |
| `category` | having given category |
| `creation-date` | created at given date |
| `creation-time` | alias of `creation-date` |
| `last-edit-date` | edited at given date |
| `last-edit-time` | alias of `last-edit-date` |
| `edit-date` | alias of `last-edit-date` |
| `edit-time` | alias of `last-edit-date` |
| `usages` | used in given number of posts |
| `usage-count` | alias of `usages` |
| `post-count` | alias of `usages` |
| `suggestion-count` | with given number of suggestions |
| `implication-count` | with given number of implications |
**Order tokens**
| `<value>` | Description |
| ------------------- | ---------------------------- |
| `random` | as random as it can get |
| `name` | A to Z |
| `category` | category (A to Z) |
| `creation-date` | recently created first |
| `creation-time` | alias of `creation-date` |
| `last-edit-date` | recently edited first |
| `last-edit-time` | alias of `creation-time` |
| `edit-date` | alias of `creation-time` |
| `edit-time` | alias of `creation-time` |
| `usages` | used in most posts first |
| `usage-count` | alias of `usages` |
| `post-count` | alias of `usages` |
| `suggestion-count` | with most suggestions first |
| `implication-count` | with most implications first |
**Special tokens**
None.
2016-04-15 23:02:30 +02:00
2016-04-16 10:57:42 +02:00
2016-04-15 23:02:30 +02:00
## Creating tag
- **Request**
`POST /tags`
- **Input**
```json5
{
"names": [<name1>, <name2>, ...],
"category": <category>,
"implications": [<name1>, <name2>, ...], // optional
"suggestions": [<name1>, <name2>, ...] // optional
2016-04-15 23:02:30 +02:00
}
```
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tag": <tag>,
"snapshots": [
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>}
]
2016-04-15 23:02:30 +02:00
}
```
2016-04-20 11:15:36 +02:00
...where `<tag>` is a [tag resource](#tag), and `snapshots` contain its
earlier versions.
2016-04-15 23:02:30 +02:00
- **Errors**
- any name is used by an existing tag (names are case insensitive)
- any name, implication or is invalid
2016-04-15 23:02:30 +02:00
- category is invalid
- no name was specified
2016-04-16 10:57:42 +02:00
- implications or suggestions contain any item from names (e.g. there's a
shallow cyclic dependency)
2016-04-15 23:02:30 +02:00
- privileges are too low
- **Description**
Creates a new tag using specified parameters. Names, suggestions and
implications must match `tag_name_regex` from server's configuration.
Category must exist and is the same as `name` field within
[`<tag-category>` resource](#tag-category). Suggestions and implications
are optional. If specified implied tags or suggested tags do not exist yet,
they will be automatically created. Tags created automatically have no
implications, no suggestions, one name and their category is set to the
first tag category found. If there are no tag categories established yet,
an error will be thrown.
2016-04-15 23:02:30 +02:00
2016-04-16 10:57:42 +02:00
2016-04-15 23:02:30 +02:00
## Updating tag
2016-04-16 10:57:42 +02:00
- **Request**
`PUT /tags/<name>`
- **Input**
```json5
{
"names": [<name1>, <name2>, ...], // optional
"category": <category>, // optional
"implications": [<name1>, <name2>, ...], // optional
"suggestions": [<name1>, <name2>, ...] // optional
2016-04-16 10:57:42 +02:00
}
```
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tag": <tag>,
"snapshots": [
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>}
]
2016-04-16 10:57:42 +02:00
}
```
2016-04-20 11:15:36 +02:00
...where `<tag>` is a [tag resource](#tag), and `snapshots` contain its
earlier versions.
2016-04-16 10:57:42 +02:00
- **Errors**
- the tag does not exist
2016-04-16 10:57:42 +02:00
- any name is used by an existing tag (names are case insensitive)
- any name, implication or suggestion name is invalid
2016-04-16 10:57:42 +02:00
- category is invalid
- implications or suggestions contain any item from names (e.g. there's a
shallow cyclic dependency)
- privileges are too low
- **Description**
Updates an existing tag using specified parameters. Names, suggestions and
implications must match `tag_name_regex` from server's configuration.
Category must exist and is the same as `name` field within
[`<tag-category>` resource](#tag-category). If specified implied tags or
suggested tags do not exist yet, they will be automatically created. Tags
created automatically have no implications, no suggestions, one name and
their category is set to the first tag category found. All fields are
optional - update concerns only provided fields.
2016-04-16 10:57:42 +02:00
2016-04-15 23:02:30 +02:00
## Getting tag
2016-04-16 17:26:10 +02:00
- **Request**
`GET /tag/<name>`
- **Output**
```json5
{
2016-04-20 11:15:36 +02:00
"tag": <tag>,
"snapshots": [
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>},
{"data": <tag-snapshot>, "time": <snapshot-time>}
]
2016-04-16 17:26:10 +02:00
}
```
2016-04-20 11:15:36 +02:00
...where `<tag>` is a [tag resource](#tag), and `snapshots` contain its
earlier versions.
2016-04-16 17:26:10 +02:00
- **Errors**
- the tag does not exist
- privileges are too low
- **Description**
Retrieves information about an existing tag.
2016-04-15 23:02:30 +02:00
2016-04-16 10:57:42 +02:00
2016-04-16 17:03:28 +02:00
## Deleting tag
- **Request**
`DELETE /tag/<name>`
- **Output**
```json5
{}
```
- **Errors**
- the tag does not exist
- the tag is used by some posts
- privileges are too low
- **Description**
Deletes existing tag. The tag to be deleted must have no usages.
2016-04-15 23:02:30 +02:00
2016-04-13 13:33:03 +02:00
## Listing users
- **Request**
2016-04-13 13:33:03 +02:00
`GET /users/?page=<page>&pageSize=<page-size>&query=<query>`
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{
"query": "rr-",
"users": [
<user>,
<user>,
<user>,
<user>,
<user>
],
"page": 1,
"pageSize": 5,
"total": 7
}
```
2016-04-15 23:02:30 +02:00
...where `<user>` is a [user resource](#user) and `query` contains standard
[search query](#search).
- **Errors**
- privileges are too low
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-13 13:33:03 +02:00
Searches for users.
2016-04-13 13:33:03 +02:00
**Anonymous tokens**
2016-04-09 08:59:40 +02:00
Same as `name` token.
2016-04-09 08:59:40 +02:00
**Named tokens**
2016-04-09 08:59:40 +02:00
2016-04-16 20:55:15 +02:00
| `<value>` | Description |
| ----------------- | ----------------------------------------------- |
| `name` | having given name (accepts wildcards) |
| `creation-date` | registered at given date |
| `creation-time` | alias of `creation-date` |
| `last-login-date` | whose most recent login date matches given date |
| `last-login-time` | alias of `last-login-date` |
| `login-date` | alias of `last-login-date` |
| `login-time` | alias of `last-login-date` |
2016-04-09 08:59:40 +02:00
**Order tokens**
2016-04-09 08:59:40 +02:00
| `<value>` | Description |
| ----------------- | -------------------------- |
| `random` | as random as it can get |
| `name` | A to Z |
| `creation-date` | newest to oldest |
| `creation-time` | alias of `creation-date` |
| `last-login-date` | recently active first |
| `last-login-time` | alias of `last-login-date` |
| `login-date` | alias of `last-login-date` |
| `login-time` | alias of `last-login-date` |
2016-04-09 08:59:40 +02:00
**Special tokens**
2016-04-09 08:59:40 +02:00
None.
2016-04-09 08:59:40 +02:00
2016-04-16 17:03:28 +02:00
2016-04-13 13:33:03 +02:00
## Creating user
- **Request**
2016-04-13 13:33:03 +02:00
`POST /users`
2016-04-13 13:33:03 +02:00
- **Input**
2016-04-13 13:33:03 +02:00
```json5
{
"name": <user-name>,
"password": <user-password>,
"email": <email>, // optional
"rank": <rank>, // optional
"avatarStyle": <avatar-style> // optional
}
```
2016-04-13 13:33:03 +02:00
- **Files**
- `avatar` - the content of the new avatar (optional).
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{
"user": <user>
}
```
2016-04-15 23:02:30 +02:00
...where `<user>` is a [user resource](#user).
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- a user with such name already exists (names are case insensitive)
- either user name, password, email or rank are invalid
- the user is trying to update their or someone else's rank to higher than
their own
- avatar is missing for manual avatar style
- privileges are too low
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 08:59:40 +02:00
Creates a new user using specified parameters. Names and passwords must
match `user_name_regex` and `password_regex` from server's configuration,
respectively. Email address, rank and avatar fields are optional. Avatar
style can be either `gravatar` or `manual`. `manual` avatar style requires
client to pass also `avatar` file - see [file uploads](#file-uploads) for
details. If the rank is empty and the user happens to be the first user
ever created, they're granted highest available rank, becoming an
administrator, whereas subsequent users will be given the rank indicated by
`default_rank` in the server's configuration.
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
## Updating user
- **Request**
2016-04-13 13:33:03 +02:00
`PUT /user/<name>`
2016-04-13 13:33:03 +02:00
- **Input**
2016-04-13 13:33:03 +02:00
```json5
{
"name": <user-name>, // optional
"password": <user-password>, // optional
"email": <email>, // optional
"rank": <rank>, // optional
"avatarStyle": <avatar-style> // optional
}
```
2016-04-13 13:33:03 +02:00
- **Files**
2016-04-13 13:33:03 +02:00
- `avatar` - the content of the new avatar (optional).
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{
"user": <user>
}
```
2016-04-15 23:02:30 +02:00
...where `<user>` is a [user resource](#user).
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- the user does not exist
- a user with new name already exists (names are case insensitive)
- either user name, password, email or rank are invalid
- the user is trying to update their or someone else's rank to higher than
their own
- avatar is missing for manual avatar style
- privileges are too low
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 08:59:40 +02:00
Updates an existing user using specified parameters. Names and passwords
must match `user_name_regex` and `password_regex` from server's
configuration, respectively. All fields are optional - update concerns only
provided fields. To update last login time, see
[authentication](#authentication). Avatar style can be either `gravatar` or
`manual`. `manual` avatar style requires client to pass also `avatar`
file - see [file uploads](#file-uploads) for details.
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
## Getting user
- **Request**
2016-04-13 13:33:03 +02:00
`GET /user/<name>`
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{
"user": <user>
}
```
2016-04-15 23:02:30 +02:00
...where `<user>` is a [user resource](#user).
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- the user does not exist
- privileges are too low
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 08:59:40 +02:00
Retrieves information about an existing user.
2016-04-09 08:59:40 +02:00
2016-04-16 17:03:28 +02:00
## Deleting user
- **Request**
2016-04-13 13:33:03 +02:00
`DELETE /user/<name>`
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{}
```
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- the user does not exist
- privileges are too low
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 09:21:56 +02:00
Deletes existing user.
2016-04-09 09:21:56 +02:00
2016-04-13 13:33:03 +02:00
## Password reset - step 1: mail request
- **Request**
2016-04-13 13:33:03 +02:00
`GET /password-reset/<email-or-name>`
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```
{}
```
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- the user does not exist
- the user hasn't provided an email address
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 08:59:40 +02:00
Sends a confirmation email to given user. The email contains link
containing a token. The token cannot be guessed, thus using such link
proves that the person who requested to reset the password also owns the
mailbox, which is a strong indication they are the rightful owner of the
account.
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
## Password reset - step 2: confirmation
- **Request**
2016-04-13 13:33:03 +02:00
`POST /password-reset/<email-or-name>`
2016-04-13 13:33:03 +02:00
- **Input**
2016-04-13 13:33:03 +02:00
```json5
{
"token": <token-from-email>
}
```
2016-04-13 13:33:03 +02:00
- **Output**
2016-04-13 13:33:03 +02:00
```json5
{
"password": <new-password>
}
```
2016-04-13 13:33:03 +02:00
- **Errors**
2016-04-13 13:33:03 +02:00
- the token is missing
- the token is invalid
- the user does not exist
2016-04-13 13:33:03 +02:00
- **Description**
2016-04-09 08:59:40 +02:00
Generates a new password for given user. Password is sent as plain-text, so
it is recommended to connect through HTTPS.
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
# Resources
2016-04-09 08:59:40 +02:00
2016-04-13 13:33:03 +02:00
## User
2016-04-09 08:59:40 +02:00
```json5
{
"name": "rr-",
"email": "rr-@sakuya.pl", // available only if the request is authenticated by the same user
"rank": "admin", // controlled by server's configuration
"rankName": "Administrator", // controlled by server's configuration
"lastLoginTime": "2016-04-08T20:20:16.570517",
"creationTime": "2016-03-28T13:37:01.755461",
"avatarStyle": "gravatar", // "gravatar" or "manual"
2016-04-09 08:59:40 +02:00
"avatarUrl": "http://gravatar.com/(...)"
}
```
## Tag category
```json5
{
"name": "character",
2016-04-20 11:15:36 +02:00
"color": "#FF0000" // used to colorize certain tag types in the web client
}
```
## Tag category snapshot
```json5
{
"name": "character",
"color": "#FF0000"
}
```
2016-04-15 23:02:30 +02:00
## Tag
```json5
{
"names": ["tag1", "tag2", "tag3"],
2016-04-20 11:15:36 +02:00
"category": "plain",
2016-04-15 23:02:30 +02:00
"implications": ["implied-tag1", "implied-tag2", "implied-tag3"],
2016-04-16 10:57:42 +02:00
"suggestions": ["suggested-tag1", "suggested-tag2", "suggested-tag3"],
"creationTime": "2016-03-28T13:37:01.755461",
"lastEditTime": "2016-04-08T20:20:16.570517"
2016-04-15 23:02:30 +02:00
}
```
2016-04-20 11:15:36 +02:00
## Tag snapshot
```json5
{
"names": ["tag1", "tag2", "tag3"],
"category": "plain",
"implications": ["imp1", "imp2", "imp3"],
"suggestions": ["sug1", "sug2", "sug3"]
}
```
2016-04-16 17:03:28 +02:00
2016-04-13 13:33:03 +02:00
# Search
2016-04-09 08:59:40 +02:00
Search queries are built of tokens that are separated by spaces. Each token can
be of following form:
| Syntax | Token type | Description |
| ----------------- | ----------------- | ------------------------------------------ |
| `<value>` | anonymous tokens | basic filters |
| `<key>:<value>` | named tokens | advanced filters |
| `order:<style>` | order tokens | sort results |
| `special:<value>` | special tokens | filters usually tied to the logged in user |
Most of anonymous and named tokens support ranged and composite values that
take following form:
| `<value>` | Description |
| --------- | ----------------------------------------------------- |
| `a,b,c` | will show things that satisfy either `a`, `b` or `c`. |
| `1..` | will show things that are equal to or greater than 1. |
| `..4` | will show things that are equal to at most 4. |
| `1..4` | will show things that are equal to 1, 2, 3 or 4. |
Ranged values can be also supplied by appending `-min` or `-max` to the key,
for example like this: `score-min:1`.
Date/time values can be of following form:
2016-04-09 08:59:40 +02:00
- `today`
- `yesterday`
- `<year>`
- `<year>-<month>`
- `<year>-<month>-<day>`
2016-04-09 08:59:40 +02:00
Some fields, such as user names, can take wildcards (`*`).
**Example**
2016-04-09 08:59:40 +02:00
Searching for posts with following query:
2016-04-09 08:59:40 +02:00
sea -fav-count:8.. type:swf uploader:Pirate
2016-04-09 08:59:40 +02:00
will show flash files tagged as sea, that were liked by seven people at most,
uploaded by user Pirate.