Files
crowsnest/src/internal/app/app.go

40 lines
997 B
Go
Raw Normal View History

package app
import (
"crowsnest/internal/model/database"
"database/sql"
"net/http"
)
type App struct {
articles *database.ArticleRepository
articleVMs *database.ArticleViewModelRepository
2025-01-21 16:47:11 +01:00
rssItems *database.RSSItemRepository
}
func NewApp(db *sql.DB) *App {
return &App{
articles: &database.ArticleRepository{DB: db},
articleVMs: &database.ArticleViewModelRepository{DB: db},
2025-01-21 16:47:11 +01:00
rssItems: &database.RSSItemRepository{DB: db},
}
}
func (app *App) Routes() http.Handler {
mux := http.NewServeMux()
// dynamic routes
2025-01-21 16:47:11 +01:00
mux.Handle("GET /rss.xml", http.HandlerFunc(app.RSS))
mux.Handle("GET /", http.HandlerFunc(app.Index))
mux.Handle("GET /page/{id}", http.HandlerFunc(app.Index))
mux.Handle("POST /up/search", http.HandlerFunc(app.UpSearch))
2025-01-12 19:57:54 +01:00
mux.Handle("GET /article/{id}", http.HandlerFunc(app.Article))
// serve files from the "static" directory
mux.Handle("GET /static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./assets/static"))))
return mux
}