candihelper

package
v1.10.2 Latest Latest
Warning

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

Go to latest
Published: Jan 17, 2022 License: Apache-2.0 Imports: 18 Imported by: 7

Documentation

Index

Constants

View Source
const (
	// TimeZoneAsia constanta
	TimeZoneAsia = "Asia/Jakarta"
	// TokenClaimKey const
	TokenClaimKey = "tokenClaim"

	// TimeFormatLogger const
	TimeFormatLogger = "2006/01/02 15:04:05"

	// V1 const
	V1 = "/v1"
	// V2 const
	V2 = "/v2"

	// Byte ...
	Byte uint64 = 1
	// KByte ...
	KByte = Byte * 1024
	// MByte ...
	MByte = KByte * 1024
	// GByte ...
	GByte = MByte * 1024

	// WORKDIR const for workdir environment
	WORKDIR = "WORKDIR"
	// RepositorySQL unit of work for sql repository
	RepositorySQL = "repositorySQL"
	// RepositoryMongo unit of work for mongodb repository
	RepositoryMongo = "repositoryMongo"

	// HeaderDisableTrace const
	HeaderDisableTrace = "X-Disable-Trace"
	// HeaderXForwardedFor const
	HeaderXForwardedFor = "X-Forwarded-For"
	// HeaderXRealIP const
	HeaderXRealIP = "X-Real-IP"
	// HeaderContentType const
	HeaderContentType = "Content-Type"
	// HeaderAuthorization const
	HeaderAuthorization = "Authorization"
	// HeaderMIMEApplicationJSON const
	HeaderMIMEApplicationJSON = "application/json"
	// HeaderMIMEApplicationXML const
	HeaderMIMEApplicationXML = "application/xml"
	// HeaderMIMEApplicationForm const
	HeaderMIMEApplicationForm = "application/x-www-form-urlencoded"
	// HeaderMIMEMultipartForm const
	HeaderMIMEMultipartForm = "multipart/form-data"
	// HeaderMIMEOctetStream const
	HeaderMIMEOctetStream = "application/octet-stream"
)

Variables

View Source
var (
	// Green color
	Green = []byte{27, 91, 57, 55, 59, 52, 50, 109}
	// White color
	White = []byte{27, 91, 57, 48, 59, 52, 55, 109}
	// Yellow color
	Yellow = []byte{27, 91, 57, 48, 59, 52, 51, 109}
	// Red color
	Red = []byte{27, 91, 57, 55, 59, 52, 49, 109}
	// Blue color
	Blue = []byte{27, 91, 57, 55, 59, 52, 52, 109}
	// Magenta color
	Magenta = []byte{27, 91, 57, 55, 59, 52, 53, 109}
	// Cyan color
	Cyan = []byte{27, 91, 57, 55, 59, 52, 54, 109}
	// Reset color
	Reset = []byte{27, 91, 48, 109}

	// AsiaJakartaLocalTime location
	AsiaJakartaLocalTime *time.Location
)

Functions

func GenerateHMAC added in v1.9.0

func GenerateHMAC(salt, str string) string

GenerateHMAC generate random string

func GenerateSHA1 added in v1.9.0

func GenerateSHA1(input []byte) string

GenerateSHA1 generate SHA1

func GetFuncName

func GetFuncName(fn interface{}) string

GetFuncName get function name in string

func LoadAllFile

func LoadAllFile(path, formatFile string) []byte

LoadAllFile from path

func MaskingPasswordURL

func MaskingPasswordURL(stringURL string) string

MaskingPasswordURL for hide plain text password from given URL format

func MustParseEnv

func MustParseEnv(target interface{})

MustParseEnv must parse env to struct, panic if env from target struct tag is not found

func ParseFromQueryParam

func ParseFromQueryParam(query url.Values, target interface{}) (err error)

ParseFromQueryParam parse url query string to struct target (with multiple data type in struct field), target must in pointer

func ParseToQueryParam

func ParseToQueryParam(source interface{}) (s string)

ParseToQueryParam parse struct data to query param

func PrintJSON added in v1.8.14

func PrintJSON(data interface{})

PrintJSON for show data in pretty JSON with stack trace

func PtrToBool

func PtrToBool(ptr *bool) (b bool)

PtrToBool helper

func PtrToFloat

func PtrToFloat(ptr *float64) (f float64)

PtrToFloat helper

func PtrToInt

func PtrToInt(ptr *int) (i int)

PtrToInt helper

func PtrToString

func PtrToString(ptr *string) (s string)

PtrToString helper

func StringGreen

func StringGreen(str string) string

StringGreen func

func StringInSlice

func StringInSlice(str string, list []string) bool

StringInSlice function for checking whether string in slice str string searched string list []string slice

func StringYellow

func StringYellow(str string) string

StringYellow func

func TimeRemoveNanosecond

func TimeRemoveNanosecond(t time.Time) time.Time

TimeRemoveNanosecond ...

func ToAsiaJakartaTime

func ToAsiaJakartaTime(t time.Time) time.Time

ToAsiaJakartaTime convert only time location to AsiaJakarta local time

func ToBoolPtr

func ToBoolPtr(b bool) *bool

ToBoolPtr helper

func ToBytes

func ToBytes(i interface{}) (b []byte)

ToBytes convert all types to bytes

func ToCamelCase added in v1.9.0

func ToCamelCase(str string) string

ToCamelCase helper

func ToDelimited added in v1.9.0

func ToDelimited(s string, delimiter uint8) string

ToDelimited helper, can use to snake_case or kebab-case

func ToFloatPtr

func ToFloatPtr(f float64) *float64

ToFloatPtr helper

func ToIntPtr

func ToIntPtr(i int) *int

ToIntPtr helper

func ToStringPtr

func ToStringPtr(str string) *string

ToStringPtr helper

func ToUTC

func ToUTC(t time.Time) time.Time

ToUTC convert only location to UTC

Types

type MultiError

type MultiError interface {
	Append(key string, err error) MultiError
	HasError() bool
	IsNil() bool
	Clear()
	ToMap() map[string]string
	Merge(MultiError) MultiError
	Error() string
}

MultiError abstract interface

func NewMultiError

func NewMultiError() MultiError

NewMultiError constructor

type TryCatch

type TryCatch struct {
	Try   func()
	Catch func(error)
}

TryCatch model

func (TryCatch) Do

func (t TryCatch) Do()

Do run TryCatch

Jump to

Keyboard shortcuts

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