DEV: Update api docs for search endpoint (#14181)

This commit is contained in:
Blake Erickson 2021-08-30 11:25:34 -06:00 committed by GitHub
parent e50a5c0c73
commit 70eca1dc4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 54 additions and 19 deletions

View File

@ -1,11 +0,0 @@
{
"additionalProperties": false,
"properties": {
"q": {
"type": "string"
}
},
"required": [
"q"
]
}

View File

@ -19,6 +19,12 @@
]
},
"tags": {
"type": "array",
"items": [
]
},
"groups": {
"type": "array",
"items": [
@ -26,7 +32,7 @@
]
},
"grouped_search_result": {
"type": ["object", "null"],
"type": "object",
"additionalProperties": false,
"properties": {
"more_posts": {
@ -86,6 +92,12 @@
]
},
"tag_ids": {
"type": "array",
"items": [
]
},
"group_ids": {
"type": "array",
"items": [
@ -105,11 +117,17 @@
"post_ids",
"user_ids",
"category_ids",
"tag_ids",
"group_ids"
]
}
},
"required": [
"posts",
"users",
"categories",
"tags",
"groups",
"grouped_search_result"
]
}

View File

@ -14,20 +14,48 @@ describe 'groups' do
get 'Search for a term' do
tags 'Search'
consumes 'application/json'
expected_request_schema = load_spec_schema('search_request')
parameter name: :params, in: :body, schema: expected_request_schema
parameter(
name: :q,
in: :query,
type: :string,
example: 'api @blake #support tags:api after:2021-06-04 in:unseen in:open order:latest_topic',
description: <<~HEREDOC
The query string needs to be url encoded and is made up of the following options:
- Search term. This is just a string. Usually it would be the first item in the query.
- `@<username>`: Use the `@` followed by the username to specify posts by this user.
- `#<category>`: Use the `#` followed by the category slug to search within this category.
- `tags:`: `api,solved` or for posts that have all the specified tags `api+solved`.
- `before:`: `yyyy-mm-dd`
- `after:`: `yyyy-mm-dd`
- `order:`: `latest`, `likes`, `views`, `latest_topic`
- `assigned:`: username (without `@`)
- `in:`: `title`, `likes`, `personal`, `seen`, `unseen`, `posted`, `created`, `watching`, `tracking`, `bookmarks`, `assigned`, `unassigned`, `first`, `pinned`, `wiki`
- `with:`: `images`
- `status:`: `open`, `closed`, `public`, `archived`, `noreplies`, `single_user`, `solved`, `unsolved`
- `min_posts:`: 1
- `max_posts:`: 10
- `min_views:`: 1
- `max_views:`: 10
If you are using cURL you can use the `-G` and the `--data-urlencode` flags to encode the query:
```
curl -i -sS -X GET -G "http://localhost:4200/search.json" \\
--data-urlencode 'q=wordpress @scossar #fun after:2020-01-01'
```
HEREDOC
)
parameter name: :page, in: :query, type: :integer, example: 1
produces 'application/json'
response '200', 'success response' do
expected_response_schema = load_spec_schema('search_response')
schema expected_response_schema
let(:params) { { 'q' => 'awesome post' } }
let(:q) { 'awesome post' }
let(:page) { 1 }
it_behaves_like "a JSON endpoint", 200 do
let(:expected_response_schema) { expected_response_schema }
let(:expected_request_schema) { expected_request_schema }
end
run_test!
end
end
end