Browse Source
Merge pull request #39312 from nextcloud/feature/openapi/updatenotification
Merge pull request #39312 from nextcloud/feature/openapi/updatenotification
updatenotification: Add OpenAPI specpull/39323/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 261 additions and 4 deletions
-
1apps/updatenotification/composer/composer/autoload_classmap.php
-
1apps/updatenotification/composer/composer/autoload_static.php
-
20apps/updatenotification/lib/Controller/APIController.php
-
35apps/updatenotification/lib/ResponseDefinitions.php
-
208apps/updatenotification/openapi.json
@ -0,0 +1,35 @@ |
|||
<?php |
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* @copyright Copyright (c) 2023 Kate Döen <kate.doeen@nextcloud.com> |
|||
* |
|||
* @author Kate Döen <kate.doeen@nextcloud.com> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCA\UpdateNotification; |
|||
|
|||
/** |
|||
* @psalm-type UpdatenotificationApp = array{ |
|||
* appId: string, |
|||
* appName: string, |
|||
* } |
|||
*/ |
|||
class ResponseDefinitions { |
|||
} |
|||
@ -0,0 +1,208 @@ |
|||
{ |
|||
"openapi": "3.0.3", |
|||
"info": { |
|||
"title": "updatenotification", |
|||
"version": "0.0.1", |
|||
"description": "Displays update notifications for Nextcloud and provides the SSO for the updater.", |
|||
"license": { |
|||
"name": "agpl" |
|||
} |
|||
}, |
|||
"components": { |
|||
"securitySchemes": { |
|||
"basic_auth": { |
|||
"type": "http", |
|||
"scheme": "basic" |
|||
}, |
|||
"bearer_auth": { |
|||
"type": "http", |
|||
"scheme": "bearer" |
|||
} |
|||
}, |
|||
"schemas": { |
|||
"App": { |
|||
"type": "object", |
|||
"required": [ |
|||
"appId", |
|||
"appName" |
|||
], |
|||
"properties": { |
|||
"appId": { |
|||
"type": "string" |
|||
}, |
|||
"appName": { |
|||
"type": "string" |
|||
} |
|||
} |
|||
}, |
|||
"OCSMeta": { |
|||
"type": "object", |
|||
"required": [ |
|||
"status", |
|||
"statuscode" |
|||
], |
|||
"properties": { |
|||
"status": { |
|||
"type": "string" |
|||
}, |
|||
"statuscode": { |
|||
"type": "integer" |
|||
}, |
|||
"message": { |
|||
"type": "string" |
|||
}, |
|||
"totalitems": { |
|||
"type": "string" |
|||
}, |
|||
"itemsperpage": { |
|||
"type": "string" |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"paths": { |
|||
"/ocs/v2.php/apps/updatenotification/api/{apiVersion}/applist/{newVersion}": { |
|||
"get": { |
|||
"operationId": "api-get-app-list", |
|||
"summary": "List available updates for apps", |
|||
"description": "This endpoint requires admin access", |
|||
"tags": [ |
|||
"api" |
|||
], |
|||
"security": [ |
|||
{ |
|||
"bearer_auth": [] |
|||
}, |
|||
{ |
|||
"basic_auth": [] |
|||
} |
|||
], |
|||
"parameters": [ |
|||
{ |
|||
"name": "apiVersion", |
|||
"in": "path", |
|||
"required": true, |
|||
"schema": { |
|||
"type": "string", |
|||
"enum": [ |
|||
"v1" |
|||
], |
|||
"default": "v1" |
|||
} |
|||
}, |
|||
{ |
|||
"name": "newVersion", |
|||
"in": "path", |
|||
"description": "Server version to check updates for", |
|||
"required": true, |
|||
"schema": { |
|||
"type": "string" |
|||
} |
|||
}, |
|||
{ |
|||
"name": "OCS-APIRequest", |
|||
"in": "header", |
|||
"required": true, |
|||
"schema": { |
|||
"type": "string", |
|||
"default": "true" |
|||
} |
|||
} |
|||
], |
|||
"responses": { |
|||
"200": { |
|||
"description": "Apps returned", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"type": "object", |
|||
"required": [ |
|||
"ocs" |
|||
], |
|||
"properties": { |
|||
"ocs": { |
|||
"type": "object", |
|||
"required": [ |
|||
"meta", |
|||
"data" |
|||
], |
|||
"properties": { |
|||
"meta": { |
|||
"$ref": "#/components/schemas/OCSMeta" |
|||
}, |
|||
"data": { |
|||
"type": "object", |
|||
"required": [ |
|||
"missing", |
|||
"available" |
|||
], |
|||
"properties": { |
|||
"missing": { |
|||
"type": "array", |
|||
"items": { |
|||
"$ref": "#/components/schemas/App" |
|||
} |
|||
}, |
|||
"available": { |
|||
"type": "array", |
|||
"items": { |
|||
"$ref": "#/components/schemas/App" |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"404": { |
|||
"description": "New versions not found", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"type": "object", |
|||
"required": [ |
|||
"ocs" |
|||
], |
|||
"properties": { |
|||
"ocs": { |
|||
"type": "object", |
|||
"required": [ |
|||
"meta", |
|||
"data" |
|||
], |
|||
"properties": { |
|||
"meta": { |
|||
"$ref": "#/components/schemas/OCSMeta" |
|||
}, |
|||
"data": { |
|||
"type": "object", |
|||
"required": [ |
|||
"appstore_disabled" |
|||
], |
|||
"properties": { |
|||
"appstore_disabled": { |
|||
"type": "boolean" |
|||
}, |
|||
"already_on_latest": { |
|||
"type": "boolean" |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"tags": [] |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue