utils

package
v0.0.0-...-89052b1 Latest Latest
Warning

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

Go to latest
Published: Aug 18, 2023 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Asset

func Asset(name string) ([]byte, error)

Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.

func AssetDir

func AssetDir(name string) ([]string, error)

AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:

data/
  foo.txt
  img/
    a.png
    b.png

then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.

func AssetInfo

func AssetInfo(name string) (os.FileInfo, error)

AssetInfo loads and returns the asset info for the given name. It returns an error if the asset could not be found or could not be loaded.

func AssetNames

func AssetNames() []string

AssetNames returns the names of the assets.

func CloseDBConnection

func CloseDBConnection()

CloseDBConnection closes opened db connection - defer at top of function

func CreateJiraIssue

func CreateJiraIssue(jiraCreator string, jiraToken string, jiraAssignee string)

jiraCreator: lgabriel@fiduciarybenchmarks.com jiraAssignee: lgabriel

func MustAsset

func MustAsset(name string) []byte

MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.

func OpenDBConnection

func OpenDBConnection() error

OpenDBConnection opens db connection - call at top of function

func ReadAsset

func ReadAsset(filepath string) string

ReadAsset will read a filepath from form5500/ and return the string, or error if file is not found

func RestoreAsset

func RestoreAsset(dir, name string) error

RestoreAsset restores an asset under the given directory

func RestoreAssets

func RestoreAssets(dir, name string) error

RestoreAssets restores an asset under the given directory recursively

func SetDBConnection

func SetDBConnection(connection string)

SetDBConnection set connection string to be used by sql.DB Open()

Types

type Form5500Flags

type Form5500Flags struct {
	Connection string
	Section    string
}

Form5500Flags store cli flags to a struct

func (*Form5500Flags) SetConnection

func (f *Form5500Flags) SetConnection(host string, port string, db string, sslmode string, user string, password string)

SetConnection Set attributes from cli inputs

type Mapping

type Mapping struct {
	LongForm  string
	ShortForm string
	Alias     string
	DataType  string
}

Mapping is used to map column names in short/long form tables to an alias stored on form5500_search_view

func TableMappings

func TableMappings() []Mapping

TableMappings returns array of Mapping instances Mapping{} should not be called in usage, declare all instances within this method

func (Mapping) IndexName

func (m Mapping) IndexName() string

IndexName transforms alias as "idx_column_name"

type SQLRunner

type SQLRunner struct {
	Statement   string
	Description string
}

SQLRunner struct to assign and call sql statements throughout the form5500 package

func (SQLRunner) Exec

func (s SQLRunner) Exec() error

Exec runs #sql statement and prints description to command line

func (SQLRunner) ExecCLI

func (s SQLRunner) ExecCLI() error

ExecCLI uses psql command line tool to copy data from a csv file Cannot use Exec due to permissions error on aws box

func (SQLRunner) Print

func (s SQLRunner) Print()

Print print formatted message to console

func (SQLRunner) Query

func (s SQLRunner) Query() (*sql.Rows, error)

Jump to

Keyboard shortcuts

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