auth

package
v1.35.0 Latest Latest
Warning

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

Go to latest
Published: Dec 9, 2025 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrAuthorizationFailed = errors.New("authorization failed")
)

Functions

func Module

func Module() fx.Option

Types

type Config

type Config struct {
	Mode         Mode
	PrivateToken string
}

type Mode

type Mode string
const (
	ModePublic  Mode = "public"
	ModePrivate Mode = "private"
)

type OneTimeCode added in v1.34.3

type OneTimeCode struct {
	Code       string
	ValidUntil time.Time
}

OneTimeCode is a one-time user authorization code.

type Service

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

func New

func New(
	config Config,
	usersSvc *users.Service,
	devicesSvc *devices.Service,
	onlineSvc online.Service,
	logger *zap.Logger,
) *Service

func (*Service) AuthorizeDevice

func (s *Service) AuthorizeDevice(token string) (models.Device, error)

func (*Service) AuthorizeRegistration

func (s *Service) AuthorizeRegistration(token string) error

func (*Service) AuthorizeUserByCode added in v1.19.0

func (s *Service) AuthorizeUserByCode(code string) (*users.User, error)

AuthorizeUserByCode authorizes a user by one-time code.

func (*Service) GenerateUserCode added in v1.19.0

func (s *Service) GenerateUserCode(userID string) (OneTimeCode, error)

GenerateUserCode generates a unique one-time user authorization code.

func (*Service) IsPublic

func (s *Service) IsPublic() bool

func (*Service) RegisterDevice

func (s *Service) RegisterDevice(user users.User, name, pushToken *string) (*models.Device, error)

func (*Service) Run added in v1.19.0

func (s *Service) Run(ctx context.Context)

Run starts a ticker that triggers the clean function every hour. It runs indefinitely until the provided context is canceled.

Jump to

Keyboard shortcuts

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