-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathartbased.go
75 lines (50 loc) · 1.83 KB
/
artbased.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"fmt"
// "log"
"os"
"net/http"
"strings"
"strconv"
"flag"
"github.com/pixelartexchange/artbase.server/artbase"
"github.com/pixelartexchange/artbase.server/serve"
)
func main() {
//// note:
// download "standard" collections for now,
// yes, you can - use / set-up your own collections
var configValue string
configDef := "https://github.com/pixelartexchange/artbase.server/raw/master/collections.csv"
// configDef := "https://github.com/pixelartexchange/ordbase.server/raw/master/collections.csv"
configUsage := "path or url to collections dataset"
flag.StringVar(&configValue, "config", configDef, configUsage)
flag.StringVar(&configValue, "c", configDef, configUsage+" (shorthand)")
var portValue int
portDef := 8080
portUsage := "port"
// check for port in env settings - required by heroku et al
portEnv := os.Getenv( "PORT" )
if portEnv != "" {
if i, err := strconv.Atoi( portEnv ); err == nil {
portDef = i // change default to env variable; if error ignore for now
}
}
flag.IntVar(&portValue, "port", portDef, portUsage )
flag.IntVar(&portValue, "p", portDef, portUsage+" (shorthand)")
flag.Parse()
var collections []*artbase.Collection
if strings.HasPrefix( configValue, "http://" ) ||
strings.HasPrefix( configValue, "https://" ) {
collections = artbase.DownloadCollections( configValue )
} else {
collections = artbase.ReadCollections( configValue )
}
serve := serve.NewRouter( collections )
// default addr to localhost:8080 for now
// for windows include localhost to avoid firewall warning/popup
// if binding to :8080 only - why? why not?
addr := "localhost:" + strconv.Itoa( portValue )
http.ListenAndServe( addr, serve )
fmt.Println( "Bye!" )
}