本文整理匯總了Golang中github.com/ernestokarim/cb/config.Config.GetRequired方法的典型用法代碼示例。如果您正苦於以下問題:Golang Config.GetRequired方法的具體用法?Golang Config.GetRequired怎麽用?Golang Config.GetRequired使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/ernestokarim/cb/config.Config
的用法示例。
在下文中一共展示了Config.GetRequired方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: minignore
func minignore(c *config.Config, q *registry.Queue) error {
base := filepath.Join("temp", filepath.Base(c.GetRequired("paths.base")))
lines, err := utils.ReadLines(base)
if err != nil {
return fmt.Errorf("read base html failed: %s", err)
}
for i, line := range lines {
if strings.Contains(line, "<!-- min -->") {
matchs := minRe.FindStringSubmatch(line)
if matchs == nil {
return fmt.Errorf("line %d of base, not a correct min format", i+1)
}
src := strings.Replace(matchs[1], ".js", ".min.js", -1)
line = fmt.Sprintf("<script src=\"%s\"></script>\n", src)
}
if strings.Contains(line, "<!-- ignore -->") {
line = ""
}
lines[i] = line
}
if err := utils.WriteFile(base, strings.Join(lines, "")); err != nil {
return fmt.Errorf("write file failed: %s", err)
}
return nil
}
示例2: push
func push(c *config.Config, q *registry.Queue) error {
scriptsPath := utils.PackagePath(selfPkg)
host := c.GetRequired("push")
// FTP User & password
user := q.NextTask()
if user == "" {
return fmt.Errorf("ftp user required as the first argument")
}
q.RemoveNextTask()
password, err := gopass.GetPass(fmt.Sprintf("Enter \"%s\" password: ", user))
if err != nil {
return fmt.Errorf("cannot read password: %s", err)
}
if password == "" {
return fmt.Errorf("ftp password is required")
}
// Hash local files
log.Printf("Hashing local files... ")
localHashes, err := hashLocalFiles()
if err != nil {
return fmt.Errorf("hash local files failed: %s", err)
}
log.Printf("Hashing local files... %s[SUCCESS]%s\n", colors.Green, colors.Reset)
// Hash remote files
log.Printf("Hashing remote files... ")
remoteHashes, err := retrieveRemoteHashes(scriptsPath, user, password, host)
if err != nil {
return fmt.Errorf("retrieve remote hashes failed: %s", err)
}
log.Printf("Hashing remote files... %s[SUCCESS]%s\n", colors.Green, colors.Reset)
if err := saveLocalHashes(localHashes); err != nil {
return fmt.Errorf("save local hashes failed: %s", err)
}
// Prepare FTP commands
log.Printf("Preparing FTP commands... ")
if err := prepareFTPCommands(localHashes, remoteHashes); err != nil {
return fmt.Errorf("prepare FTP commands failed: %s", err)
}
log.Printf("Preparing FTP commands... %s[SUCCESS]%s\n", colors.Green, colors.Reset)
// Upload files
log.Printf("Uploading files... ")
if err := uploadFiles(scriptsPath, user, password, host); err != nil {
return fmt.Errorf("uploading files failed: %s", err)
}
log.Printf("Uploading files... %s[SUCCESS]%s\n", colors.Green, colors.Reset)
return nil
}
示例3: parseAttrs
func parseAttrs(data *config.Config, object string, idx int) map[string]string {
m := map[string]string{}
size := data.CountDefault("fields[%d].%s", idx, object)
for i := 0; i < size; i++ {
name := data.GetRequired("fields[%d].%s[%d].name", idx, object, i)
value := data.GetDefault("fields[%d].%s[%d].value", "", idx, object, i)
m[name] = value
}
return m
}
示例4: htmlmin
func htmlmin(c *config.Config, q *registry.Queue) error {
size := c.CountDefault("htmlmin")
for i := 0; i < size; i++ {
source := c.GetRequired("htmlmin[%d].source", i)
dest := c.GetRequired("htmlmin[%d].dest", i)
if err := htmlcompressor(source, dest); err != nil {
return fmt.Errorf("html compress failed: %s", err)
}
}
return nil
}
示例5: compilejs
func compilejs(c *config.Config, q *registry.Queue) error {
base := filepath.Join("temp", filepath.Base(c.GetRequired("paths.base")))
lines, err := utils.ReadLines(base)
if err != nil {
return fmt.Errorf("read base html failed: %s", err)
}
for i := 0; i < len(lines); i++ {
line := lines[i]
if strings.Contains(line, "<!-- compile") {
match := tagRe.FindStringSubmatch(line)
if match == nil {
return fmt.Errorf("incorrect compile tag, line %d", i)
}
start := i
lines[i] = ""
files := []string{}
for !strings.Contains(line, "<!-- endcompile -->") {
match := scriptRe.FindStringSubmatch(line)
if match != nil {
lines[i] = ""
files = append(files, match[1])
}
i++
if i >= len(lines) {
return fmt.Errorf("compile js block not closed, line %d", start)
}
line = lines[i]
}
if len(files) == 0 {
return fmt.Errorf("no files found to compile %s", match[1])
}
if err := compileJs(match[1], files); err != nil {
return fmt.Errorf("compile js failed: %s", err)
}
line = fmt.Sprintf("<script src=\"%s\"></script>\n", match[1])
}
lines[i] = line
}
if err := utils.WriteFile(base, strings.Join(lines, "")); err != nil {
return fmt.Errorf("write file failed: %s", err)
}
return nil
}
示例6: Parse
func Parse(data *config.Config, idx int) []*Validator {
validators := []*Validator{}
nvalidators := data.CountDefault("fields[%d].validators", idx)
for i := 0; i < nvalidators; i++ {
name := data.GetRequired("fields[%d].validators[%d].name", idx, i)
value := data.GetDefault("fields[%d].validators[%d].value", "", idx, i)
msg := data.GetDefault("fields[%d].validators[%d].msg", "", idx, i)
validator := createValidator(name, value, msg)
if validator == nil {
panic("bad validator name: " + name)
}
validators = append(validators, validator)
}
return validators
}
示例7: lessFromConfig
func lessFromConfig(c *config.Config, mode string) ([]*lessFile, error) {
var from string
if mode == "dev" {
from = "app"
} else if mode == "prod" {
from = "temp"
}
files := []*lessFile{}
size := c.CountRequired("recess")
for i := 0; i < size; i++ {
src := filepath.Join(from, "styles", c.GetRequired("recess[%d].source", i))
dest := filepath.Join("temp", "styles", c.GetRequired("recess[%d].dest", i))
files = append(files, &lessFile{src, dest})
}
return files, nil
}
示例8: deploy
func deploy(c *config.Config, q *registry.Queue) error {
parts := strings.Split(q.CurTask, ":")
base := utils.PackagePath(filepath.Join(selfPkg, parts[1]+".sh"))
args := []string{
filepath.Base(c.GetRequired("paths.base")),
}
if err := utils.ExecCopyOutput(base, args); err != nil {
return fmt.Errorf("deploy failed: %s", err)
}
if err := organizeResult(c); err != nil {
return fmt.Errorf("cannot organize result: %s", err)
}
return nil
}
示例9: ngtemplates
func ngtemplates(c *config.Config, q *registry.Queue) error {
count := c.CountRequired("ngtemplates")
for i := 0; i < count; i++ {
append := c.GetRequired("ngtemplates[%d].append", i)
files := c.GetListRequired("ngtemplates[%d].files", i)
templates, err := readTemplates(files)
if err != nil {
return fmt.Errorf("cannot read templates: %s", err)
}
if err = writeTemplates(append, templates); err != nil {
return fmt.Errorf("cannot save template file: %s", err)
}
}
return nil
}
示例10: sassFromConfig
func sassFromConfig(c *config.Config, mode string) ([]*sassFile, error) {
var from string
if len(c.GetDefault("closure.library", "")) == 0 {
if mode == "dev" {
from = filepath.Join("app")
} else if mode == "prod" {
from = filepath.Join("temp")
}
}
files := []*sassFile{}
size := c.CountRequired("sass")
for i := 0; i < size; i++ {
src := filepath.Join(from, "styles", c.GetRequired("sass[%d].source", i))
dest := filepath.Join("temp", "styles", c.GetRequired("sass[%d].dest", i))
files = append(files, &sassFile{src, dest})
}
return files, nil
}
示例11: watch
func watch(c *config.Config, q *registry.Queue) error {
size := c.CountRequired("watch")
for i := 0; i < size; i++ {
// Extract the task name
task := c.GetRequired("watch[%d].task", i)
// Extract the paths
paths := []string{}
pathsSize := c.CountDefault("watch[%d].paths", i)
for j := 0; j < pathsSize; j++ {
paths = append(paths, c.GetRequired("watch[%d].paths[%d]", i, j))
}
// Init the watcher
if err := watcher.Dirs(paths, task); err != nil {
return fmt.Errorf("watch dirs failed: %s", err)
}
}
return nil
}
示例12: parseFields
func parseFields(data *config.Config, spec string) []*field {
fields := []*field{}
size := data.CountRequired("%s", spec)
for i := 0; i < size; i++ {
field := &field{
Key: data.GetDefault("%s[%d].key", "", spec, i),
Kind: data.GetRequired("%s[%d].kind", spec, i),
Store: data.GetDefault("%s[%d].store", "", spec, i),
Condition: data.GetDefault("%s[%d].condition", "", spec, i),
Validators: make([]*validator, 0),
}
if field.Kind == "Array" || field.Kind == "Object" || field.Kind == "Conditional" {
newSpec := fmt.Sprintf("%s[%d].fields", spec, i)
field.Fields = parseFields(data, newSpec)
}
validatorsSize := data.CountDefault("%s[%d].validators", spec, i)
for j := 0; j < validatorsSize; j++ {
v := &validator{
Name: data.GetRequired("%s[%d].validators[%d].name", spec, i, j),
Value: data.GetDefault("%s[%d].validators[%d].value", "", spec, i, j),
}
usesSize := data.CountDefault("%s[%d].validators[%d].use", spec, i, j)
for k := 0; k < usesSize; k++ {
value := data.GetDefault("%s[%d].validators[%d].use[%d]", "", spec, i, j, k)
v.Uses = append(v.Uses, value)
}
field.Validators = append(field.Validators, v)
}
fields = append(fields, field)
}
return fields
}
示例13: readServeConfig
func readServeConfig(c *config.Config) (*serveConfig, error) {
sc := &serveConfig{
base: true,
url: c.GetDefault("serve.url", "http://localhost:8080/"),
}
method := c.GetDefault("serve.base", "")
if method != "" && method != "proxy" && method != "cb" {
return nil, fmt.Errorf("serve.base config must be 'proxy' (default) or 'cb'")
}
sc.base = (method == "cb")
size := c.CountDefault("serve.proxy")
for i := 0; i < size; i++ {
pc := proxyConfig{
host: fmt.Sprintf("%s:%d", c.GetRequired("serve.proxy[%d].host", i), *config.Port),
url: c.GetRequired("serve.proxy[%d].url", i),
}
sc.proxy = append(sc.proxy, pc)
}
return sc, nil
}