123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- {
- "openapi": "3.0.3",
- "info": {
- "title": "cloud_federation_api",
- "version": "0.0.1",
- "description": "Enable clouds to communicate with each other and exchange data",
- "license": {
- "name": "agpl"
- }
- },
- "components": {
- "securitySchemes": {
- "basic_auth": {
- "type": "http",
- "scheme": "basic"
- },
- "bearer_auth": {
- "type": "http",
- "scheme": "bearer"
- }
- },
- "schemas": {
- "AddShare": {
- "type": "object",
- "required": [
- "recipientDisplayName"
- ],
- "properties": {
- "recipientDisplayName": {
- "type": "string"
- }
- }
- },
- "Capabilities": {
- "type": "object",
- "required": [
- "ocm"
- ],
- "properties": {
- "ocm": {
- "type": "object",
- "required": [
- "enabled",
- "apiVersion",
- "endPoint",
- "resourceTypes"
- ],
- "properties": {
- "enabled": {
- "type": "boolean"
- },
- "apiVersion": {
- "type": "string"
- },
- "endPoint": {
- "type": "string"
- },
- "resourceTypes": {
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "name",
- "shareTypes",
- "protocols"
- ],
- "properties": {
- "name": {
- "type": "string"
- },
- "shareTypes": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "protocols": {
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- }
- }
- }
- }
- }
- }
- }
- },
- "Error": {
- "type": "object",
- "required": [
- "message"
- ],
- "properties": {
- "message": {
- "type": "string"
- }
- }
- },
- "ValidationError": {
- "allOf": [
- {
- "$ref": "#/components/schemas/Error"
- },
- {
- "type": "object",
- "required": [
- "validationErrors"
- ],
- "properties": {
- "validationErrors": {
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "name",
- "message"
- ],
- "properties": {
- "name": {
- "type": "string"
- },
- "message": {
- "type": "string",
- "nullable": true
- }
- }
- }
- }
- }
- }
- ]
- }
- }
- },
- "paths": {
- "/index.php/ocm/shares": {
- "post": {
- "operationId": "request_handler-add-share",
- "summary": "Add share",
- "tags": [
- "request_handler"
- ],
- "security": [
- {},
- {
- "bearer_auth": []
- },
- {
- "basic_auth": []
- }
- ],
- "parameters": [
- {
- "name": "shareWith",
- "in": "query",
- "description": "The user who the share will be shared with",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "name",
- "in": "query",
- "description": "The resource name (e.g. document.odt)",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "description",
- "in": "query",
- "description": "Share description",
- "schema": {
- "type": "string",
- "nullable": true
- }
- },
- {
- "name": "providerId",
- "in": "query",
- "description": "Resource UID on the provider side",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "owner",
- "in": "query",
- "description": "Provider specific UID of the user who owns the resource",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "ownerDisplayName",
- "in": "query",
- "description": "Display name of the user who shared the item",
- "schema": {
- "type": "string",
- "nullable": true
- }
- },
- {
- "name": "sharedBy",
- "in": "query",
- "description": "Provider specific UID of the user who shared the resource",
- "schema": {
- "type": "string",
- "nullable": true
- }
- },
- {
- "name": "sharedByDisplayName",
- "in": "query",
- "description": "Display name of the user who shared the resource",
- "schema": {
- "type": "string",
- "nullable": true
- }
- },
- {
- "name": "protocol",
- "in": "query",
- "description": "e,.g. ['name' => 'webdav', 'options' => ['username' => 'john', 'permissions' => 31]]",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "shareType",
- "in": "query",
- "description": "'group' or 'user' share",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "resourceType",
- "in": "query",
- "description": "'file', 'calendar',...",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "201": {
- "description": "The notification was successfully received. The display name of the recipient might be returned in the body",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/AddShare"
- }
- }
- }
- },
- "400": {
- "description": "Bad request due to invalid parameters, e.g. when `shareWith` is not found or required properties are missing",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ValidationError"
- }
- }
- }
- },
- "501": {
- "description": "Share type or the resource type is not supported",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/Error"
- }
- }
- }
- }
- }
- }
- },
- "/index.php/ocm/notifications": {
- "post": {
- "operationId": "request_handler-receive-notification",
- "summary": "Send a notification about an existing share",
- "tags": [
- "request_handler"
- ],
- "security": [
- {},
- {
- "bearer_auth": []
- },
- {
- "basic_auth": []
- }
- ],
- "parameters": [
- {
- "name": "notificationType",
- "in": "query",
- "description": "Notification type, e.g. SHARE_ACCEPTED",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "resourceType",
- "in": "query",
- "description": "calendar, file, contact,...",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "providerId",
- "in": "query",
- "description": "ID of the share",
- "schema": {
- "type": "string",
- "nullable": true
- }
- },
- {
- "name": "notification",
- "in": "query",
- "description": "The actual payload of the notification",
- "schema": {
- "type": "string",
- "nullable": true
- }
- }
- ],
- "responses": {
- "201": {
- "description": "The notification was successfully received",
- "content": {
- "application/json": {
- "schema": {
- "type": "object",
- "additionalProperties": {
- "type": "object"
- }
- }
- }
- }
- },
- "400": {
- "description": "Bad request due to invalid parameters, e.g. when `type` is invalid or missing",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ValidationError"
- }
- }
- }
- },
- "403": {
- "description": "Getting resource is not allowed",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/Error"
- }
- }
- }
- },
- "501": {
- "description": "The resource type is not supported",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/Error"
- }
- }
- }
- }
- }
- }
- }
- },
- "tags": [
- {
- "name": "request_handler",
- "description": "Open-Cloud-Mesh-API"
- }
- ]
- }
|