forked from gobuffalo/buffalo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
151 lines (129 loc) · 4.4 KB
/
options.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package buffalo
import (
"context"
"fmt"
"net/http"
"strings"
"github.com/sirupsen/logrus"
"github.com/fatih/color"
"github.com/gobuffalo/buffalo/worker"
"github.com/gobuffalo/envy"
"github.com/gobuffalo/pop"
"github.com/gorilla/sessions"
"github.com/markbates/going/defaults"
)
// Options are used to configure and define how your application should run.
type Options struct {
Name string
// Addr is the bind address provided to http.Server. Default is "127.0.0.1:3000"
// Can be set using ENV vars "ADDR" and "PORT".
Addr string
// Host that this application will be available at. Default is "http://127.0.0.1:[$PORT|3000]".
Host string
// Env is the "environment" in which the App is running. Default is "development".
Env string
// LogLevel defaults to "debug".
LogLevel string
// Logger to be used with the application. A default one is provided.
Logger Logger
// MethodOverride allows for changing of the request method type. See the default
// implementation at buffalo.MethodOverride
MethodOverride http.HandlerFunc
// SessionStore is the `github.com/gorilla/sessions` store used to back
// the session. It defaults to use a cookie store and the ENV variable
// `SESSION_SECRET`.
SessionStore sessions.Store
// SessionName is the name of the session cookie that is set. This defaults
// to "_buffalo_session".
SessionName string
// Worker implements the Worker interface and can process tasks in the background.
// Default is "github.com/gobuffalo/worker.Simple.
Worker worker.Worker
// WorkerOff tells App.Start() whether to start the Worker process or not. Default is "false".
WorkerOff bool
// PreHandlers are http.Handlers that are called between the http.Server
// and the buffalo Application.
PreHandlers []http.Handler
// PreWare takes an http.Handler and returns and http.Handler
// and acts as a pseudo-middleware between the http.Server and
// a Buffalo application.
PreWares []PreWare
Context context.Context
// LooseSlash defines the trailing slash behavior for new routes. The initial value is false.
// This is the opposite of http://www.gorillatoolkit.org/pkg/mux#Router.StrictSlash
LooseSlash bool
cancel context.CancelFunc
Prefix string
}
// PreWare takes an http.Handler and returns and http.Handler
// and acts as a pseudo-middleware between the http.Server and
// a Buffalo application.
type PreWare func(http.Handler) http.Handler
// NewOptions returns a new Options instance with sensible defaults
func NewOptions() Options {
return optionsWithDefaults(Options{})
}
func optionsWithDefaults(opts Options) Options {
opts.Env = defaults.String(opts.Env, envy.Get("GO_ENV", "development"))
opts.LogLevel = defaults.String(opts.LogLevel, envy.Get("LOG_LEVEL", "debug"))
opts.Name = defaults.String(opts.Name, "/")
addr := "0.0.0.0"
if opts.Env == "development" {
addr = "127.0.0.1"
}
envAddr := envy.Get("ADDR", addr)
if strings.HasPrefix(envAddr, "unix:") {
// UNIX domain socket doesn't have a port
opts.Addr = envAddr
} else {
// TCP case
opts.Addr = defaults.String(opts.Addr, fmt.Sprintf("%s:%s", envAddr, envy.Get("PORT", "3000")))
}
if opts.PreWares == nil {
opts.PreWares = []PreWare{}
}
if opts.PreHandlers == nil {
opts.PreHandlers = []http.Handler{}
}
if opts.Context == nil {
opts.Context = context.Background()
}
opts.Context, opts.cancel = context.WithCancel(opts.Context)
if opts.Logger == nil {
opts.Logger = NewLogger(opts.LogLevel)
}
pop.Log = func(s string, args ...interface{}) {
if pop.Debug {
l := opts.Logger
if len(args) > 0 {
for i, a := range args {
l = l.WithField(fmt.Sprintf("$%d", i+1), a)
}
}
if pop.Color {
s = color.YellowString(s)
}
l.Debug(s)
}
}
if opts.SessionStore == nil {
secret := envy.Get("SESSION_SECRET", "")
// In production a SESSION_SECRET must be set!
if secret == "" {
if opts.Env == "development" || opts.Env == "test" {
secret = "buffalo-secret"
} else {
logrus.Warn("Unless you set SESSION_SECRET env variable, your session storage is not protected!")
}
}
opts.SessionStore = sessions.NewCookieStore([]byte(secret))
}
if opts.Worker == nil {
w := worker.NewSimpleWithContext(opts.Context)
w.Logger = opts.Logger
opts.Worker = w
}
opts.SessionName = defaults.String(opts.SessionName, "_buffalo_session")
opts.Host = defaults.String(opts.Host, envy.Get("HOST", fmt.Sprintf("http://127.0.0.1:%s", envy.Get("PORT", "3000"))))
return opts
}