forked from fossology/fossology
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rest): Update upload information
Use PATCH to update the update the upload information. New parameters `assignee` and `status` can be passed as query to the /uploads/{id} endpoint as PATCH request. The comment for Rejected and Closed status can be sent as body of `text/plain` type. BREAKING CHANGE: The PATCH was used for copy upload operations, now it is moved to PUT request with `action` parameter and have same format like PUT /folders/{id}. Signed-off-by: Gaurav Mishra <[email protected]>
- Loading branch information
Showing
4 changed files
with
222 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ openapi: 3.0.2 | |
info: | ||
title: FOSSology API | ||
description: Automate your fossology instance using REST API | ||
version: 1.3.4 | ||
version: 1.4.0 | ||
contact: | ||
email: [email protected] | ||
license: | ||
|
@@ -221,43 +221,75 @@ paths: | |
default: | ||
$ref: '#/components/responses/defaultResponse' | ||
patch: | ||
operationId: moveUploadById | ||
operationId: updateUploadById | ||
tags: | ||
- Upload | ||
- Organize | ||
description: Move upload from one folder to other | ||
description: Update an upload information | ||
parameters: | ||
- name: folderId | ||
description: Folder Id, where upload should be moved to | ||
in: header | ||
required: true | ||
- name: status | ||
description: New status of the upload | ||
in: query | ||
required: false | ||
schema: | ||
type: string | ||
enum: | ||
- Open | ||
- InProgress | ||
- Closed | ||
- Rejected | ||
example: Closed | ||
- name: assignee | ||
description: New assignee for the project | ||
in: query | ||
required: false | ||
schema: | ||
type: integer | ||
requestBody: | ||
description: > | ||
Comment on the status, required for Closed and Rejected states. | ||
Ignored for others. | ||
content: | ||
text/plain: | ||
schema: | ||
description: The comment for new status | ||
type: string | ||
example: "The upload cleared for use." | ||
responses: | ||
'202': | ||
description: Upload will be moved | ||
description: Upload will be updated | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Info' | ||
default: | ||
$ref: '#/components/responses/defaultResponse' | ||
put: | ||
operationId: copyUploadById | ||
operationId: moveUploadById | ||
tags: | ||
- Upload | ||
- Organize | ||
description: Can be used to copy uploads | ||
description: Copy or move an upload by id | ||
parameters: | ||
- name: folderId | ||
description: Folder Id, where upload should be copied to | ||
in: header | ||
required: true | ||
schema: | ||
type: integer | ||
- name: action | ||
in: header | ||
required: true | ||
description: Action to be performed | ||
schema: | ||
type: string | ||
enum: | ||
- copy | ||
- move | ||
summary: Copy/Move an upload | ||
responses: | ||
'202': | ||
description: Upload will be copied | ||
description: Upload will be copied/moved | ||
content: | ||
application/json: | ||
schema: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters