Browse Source

files_trashbin: Add OpenAPI spec

Signed-off-by: jld3103 <jld3103yt@gmail.com>
tags/v28.0.0beta1
jld3103 1 year ago
parent
commit
99dc010670
No account linked to committer's email address

+ 2
- 0
apps/files_trashbin/lib/Capabilities.php View File

@@ -33,6 +33,8 @@ class Capabilities implements ICapability {

/**
* Return this classes capabilities
*
* @return array{files: array{undelete: bool}}
*/
public function getCapabilities() {
return [

+ 12
- 1
apps/files_trashbin/lib/Controller/PreviewController.php View File

@@ -85,7 +85,18 @@ class PreviewController extends Controller {
* @NoAdminRequired
* @NoCSRFRequired
*
* @return DataResponse|Http\FileDisplayResponse
* Get the preview for a file
*
* @param int $fileId ID of the file
* @param int $x Width of the preview
* @param int $y Height of the preview
* @param bool $a Whether to not crop the preview
*
* @return Http\FileDisplayResponse<Http::STATUS_OK, array{Content-Type: string}>|DataResponse<Http::STATUS_BAD_REQUEST|Http::STATUS_NOT_FOUND, array<empty>, array{}>
*
* 200: Preview returned
* 400: Getting preview is not possible
* 404: Preview not found
*/
public function getPreview(
int $fileId = -1,

+ 134
- 0
apps/files_trashbin/openapi.json View File

@@ -0,0 +1,134 @@
{
"openapi": "3.0.3",
"info": {
"title": "files_trashbin",
"version": "0.0.1",
"description": "This application enables users to restore files that were deleted from the system.",
"license": {
"name": "agpl"
}
},
"components": {
"securitySchemes": {
"basic_auth": {
"type": "http",
"scheme": "basic"
},
"bearer_auth": {
"type": "http",
"scheme": "bearer"
}
},
"schemas": {
"Capabilities": {
"type": "object",
"required": [
"files"
],
"properties": {
"files": {
"type": "object",
"required": [
"undelete"
],
"properties": {
"undelete": {
"type": "boolean"
}
}
}
}
}
}
},
"paths": {
"/index.php/apps/files_trashbin/preview": {
"get": {
"operationId": "preview-get-preview",
"summary": "Get the preview for a file",
"tags": [
"preview"
],
"security": [
{
"bearer_auth": []
},
{
"basic_auth": []
}
],
"parameters": [
{
"name": "fileId",
"in": "query",
"description": "ID of the file",
"schema": {
"type": "integer",
"format": "int64",
"default": -1
}
},
{
"name": "x",
"in": "query",
"description": "Width of the preview",
"schema": {
"type": "integer",
"format": "int64",
"default": 32
}
},
{
"name": "y",
"in": "query",
"description": "Height of the preview",
"schema": {
"type": "integer",
"format": "int64",
"default": 32
}
},
{
"name": "a",
"in": "query",
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
}
}
],
"responses": {
"200": {
"description": "Preview returned",
"content": {
"*/*": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"400": {
"description": "Getting preview is not possible",
"content": {
"application/json": {
"schema": {}
}
}
},
"404": {
"description": "Preview not found",
"content": {
"application/json": {
"schema": {}
}
}
}
}
}
}
},
"tags": []
}

Loading…
Cancel
Save