From 1a584b4477fb24f0ab2c8d01bcf4096d07eebe31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Tue, 20 Aug 2024 15:34:22 +0200 Subject: [PATCH] [PM-9361] Generate Swagger specs in CI for the SDK (#4428) Co-authored-by: Oscar Hinton --- .github/workflows/build.yml | 45 ++++++++++++++++++- .../OrganizationAuthRequestsController.cs | 1 + 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a18b4aead..5b287f38ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -385,7 +385,7 @@ jobs: path: docker-stub-EU-sha256.txt if-no-files-found: error - - name: Build Swagger + - name: Build Public API Swagger run: | cd ./src/Api echo "Restore tools" @@ -402,12 +402,53 @@ jobs: DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2 GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder" - - name: Upload Swagger artifact + - name: Upload Public API Swagger artifact uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 with: name: swagger.json path: swagger.json if-no-files-found: error + + - name: Build Internal API Swagger + run: | + cd ./src/Api + echo "Restore API tools" + dotnet tool restore + echo "Publish API" + dotnet publish -c "Release" -o obj/build-output/publish + + dotnet swagger tofile --output ../../internal.json --host https://api.bitwarden.com \ + ./obj/build-output/publish/Api.dll internal + + cd ../Identity + + echo "Restore Identity tools" + dotnet tool restore + echo "Publish Identity" + dotnet publish -c "Release" -o obj/build-output/publish + + dotnet swagger tofile --output ../../identity.json --host https://identity.bitwarden.com \ + ./obj/build-output/publish/Identity.dll v1 + cd ../.. + env: + ASPNETCORE_ENVIRONMENT: Development + swaggerGen: "True" + DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2 + GLOBALSETTINGS__SQLSERVER__CONNECTIONSTRING: "placeholder" + + - name: Upload Internal API Swagger artifact + uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + with: + name: internal.json + path: internal.json + if-no-files-found: error + + - name: Upload Identity Swagger artifact + uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + with: + name: identity.json + path: identity.json + if-no-files-found: error build-mssqlmigratorutility: name: Build MSSQL migrator utility diff --git a/src/Api/AdminConsole/Controllers/OrganizationAuthRequestsController.cs b/src/Api/AdminConsole/Controllers/OrganizationAuthRequestsController.cs index ea3de5a38c..915a17ff54 100644 --- a/src/Api/AdminConsole/Controllers/OrganizationAuthRequestsController.cs +++ b/src/Api/AdminConsole/Controllers/OrganizationAuthRequestsController.cs @@ -80,6 +80,7 @@ public class OrganizationAuthRequestsController : Controller await _updateOrganizationAuthRequestCommand.UpdateAsync(orgId, model.Select(x => x.ToOrganizationAuthRequestUpdate())); } + [NonAction] public async Task ValidateAdminRequest(Guid orgId) { if (!await _currentContext.ManageResetPassword(orgId))