blob: dcc09fbd658e1439c070c69b686d1ef7fabc93c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package resolver
import (
"context"
"errors"
"fmt"
"github.com/labstack/echo/v4"
appcontext "undef.ninja/x/feedaka/context"
)
// getUserIDFromContext retrieves the authenticated user ID from context
// This is a wrapper around the GetUserID function from the context package
func getUserIDFromContext(ctx context.Context) (int64, error) {
userID, ok := appcontext.GetUserID(ctx)
if !ok {
return 0, fmt.Errorf("authentication required")
}
return userID, nil
}
// Helper function to get Echo context from GraphQL context
func getEchoContext(ctx context.Context) (echo.Context, error) {
echoCtx, ok := ctx.Value("echo").(echo.Context)
if !ok {
return nil, errors.New("echo context not found")
}
return echoCtx, nil
}
|