utils

package
v0.80.63 Latest Latest
Warning

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

Go to latest
Published: Sep 3, 2019 License: GPL-3.0 Imports: 23 Imported by: 0

Documentation

Overview

Package utils contains common methods used in most packages in Statping. This package contains multiple function like: Logging, encryption, type conversions, setting utils.Directory as the current directory, running local CMD commands, and creating/deleting files/folder.

You can overwrite the utils.Directory global variable by including STATPING_DIR environment variable to be an absolute path.

More info on: https://github.com/hunterlong/statping

Index

Examples

Constants

View Source
const (
	FlatpickrTime     = "2006-01-02 15:04"
	FlatpickrDay      = "2006-01-02"
	FlatpickrReadable = "Mon, 02 Jan 2006"
)
View Source
const (
	B  = 0x100
	N  = 0x1000
	BM = 0xff
)

Variables

View Source
var (
	LastLines []*LogRow
	LockLines sync.Mutex
)
View Source
var (
	// Directory returns the current path or the STATPING_DIR environment variable
	Directory string
)

Functions

func Command added in v0.79.1

func Command(cmd string) (string, string, error)

Command will run a terminal command with 'sh -c COMMAND' and return stdout and errOut as strings

in, out, err := Command("sass assets/scss assets/css/base.css")

func ConvertInterface added in v0.80.57

func ConvertInterface(in string, obj interface{}) string

ConvertInterface will take all the keys/values from an interface and replace all %type.Key from a string Input: {"name": "%service.Name", "domain": "%service.Domain"} Output: {"name": "Google DNS", "domain": "8.8.8.8"}

func DeleteDirectory added in v0.79.1

func DeleteDirectory(directory string) error

DeleteDirectory will attempt to delete a directory and all contents inside

DeleteDirectory("assets")

func DeleteFile added in v0.29.3

func DeleteFile(file string) error

DeleteFile will attempt to delete a file

DeleteFile("newfile.json")

func DurationReadable added in v0.79.1

func DurationReadable(d time.Duration) string

DurationReadable will return a time.Duration into a human readable string // t := time.Duration(5 * time.Minute) // DurationReadable(t) // returns: 5 minutes

Example
dur, _ := time.ParseDuration("25m")
readable := DurationReadable(dur)
fmt.Print(readable)
Output:

25 minutes

func FileExists added in v0.79.1

func FileExists(name string) bool

FileExists returns true if a file exists

exists := FileExists("assets/css/base.css")

func FormatDuration added in v0.79.1

func FormatDuration(d time.Duration) string

FormatDuration converts a time.Duration into a string

func HashPassword

func HashPassword(password string) string

HashPassword returns the bcrypt hash of a password string

func Http

func Http(r *http.Request) string

Http returns a log for a HTTP request

func HttpRequest added in v0.79.9

func HttpRequest(url, method string, content interface{}, headers []string, body io.Reader, timeout time.Duration) ([]byte, *http.Response, error)

HttpRequest is a global function to send a HTTP request // url - The URL for HTTP request // method - GET, POST, DELETE, PATCH // content - The HTTP request content type (text/plain, application/json, or nil) // headers - An array of Headers to be sent (KEY=VALUE) []string{"Authentication=12345", ...} // body - The body or form data to send with HTTP request // timeout - Specific duration to timeout on. time.Duration(30 * time.Seconds) // You can use a HTTP Proxy if you HTTP_PROXY environment variable

func InitLogs added in v0.79.1

func InitLogs() error

InitLogs will create the '/logs' directory and creates a file '/logs/statup.log' for application logging

func Log

func Log(level int, err interface{}) error

Log creates a new entry in the Logger. Log has 1-5 levels depending on how critical the log/error is

func NewSHA1Hash

func NewSHA1Hash(n ...int) string

NewSHA1Hash returns a random SHA1 hash based on a specific length

func RandomString

func RandomString(n int) string

RandomString generates a random string of n length

func SaveFile added in v0.79.1

func SaveFile(filename string, data []byte) error

SaveFile will create a new file with data inside it

SaveFile("newfile.json", []byte('{"data": "success"}')

func Timezoner added in v0.79.1

func Timezoner(t time.Time, zone float32) time.Time

Timezoner returns the time.Time with the user set timezone

func ToInt added in v0.79.9

func ToInt(s interface{}) int64

ToInt converts a int to a string

func ToString added in v0.79.1

func ToString(s interface{}) string

ToString converts a int to a string

Example
amount := 42
fmt.Print(ToString(amount))
Output:

42

func UnderScoreString

func UnderScoreString(str string) string

UnderScoreString will return a string that replaces spaces and other characters to underscores

UnderScoreString("Example String")
// example_string

Types

type LogRow added in v0.79.1

type LogRow struct {
	Date time.Time
	Line interface{}
}

func GetLastLine added in v0.79.1

func GetLastLine() *LogRow

GetLastLine returns 1 line for a recent log entry

func (*LogRow) FormatForHtml added in v0.79.1

func (o *LogRow) FormatForHtml() string

type Perlin added in v0.80.51

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

Perlin is the noise generator

func NewPerlin added in v0.80.51

func NewPerlin(alpha, beta float64, n int, seed int64) *Perlin

func NewPerlinRandSource added in v0.80.51

func NewPerlinRandSource(alpha, beta float64, n int, source rand.Source) *Perlin

func (*Perlin) Noise1D added in v0.80.51

func (p *Perlin) Noise1D(x float64) float64

type Timestamp added in v0.79.1

type Timestamp time.Time

func (Timestamp) Ago added in v0.79.1

func (t Timestamp) Ago() string

Ago returns a human readable timestamp based on the Timestamp (time.Time) interface

type Timestamper added in v0.79.1

type Timestamper interface {
	Ago() string
}

Jump to

Keyboard shortcuts

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