-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv2js.go
57 lines (44 loc) · 1.04 KB
/
env2js.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import (
"flag"
"fmt"
"os"
"strings"
"text/template"
)
type CoreContext struct {
PAPERMERGE__OCR__LANG_CODES string
PAPERMERGE__OCR__DEFAULT_LANG_CODE string
PAPERMERGE__OCR__AUTOMATIC bool
}
var (
templateFileName = flag.String("f", "", "Template file")
)
func main() {
flag.Parse()
if *templateFileName == "" {
fmt.Println("Error: empty template file")
os.Exit(1)
}
templ, err := template.ParseFiles(*templateFileName)
if err != nil {
fmt.Printf("Error while parsing template file: %v", err)
os.Exit(1)
}
data := CoreContext {
PAPERMERGE__OCR__LANG_CODES: os.Getenv("PAPERMERGE__OCR__LANG_CODES"),
PAPERMERGE__OCR__DEFAULT_LANG_CODE: os.Getenv("PAPERMERGE__OCR__DEFAULT_LANG_CODE"),
PAPERMERGE__OCR__AUTOMATIC: getBoolEnv("PAPERMERGE__OCR__AUTOMATIC"),
}
templ.Execute(os.Stdout, data)
}
func getBoolEnv(key string) bool {
v := os.Getenv(key)
switch strings.ToLower(v) {
case "", "false", "no":
return false
case "true", "yes":
return true
}
return false
}