Skip to content

Commit

Permalink
Merge pull request #42928 from nextcloud/backport/42923/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(build): Do not generated OpenAPI for non-shipped apps or apps without OpenAPI support
  • Loading branch information
nickvergessen authored Jan 18, 2024
2 parents c16744c + 3e59696 commit ccd3a99
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 2 deletions.
Empty file added apps/admin_audit/.noopenapi
Empty file.
Empty file.
Empty file added apps/encryption/.noopenapi
Empty file.
Empty file.
49 changes: 49 additions & 0 deletions apps/systemtags/openapi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"openapi": "3.0.3",
"info": {
"title": "systemtags",
"version": "0.0.1",
"description": "Collaborative tagging functionality which shares tags among users.",
"license": {
"name": "agpl"
}
},
"components": {
"securitySchemes": {
"basic_auth": {
"type": "http",
"scheme": "basic"
},
"bearer_auth": {
"type": "http",
"scheme": "bearer"
}
},
"schemas": {
"Capabilities": {
"type": "object",
"required": [
"systemtags"
],
"properties": {
"systemtags": {
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"enum": [
true
]
}
}
}
}
}
}
},
"paths": {},
"tags": []
}
Empty file added apps/testing/.noopenapi
Empty file.
Empty file.
Empty file added apps/workflowengine/.noopenapi
Empty file.
6 changes: 4 additions & 2 deletions build/openapi-checker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env bash

for path in core/openapi.json apps/*/openapi.json; do
composer exec generate-spec "$(dirname "$path")" "$path" || exit 1
for path in core apps/*; do
if [ ! -f "$path/.noopenapi" ] && [[ "$(git check-ignore "$path")" != "$path" ]]; then
composer exec generate-spec "$path" "$path/openapi.json" || exit 1
fi
done

files="$(git diff --name-only)"
Expand Down

0 comments on commit ccd3a99

Please sign in to comment.