diff --git a/backend/cmd/server/main.go b/backend/cmd/server/main.go
index 0b1c84fa..63d8a4c7 100644
--- a/backend/cmd/server/main.go
+++ b/backend/cmd/server/main.go
@@ -242,6 +242,7 @@ func main() {
app := fiber.New(fiber.Config{
AppName: "Baron SSO Backend",
DisableStartupMessage: true, // Clean logs
+ ReadBufferSize: 32768, // 32KB로 증가 (긴 OIDC 챌린지 대응)
// Global Error Handler for Production Masking
ErrorHandler: func(c *fiber.Ctx, err error) error {
// Default status code
@@ -459,6 +460,9 @@ func main() {
auth.Post("/login/code/verify", authHandler.VerifyLoginCode)
auth.Post("/login/code/verify-short", authHandler.VerifyLoginShortCode)
auth.Post("/password/login", authHandler.PasswordLogin)
+ auth.Get("/consent", authHandler.GetConsentRequest)
+ auth.Post("/consent/accept", authHandler.AcceptConsentRequest)
+
auth.Post("/password/reset/initiate", authHandler.InitiatePasswordReset)
// [Changed] Use Interstitial Page for GET to prevent Scanner consumption
auth.Get("/password/reset/verify", authHandler.VerifyPasswordResetPage)
diff --git a/backend/internal/handler/auth_handler.go b/backend/internal/handler/auth_handler.go
index 197233d7..bd123dd6 100644
--- a/backend/internal/handler/auth_handler.go
+++ b/backend/internal/handler/auth_handler.go
@@ -1266,8 +1266,9 @@ func (h *AuthHandler) PasswordLogin(c *fiber.Ctx) error {
ale.Operation = "Auth.Password().SignIn"
var req struct {
- LoginID string `json:"loginId"`
- Password string `json:"password"`
+ LoginID string `json:"loginId"`
+ Password string `json:"password"`
+ LoginChallenge string `json:"login_challenge,omitempty"`
}
if err := c.BodyParser(&req); err != nil {
@@ -1314,6 +1315,21 @@ func (h *AuthHandler) PasswordLogin(c *fiber.Ctx) error {
setSessionIDLocal(c, authInfo.SessionToken)
ale.Log(slog.LevelInfo, "Login successful", slog.String("provider", h.IdpProvider.Name()), slog.String("subject", authInfo.Subject))
+ // --- OIDC 로그인 흐름 처리 ---
+ if req.LoginChallenge != "" {
+ slog.Info("OIDC login flow detected", "challenge", req.LoginChallenge)
+ acceptResp, err := h.Hydra.AcceptLoginRequest(c.Context(), req.LoginChallenge, authInfo.Subject)
+ if err != nil {
+ slog.Error("failed to accept hydra login request", "error", err)
+ return fiber.NewError(fiber.StatusInternalServerError, "Failed to accept OIDC login request")
+ }
+ slog.Info("Hydra login request accepted", "redirectTo", acceptResp.RedirectTo)
+ return c.JSON(fiber.Map{
+ "redirectTo": acceptResp.RedirectTo,
+ })
+ }
+ // --- OIDC 로그인 흐름 처리 끝 ---
+
resp := fiber.Map{
"sessionJwt": authInfo.SessionToken.JWT,
"status": "ok",
@@ -2897,6 +2913,48 @@ func (h *AuthHandler) ListLinkedRps(c *fiber.Ctx) error {
return c.JSON(linkedRpListResponse{Items: items})
}
+func (h *AuthHandler) GetConsentRequest(c *fiber.Ctx) error {
+ challenge := c.Query("consent_challenge")
+ if challenge == "" {
+ return fiber.NewError(fiber.StatusBadRequest, "consent_challenge is required")
+ }
+
+ consentRequest, err := h.Hydra.GetConsentRequest(c.Context(), challenge)
+ if err != nil {
+ slog.Error("failed to get hydra consent request", "error", err)
+ return fiber.NewError(fiber.StatusInternalServerError, "Failed to get consent information")
+ }
+
+ return c.JSON(consentRequest)
+}
+
+func (h *AuthHandler) AcceptConsentRequest(c *fiber.Ctx) error {
+ var req struct {
+ ConsentChallenge string `json:"consent_challenge"`
+ }
+ if err := c.BodyParser(&req); err != nil {
+ return fiber.NewError(fiber.StatusBadRequest, "Invalid request body")
+ }
+ if req.ConsentChallenge == "" {
+ return fiber.NewError(fiber.StatusBadRequest, "consent_challenge is required")
+ }
+
+ consentRequest, err := h.Hydra.GetConsentRequest(c.Context(), req.ConsentChallenge)
+ if err != nil {
+ slog.Error("failed to get hydra consent request before accepting", "error", err)
+ return fiber.NewError(fiber.StatusInternalServerError, "Failed to get consent information")
+ }
+
+ acceptResp, err := h.Hydra.AcceptConsentRequest(c.Context(), req.ConsentChallenge, consentRequest)
+ if err != nil {
+ slog.Error("failed to accept hydra consent request", "error", err)
+ return fiber.NewError(fiber.StatusInternalServerError, "Failed to accept consent request")
+ }
+
+ return c.JSON(acceptResp)
+}
+
+
func (h *AuthHandler) resolveCurrentProfile(c *fiber.Ctx) (*domain.UserProfileResponse, error) {
token := h.getBearerToken(c)
if token != "" {
diff --git a/backend/internal/service/hydra_admin_service.go b/backend/internal/service/hydra_admin_service.go
index 6d77cebf..103bc45f 100644
--- a/backend/internal/service/hydra_admin_service.go
+++ b/backend/internal/service/hydra_admin_service.go
@@ -36,6 +36,15 @@ type HydraClient struct {
Metadata map[string]interface{} `json:"metadata,omitempty"`
}
+type HydraConsentRequest struct {
+ Challenge string `json:"challenge"`
+ RequestedScope []string `json:"requested_scope"`
+ RequestedAudience []string `json:"requested_access_token_audience"`
+ Skip bool `json:"skip"`
+ Subject string `json:"subject"`
+ Client HydraClient `json:"client"`
+}
+
type HydraConsentSession struct {
Subject string `json:"subject"`
GrantedScope []string `json:"granted_scope"`
@@ -347,3 +356,134 @@ func (s *HydraAdminService) buildURLWithParams(path string, params map[string]st
u.RawQuery = q.Encode()
return u.String(), nil
}
+
+type AcceptLoginRequestResponse struct {
+ RedirectTo string `json:"redirectTo"`
+}
+
+type AcceptConsentRequestResponse struct {
+ RedirectTo string `json:"redirectTo"`
+}
+
+func (s *HydraAdminService) GetConsentRequest(ctx context.Context, challenge string) (*HydraConsentRequest, error) {
+ params := map[string]string{
+ "consent_challenge": challenge,
+ }
+ endpoint, err := s.buildURLWithParams("/oauth2/auth/requests/consent", params)
+ if err != nil {
+ return nil, err
+ }
+
+ req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint, nil)
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: create request for get consent failed: %w", err)
+ }
+
+ resp, err := s.httpClient().Do(req)
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: get consent request failed: %w", err)
+ }
+ defer resp.Body.Close()
+
+ body, _ := io.ReadAll(resp.Body)
+ if resp.StatusCode != http.StatusOK {
+ return nil, fmt.Errorf("hydra admin: get consent failed status=%d body=%s", resp.StatusCode, string(body))
+ }
+
+ var consentReq HydraConsentRequest
+ if err := json.Unmarshal(body, &consentReq); err != nil {
+ return nil, fmt.Errorf("hydra admin: decode get consent response failed: %w", err)
+ }
+
+ return &consentReq, nil
+}
+
+func (s *HydraAdminService) AcceptConsentRequest(ctx context.Context, challenge string, grantInfo *HydraConsentRequest) (*AcceptConsentRequestResponse, error) {
+ params := map[string]string{
+ "consent_challenge": challenge,
+ }
+ endpoint, err := s.buildURLWithParams("/oauth2/auth/requests/consent/accept", params)
+ if err != nil {
+ return nil, err
+ }
+
+ payload := map[string]interface{}{
+ "grant_scope": grantInfo.RequestedScope,
+ "grant_audience": grantInfo.RequestedAudience,
+ "remember": true,
+ "remember_for": 3600,
+ }
+ body, _ := json.Marshal(payload)
+
+ req, err := http.NewRequestWithContext(ctx, "PUT", endpoint, bytes.NewReader(body))
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: create request for accept consent failed: %w", err)
+ }
+ req.Header.Set("Content-Type", "application/json")
+
+ resp, err := s.httpClient().Do(req)
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: accept consent request failed: %w", err)
+ }
+ defer resp.Body.Close()
+
+ respBody, _ := io.ReadAll(resp.Body)
+ if resp.StatusCode != http.StatusOK {
+ return nil, fmt.Errorf("hydra admin: accept consent failed status=%d body=%s", resp.StatusCode, string(respBody))
+ }
+
+ // Hydra 응답(redirect_to)을 읽어서 우리 응답(redirectTo)으로 변환
+ var hydraResp struct {
+ RedirectTo string `json:"redirect_to"`
+ }
+ if err := json.Unmarshal(respBody, &hydraResp); err != nil {
+ return nil, fmt.Errorf("hydra admin: decode accept consent response failed: %w", err)
+ }
+
+ return &AcceptConsentRequestResponse{RedirectTo: hydraResp.RedirectTo}, nil
+}
+
+
+func (s *HydraAdminService) AcceptLoginRequest(ctx context.Context, challenge string, subject string) (*AcceptLoginRequestResponse, error) {
+ params := map[string]string{
+ "login_challenge": challenge,
+ }
+ endpoint, err := s.buildURLWithParams("/oauth2/auth/requests/login/accept", params)
+ if err != nil {
+ return nil, err
+ }
+
+ payload := map[string]interface{}{
+ "subject": subject,
+ "remember": true,
+ "remember_for": 3600,
+ }
+ body, _ := json.Marshal(payload)
+
+ req, err := http.NewRequestWithContext(ctx, "PUT", endpoint, bytes.NewReader(body))
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: create request for accept login failed: %w", err)
+ }
+ req.Header.Set("Content-Type", "application/json")
+
+ resp, err := s.httpClient().Do(req)
+ if err != nil {
+ return nil, fmt.Errorf("hydra admin: accept login request failed: %w", err)
+ }
+ defer resp.Body.Close()
+
+ respBody, _ := io.ReadAll(resp.Body)
+ if resp.StatusCode != http.StatusOK {
+ return nil, fmt.Errorf("hydra admin: accept login failed status=%d body=%s", resp.StatusCode, string(respBody))
+ }
+
+ // Hydra 응답(redirect_to)을 읽어서 우리 응답(redirectTo)으로 변환
+ var hydraResp struct {
+ RedirectTo string `json:"redirect_to"`
+ }
+ if err := json.Unmarshal(respBody, &hydraResp); err != nil {
+ return nil, fmt.Errorf("hydra admin: decode accept login response failed: %w", err)
+ }
+
+ return &AcceptLoginRequestResponse{RedirectTo: hydraResp.RedirectTo}, nil
+}
diff --git a/compose.ory.yaml b/compose.ory.yaml
index 3c90d7a7..44ddfac3 100644
--- a/compose.ory.yaml
+++ b/compose.ory.yaml
@@ -92,7 +92,7 @@ services:
container_name: ory_hydra
environment:
- DSN=postgres://${ORY_POSTGRES_USER}:${ORY_POSTGRES_PASSWORD}@postgres_ory:5432/${HYDRA_DB:-ory_hydra}?sslmode=disable&max_conns=20
- - URLS_SELF_ISSUER=${HYDRA_PUBLIC_URL:-http://localhost:5000/oidc}
+ - URLS_SELF_ISSUER=${USERFRONT_URL:-http://localhost:5000}/oidc
- URLS_LOGIN=${USERFRONT_URL:-http://localhost:5000}/login
- URLS_CONSENT=${USERFRONT_URL:-http://localhost:5000}/consent
- SECRETS_SYSTEM=${ORY_POSTGRES_PASSWORD}
@@ -106,8 +106,6 @@ services:
- ory-net
- hydranet
-
-
# --- Keto ---
keto-migrate:
image: oryd/keto:${KETO_VERSION:-v25.4.0}
@@ -229,8 +227,8 @@ services:
- hydranet
volumes:
- ory_postgres_data:
- ory_clickhouse_data:
+ ory_postgres_data:
+ ory_clickhouse_data:
networks:
ory-net:
diff --git a/devfront/src/components/layout/AppLayout.tsx b/devfront/src/components/layout/AppLayout.tsx
index 35d9448d..3063028b 100644
--- a/devfront/src/components/layout/AppLayout.tsx
+++ b/devfront/src/components/layout/AppLayout.tsx
@@ -1,6 +1,7 @@
import { BadgeCheck, Moon, ShieldHalf, Sun } from "lucide-react";
import { useEffect, useState } from "react";
import { NavLink, Outlet } from "react-router-dom";
+import { Toaster } from "../ui/toaster";
const navItems = [{ label: "Clients", to: "/clients", icon: ShieldHalf }];
@@ -105,6 +106,7 @@ function AppLayout() {
+
);
}
diff --git a/devfront/src/components/ui/copy-button.tsx b/devfront/src/components/ui/copy-button.tsx
new file mode 100644
index 00000000..83996231
--- /dev/null
+++ b/devfront/src/components/ui/copy-button.tsx
@@ -0,0 +1,54 @@
+import * as React from "react";
+import { Check, Copy } from "lucide-react";
+import { Button, type ButtonProps } from "./button";
+import { cn } from "../../lib/utils";
+
+interface CopyButtonProps extends ButtonProps {
+ value: string;
+ onCopy?: () => void;
+}
+
+export function CopyButton({
+ value,
+ onCopy,
+ className,
+ variant = "secondary",
+ size = "icon",
+ ...props
+}: CopyButtonProps) {
+ const [hasCopied, setHasCopied] = React.useState(false);
+
+ React.useEffect(() => {
+ if (hasCopied) {
+ const timer = setTimeout(() => setHasCopied(false), 1500);
+ return () => clearTimeout(timer);
+ }
+ }, [hasCopied]);
+
+ const copyToClipboard = async () => {
+ try {
+ await navigator.clipboard.writeText(value);
+ setHasCopied(true);
+ if (onCopy) onCopy();
+ } catch (err) {
+ console.error("Failed to copy text: ", err);
+ }
+ };
+
+ return (
+
+ );
+}
diff --git a/devfront/src/components/ui/toaster.tsx b/devfront/src/components/ui/toaster.tsx
new file mode 100644
index 00000000..3f951781
--- /dev/null
+++ b/devfront/src/components/ui/toaster.tsx
@@ -0,0 +1,31 @@
+import * as React from "react";
+import { useToastState } from "./use-toast";
+import { CheckCircle2, AlertCircle, Info, X } from "lucide-react";
+import { cn } from "../../lib/utils";
+
+export function Toaster() {
+ const toasts = useToastState();
+
+ if (toasts.length === 0) return null;
+
+ return (
+
+ {toasts.map((t) => (
+
+ {t.type === "success" &&
}
+ {t.type === "error" &&
}
+ {t.type === "info" &&
}
+
{t.message}
+
+ ))}
+
+ );
+}
diff --git a/devfront/src/components/ui/use-toast.ts b/devfront/src/components/ui/use-toast.ts
new file mode 100644
index 00000000..4c19c204
--- /dev/null
+++ b/devfront/src/components/ui/use-toast.ts
@@ -0,0 +1,42 @@
+import * as React from "react";
+
+type ToastType = "success" | "error" | "info";
+
+interface Toast {
+ id: string;
+ message: string;
+ type: ToastType;
+}
+
+let subscribers: ((toasts: Toast[]) => void)[] = [];
+let toasts: Toast[] = [];
+
+const notify = () => {
+ for (const sub of subscribers) {
+ sub(toasts);
+ }
+};
+
+export const toast = (message: string, type: ToastType = "success") => {
+ const id = Math.random().toString(36).substring(2, 9);
+ toasts = [...toasts, { id, message, type }];
+ notify();
+
+ setTimeout(() => {
+ toasts = toasts.filter((t) => t.id !== id);
+ notify();
+ }, 3000);
+};
+
+export const useToastState = () => {
+ const [state, setState] = React.useState(toasts);
+
+ React.useEffect(() => {
+ subscribers.push(setState);
+ return () => {
+ subscribers = subscribers.filter((sub) => sub !== setState);
+ };
+ }, []);
+
+ return state;
+};
\ No newline at end of file
diff --git a/devfront/src/features/clients/ClientDetailsPage.tsx b/devfront/src/features/clients/ClientDetailsPage.tsx
index dcecfbae..fe20da69 100644
--- a/devfront/src/features/clients/ClientDetailsPage.tsx
+++ b/devfront/src/features/clients/ClientDetailsPage.tsx
@@ -17,6 +17,8 @@ import { Textarea } from "../../components/ui/textarea";
import { Label } from "../../components/ui/label";
import { fetchClient, updateClient } from "../../lib/devApi";
import { cn } from "../../lib/utils";
+import { CopyButton } from "../../components/ui/copy-button";
+import { toast } from "../../components/ui/use-toast";
function ClientDetailsPage() {
const params = useParams();
@@ -48,10 +50,10 @@ function ClientDetailsPage() {
},
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ["client", clientId] });
- alert("Redirect URIs가 저장되었습니다.");
+ toast("Redirect URIs가 저장되었습니다.");
},
onError: (err) => {
- alert(`저장 실패: ${(err as Error).message}`);
+ toast(`저장 실패: ${(err as Error).message}`, "error");
},
});
@@ -145,9 +147,10 @@ function ClientDetailsPage() {
{data.client.id}
-
+
toast("Client ID가 복사되었습니다.")}
+ />
@@ -173,14 +176,11 @@ function ClientDetailsPage() {
>
{showSecret ? : }
-
+ onCopy={() => toast("Client Secret이 복사되었습니다.")}
+ />
@@ -213,14 +213,11 @@ function ClientDetailsPage() {
{endpoint.value}
-
+ onCopy={() => toast(`${endpoint.label}가 복사되었습니다.`)}
+ />
))}
diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx
index 14a0d3f6..a3ed28a7 100644
--- a/devfront/src/features/clients/ClientsPage.tsx
+++ b/devfront/src/features/clients/ClientsPage.tsx
@@ -42,6 +42,8 @@ import {
updateClientStatus,
} from "../../lib/devApi";
import { cn } from "../../lib/utils";
+import { CopyButton } from "../../components/ui/copy-button";
+import { toast } from "../../components/ui/use-toast";
function ClientsPage() {
const navigate = useNavigate();
@@ -231,15 +233,13 @@ function ClientsPage() {
{client.id}
-
+ onCopy={() => toast("클라이언트 ID가 복사되었습니다.")}
+ />
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 981831c9..2b5e4ece 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -95,6 +95,7 @@ services:
- APP_ENV=${APP_ENV}
networks:
- baron_net
+ - ory-net
depends_on:
backend:
condition: service_healthy
diff --git a/docker/ory/oathkeeper/rules.active.json b/docker/ory/oathkeeper/rules.active.json
index 921b8366..fd6bfb2d 100755
--- a/docker/ory/oathkeeper/rules.active.json
+++ b/docker/ory/oathkeeper/rules.active.json
@@ -83,6 +83,21 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-well-known-oidc",
+ "description": "Hydra OIDC Discovery & JWKS (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/.well-known/<.*>",
+ "methods": ["GET", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-oauth2",
"description": "Hydra OAuth2 Endpoints",
@@ -97,6 +112,21 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-oauth2-oidc",
+ "description": "Hydra OAuth2 Endpoints (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/oauth2/<.*>",
+ "methods": ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-userinfo",
"description": "Hydra Userinfo",
@@ -110,5 +140,20 @@
"authenticators": [{ "handler": "noop" }],
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
+ },
+ {
+ "id": "hydra-userinfo-oidc",
+ "description": "Hydra Userinfo (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/userinfo",
+ "methods": ["GET", "POST", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
}
]
diff --git a/docker/ory/oathkeeper/rules.json b/docker/ory/oathkeeper/rules.json
index 921b8366..fd6bfb2d 100755
--- a/docker/ory/oathkeeper/rules.json
+++ b/docker/ory/oathkeeper/rules.json
@@ -83,6 +83,21 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-well-known-oidc",
+ "description": "Hydra OIDC Discovery & JWKS (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/.well-known/<.*>",
+ "methods": ["GET", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-oauth2",
"description": "Hydra OAuth2 Endpoints",
@@ -97,6 +112,21 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-oauth2-oidc",
+ "description": "Hydra OAuth2 Endpoints (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/oauth2/<.*>",
+ "methods": ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-userinfo",
"description": "Hydra Userinfo",
@@ -110,5 +140,20 @@
"authenticators": [{ "handler": "noop" }],
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
+ },
+ {
+ "id": "hydra-userinfo-oidc",
+ "description": "Hydra Userinfo (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/userinfo",
+ "methods": ["GET", "POST", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
}
]
diff --git a/docker/ory/oathkeeper/rules.stage.json b/docker/ory/oathkeeper/rules.stage.json
index e65e9d51..4a0735da 100755
--- a/docker/ory/oathkeeper/rules.stage.json
+++ b/docker/ory/oathkeeper/rules.stage.json
@@ -1,9 +1,9 @@
[
{
"id": "public-health",
- "description": "공개 헬스체크 (STAGE 도메인)",
+ "description": "공개 헬스체크",
"match": {
- "url": "<.*>://sso-test.hmac.kr/health",
+ "url": "<.*>://<.*>/health",
"methods": ["GET"]
},
"upstream": {
@@ -15,9 +15,9 @@
},
{
"id": "public-preflight",
- "description": "CORS preflight (STAGE 도메인)",
+ "description": "CORS preflight",
"match": {
- "url": "<.*>://sso-test.hmac.kr/api/v1/<.*>",
+ "url": "<.*>://<.*>/api/v1/<.*>",
"methods": ["OPTIONS"]
},
"upstream": {
@@ -29,9 +29,9 @@
},
{
"id": "public-auth",
- "description": "인증/회원가입 등 공개 엔드포인트 (STAGE 도메인)",
+ "description": "인증/회원가입 등 공개 엔드포인트",
"match": {
- "url": "<.*>://sso-test.hmac.kr/api/v1/auth/<.*>",
+ "url": "<.*>://<.*>/api/v1/auth/<.*>",
"methods": ["GET", "POST", "OPTIONS"]
},
"upstream": {
@@ -45,7 +45,7 @@
"id": "backend-command",
"description": "Command 요청은 Backend로 전달 (Audit 강제)",
"match": {
- "url": "<.*>://sso-test.hmac.kr/api/v1/<.*>",
+ "url": "<.*>://<.*>/api/v1/<.*>",
"methods": ["POST", "PUT", "PATCH", "DELETE"]
},
"upstream": {
@@ -59,7 +59,7 @@
"id": "backend-query",
"description": "Backend Query (admin/dev 포함)",
"match": {
- "url": "<.*>://sso-test.hmac.kr/api/v1/<.*>",
+ "url": "<.*>://<.*>/api/v1/<.*>",
"methods": ["GET"]
},
"upstream": {
@@ -73,7 +73,7 @@
"id": "hydra-well-known",
"description": "Hydra OIDC Discovery & JWKS",
"match": {
- "url": "<.*>://sso-test.hmac.kr/.well-known/<.*>",
+ "url": "<.*>://<.*>/.well-known/<.*>",
"methods": ["GET", "OPTIONS"]
},
"upstream": {
@@ -83,11 +83,26 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-well-known-oidc",
+ "description": "Hydra OIDC Discovery & JWKS (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/.well-known/<.*>",
+ "methods": ["GET", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-oauth2",
"description": "Hydra OAuth2 Endpoints",
"match": {
- "url": "<.*>://sso-test.hmac.kr/oauth2/<.*>",
+ "url": "<.*>://<.*>/oauth2/<.*>",
"methods": ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"]
},
"upstream": {
@@ -97,11 +112,26 @@
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
},
+ {
+ "id": "hydra-oauth2-oidc",
+ "description": "Hydra OAuth2 Endpoints (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/oauth2/<.*>",
+ "methods": ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
+ },
{
"id": "hydra-userinfo",
"description": "Hydra Userinfo",
"match": {
- "url": "<.*>://sso-test.hmac.kr/userinfo",
+ "url": "<.*>://<.*>/userinfo",
"methods": ["GET", "POST", "OPTIONS"]
},
"upstream": {
@@ -110,5 +140,20 @@
"authenticators": [{ "handler": "noop" }],
"authorizer": { "handler": "allow" },
"mutators": [{ "handler": "noop" }]
+ },
+ {
+ "id": "hydra-userinfo-oidc",
+ "description": "Hydra Userinfo (with /oidc prefix)",
+ "match": {
+ "url": "<.*>://<.*>/oidc/userinfo",
+ "methods": ["GET", "POST", "OPTIONS"]
+ },
+ "upstream": {
+ "url": "http://hydra:4444",
+ "strip_path_prefix": "/oidc"
+ },
+ "authenticators": [{ "handler": "noop" }],
+ "authorizer": { "handler": "allow" },
+ "mutators": [{ "handler": "noop" }]
}
]
\ No newline at end of file
diff --git a/gateway/nginx.conf b/gateway/nginx.conf
index 9b94fe8a..eeb6f234 100644
--- a/gateway/nginx.conf
+++ b/gateway/nginx.conf
@@ -21,6 +21,8 @@ log_format json_combined escape=json
server {
listen 5000;
+ client_header_buffer_size 16k;
+ large_client_header_buffers 4 64k;
include /etc/nginx/mime.types;
resolver 127.0.0.11 valid=10s ipv6=off;
diff --git a/userfront/lib/core/services/auth_proxy_service.dart b/userfront/lib/core/services/auth_proxy_service.dart
index 8389815f..4d9886ec 100644
--- a/userfront/lib/core/services/auth_proxy_service.dart
+++ b/userfront/lib/core/services/auth_proxy_service.dart
@@ -2,6 +2,7 @@ import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'http_client.dart';
+import 'dart:html' as html;
class AuthProxyService {
static String _envOrDefault(String key, String fallback) {
@@ -196,23 +197,60 @@ class AuthProxyService {
}
}
- static Future