-
Notifications
You must be signed in to change notification settings - Fork 34
chore(swagger): automate swagger sync to amrit-docs #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+165
−1
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
407730b
docs(readme): add documentation badge
DurgaPrasad-54 a922b44
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 19cc91a
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 81b51a0
chore(swagger): update swagger work flow and properties
DurgaPrasad-54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| name: Sync Swagger to AMRIT-Docs | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| swagger-sync: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 20 | ||
|
|
||
| steps: | ||
| - name: Checkout API repo | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Java 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 17 | ||
| cache: maven | ||
|
|
||
| - name: Build API (skip tests) | ||
| run: mvn -B clean package -DskipTests | ||
|
|
||
| - name: Install jq | ||
| run: sudo apt-get update && sudo apt-get install -y jq | ||
|
|
||
| - name: Run API in swagger profile | ||
| run: | | ||
| nohup java -jar target/tm-api-*.war \ | ||
| --spring.profiles.active=swagger \ | ||
| --server.port=9090 \ | ||
| > app.log 2>&1 & | ||
| echo $! > api_pid.txt | ||
|
|
||
| - name: Wait for API & fetch Swagger | ||
| run: | | ||
| for i in {1..40}; do | ||
| CODE=$(curl --connect-timeout 2 --max-time 5 -s -o swagger_raw.json -w "%{http_code}" http://localhost:9090/v3/api-docs || true) | ||
|
|
||
| if [ "$CODE" = "200" ]; then | ||
| jq . swagger_raw.json > tm-api.json || { | ||
| echo "Swagger JSON invalid" | ||
| cat swagger_raw.json | ||
| exit 1 | ||
| } | ||
|
|
||
| if [ "$(jq '.paths | length' tm-api.json)" -eq 0 ]; then | ||
| echo "Swagger paths empty – failing" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "Swagger generated successfully" | ||
| exit 0 | ||
| fi | ||
|
|
||
| echo "Waiting for API... ($i)" | ||
| sleep 4 | ||
| done | ||
|
|
||
| echo "Swagger not generated" | ||
| cat app.log || true | ||
| exit 1 | ||
|
|
||
| - name: Stop API | ||
| if: always() | ||
| run: | | ||
| # Graceful shutdown of the process group | ||
| sleep 5 | ||
| # Force kill the process group if still running | ||
| if [ -f api_pid.txt ]; then | ||
| PID=$(cat api_pid.txt) | ||
| kill -TERM -- -"$PID" 2>/dev/null || true | ||
| sleep 2 | ||
| kill -9 -- -"$PID" 2>/dev/null || true | ||
| fi | ||
| # Fallback: kill any remaining java process on port 9090 | ||
| fuser -k 9090/tcp 2>/dev/null || true | ||
|
|
||
| - name: Checkout AMRIT-Docs | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: PSMRI/AMRIT-Docs | ||
| token: ${{ secrets.DOCS_REPO_TOKEN }} | ||
| path: amrit-docs | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Copy Swagger JSON | ||
| run: | | ||
| mkdir -p amrit-docs/docs/swagger | ||
| cp tm-api.json amrit-docs/docs/swagger/tm-api.json | ||
|
|
||
| - name: Create Pull Request | ||
| uses: peter-evans/create-pull-request@v8 | ||
| with: | ||
| token: ${{ secrets.DOCS_REPO_TOKEN }} | ||
| path: amrit-docs | ||
| branch: auto/swagger-update-${{ github.run_id }}-${{ github.run_attempt }} | ||
| base: main | ||
| commit-message: "chore(docs): auto-update TM-API swagger" | ||
| title: "chore(docs): auto-update TM-API swagger" | ||
| delete-branch: true | ||
| body: | | ||
| This PR automatically updates TM-API Swagger JSON | ||
| from the latest main branch build. |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| spring.datasource.url=jdbc:h2:mem:swaggerdb | ||
| spring.datasource.driver-class-name=org.h2.Driver | ||
| spring.jpa.database-platform=org.hibernate.dialect.H2Dialect | ||
| spring.jpa.hibernate.ddl-auto=create-drop | ||
| spring.redis.host=${REDIS_HOST:localhost} | ||
| spring.redis.port=${REDIS_PORT:6379} | ||
| cors.allowed-origins=${CORS_ALLOWED_ORIGINS:http://localhost:9090,http://localhost:8080} | ||
| logging.level.root=INFO | ||
| jwt.secret=${JWT_SECRET_KEY:#{T(java.util.UUID).randomUUID().toString()}} | ||
| common-api-url-searchBeneficiary=http://localhost:8080/beneficiary/search | ||
| common-api-url-searchuserbyid=http://localhost:8080/user/searchbyid | ||
| openkmDocUrl=http://localhost:8080/openkm | ||
| nurseWL=90 | ||
| nurseTCWL=90 | ||
| pharmaWL=90 | ||
| pharmaTCWL=90 | ||
| ashaWL=90 | ||
| ashaTCWL=90 | ||
| labWL=90 | ||
| labTCWL=90 | ||
| radioWL=90 | ||
| radioTCWL=90 | ||
| oncoWL=90 | ||
| oncoTCWL=90 | ||
| tcSpecialistSlotBook=true | ||
| tcSpecialistSlotCancel=true | ||
| TMReferredWL=90 | ||
| docWL=90 | ||
| docTCWL=90 | ||
| swymed_dnsname=swymed://psmri.swymed.com | ||
| jitsi_dnsname=https://meet.jit.si | ||
| fotesenseFilePath=${FETOSENSE_FILE_PATH:/tmp/fetosense-report} | ||
| fetosenseAPIKey=${FETOSENSE_API_KEY:defualt-key} | ||
| scheduling-slotsize=5 | ||
| schedule=default | ||
| tcSpeclistWL=90 | ||
| tcSpeclistTCWL=90 | ||
| sendSMSUrl=http://localhost:8080/sms/send | ||
| prescription=default | ||
| cancel=default | ||
| reSchedule=default | ||
| snomedCTPageSize=50 | ||
| registrarQuickSearchByIdUrl=http://localhost:8080/registrar/quicksearchbyid | ||
| registrarQuickSearchByPhoneNoUrl=http://localhost:8080/registrar/quicksearchbyphoneno | ||
| registrarAdvanceSearchUrl=http://localhost:8080/registrar/advancesearch | ||
| carestreamOrderCreateURL=http://localhost:8080/carestream/order/create | ||
| getBenImageFromIdentity=http://localhost:8080/identity/ben/image | ||
| dataSyncUploadUrl=http://localhost:8080/datasync/upload | ||
| dataSyncDownloadUrl= | ||
| registrationUrl=http://localhost:8080/registration | ||
| beneficiaryEditUrl=http://localhost:8080/beneficiary/edit |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are all these properties required for swagger to start?