changes for PR
This commit is contained in:
+91
-91
@@ -21,8 +21,8 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
CognitoAuthScopes = "cognitoAuth.Scopes"
|
||||
PlaceholderAuthScopes = "placeholderAuth.Scopes"
|
||||
CognitoAuthScopes = "cognitoAuth.Scopes"
|
||||
JwtAuthScopes = "jwtAuth.Scopes"
|
||||
)
|
||||
|
||||
// Defines values for ClientStatus.
|
||||
@@ -451,7 +451,7 @@ type ServerInterfaceWrapper struct {
|
||||
func (w *ServerInterfaceWrapper) CreateClient(ctx echo.Context) error {
|
||||
var err error
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.CreateClient(ctx)
|
||||
@@ -469,7 +469,7 @@ func (w *ServerInterfaceWrapper) GetClient(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetClient(ctx, id)
|
||||
@@ -487,7 +487,7 @@ func (w *ServerInterfaceWrapper) UpdateClient(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.UpdateClient(ctx, id)
|
||||
@@ -505,7 +505,7 @@ func (w *ServerInterfaceWrapper) GetCollectorByClientId(ctx echo.Context) error
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetCollectorByClientId(ctx, id)
|
||||
@@ -523,7 +523,7 @@ func (w *ServerInterfaceWrapper) SetCollectorByClientId(ctx echo.Context) error
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.SetCollectorByClientId(ctx, id)
|
||||
@@ -541,7 +541,7 @@ func (w *ServerInterfaceWrapper) ListDocumentsByClientId(ctx echo.Context) error
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.ListDocumentsByClientId(ctx, id)
|
||||
@@ -559,7 +559,7 @@ func (w *ServerInterfaceWrapper) TriggerExport(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.TriggerExport(ctx, id)
|
||||
@@ -577,7 +577,7 @@ func (w *ServerInterfaceWrapper) GetStatusByClientId(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetStatusByClientId(ctx, id)
|
||||
@@ -595,7 +595,7 @@ func (w *ServerInterfaceWrapper) GetDocument(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetDocument(ctx, id)
|
||||
@@ -613,7 +613,7 @@ func (w *ServerInterfaceWrapper) ExportState(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.ExportState(ctx, id)
|
||||
@@ -624,7 +624,7 @@ func (w *ServerInterfaceWrapper) ExportState(ctx echo.Context) error {
|
||||
func (w *ServerInterfaceWrapper) GetHomePage(ctx echo.Context) error {
|
||||
var err error
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetHomePage(ctx)
|
||||
@@ -671,7 +671,7 @@ func (w *ServerInterfaceWrapper) LoginCallback(ctx echo.Context) error {
|
||||
func (w *ServerInterfaceWrapper) Logout(ctx echo.Context) error {
|
||||
var err error
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.Logout(ctx)
|
||||
@@ -682,7 +682,7 @@ func (w *ServerInterfaceWrapper) Logout(ctx echo.Context) error {
|
||||
func (w *ServerInterfaceWrapper) ListQueries(ctx echo.Context) error {
|
||||
var err error
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.ListQueries(ctx)
|
||||
@@ -693,7 +693,7 @@ func (w *ServerInterfaceWrapper) ListQueries(ctx echo.Context) error {
|
||||
func (w *ServerInterfaceWrapper) CreateQuery(ctx echo.Context) error {
|
||||
var err error
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.CreateQuery(ctx)
|
||||
@@ -711,7 +711,7 @@ func (w *ServerInterfaceWrapper) GetQuery(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.GetQuery(ctx, id)
|
||||
@@ -729,7 +729,7 @@ func (w *ServerInterfaceWrapper) UpdateQuery(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.UpdateQuery(ctx, id)
|
||||
@@ -747,7 +747,7 @@ func (w *ServerInterfaceWrapper) TestQuery(ctx echo.Context) error {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter id: %s", err))
|
||||
}
|
||||
|
||||
ctx.Set(PlaceholderAuthScopes, []string{})
|
||||
ctx.Set(JwtAuthScopes, []string{})
|
||||
|
||||
// Invoke the callback with all the unmarshaled arguments
|
||||
err = w.Handler.TestQuery(ctx, id)
|
||||
@@ -807,78 +807,78 @@ func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL
|
||||
// Base64 encoded, gzipped, json marshaled Swagger object
|
||||
var swaggerSpec = []string{
|
||||
|
||||
"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",
|
||||
"CwAA///aY3I0l2cAAA==",
|
||||
"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",
|
||||
"/1+CAiY6ZwAA",
|
||||
}
|
||||
|
||||
// GetSwagger returns the content of the embedded swagger specification file
|
||||
|
||||
@@ -2,7 +2,6 @@ package auth
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"io"
|
||||
"log/slog"
|
||||
"os"
|
||||
"reflect"
|
||||
@@ -315,31 +314,31 @@ func TestPrettyPrintDebugOnly(t *testing.T) {
|
||||
},
|
||||
}
|
||||
|
||||
// Capture stdout
|
||||
oldStdout := os.Stdout
|
||||
r, w, _ := os.Pipe()
|
||||
os.Stdout = w
|
||||
// Create a buffer to capture log output
|
||||
var buf bytes.Buffer
|
||||
|
||||
// Create a logger that writes to our buffer
|
||||
logHandler := slog.NewTextHandler(&buf, &slog.HandlerOptions{
|
||||
Level: slog.LevelDebug,
|
||||
})
|
||||
testLogger := slog.New(logHandler)
|
||||
|
||||
// Set the logger in the config
|
||||
cfg.SetAuthLogger(testLogger)
|
||||
|
||||
// Call the method
|
||||
cfg.PrettyPrintDebugOnly()
|
||||
|
||||
// Close writer and restore stdout
|
||||
w.Close()
|
||||
os.Stdout = oldStdout
|
||||
|
||||
// Read captured output
|
||||
var buf bytes.Buffer
|
||||
if _, err := io.Copy(&buf, r); err != nil {
|
||||
t.Fatalf("failed to copy output: %v", err)
|
||||
}
|
||||
// Get the output
|
||||
output := buf.String()
|
||||
|
||||
// Verify output contains expected values
|
||||
// Verify output contains expected values - adjust these to match actual format
|
||||
expectedStrings := []string{
|
||||
"CognitoConfig (debug on):",
|
||||
"AuthClientID: test-client-id",
|
||||
"AuthClientSecret: test-secret",
|
||||
"AuthRedirectURI: https://example.com/callback",
|
||||
"Route: /test, Permissions: [read]",
|
||||
"level=DEBUG",
|
||||
"msg=\"CognitoConfig details\"",
|
||||
"AuthClientID=test-client-id",
|
||||
"AuthClientSecret=test-secret",
|
||||
"AuthRedirectURI=https://example.com/callback",
|
||||
}
|
||||
|
||||
for _, expected := range expectedStrings {
|
||||
@@ -348,24 +347,15 @@ func TestPrettyPrintDebugOnly(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
// Verify route permissions are included
|
||||
if !strings.Contains(output, "/test") || !strings.Contains(output, "read") {
|
||||
t.Errorf("Expected output to contain route permissions for /test")
|
||||
}
|
||||
|
||||
// Test with DEBUG=false
|
||||
os.Setenv("DEBUG", "false")
|
||||
|
||||
// Capture stdout again
|
||||
r, w, _ = os.Pipe()
|
||||
os.Stdout = w
|
||||
buf.Reset()
|
||||
|
||||
cfg.PrettyPrintDebugOnly()
|
||||
|
||||
w.Close()
|
||||
os.Stdout = oldStdout
|
||||
|
||||
buf.Reset()
|
||||
if _, err := io.Copy(&buf, r); err != nil {
|
||||
t.Fatalf("failed to copy output: %v", err)
|
||||
}
|
||||
|
||||
if buf.String() != "" {
|
||||
t.Error("Expected no output when DEBUG=false")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,8 +19,8 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
CognitoAuthScopes = "cognitoAuth.Scopes"
|
||||
PlaceholderAuthScopes = "placeholderAuth.Scopes"
|
||||
CognitoAuthScopes = "cognitoAuth.Scopes"
|
||||
JwtAuthScopes = "jwtAuth.Scopes"
|
||||
)
|
||||
|
||||
// Defines values for ClientStatus.
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ vars:
|
||||
PKG: "./pkg/..."
|
||||
CMD: "./cmd/..."
|
||||
# yamllint disable-line rule:line-length
|
||||
EXCLUDED_FILES: ".gen.go|internal/serviceconfig/observability/prometheus/generator/main.go|internal/cognitoauth/auth.go|internal/cognitoauth/handler.go|internal/cognitoauth/jwks.go|internal/cognitoauth/middleware.go|internal/cognitoauth/models.go|internal/cognitoauth/token.go|internal/cognitoauth/utils.go|api/queryAPI/authHandlers.go|api/queryAPI/homehandler.go"
|
||||
EXCLUDED_FILES: ".gen.go|internal/serviceconfig/observability/prometheus/generator/main.go|internal/cognitoauth/auth.go|internal/cognitoauth/handler.go|internal/cognitoauth/jwks.go|internal/cognitoauth/middleware.go|internal/cognitoauth/models.go|internal/cognitoauth/token.go|internal/cognitoauth/permission_utils.go|api/queryAPI/authHandlers.go|api/queryAPI/homehandler.go"
|
||||
|
||||
includes:
|
||||
docker:
|
||||
|
||||
+24
-22
@@ -37,7 +37,7 @@ paths:
|
||||
summary: Create a new client
|
||||
description: Creates a new client with the provided details.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The details required to create a client
|
||||
required: true
|
||||
@@ -74,7 +74,7 @@ paths:
|
||||
summary: Get a client by ID
|
||||
description: Retrieves a specific client by its ID.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Client details.
|
||||
@@ -100,7 +100,7 @@ paths:
|
||||
summary: Update a client
|
||||
description: Updates an existing client with new details.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The details to update
|
||||
required: true
|
||||
@@ -131,7 +131,7 @@ paths:
|
||||
summary: List queries
|
||||
description: Retrieves a list of queries based on filter criteria.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: A list of queries.
|
||||
@@ -157,7 +157,7 @@ paths:
|
||||
summary: Create a new query
|
||||
description: Creates a new query with the provided details.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The details required to create a query
|
||||
required: true
|
||||
@@ -194,7 +194,7 @@ paths:
|
||||
summary: Get a query by ID
|
||||
description: Retrieves a specific query by its ID.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Query details.
|
||||
@@ -220,7 +220,7 @@ paths:
|
||||
summary: Update a query
|
||||
description: Updates an existing query with new details.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The update values for the desired query.
|
||||
required: true
|
||||
@@ -253,7 +253,7 @@ paths:
|
||||
summary: Test a query
|
||||
description: Executes a test run of a query with the provided parameters.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The query test requirements.
|
||||
required: true
|
||||
@@ -290,7 +290,7 @@ paths:
|
||||
summary: Get client sync status
|
||||
description: Retrieves the sync status by its client ID.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Client status details.
|
||||
@@ -320,7 +320,7 @@ paths:
|
||||
summary: Get a collector by client ID
|
||||
description: Retrieves a specific collector by its client ID.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Collector details.
|
||||
@@ -346,7 +346,7 @@ paths:
|
||||
summary: Set a collector
|
||||
description: Set client collector with new details.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The details to be set for the collector.
|
||||
required: true
|
||||
@@ -379,7 +379,7 @@ paths:
|
||||
summary: List the documents for a client
|
||||
description: Retrieves the list of documents by the client ID.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Client documents list.
|
||||
@@ -409,7 +409,7 @@ paths:
|
||||
summary: Get document details by its id
|
||||
description: Retrieves the details of a document by its id.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Document details.
|
||||
@@ -439,7 +439,7 @@ paths:
|
||||
summary: Trigger an export
|
||||
description: Initiates the export process.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
requestBody:
|
||||
description: The export requirements.
|
||||
required: true
|
||||
@@ -476,7 +476,7 @@ paths:
|
||||
summary: Check export state.
|
||||
description: Checks the current state of an export.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Export has been completed.
|
||||
@@ -588,7 +588,7 @@ paths:
|
||||
Logs the user out by invalidating the session and redirecting to
|
||||
Cognito logout endpoint.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"302":
|
||||
description: Redirect to Cognito logout page or application home page
|
||||
@@ -617,7 +617,7 @@ paths:
|
||||
description: >-
|
||||
Returns the HTML menu page for authenticated users.
|
||||
security:
|
||||
- placeholderAuth: []
|
||||
- jwtAuth: []
|
||||
responses:
|
||||
"200":
|
||||
description: Home page HTML
|
||||
@@ -686,11 +686,13 @@ components:
|
||||
example: "100;window=10"
|
||||
|
||||
securitySchemes:
|
||||
placeholderAuth:
|
||||
type: apiKey
|
||||
in: header
|
||||
name: X-API-Key
|
||||
description: "Placeholder security scheme for future implementation"
|
||||
jwtAuth:
|
||||
type: http
|
||||
scheme: bearer
|
||||
bearerFormat: JWT
|
||||
description: >-
|
||||
JWT token obtained after Cognito authentication. Implements RFC8725 JWT
|
||||
best practices for security.
|
||||
cognitoAuth:
|
||||
type: oauth2
|
||||
description: >-
|
||||
|
||||
Reference in New Issue
Block a user