fix: correct status code
This commit is contained in:
parent
79a8dccd9c
commit
e38f36c579
|
@ -2,7 +2,7 @@
|
||||||
"openapi": "3.0.0",
|
"openapi": "3.0.0",
|
||||||
"info": {
|
"info": {
|
||||||
"title": "Jokesbapak2 Image API",
|
"title": "Jokesbapak2 Image API",
|
||||||
"description": "Jokes Bapak2 is an image API that you can use for free! I've been seeing lots and lots of Indonesian dad jokes on Twitter, Facebook and Instagram on early 2020. In a month, I made a Discord bot that provides the jokes. But I thought, why not make it as an API?\n",
|
"description": "Jokes Bapak2 is an image API that you can use for free! I've been seeing lots and lots of Indonesian dad jokes on Twitter, Facebook and Instagram on early 2020. In a month, I made a Discord bot that provides the jokes. But I thought, why not make it as an API?\n",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"contact": {
|
"contact": {
|
||||||
"name": "Reinaldy Rafli",
|
"name": "Reinaldy Rafli",
|
||||||
|
@ -68,382 +68,382 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"201": {
|
||||||
"description": "Image has been added",
|
"description": "Image has been added",
|
||||||
"content": {
|
"content": {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/components/schemas/request.joke"
|
|
||||||
},
|
|
||||||
"example": {
|
|
||||||
"link": "https://link.to/image.jpg"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"400": {
|
|
||||||
"description": "Bad request",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
},
|
|
||||||
"example": {
|
|
||||||
"error": "URL provided is not a valid image"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"description": "Must be authenticated to submit a joke",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/id/{id}": {
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"in": "path",
|
|
||||||
"name": "id",
|
|
||||||
"schema": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"required": true,
|
|
||||||
"description": "A number that represents image's ID"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"get": {
|
|
||||||
"summary": "Get random Jokes Bapak2 image by ID",
|
|
||||||
"description": "Returns consistent image for every call.",
|
|
||||||
"tags": [
|
|
||||||
"Jokes"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Image data",
|
|
||||||
"content": {
|
|
||||||
"image/jpeg": {},
|
|
||||||
"image/png": {},
|
|
||||||
"image/gif": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"404": {
|
|
||||||
"description": "Provided image ID was not found",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"example": "Requested ID was not found."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"patch": {
|
|
||||||
"summary": "Update a Joke with certain image ID",
|
|
||||||
"description": "Returns consistent image for every call.",
|
|
||||||
"tags": [
|
|
||||||
"Jokes"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Sucessfully updated an image item",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"allOf": [
|
|
||||||
{
|
|
||||||
"$ref": "#/components/schemas/response.confirmation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$ref": "#/components/schemas/request.joke"
|
"$ref": "#/components/schemas/request.joke"
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"400": {
|
|
||||||
"description": "Link provided is not a valid image",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"description": "Must be authenticated to submit a joke",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"406": {
|
|
||||||
"description": "If the Joke ID does not exists",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": {
|
|
||||||
"summary": "Delete a Joke with certain image ID",
|
|
||||||
"description": "hi",
|
|
||||||
"tags": [
|
|
||||||
"Jokes"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Sucessfully deleted an image item",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.confirmation"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"description": "Must be authenticated to submit a joke",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"406": {
|
|
||||||
"description": "If the Joke ID does not exists",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/today": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get the joke of the day",
|
|
||||||
"description": "A joke a day makes more of a dad out of you.",
|
|
||||||
"tags": [
|
|
||||||
"Jokes"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Image data",
|
|
||||||
"content": {
|
|
||||||
"image/jpeg": {},
|
|
||||||
"image/png": {},
|
|
||||||
"image/gif": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/total": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get total amount of jokes in database",
|
|
||||||
"tags": [
|
|
||||||
"Jokes"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Total jokes",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.confirmation"
|
|
||||||
},
|
|
||||||
"example": {
|
|
||||||
"message": "154"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/submit": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get submitted Jokes",
|
|
||||||
"tags": [
|
|
||||||
"Submission"
|
|
||||||
],
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"name": "author",
|
|
||||||
"in": "query",
|
|
||||||
"required": false,
|
|
||||||
"description": "Author to be queried",
|
|
||||||
"schema": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "approved",
|
|
||||||
"in": "query",
|
|
||||||
"required": false,
|
|
||||||
"description": "Whether query just approved jokes or not",
|
|
||||||
"schema": {
|
|
||||||
"type": "boolean"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "limit",
|
|
||||||
"in": "query",
|
|
||||||
"required": false,
|
|
||||||
"schema": {
|
|
||||||
"type": "number"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "page",
|
|
||||||
"in": "query",
|
|
||||||
"required": false,
|
|
||||||
"schema": {
|
|
||||||
"type": "number"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "asd",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"count": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
},
|
||||||
"jokes": {
|
"example": {
|
||||||
"type": "array",
|
"link": "https://link.to/image.jpg"
|
||||||
"items": {
|
|
||||||
"$ref": "#/components/schemas/response.submission"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
"400": {
|
||||||
}
|
"description": "Bad request",
|
||||||
}
|
"content": {
|
||||||
},
|
"application/json": {
|
||||||
"post": {
|
"schema": {
|
||||||
"summary": "Submit a joke",
|
"$ref": "#/components/schemas/response.error"
|
||||||
"description": "Must be in multipart/form-data format. Author must be in the format of \"Name <email>\".\n",
|
},
|
||||||
"tags": [
|
"example": {
|
||||||
"Submission"
|
"error": "URL provided is not a valid image"
|
||||||
],
|
}
|
||||||
"requestBody": {
|
|
||||||
"content": {
|
|
||||||
"multipart/form-data": {
|
|
||||||
"schema": {
|
|
||||||
"properties": {
|
|
||||||
"link": {
|
|
||||||
"description": "Image link",
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"image": {
|
|
||||||
"description": "Image data",
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"author": {
|
|
||||||
"description": "Person who submitted this",
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"required": [
|
},
|
||||||
"author",
|
"403": {
|
||||||
"image",
|
"description": "Must be authenticated to submit a joke",
|
||||||
"link"
|
"content": {
|
||||||
]
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"responses": {
|
"/id/{id}": {
|
||||||
"200": {
|
"parameters": [
|
||||||
"description": "Joke successfully submitted",
|
{
|
||||||
"content": {
|
"in": "path",
|
||||||
"application/json": {
|
"name": "id",
|
||||||
"schema": {
|
"schema": {
|
||||||
"allOf": [
|
"type": "number"
|
||||||
{
|
},
|
||||||
|
"required": true,
|
||||||
|
"description": "A number that represents image's ID"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"get": {
|
||||||
|
"summary": "Get random Jokes Bapak2 image by ID",
|
||||||
|
"description": "Returns consistent image for every call.",
|
||||||
|
"tags": [
|
||||||
|
"Jokes"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Image data",
|
||||||
|
"content": {
|
||||||
|
"image/jpeg": {},
|
||||||
|
"image/png": {},
|
||||||
|
"image/gif": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"404": {
|
||||||
|
"description": "Provided image ID was not found",
|
||||||
|
"content": {
|
||||||
|
"text/plain": {
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"example": "Requested ID was not found."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"summary": "Update a Joke with certain image ID",
|
||||||
|
"description": "Returns consistent image for every call.",
|
||||||
|
"tags": [
|
||||||
|
"Jokes"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Sucessfully updated an image item",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/response.confirmation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/request.joke"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"400": {
|
||||||
|
"description": "Link provided is not a valid image",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"403": {
|
||||||
|
"description": "Must be authenticated to submit a joke",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"406": {
|
||||||
|
"description": "If the Joke ID does not exists",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"delete": {
|
||||||
|
"summary": "Delete a Joke with certain image ID",
|
||||||
|
"description": "hi",
|
||||||
|
"tags": [
|
||||||
|
"Jokes"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Sucessfully deleted an image item",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.confirmation"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"403": {
|
||||||
|
"description": "Must be authenticated to submit a joke",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"406": {
|
||||||
|
"description": "If the Joke ID does not exists",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/today": {
|
||||||
|
"get": {
|
||||||
|
"summary": "Get the joke of the day",
|
||||||
|
"description": "A joke a day makes more of a dad out of you.",
|
||||||
|
"tags": [
|
||||||
|
"Jokes"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Image data",
|
||||||
|
"content": {
|
||||||
|
"image/jpeg": {},
|
||||||
|
"image/png": {},
|
||||||
|
"image/gif": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/total": {
|
||||||
|
"get": {
|
||||||
|
"summary": "Get total amount of jokes in database",
|
||||||
|
"tags": [
|
||||||
|
"Jokes"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Total jokes",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
"$ref": "#/components/schemas/response.confirmation"
|
"$ref": "#/components/schemas/response.confirmation"
|
||||||
},
|
},
|
||||||
{
|
"example": {
|
||||||
|
"message": "154"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/submit": {
|
||||||
|
"get": {
|
||||||
|
"summary": "Get submitted Jokes",
|
||||||
|
"tags": [
|
||||||
|
"Submission"
|
||||||
|
],
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "author",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"description": "Author to be queried",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "approved",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"description": "Whether query just approved jokes or not",
|
||||||
|
"schema": {
|
||||||
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "limit",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"schema": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "page",
|
||||||
|
"in": "query",
|
||||||
|
"required": false,
|
||||||
|
"schema": {
|
||||||
|
"type": "number"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "asd",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"data": {
|
"count": {
|
||||||
"$ref": "#/components/schemas/response.submission"
|
"type": "number"
|
||||||
|
},
|
||||||
|
"jokes": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/response.submission"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"400": {
|
"post": {
|
||||||
"description": "Invalid data was sent",
|
"summary": "Submit a joke",
|
||||||
"content": {
|
"description": "Must be in multipart/form-data format. Author must be in the format of \"Name <email>\".\n",
|
||||||
"application/json": {
|
"tags": [
|
||||||
"schema": {
|
"Submission"
|
||||||
"$ref": "#/components/schemas/response.error"
|
],
|
||||||
|
"requestBody": {
|
||||||
|
"content": {
|
||||||
|
"multipart/form-data": {
|
||||||
|
"schema": {
|
||||||
|
"properties": {
|
||||||
|
"link": {
|
||||||
|
"description": "Image link",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"image": {
|
||||||
|
"description": "Image data",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"author": {
|
||||||
|
"description": "Person who submitted this",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"author",
|
||||||
|
"image",
|
||||||
|
"link"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"responses": {
|
||||||
|
"201": {
|
||||||
|
"description": "Joke successfully submitted",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/response.confirmation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"$ref": "#/components/schemas/response.submission"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"400": {
|
||||||
|
"description": "Invalid data was sent",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/health": {
|
||||||
|
"get": {
|
||||||
|
"summary": "Health check",
|
||||||
|
"description": "Ping the databases to make sure everything's alright",
|
||||||
|
"tags": [
|
||||||
|
"Health"
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Everything is okay"
|
||||||
|
},
|
||||||
|
"403": {
|
||||||
|
"description": "Something is not okay",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/response.error"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
"/health": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Health check",
|
|
||||||
"description": "Ping the databases to make sure everything's alright",
|
|
||||||
"tags": [
|
|
||||||
"Health"
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Everything is okay"
|
|
||||||
},
|
|
||||||
"403": {
|
|
||||||
"description": "Something is not okay",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/response.error"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"schemas": {
|
"schemas": {
|
||||||
|
|
|
@ -47,7 +47,7 @@ paths:
|
||||||
- $ref: '#/components/schemas/request.auth'
|
- $ref: '#/components/schemas/request.auth'
|
||||||
- $ref: '#/components/schemas/request.joke'
|
- $ref: '#/components/schemas/request.joke'
|
||||||
responses:
|
responses:
|
||||||
200:
|
201:
|
||||||
description: Image has been added
|
description: Image has been added
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
@ -248,7 +248,7 @@ paths:
|
||||||
- image
|
- image
|
||||||
- link
|
- link
|
||||||
responses:
|
responses:
|
||||||
200:
|
201:
|
||||||
description: Joke successfully submitted
|
description: Joke successfully submitted
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
|
|
@ -93,7 +93,7 @@ func SubmitJoke(c *fiber.Ctx) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.
|
return c.
|
||||||
Status(fiber.StatusOK).
|
Status(fiber.StatusCreated).
|
||||||
JSON(models.ResponseSubmission{
|
JSON(models.ResponseSubmission{
|
||||||
Message: "Joke submitted. Please wait for a few days for admin to approve your submission.",
|
Message: "Joke submitted. Please wait for a few days for admin to approve your submission.",
|
||||||
Data: submission[0],
|
Data: submission[0],
|
||||||
|
|
Loading…
Reference in New Issue