-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
98 lines (73 loc) · 2.03 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
package main
import (
"context"
"flag"
"fmt"
"log"
"os"
"github.com/gofiber/fiber/v2"
"github.com/joho/godotenv"
"github.com/trenchesdeveloper/go-hotel/api"
"github.com/trenchesdeveloper/go-hotel/db"
"github.com/trenchesdeveloper/go-hotel/routes"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
var config = fiber.Config{
// Override default error handler
ErrorHandler: func(ctx *fiber.Ctx, err error) error {
if apiError, ok := err.(*api.Error); ok {
return ctx.Status(apiError.Code).JSON(apiError)
}
return api.NewError(fiber.StatusInternalServerError, "Something went wrong")
},
}
func main() {
mongoEndpoint := os.Getenv(("DBURI"))
client, err := mongo.Connect(context.Background(), options.Client().ApplyURI(mongoEndpoint))
if err != nil {
log.Fatal(err)
}
fmt.Println("Connected to MongoDB!")
fmt.Println(client)
flag.Parse()
app := fiber.New(config)
var (
apiV1 = app.Group("/api/v1")
// create a new mongo user store
userStore = db.NewMongoUserStore(client)
// create a new mongo hotel store
hotelStore = db.NewMongoHotelStore(client)
roomStore = db.NewMongoRoomStore(client, hotelStore)
bookingStore = db.NewMongoBookingStore(client)
store = &db.Store{
UserStore: userStore,
HotelStore: hotelStore,
RoomStore: roomStore,
BookingStore: bookingStore,
}
// send the user store to the api
userHandler = api.NewUserHandler(userStore)
authHandler = api.NewAuthHandler(userStore)
hotelHandler = api.NewHotelHandler(store)
roomHandler = api.NewRoomHandler(store)
bookingHandler = api.NewBookingHandler(store)
)
// user routes
routes.UserRoutes(apiV1, userHandler)
routes.AuthRoutes(apiV1, authHandler)
// hotel routes
routes.HotelRoutes(apiV1, hotelHandler, store)
// room routes
routes.RoomRoutes(apiV1, roomHandler, store)
// booking routes
routes.BookingRoutes(apiV1, bookingHandler, store)
PORT := os.Getenv("PORT")
app.Listen(PORT)
}
func init() {
err := godotenv.Load()
if err != nil {
log.Fatal(err)
}
}