session_usecase

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Aug 24, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthorizeResult

type AuthorizeResult struct {
	UserID       uuid.UUID
	AuthorizedAt time.Time
}

type Identity

type Identity struct {
	BaasUserID string
	Email      string
}

func NewIdentity

func NewIdentity(baasUserID, email string) Identity

type IdentityVerifier

type IdentityVerifier interface {
	VerifyIDToken(ctx context.Context, idToken string) (Identity, error)
}

type Usecase

type Usecase struct {
	// contains filtered or unexported fields
}

func NewUsecase

func NewUsecase(
	conn transaction.Connection,
	identityVerifier IdentityVerifier,
	authRepo repository.AuthenticationRepository,
	userRepo repository.UserRepository,
) *Usecase

func (Usecase) Authorize

Authorize はユーザを認証し、セッションを新規作成します。 初めてセッションを作成するユーザの場合は、アカウントの新規作成も行います。

Jump to

Keyboard shortcuts

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