-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
88 lines (69 loc) · 2.09 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
package main
import (
"database/sql"
"log"
"net/http"
"os"
"time"
"github.com/go-chi/chi/v5"
"github.com/go-chi/cors"
"github.com/joho/godotenv"
"github.com/jscmurph/blog_aggregator/internal/database"
_ "github.com/lib/pq"
)
type apiConfig struct {
DB *database.Queries
}
func main() {
godotenv.Load(".env")
port := os.Getenv("PORT")
if port == "" {
log.Fatal("PORT environment variable is not set")
}
dbURL := os.Getenv("DATABASE_URL")
if dbURL == "" {
log.Fatal("DATABASE_URL environment variable is not set")
}
db, err := sql.Open("postgres", dbURL)
if err != nil {
log.Fatal(err)
}
dbQueries := database.New(db)
apiCfg := apiConfig{
DB: dbQueries,
}
router := chi.NewRouter()
router.Use(cors.Handler(cors.Options{
AllowedOrigins: []string{"https://*", "http://*"},
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowedHeaders: []string{"*"},
ExposedHeaders: []string{"Link"},
AllowCredentials: false,
MaxAge: 300,
}))
v1Router := chi.NewRouter()
// User Handlers
v1Router.Post("/users", apiCfg.handlerCreateUser)
v1Router.Get("/users", apiCfg.middlewareAuth(apiCfg.handlerGetUserByAPIKey))
// Feed Handlers
v1Router.Post("/feeds", apiCfg.middlewareAuth(apiCfg.handlerCreateFeed))
v1Router.Get("/feeds", apiCfg.handlerGetFeeds)
v1Router.Post("/feed_follows", apiCfg.middlewareAuth(apiCfg.handlerCreateFeedFollow))
v1Router.Delete("/feed_follows/{feedFollowID}", apiCfg.middlewareAuth(apiCfg.handlerDeleteFeedFollow))
v1Router.Get("/feed_follows", apiCfg.middlewareAuth(apiCfg.handlerGetFeedFollow))
// Post Handlers
v1Router.Get("/posts", apiCfg.middlewareAuth(apiCfg.handlerGetPosts))
// Metric Handlers
v1Router.Get("/healthz", handlerReadiness)
v1Router.Get("/err", handlerError)
router.Mount("/v1", v1Router)
srv := &http.Server{
Addr: ":" + port,
Handler: router,
}
const collectionConcurrenct = 10
const collectionInterval = time.Minute
go startScraping(dbQueries, collectionConcurrenct, collectionInterval)
log.Printf("Serving on port: %s\n", port)
log.Fatal(srv.ListenAndServe())
}