-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
107 lines (90 loc) · 2.36 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
package main
import (
"fmt"
"log"
"net/http"
"os"
"os/signal"
"path/filepath"
"strconv"
"strings"
"syscall"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
"github.com/lazhari/url-shortener/api"
mr "github.com/lazhari/url-shortener/repository/mongodb"
rr "github.com/lazhari/url-shortener/repository/redis"
"github.com/lazhari/url-shortener/shortener"
)
func main() {
repo := chooseRepo()
service := shortener.NewRedirectService(repo)
handler := api.NewHandler(service)
r := chi.NewRouter()
r.Use(middleware.RequestID)
r.Use(middleware.RealIP)
r.Use(middleware.Logger)
r.Use(middleware.Recoverer)
r.Get("/{code}", handler.Get)
r.Post("/", handler.Post)
clientDir, _ := os.Getwd()
filesDir := http.Dir(filepath.Join(clientDir, "client/build"))
FileServer(r, "/", filesDir)
errs := make(chan error, 2)
go func() {
fmt.Println("Listening on port :8000")
errs <- http.ListenAndServe(httpPort(), r)
}()
go func() {
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGINT)
errs <- fmt.Errorf("%s", <-c)
}()
fmt.Printf("Terminated %s", <-errs)
}
// repo <- service -> serializer -> http
func httpPort() string {
port := "8000"
if os.Getenv("PORT") != "" {
port = os.Getenv("PORT")
}
return fmt.Sprintf(":%s", port)
}
func chooseRepo() shortener.RedirectRepository {
switch os.Getenv("URL_DB") {
case "redis":
redisURL := os.Getenv("REDIS_URL")
repo, err := rr.NewRedisRepository(redisURL)
if err != nil {
log.Fatal(err)
}
return repo
case "mongo":
mongoURL := os.Getenv("MONGO_URL")
mongoDB := os.Getenv("MONGO_DB")
mongoTimeout, _ := strconv.Atoi(os.Getenv("MONGO_TIMEOUT"))
repo, err := mr.NewMongoRepository(mongoURL, mongoDB, mongoTimeout)
if err != nil {
log.Fatal(err)
}
return repo
}
return nil
}
// FileServer static files from a http.FileSystem.
func FileServer(r chi.Router, path string, root http.FileSystem) {
if strings.ContainsAny(path, "{}*") {
panic("FileServer does not permit any URL parameters.")
}
if path != "/" && path[len(path)-1] != '/' {
r.Get(path, http.RedirectHandler(path+"/", 301).ServeHTTP)
path += "/"
}
path += "*"
r.Get(path, func(w http.ResponseWriter, r *http.Request) {
rctx := chi.RouteContext(r.Context())
pathPrefix := strings.TrimSuffix(rctx.RoutePattern(), "/*")
fs := http.StripPrefix(pathPrefix, http.FileServer(root))
fs.ServeHTTP(w, r)
})
}