forked from amborle/featmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
184 lines (147 loc) · 4.73 KB
/
main.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strings"
"time"
"github.com/stripe/stripe-go"
"github.com/amborle/featmap/migrations"
"github.com/amborle/featmap/webapp"
assetfs "github.com/elazarl/go-bindata-assetfs"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
"github.com/go-chi/cors"
"github.com/go-chi/jwtauth"
"github.com/golang-migrate/migrate/v4"
_ "github.com/golang-migrate/migrate/v4/database/postgres"
bindata "github.com/golang-migrate/migrate/v4/source/go_bindata"
"github.com/jmoiron/sqlx"
)
// Configuration ...
type Configuration struct {
Environment string `json:"environment"`
Mode string `json:"mode"`
AppSiteURL string `json:"appSiteURL"`
DbConnectionString string `json:"dbConnectionString"`
JWTSecret string `json:"jwtSecret"`
Port string `json:"port"`
EmailFrom string `json:"emailFrom"`
SMTPServer string `json:"smtpServer"`
SMTPPort string `json:"smtpPort"`
SMTPUser string `json:"smtpUser"`
SMTPPass string `json:"smtpPass"`
StripeKey string `json:"stripeKey"`
StripeWebhookSecret string `json:"stripeWebhookSecret"`
StripeBasicPlan string `json:"stripeBasicPlan"`
StripeProPlan string `json:"stripeProPlan"`
}
func main() {
r := chi.NewRouter()
// A good base middleware stack
r.Use(middleware.RequestID)
r.Use(middleware.RealIP)
r.Use(middleware.Logger)
r.Use(middleware.Recoverer)
// r.Use(middleware.SetHeader("Content-Type", "application/json"))
config, err := readConfiguration()
if err != nil {
log.Fatalln("no conf.json found")
}
// CORS
corsConfiguration := cors.New(cors.Options{
AllowedOrigins: []string{config.AppSiteURL, "http://localhost:3000"}, // localhost is for development work
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowedHeaders: []string{"Accept", "Authorization", "Content-Type", "Workspace", "X-CSRF-Token"},
ExposedHeaders: []string{""},
AllowCredentials: true,
MaxAge: 300,
})
r.Use(corsConfiguration.Handler)
db, err := sqlx.Connect("postgres", config.DbConnectionString)
if err != nil {
log.Fatalln("database error:" + err.Error())
}
defer func() {
if err := db.Close(); err != nil {
log.Fatalln(err)
}
}()
// Apply migrations
s := bindata.Resource(migrations.AssetNames(),
func(name string) ([]byte, error) {
return migrations.Asset(name)
})
d, err := bindata.WithInstance(s)
if err != nil {
log.Fatalln(err)
}
m, err := migrate.NewWithSourceInstance("go-bindata", d, config.DbConnectionString)
if err != nil {
log.Fatalln(err)
}
m.Up()
// Create JWTAuth object
auth := jwtauth.New("HS256", []byte(config.JWTSecret), nil)
r.Use(jwtauth.Verifier(auth))
r.Use(ContextSkeleton(config))
r.Use(Transaction(db))
r.Use(Auth(auth))
r.Use(User())
stripe.Key = config.StripeKey
// Set a timeout value on the request context (ctx), that will signal
// through ctx.Done() that the request has timed out and further
// processing should be stopped.
r.Use(middleware.Timeout(60 * time.Second))
r.Route("/v1/users", usersAPI) // Nothing is needed
r.Route("/v1/link", linkAPI) // Nothing is needed
r.Route("/v1/subscription", subscriptionAPI) // Nothing is needed
r.Route("/v1/account", accountAPI) // Account needed
r.Route("/v1/", workspaceAPI) // Account + workspace is needed
files := &assetfs.AssetFS{
Asset: webapp.Asset,
AssetDir: webapp.AssetDir,
Prefix: "webapp/build/static",
}
fileServer(r, "/static", files)
r.Get("/*", func(w http.ResponseWriter, r *http.Request) {
index, _ := webapp.Asset("webapp/build/index.html")
http.ServeContent(w, r, "index.html", time.Now(), strings.NewReader(string(index)))
})
fmt.Println("Serving on port " + config.Port)
err = http.ListenAndServe(":"+config.Port, r)
if err != nil {
log.Fatalln(err)
}
}
func readConfiguration() (Configuration, error) {
file, err := os.Open("conf.json")
defer func() {
if err := file.Close(); err != nil {
log.Println(err)
}
}()
decoder := json.NewDecoder(file)
configuration := Configuration{}
err = decoder.Decode(&configuration)
if configuration.SMTPPort == "" {
configuration.SMTPPort = "587"
}
return configuration, err
}
func fileServer(r chi.Router, path string, root http.FileSystem) {
if strings.ContainsAny(path, "{}*") {
panic("FileServer does not permit URL parameters.")
}
fs := http.StripPrefix(path, http.FileServer(root))
if path != "/" && path[len(path)-1] != '/' {
r.Get(path, http.RedirectHandler(path+"/", 301).ServeHTTP)
path += "/"
}
path += "*"
r.Get(path, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fs.ServeHTTP(w, r)
}))
}