Documentation ¶
Index ¶
- Constants
- Variables
- func GenerateHMAC(salt, str string) string
- func GenerateSHA1(input []byte) string
- func GetFuncName(fn interface{}) string
- func GetRuntimeStackLine() string
- func LoadAllFile(path, formatFile string) []byte
- func MaskingPasswordURL(stringURL string) string
- func MustParseEnv(target interface{})
- func ParseFromQueryParam(query url.Values, target interface{}) (err error)
- func ParseToQueryParam(source interface{}) (s string)
- func PrintJSON(data interface{})
- func PtrToBool(ptr *bool) (b bool)
- func PtrToFloat(ptr *float64) (f float64)
- func PtrToFloat32(ptr *float32) (f float32)
- func PtrToInt(ptr *int) (i int)
- func PtrToString(ptr *string) (s string)
- func PtrToTime(ptr *time.Time) (t time.Time)
- func StringGreen(str string) string
- func StringInSlice(str string, list []string) bool
- func StringYellow(str string) string
- func TimeRemoveNanosecond(t time.Time) time.Time
- func ToAsiaJakartaTime(t time.Time) time.Time
- func ToBoolPtr(b bool) *bool
- func ToBytes(i interface{}) (b []byte)
- func ToCamelCase(str string) string
- func ToDelimited(s string, delimiter uint8) string
- func ToFloat32Ptr(f float32) *float32
- func ToFloatPtr(f float64) *float64
- func ToIntPtr(i int) *int
- func ToStringPtr(str string) *string
- func ToTimePtr(t time.Time) *time.Time
- func ToUTC(t time.Time) time.Time
- type MultiError
- type TryCatch
Constants ¶
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 ¶
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
GenerateHMAC generate random string
func GenerateSHA1 ¶ added in v1.9.0
GenerateSHA1 generate SHA1
func GetRuntimeStackLine ¶ added in v1.10.4
func GetRuntimeStackLine() string
GetRuntimeStackLine helper
func MaskingPasswordURL ¶
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 ¶
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 PtrToFloat32 ¶ added in v1.10.5
PtrToFloat32 helper
func StringInSlice ¶
StringInSlice function for checking whether string in slice str string searched string list []string slice
func TimeRemoveNanosecond ¶
TimeRemoveNanosecond ...
func ToAsiaJakartaTime ¶
ToAsiaJakartaTime convert only time location to AsiaJakarta local time
func ToDelimited ¶ added in v1.9.0
ToDelimited helper, can use to snake_case or kebab-case
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