2020-04-27 18:40:07 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-21 18:28:08 -05:00
|
|
|
require 'json_schemer'
|
|
|
|
|
|
|
|
# Require schema files
|
|
|
|
Dir["./spec/requests/api/schemas/*.rb"].each { |file| require file }
|
|
|
|
|
|
|
|
# Require shared spec examples
|
|
|
|
Dir["./spec/requests/api/shared/*.rb"].each { |file| require file }
|
2020-04-27 18:40:07 -04:00
|
|
|
|
2021-01-26 09:38:46 -05:00
|
|
|
def load_spec_schema(name)
|
|
|
|
SpecSchemas::SpecLoader.new(name).load
|
|
|
|
end
|
|
|
|
|
2021-02-04 20:43:40 -05:00
|
|
|
def api_docs_description
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-02-28 14:50:55 -05:00
|
|
|
<<~MD
|
2021-02-04 20:43:40 -05:00
|
|
|
This page contains the documentation on how to use Discourse through API calls.
|
|
|
|
|
|
|
|
> Note: For any endpoints not listed you can follow the
|
|
|
|
[reverse engineer the Discourse API](https://meta.discourse.org/t/-/20576)
|
|
|
|
guide to figure out how to use an API endpoint.
|
|
|
|
|
|
|
|
### Request Content-Type
|
|
|
|
|
|
|
|
The Content-Type for POST and PUT requests can be set to `application/x-www-form-urlencoded`,
|
|
|
|
`multipart/form-data`, or `application/json`.
|
|
|
|
|
|
|
|
### Endpoint Names and Response Content-Type
|
|
|
|
|
|
|
|
Most API endpoints provide the same content as their HTML counterparts. For example
|
|
|
|
the URL `/categories` serves a list of categories, the `/categories.json` API provides the
|
|
|
|
same information in JSON format.
|
|
|
|
|
|
|
|
Instead of sending API requests to `/categories.json` you may also send them to `/categories`
|
|
|
|
and add an `Accept: application/json` header to the request to get the JSON response.
|
|
|
|
Sending requests with the `Accept` header is necessary if you want to use URLs
|
|
|
|
for related endpoints returned by the API, such as pagination URLs.
|
|
|
|
These URLs are returned without the `.json` prefix so you need to add the header in
|
|
|
|
order to get the correct response format.
|
|
|
|
|
|
|
|
### Authentication
|
|
|
|
|
|
|
|
Some endpoints do not require any authentication, pretty much anything else will
|
|
|
|
require you to be authenticated.
|
|
|
|
|
|
|
|
To become authenticated you will need to create an API Key from the admin panel.
|
|
|
|
|
|
|
|
Once you have your API Key you can pass it in along with your API Username
|
|
|
|
as an HTTP header like this:
|
|
|
|
|
|
|
|
```
|
2021-02-08 12:09:44 -05:00
|
|
|
curl -X GET "http://127.0.0.1:3000/admin/users/list/active.json" \\
|
|
|
|
-H "Api-Key: 714552c6148e1617aeab526d0606184b94a80ec048fc09894ff1a72b740c5f19" \\
|
2021-02-04 20:43:40 -05:00
|
|
|
-H "Api-Username: system"
|
|
|
|
```
|
|
|
|
|
|
|
|
and this is how POST requests will look:
|
|
|
|
|
|
|
|
```
|
2021-02-08 12:09:44 -05:00
|
|
|
curl -X POST "http://127.0.0.1:3000/categories" \\
|
|
|
|
-H "Content-Type: multipart/form-data;" \\
|
|
|
|
-H "Api-Key: 714552c6148e1617aeab526d0606184b94a80ec048fc09894ff1a72b740c5f19" \\
|
|
|
|
-H "Api-Username: system" \\
|
|
|
|
-F "name=89853c20-4409-e91a-a8ea-f6cdff96aaaa" \\
|
|
|
|
-F "color=49d9e9" \\
|
2021-02-04 20:43:40 -05:00
|
|
|
-F "text_color=f0fcfd"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Boolean values
|
|
|
|
|
|
|
|
If an endpoint accepts a boolean be sure to specify it as a lowercase
|
|
|
|
`true` or `false` value unless noted otherwise.
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-02-28 14:50:55 -05:00
|
|
|
MD
|
2021-02-04 20:43:40 -05:00
|
|
|
end
|
|
|
|
|
2021-12-22 17:40:15 -05:00
|
|
|
def direct_uploads_disclaimer
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-02-28 14:50:55 -05:00
|
|
|
<<~MD
|
2021-12-22 17:40:15 -05:00
|
|
|
You must have the correct permissions and CORS settings configured in your
|
|
|
|
external provider. We support AWS S3 as the default. See:
|
|
|
|
|
|
|
|
https://meta.discourse.org/t/-/210469#s3-multipart-direct-uploads-4.
|
|
|
|
|
|
|
|
An external file store must be set up and `enable_direct_s3_uploads` must
|
|
|
|
be set to true for this endpoint to function.
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-02-28 14:50:55 -05:00
|
|
|
MD
|
2021-12-22 17:40:15 -05:00
|
|
|
end
|
|
|
|
|
2020-04-27 18:40:07 -04:00
|
|
|
RSpec.configure do |config|
|
|
|
|
# Specify a root folder where Swagger JSON files are generated
|
|
|
|
# NOTE: If you're using the rswag-api to serve API descriptions, you'll need
|
|
|
|
# to ensure that it's configured to serve Swagger from the same folder
|
|
|
|
config.swagger_root = Rails.root.join('openapi').to_s
|
|
|
|
|
|
|
|
# Define one or more Swagger documents and provide global metadata for each one
|
|
|
|
# When you run the 'rswag:specs:swaggerize' rake task, the complete Swagger will
|
|
|
|
# be generated at the provided relative path under swagger_root
|
|
|
|
# By default, the operations defined in spec files are added to the first
|
|
|
|
# document below. You can override this behavior by adding a swagger_doc tag to the
|
|
|
|
# the root example_group in your specs, e.g. describe '...', swagger_doc: 'v2/swagger.json'
|
|
|
|
config.swagger_docs = {
|
|
|
|
'openapi.yaml' => {
|
2021-08-11 14:38:02 -04:00
|
|
|
openapi: '3.1.0',
|
2020-04-27 18:40:07 -04:00
|
|
|
info: {
|
|
|
|
title: 'Discourse API Documentation',
|
2021-02-04 20:43:40 -05:00
|
|
|
'x-logo': {
|
2022-06-08 08:10:20 -04:00
|
|
|
url: 'https://docs.discourse.org/logo.svg',
|
2021-02-04 20:43:40 -05:00
|
|
|
},
|
|
|
|
version: 'latest',
|
2021-09-07 12:35:56 -04:00
|
|
|
description: api_docs_description,
|
|
|
|
license: {
|
|
|
|
name: 'MIT',
|
|
|
|
url: 'https://docs.discourse.org/LICENSE.txt'
|
|
|
|
}
|
2020-04-27 18:40:07 -04:00
|
|
|
},
|
|
|
|
paths: {},
|
|
|
|
servers: [
|
|
|
|
{
|
|
|
|
url: 'https://{defaultHost}',
|
|
|
|
variables: {
|
|
|
|
defaultHost: {
|
|
|
|
default: 'discourse.example.com'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-14 18:59:58 -05:00
|
|
|
],
|
|
|
|
components: {
|
2022-10-25 21:05:15 -04:00
|
|
|
schemas: {}
|
2021-01-14 18:59:58 -05:00
|
|
|
}
|
2020-04-27 18:40:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Specify the format of the output Swagger file when running 'rswag:specs:swaggerize'.
|
|
|
|
# The swagger_docs configuration option has the filename including format in
|
|
|
|
# the key, this may want to be changed to avoid putting yaml in json files.
|
|
|
|
# Defaults to json. Accepts ':json' and ':yaml'.
|
|
|
|
config.swagger_format = :yaml
|
|
|
|
end
|