Yimaru-BackEnd/internal/services/authentication/service.go

38 lines
825 B
Go

package authentication
import (
"Yimaru-Backend/internal/ports"
"Yimaru-Backend/internal/services/user"
)
// type EmailPhone struct {
// Email ValidString
// PhoneNumber ValidString
// Password ValidString
// }
type ValidString struct {
Value string
Valid bool
}
type Tokens struct {
AccessToken string
RefreshToken string
}
type Service struct {
otpStore ports.OtpStore
userStore ports.UserStore
UserSvc user.Service
tokenStore ports.TokenStore
RefreshExpiry int
}
func NewService(otpStore ports.OtpStore, userStore ports.UserStore, userSvc user.Service, tokenStore ports.TokenStore, RefreshExpiry int) *Service {
return &Service{
otpStore: otpStore,
userStore: userStore,
UserSvc: userSvc,
tokenStore: tokenStore,
RefreshExpiry: RefreshExpiry,
}
}