Documentation ¶
Index ¶
- Constants
- func CheckPassword(password string, hashedPassword string) error
- func HashPassword(password string) (string, error)
- func IsSupportedCurrency(currency string) bool
- func RandomCurrency() string
- func RandomInt(min, max int64) int64
- func RandomMoney() int64
- func RandomOwner() string
- type Config
Constants ¶
const ( DepositorRole = "depositor" BankerRole = "banker" )
const (
BRL = "BRL"
)
Constants for all supported currencies
Variables ¶
This section is empty.
Functions ¶
func CheckPassword ¶
CheckPassword checks if the provided password is correct or not
func HashPassword ¶
HashPassword returns the bcrypt hash of the password
func IsSupportedCurrency ¶
IsSupportedCurrency returns true if the currency is supported
func RandomCurrency ¶
func RandomCurrency() string
RandomCurrency gera uma string representando uma moeda aleatória. Atualmente, a função retorna "BRL" como única opção, mas pode ser expandida para incluir mais moedas.
func RandomInt ¶
RandomInt gera um inteiro aleatório entre min e max (inclusive). A função rand.Int63n gera um número aleatório entre max-min (+1, pois se der 0 ele retornará panic) e então adiciona min ao resultado para ajustar o intervalo.
func RandomMoney ¶
func RandomMoney() int64
RandomMoney gera um valor int64 aleatório. A função utiliza RandomInt para gerar um valor inteiro aleatório entre 0 e 1000.
func RandomOwner ¶
func RandomOwner() string
RandomOwner gera uma string aleatória de comprimento fixo. A função utiliza tools.RandomString do toolkit importado para criar uma string aleatória de 10 caracteres.
Types ¶
type Config ¶
type Config struct { Environment string `mapstructure:"ENVIRONMENT"` DBSource string `mapstructure:"DB_SOURCE"` MigrationURL string `mapstructure:"MIGRATION_URL"` RedisAddress string `mapstructure:"REDIS_ADDRESS"` HTTPServerAddress string `mapstructure:"HTTP_SERVER_ADDRESS"` GRPCServerAddress string `mapstructure:"GRPC_SERVER_ADDRESS"` TokenSymmetricKey string `mapstructure:"TOKEN_SYMMETRIC_KEY"` AccessTokenDuration time.Duration `mapstructure:"ACCESS_TOKEN_DURATION"` RefreshTokenDuration time.Duration `mapstructure:"REFRESH_TOKEN_DURATION"` EmailSenderName string `mapstructure:"EMAIL_SENDER_NAME"` EmailSenderAddress string `mapstructure:"EMAIL_SENDER_ADDRESS"` EmailSenderPassword string `mapstructure:"EMAIL_SENDER_PASSWORD"` }
Config stores all configuration of the application. The values are read by viper from a config file or environment variable.
func LoadConfig ¶
LoadConfig reads configuration from file or environment variables.