wvengen 2019-02-05 20:53:02 +01:00 committed by wvengen
parent 02f1940694
commit e9be38b3e9
12 changed files with 162 additions and 32 deletions

View file

@ -9,6 +9,8 @@ The API is documented using [Open API 2.0](https://github.com/OAI/OpenAPI-Specif
/ [Swagger](https://swagger.io/) in [swagger.v1.yml](swagger.v1.yml).
This provides a machine-readable reference that is used to provide documentation.
**Note:** the current OAuth scopes may be subject to change, until the next release of Foodsoft.
## API endpoint documentation
>> [View API documentation](http://petstore.swagger.io/?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffoodcoops%2Ffoodsoft%2Fmaster%2Fdoc%2Fswagger.v1.yml) <<

View file

@ -46,8 +46,12 @@ paths:
description: not logged-in
schema:
$ref: '#/definitions/Error401'
403:
description: missing scope
schema:
$ref: '#/definitions/Error403'
security:
- foodsoft_auth: ['all']
- foodsoft_auth: ['user:read', 'user:write']
/config:
get:
summary: configuration variables
@ -62,8 +66,12 @@ paths:
description: not logged-in
schema:
$ref: '#/definitions/Error401'
403:
description: missing scope or no permission
schema:
$ref: '#/definitions/Error403'
security:
- foodsoft_auth: ['all']
- foodsoft_auth: ['config:user', 'config:read', 'config:write']
/navigation:
get:
summary: navigation
@ -82,7 +90,7 @@ paths:
schema:
$ref: '#/definitions/Error401'
security:
- foodsoft_auth: ['all']
- foodsoft_auth: []
definitions:
# models
@ -142,6 +150,14 @@ definitions:
description: '<tt>unauthorized</tt>'
error_description:
$ref: '#/definitions/Error/properties/error_description'
Error403:
type: object
properties:
error:
type: string
description: '<tt>forbidden</tt> or <tt>invalid_scope</tt>'
error_description:
$ref: '#/definitions/Error/properties/error_description'
securityDefinitions:
foodsoft_auth:
@ -149,5 +165,9 @@ securityDefinitions:
flow: implicit
authorizationUrl: http://localhost:3000/f/oauth/authorize
scopes:
all: full access to user functions
config:user: reading Foodsoft configuration for regular users
config:read: reading Foodsoft configuration values
config:write: reading and updating Foodsoft configuration values
user:read: reading your own user profile
user:write: reading and updating your own user profile
offline_access: retain access after user has logged out