Noah Petherbridge
eb1880d348
Controllers moved into sub-packages: * Initial setup * Admin routes * Auth login/out routes * Contact
151 lines
4.2 KiB
Go
151 lines
4.2 KiB
Go
// Package core implements the core source code of kirsle/blog.
|
|
package core
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"path/filepath"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/kirsle/blog/core/internal/controllers/admin"
|
|
"github.com/kirsle/blog/core/internal/controllers/authctl"
|
|
"github.com/kirsle/blog/core/internal/controllers/contact"
|
|
"github.com/kirsle/blog/core/internal/controllers/setup"
|
|
"github.com/kirsle/blog/core/internal/log"
|
|
"github.com/kirsle/blog/core/internal/markdown"
|
|
"github.com/kirsle/blog/core/internal/middleware"
|
|
"github.com/kirsle/blog/core/internal/middleware/auth"
|
|
"github.com/kirsle/blog/core/internal/models/comments"
|
|
"github.com/kirsle/blog/core/internal/models/posts"
|
|
"github.com/kirsle/blog/core/internal/models/settings"
|
|
"github.com/kirsle/blog/core/internal/models/users"
|
|
"github.com/kirsle/blog/core/internal/render"
|
|
"github.com/kirsle/blog/core/internal/responses"
|
|
"github.com/kirsle/blog/core/internal/sessions"
|
|
"github.com/kirsle/blog/jsondb"
|
|
"github.com/kirsle/blog/jsondb/caches"
|
|
"github.com/kirsle/blog/jsondb/caches/null"
|
|
"github.com/kirsle/blog/jsondb/caches/redis"
|
|
"github.com/shurcooL/github_flavored_markdown/gfmstyle"
|
|
"github.com/urfave/negroni"
|
|
)
|
|
|
|
// Blog is the root application object that maintains the app configuration
|
|
// and helper objects.
|
|
type Blog struct {
|
|
Debug bool
|
|
|
|
// DocumentRoot is the core static files root; UserRoot masks over it.
|
|
DocumentRoot string
|
|
UserRoot string
|
|
|
|
DB *jsondb.DB
|
|
Cache caches.Cacher
|
|
|
|
// Web app objects.
|
|
n *negroni.Negroni // Negroni middleware manager
|
|
r *mux.Router // Router
|
|
}
|
|
|
|
// New initializes the Blog application.
|
|
func New(documentRoot, userRoot string) *Blog {
|
|
return &Blog{
|
|
DocumentRoot: documentRoot,
|
|
UserRoot: userRoot,
|
|
DB: jsondb.New(filepath.Join(userRoot, ".private")),
|
|
Cache: null.New(),
|
|
}
|
|
}
|
|
|
|
// Run quickly configures and starts the HTTP server.
|
|
func (b *Blog) Run(address string) {
|
|
b.Configure()
|
|
b.SetupHTTP()
|
|
b.ListenAndServe(address)
|
|
}
|
|
|
|
// Configure initializes (or reloads) the blog's configuration, and binds the
|
|
// settings in sub-packages.
|
|
func (b *Blog) Configure() {
|
|
// Load the site config, or start with defaults if not found.
|
|
settings.DB = b.DB
|
|
config, err := settings.Load()
|
|
if err != nil {
|
|
config = settings.Defaults()
|
|
}
|
|
|
|
// Bind configs in sub-packages.
|
|
render.UserRoot = &b.UserRoot
|
|
render.DocumentRoot = &b.DocumentRoot
|
|
|
|
// Initialize the session cookie store.
|
|
sessions.SetSecretKey([]byte(config.Security.SecretKey))
|
|
users.HashCost = config.Security.HashCost
|
|
|
|
// Initialize the rest of the models.
|
|
posts.DB = b.DB
|
|
users.DB = b.DB
|
|
comments.DB = b.DB
|
|
|
|
// Redis cache?
|
|
if config.Redis.Enabled {
|
|
addr := fmt.Sprintf("%s:%d", config.Redis.Host, config.Redis.Port)
|
|
log.Info("Connecting to Redis at %s/%d", addr, config.Redis.DB)
|
|
cache, err := redis.New(
|
|
addr,
|
|
config.Redis.DB,
|
|
config.Redis.Prefix,
|
|
)
|
|
if err != nil {
|
|
log.Error("Redis init error: %s", err.Error())
|
|
} else {
|
|
b.Cache = cache
|
|
b.DB.Cache = cache
|
|
markdown.Cache = cache
|
|
}
|
|
}
|
|
}
|
|
|
|
// SetupHTTP initializes the Negroni middleware engine and registers routes.
|
|
func (b *Blog) SetupHTTP() {
|
|
// Initialize the router.
|
|
r := mux.NewRouter()
|
|
setup.Register(r)
|
|
authctl.Register(r)
|
|
admin.Register(r, b.MustLogin)
|
|
contact.Register(r, b.Error)
|
|
b.BlogRoutes(r)
|
|
b.CommentRoutes(r)
|
|
|
|
// GitHub Flavored Markdown CSS.
|
|
r.Handle("/css/gfm.css", http.StripPrefix("/css", http.FileServer(gfmstyle.Assets)))
|
|
|
|
r.PathPrefix("/").HandlerFunc(b.PageHandler)
|
|
r.NotFoundHandler = http.HandlerFunc(b.PageHandler)
|
|
|
|
n := negroni.New(
|
|
negroni.NewRecovery(),
|
|
negroni.NewLogger(),
|
|
negroni.HandlerFunc(sessions.Middleware),
|
|
negroni.HandlerFunc(middleware.CSRF(b.Forbidden)),
|
|
negroni.HandlerFunc(auth.Middleware),
|
|
)
|
|
n.UseHandler(r)
|
|
|
|
// Keep references handy elsewhere in the app.
|
|
b.n = n
|
|
b.r = r
|
|
}
|
|
|
|
// ListenAndServe begins listening on the given bind address.
|
|
func (b *Blog) ListenAndServe(address string) {
|
|
log.Info("Listening on %s", address)
|
|
http.ListenAndServe(address, b.n)
|
|
}
|
|
|
|
// MustLogin handles errors from the LoginRequired middleware by redirecting
|
|
// the user to the login page.
|
|
func (b *Blog) MustLogin(w http.ResponseWriter, r *http.Request) {
|
|
responses.Redirect(w, "/login?next="+r.URL.Path)
|
|
}
|