context

package
v0.5.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 11, 2025 License: GPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetCtxAccessToken added in v0.5.3

func GetCtxAccessToken(r *http.Request) (string, error)

GetCtxAccessToken tries to get the raw access token from the context

Parameters:

  • r: The HTTP request

Returns:

  • string: The raw access token from the context
  • error: An error if the access token is not found or of an unexpected type

func GetCtxAccessTokenClaims added in v0.5.3

func GetCtxAccessTokenClaims(r *http.Request) (jwt.MapClaims, error)

GetCtxAccessTokenClaims tries to get the access token claims from the context

Parameters:

  • r: The HTTP request

Returns:

  • jwt.MapClaims: The access token claims from the context
  • error: An error if the access token claims are not found or of an unexpected type

func GetCtxRefreshToken added in v0.5.3

func GetCtxRefreshToken(r *http.Request) (string, error)

GetCtxRefreshToken tries to get the raw refresh token from the context

Parameters:

  • r: The HTTP request

Returns:

  • string: The raw refresh token from the context
  • error: An error if the refresh token is not found or of an unexpected type

func GetCtxRefreshTokenClaims added in v0.5.3

func GetCtxRefreshTokenClaims(r *http.Request) (jwt.MapClaims, error)

GetCtxRefreshTokenClaims tries to get the refresh token claims from the context

Parameters:

  • r: The HTTP request

Returns:

  • jwt.MapClaims: The refresh token claims from the context
  • error: An error if the refresh token claims are not found or of an unexpected type

func GetCtxToken added in v0.5.1

func GetCtxToken(r *http.Request, key string) (string, error)

GetCtxToken tries to get the raw token from the context

Parameters:

  • r: The HTTP request
  • key: The key to get the token from

Returns:

  • string: The raw token from the context
  • error: An error if the token is not found or of an unexpected type

func GetCtxTokenClaims

func GetCtxTokenClaims(r *http.Request, key string) (jwt.MapClaims, error)

GetCtxTokenClaims tries to get the token claims from the context

Parameters:

  • r: The HTTP request
  • key: The key to get the claims from

Returns:

  • jwt.MapClaims: The token claims from the context
  • error: An error if the token claims are not found or of an unexpected type

func SetCtxAccessToken added in v0.5.3

func SetCtxAccessToken(r *http.Request, token string) (*http.Request, error)

SetCtxAccessToken sets the raw access token in the context

Parameters:

  • r: The HTTP request
  • token: The raw access token to set in the context

Returns:

  • *http.Request: The HTTP request with the raw access token set in the context
  • error: An error if the token is empty

func SetCtxAccessTokenClaims added in v0.5.3

func SetCtxAccessTokenClaims(
	r *http.Request,
	claims jwt.MapClaims,
) (*http.Request, error)

SetCtxAccessTokenClaims sets the access token claims in the context

Parameters:

  • r: The HTTP request
  • claims: The access token claims to set in the context

Returns:

  • *http.Request: The HTTP request with the access token claims set in the context
  • error: An error if the request is nil

func SetCtxRefreshToken added in v0.5.3

func SetCtxRefreshToken(r *http.Request, token string) (*http.Request, error)

SetCtxRefreshToken sets the raw refresh token in the context

Parameters:

  • r: The HTTP request
  • token: The raw refresh token to set in the context

Returns:

  • *http.Request: The HTTP request with the raw refresh token set in the context
  • error: An error if the token is empty

func SetCtxRefreshTokenClaims added in v0.5.3

func SetCtxRefreshTokenClaims(
	r *http.Request,
	claims jwt.MapClaims,
) (*http.Request, error)

SetCtxRefreshTokenClaims sets the refresh token claims in the context

Parameters:

  • r: The HTTP request
  • claims: The refresh token claims to set in the context

Returns:

  • *http.Request: The HTTP request with the refresh token claims set in the context
  • error: An error if the request is nil

func SetCtxToken added in v0.5.1

func SetCtxToken(r *http.Request, key, token string) (*http.Request, error)

SetCtxToken sets the raw token in the context

Parameters:

  • r: The HTTP request
  • key: The key to set the token under
  • token: The raw token to set in the context

Returns:

  • *http.Request: The HTTP request with the raw token set in the context
  • error: An error if the token is empty

func SetCtxTokenClaims

func SetCtxTokenClaims(
	r *http.Request,
	key string,
	claims jwt.MapClaims,
) *http.Request

SetCtxTokenClaims sets the token claims in the context

Parameters:

  • r: The HTTP request
  • key: The key to set the claims under
  • claims: The token claims to set in the context

Returns:

  • *http.Request: The HTTP request with the token claims set in the context

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL