utils

package
v0.39.0 Latest Latest
Warning

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

Go to latest
Published: Dec 1, 2020 License: GPL-3.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BreakUpStringSlice added in v0.23.0

func BreakUpStringSlice(items []string, chunkSize int) [][]string

func InsertString added in v0.22.0

func InsertString(array []string, value string, index int) []string

func IntInSlice

func IntInSlice(a int, list []int) bool

func IsAudioFile added in v0.24.0

func IsAudioFile(filePath string) bool

func IsDirReadable added in v0.23.0

func IsDirReadable(path string) (bool, error)

func IsImageFile added in v0.24.0

func IsImageFile(filePath string) bool

func IsPlaylist added in v0.26.0

func IsPlaylist(filePath string) bool

func LongestCommonPrefix

func LongestCommonPrefix(list []string) string

func MaxInt

func MaxInt(x, y int) int

func MinInt

func MinInt(x, y int) int

func MoveString added in v0.22.0

func MoveString(array []string, srcIndex int, dstIndex int) []string

func NewMergeFS added in v0.27.0

func NewMergeFS(base, overlay http.FileSystem) http.FileSystem

NewMergeFS returns a simple implementation of a merged FS (http.FileSystem), that can combine a base FS with a overlay FS. The semantics are: - Files from the overlay FS will override file s with the same name in the base FS - Directories are combined, with priority for the overlay FS over the base FS for files with matching names

func NoArticle

func NoArticle(name string) string

func ParamBool added in v0.7.0

func ParamBool(r *http.Request, param string, def bool) bool

func ParamInt added in v0.7.0

func ParamInt(r *http.Request, param string, def int) int

func ParamInt64 added in v0.28.0

func ParamInt64(r *http.Request, param string, def int64) int64

func ParamInts added in v0.7.0

func ParamInts(r *http.Request, param string) []int

func ParamString added in v0.7.0

func ParamString(r *http.Request, param string) string

func ParamStrings added in v0.7.0

func ParamStrings(r *http.Request, param string) []string

func ParamTime added in v0.7.0

func ParamTime(r *http.Request, param string, def time.Time) time.Time

func ParamTimes added in v0.7.0

func ParamTimes(r *http.Request, param string) []time.Time

func RemoveString added in v0.22.0

func RemoveString(array []string, index int) []string

func StringInSlice

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

func ToMillis

func ToMillis(t time.Time) int64

func ToTime

func ToTime(millis int64) time.Time

Types

type AtomicBool added in v0.27.0

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

func (*AtomicBool) Get added in v0.27.0

func (b *AtomicBool) Get() bool

func (*AtomicBool) Set added in v0.27.0

func (b *AtomicBool) Set(value bool)

type IndexGroups

type IndexGroups map[string]string

func ParseIndexGroups

func ParseIndexGroups(spec string) IndexGroups

The specification is a space-separated list of index entries. Normally, each entry is just a single character, but you may also specify multiple characters. For instance, the entry "The" will link to all files and folders starting with "The".

You may also create an entry using a group of index characters in parenthesis. For instance, the entry "A-E(ABCDE)" will display as "A-E" and link to all files and folders starting with either A, B, C, D or E. This may be useful for grouping less-frequently used characters (such and X, Y and Z), or for grouping accented characters (such as A, \u00C0 and \u00C1)

Files and folders that are not covered by an index entry will be placed under the index entry "#".

Jump to

Keyboard shortcuts

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