2021-03-14 20:49:58 +00:00
|
|
|
package website
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-03-21 20:38:37 +00:00
|
|
|
"errors"
|
2021-04-26 06:56:49 +00:00
|
|
|
"fmt"
|
2021-03-14 20:49:58 +00:00
|
|
|
"net/http"
|
2021-03-21 20:38:37 +00:00
|
|
|
"strings"
|
2021-04-26 06:56:49 +00:00
|
|
|
"time"
|
2021-03-14 20:49:58 +00:00
|
|
|
|
2021-03-22 03:07:18 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/auth"
|
2021-03-21 20:38:37 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/db"
|
2021-03-22 03:07:18 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/logging"
|
2021-03-21 20:38:37 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/models"
|
|
|
|
"git.handmade.network/hmn/hmn/src/oops"
|
2021-04-26 06:56:49 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/perf"
|
2021-03-14 20:49:58 +00:00
|
|
|
"git.handmade.network/hmn/hmn/src/templates"
|
|
|
|
"github.com/jackc/pgx/v4/pgxpool"
|
2021-05-03 22:45:17 +00:00
|
|
|
"github.com/teacat/noire"
|
2021-03-14 20:49:58 +00:00
|
|
|
)
|
|
|
|
|
2021-04-26 06:56:49 +00:00
|
|
|
func NewWebsiteRoutes(conn *pgxpool.Pool, perfCollector *perf.PerfCollector) http.Handler {
|
2021-04-29 03:07:14 +00:00
|
|
|
router := &Router{}
|
2021-04-06 05:06:19 +00:00
|
|
|
routes := RouteBuilder{
|
|
|
|
Router: router,
|
2021-04-29 03:07:14 +00:00
|
|
|
Middleware: func(h Handler) Handler {
|
|
|
|
return func(c *RequestContext) (res ResponseData) {
|
2021-04-06 05:06:19 +00:00
|
|
|
c.Conn = conn
|
2021-04-29 03:07:14 +00:00
|
|
|
|
|
|
|
logPerf := TrackRequestPerf(c, perfCollector)
|
|
|
|
defer logPerf()
|
|
|
|
|
|
|
|
defer LogContextErrors(c, res)
|
|
|
|
|
|
|
|
return h(c)
|
|
|
|
}
|
2021-04-26 06:56:49 +00:00
|
|
|
},
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
mainRoutes := routes
|
2021-04-29 03:07:14 +00:00
|
|
|
mainRoutes.Middleware = func(h Handler) Handler {
|
|
|
|
return func(c *RequestContext) (res ResponseData) {
|
|
|
|
c.Conn = conn
|
|
|
|
|
|
|
|
logPerf := TrackRequestPerf(c, perfCollector)
|
|
|
|
defer logPerf()
|
|
|
|
|
|
|
|
defer LogContextErrors(c, res)
|
|
|
|
|
|
|
|
ok, errRes := LoadCommonWebsiteData(c)
|
|
|
|
if !ok {
|
|
|
|
return errRes
|
|
|
|
}
|
|
|
|
|
|
|
|
return h(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
routes.POST("^/login$", Login)
|
|
|
|
routes.GET("^/logout$", Logout)
|
|
|
|
routes.StdHandler("^/public/.*$",
|
|
|
|
http.StripPrefix("/public/", http.FileServer(http.Dir("public"))),
|
2021-04-06 05:06:19 +00:00
|
|
|
)
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
mainRoutes.GET("^/$", func(c *RequestContext) ResponseData {
|
2021-04-22 23:02:50 +00:00
|
|
|
if c.CurrentProject.IsHMN() {
|
2021-04-06 05:06:19 +00:00
|
|
|
return Index(c)
|
2021-03-31 03:55:19 +00:00
|
|
|
} else {
|
|
|
|
// TODO: Return the project landing page
|
2021-04-06 03:30:11 +00:00
|
|
|
panic("route not implemented")
|
2021-03-31 03:55:19 +00:00
|
|
|
}
|
|
|
|
})
|
2021-04-29 03:07:14 +00:00
|
|
|
mainRoutes.GET(`^/feed(/(?P<page>.+)?)?$`, Feed)
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-05-04 12:02:33 +00:00
|
|
|
// TODO(asaf): Trailing slashes break these
|
2021-05-04 01:59:45 +00:00
|
|
|
mainRoutes.GET(`^/(?P<cats>forums(/[^\d]+?)*)/t/(?P<threadid>\d+)(/(?P<page>\d+))?$`, ForumThread)
|
2021-04-29 03:34:22 +00:00
|
|
|
// mainRoutes.GET(`^/(?P<cats>forums(/cat)*)/t/(?P<threadid>\d+)/p/(?P<postid>\d+)$`, ForumPost)
|
2021-05-04 01:59:45 +00:00
|
|
|
mainRoutes.GET(`^/(?P<cats>forums(/[^\d]+?)*)(/(?P<page>\d+))?$`, ForumCategory)
|
2021-04-29 03:34:22 +00:00
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
mainRoutes.GET("^/assets/project.css$", ProjectCSS)
|
2021-03-14 20:49:58 +00:00
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
mainRoutes.AnyMethod("", FourOhFour)
|
2021-03-31 04:20:50 +00:00
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
return router
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
func getBaseData(c *RequestContext) templates.BaseData {
|
2021-03-27 21:10:11 +00:00
|
|
|
var templateUser *templates.User
|
2021-04-06 03:30:11 +00:00
|
|
|
if c.CurrentUser != nil {
|
2021-03-27 21:10:11 +00:00
|
|
|
templateUser = &templates.User{
|
2021-04-06 03:30:11 +00:00
|
|
|
Username: c.CurrentUser.Username,
|
2021-05-04 13:23:02 +00:00
|
|
|
Name: c.CurrentUser.Name,
|
2021-04-06 03:30:11 +00:00
|
|
|
Email: c.CurrentUser.Email,
|
|
|
|
IsSuperuser: c.CurrentUser.IsSuperuser,
|
|
|
|
IsStaff: c.CurrentUser.IsStaff,
|
2021-03-27 21:10:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 20:38:37 +00:00
|
|
|
return templates.BaseData{
|
2021-04-11 21:46:06 +00:00
|
|
|
Project: templates.ProjectToTemplate(c.CurrentProject),
|
|
|
|
User: templateUser,
|
2021-05-03 22:45:17 +00:00
|
|
|
Theme: "light",
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func FetchProjectBySlug(ctx context.Context, conn *pgxpool.Pool, slug string) (*models.Project, error) {
|
2021-03-31 03:55:19 +00:00
|
|
|
subdomainProjectRow, err := db.QueryOne(ctx, conn, models.Project{}, "SELECT $columns FROM handmade_project WHERE slug = $1", slug)
|
2021-03-21 20:38:37 +00:00
|
|
|
if err == nil {
|
2021-05-03 14:51:07 +00:00
|
|
|
subdomainProject := subdomainProjectRow.(*models.Project)
|
|
|
|
return subdomainProject, nil
|
2021-03-21 20:38:37 +00:00
|
|
|
} else if !errors.Is(err, db.ErrNoMatchingRows) {
|
|
|
|
return nil, oops.New(err, "failed to get projects by slug")
|
|
|
|
}
|
|
|
|
|
2021-03-31 03:55:19 +00:00
|
|
|
defaultProjectRow, err := db.QueryOne(ctx, conn, models.Project{}, "SELECT $columns FROM handmade_project WHERE id = $1", models.HMNProjectID)
|
2021-03-21 20:38:37 +00:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, db.ErrNoMatchingRows) {
|
|
|
|
return nil, oops.New(nil, "default project didn't exist in the database")
|
|
|
|
} else {
|
|
|
|
return nil, oops.New(err, "failed to get default project")
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 03:55:19 +00:00
|
|
|
defaultProject := defaultProjectRow.(*models.Project)
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-03-31 03:55:19 +00:00
|
|
|
return defaultProject, nil
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
func ProjectCSS(c *RequestContext) ResponseData {
|
2021-03-18 02:14:06 +00:00
|
|
|
color := c.URL().Query().Get("color")
|
2021-03-14 20:49:58 +00:00
|
|
|
if color == "" {
|
2021-04-06 03:30:11 +00:00
|
|
|
return ErrorResponse(http.StatusBadRequest, NewSafeError(nil, "You must provide a 'color' parameter.\n"))
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-05-03 22:45:17 +00:00
|
|
|
baseData := getBaseData(c)
|
|
|
|
|
|
|
|
bgColor := noire.NewHex(color)
|
|
|
|
h, s, l := bgColor.HSL()
|
|
|
|
if baseData.Theme == "dark" {
|
|
|
|
l = 15
|
|
|
|
} else {
|
|
|
|
l = 95
|
|
|
|
}
|
|
|
|
if s > 20 {
|
|
|
|
s = 20
|
|
|
|
}
|
|
|
|
bgColor = noire.NewHSL(h, s, l)
|
|
|
|
|
2021-03-14 20:49:58 +00:00
|
|
|
templateData := struct {
|
2021-05-03 22:45:17 +00:00
|
|
|
templates.BaseData
|
2021-05-04 01:59:45 +00:00
|
|
|
Color string
|
|
|
|
PostBgColor string
|
2021-03-14 20:49:58 +00:00
|
|
|
}{
|
2021-05-04 01:59:45 +00:00
|
|
|
BaseData: baseData,
|
|
|
|
Color: color,
|
|
|
|
PostBgColor: bgColor.HTML(),
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 03:30:11 +00:00
|
|
|
var res ResponseData
|
2021-04-29 03:07:14 +00:00
|
|
|
res.Header().Add("Content-Type", "text/css")
|
2021-04-26 06:56:49 +00:00
|
|
|
err := res.WriteTemplate("project.css", templateData, c.Perf)
|
2021-03-14 20:49:58 +00:00
|
|
|
if err != nil {
|
2021-04-06 03:30:11 +00:00
|
|
|
return ErrorResponse(http.StatusInternalServerError, oops.New(err, "failed to generate project CSS"))
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
2021-04-06 03:30:11 +00:00
|
|
|
|
|
|
|
return res
|
2021-03-14 20:49:58 +00:00
|
|
|
}
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
func FourOhFour(c *RequestContext) ResponseData {
|
2021-05-04 13:23:02 +00:00
|
|
|
var res ResponseData
|
|
|
|
res.StatusCode = http.StatusNotFound
|
2021-05-04 13:35:30 +00:00
|
|
|
|
|
|
|
if c.Req.Header["Accept"] != nil && strings.Contains(c.Req.Header["Accept"][0], "text/html") {
|
|
|
|
templateData := struct {
|
|
|
|
templates.BaseData
|
|
|
|
Wanted string
|
|
|
|
}{
|
|
|
|
BaseData: getBaseData(c),
|
|
|
|
Wanted: c.FullUrl(),
|
|
|
|
}
|
|
|
|
res.WriteTemplate("404.html", templateData, c.Perf)
|
|
|
|
} else {
|
|
|
|
res.Write([]byte("Not Found"))
|
|
|
|
}
|
2021-05-04 13:23:02 +00:00
|
|
|
return res
|
2021-03-31 04:20:50 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 03:07:14 +00:00
|
|
|
func LoadCommonWebsiteData(c *RequestContext) (bool, ResponseData) {
|
2021-04-26 06:56:49 +00:00
|
|
|
c.Perf.StartBlock("MIDDLEWARE", "Load common website data")
|
|
|
|
defer c.Perf.EndBlock()
|
2021-04-06 05:06:19 +00:00
|
|
|
// get project
|
|
|
|
{
|
|
|
|
slug := ""
|
|
|
|
hostParts := strings.SplitN(c.Req.Host, ".", 3)
|
|
|
|
if len(hostParts) >= 3 {
|
|
|
|
slug = hostParts[0]
|
|
|
|
}
|
2021-03-27 21:10:11 +00:00
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
dbProject, err := FetchProjectBySlug(c.Context(), c.Conn, slug)
|
|
|
|
if err != nil {
|
|
|
|
return false, ErrorResponse(http.StatusInternalServerError, oops.New(err, "failed to fetch current project"))
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
c.CurrentProject = dbProject
|
|
|
|
}
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-04-26 06:56:49 +00:00
|
|
|
{
|
|
|
|
sessionCookie, err := c.Req.Cookie(auth.SessionCookieName)
|
|
|
|
if err == nil {
|
|
|
|
user, err := getCurrentUser(c, sessionCookie.Value)
|
|
|
|
if err != nil {
|
|
|
|
return false, ErrorResponse(http.StatusInternalServerError, oops.New(err, "failed to get current user"))
|
|
|
|
}
|
2021-03-21 20:38:37 +00:00
|
|
|
|
2021-04-26 06:56:49 +00:00
|
|
|
c.CurrentUser = user
|
|
|
|
}
|
|
|
|
// http.ErrNoCookie is the only error Cookie ever returns, so no further handling to do here.
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
2021-04-06 05:06:19 +00:00
|
|
|
|
|
|
|
return true, ResponseData{}
|
2021-03-21 20:38:37 +00:00
|
|
|
}
|
2021-03-27 21:10:11 +00:00
|
|
|
|
2021-04-17 00:01:13 +00:00
|
|
|
// Given a session id, fetches user data from the database. Will return nil if
|
|
|
|
// the user cannot be found, and will only return an error if it's serious.
|
|
|
|
func getCurrentUser(c *RequestContext, sessionId string) (*models.User, error) {
|
2021-04-06 05:06:19 +00:00
|
|
|
session, err := auth.GetSession(c.Context(), c.Conn, sessionId)
|
2021-03-27 21:10:11 +00:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, auth.ErrNoSession) {
|
|
|
|
return nil, nil
|
|
|
|
} else {
|
|
|
|
return nil, oops.New(err, "failed to get current session")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 05:06:19 +00:00
|
|
|
userRow, err := db.QueryOne(c.Context(), c.Conn, models.User{}, "SELECT $columns FROM auth_user WHERE username = $1", session.Username)
|
2021-03-27 21:10:11 +00:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, db.ErrNoMatchingRows) {
|
|
|
|
logging.Debug().Str("username", session.Username).Msg("returning no current user for this request because the user for the session couldn't be found")
|
|
|
|
return nil, nil // user was deleted or something
|
|
|
|
} else {
|
|
|
|
return nil, oops.New(err, "failed to get user for session")
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 03:55:19 +00:00
|
|
|
user := userRow.(*models.User)
|
2021-03-27 21:10:11 +00:00
|
|
|
|
2021-03-31 03:55:19 +00:00
|
|
|
return user, nil
|
2021-03-27 21:10:11 +00:00
|
|
|
}
|
2021-04-29 03:07:14 +00:00
|
|
|
|
|
|
|
func TrackRequestPerf(c *RequestContext, perfCollector *perf.PerfCollector) (after func()) {
|
2021-04-29 03:34:22 +00:00
|
|
|
c.Perf = perf.MakeNewRequestPerf(c.Route, c.Req.URL.Path)
|
2021-04-29 03:07:14 +00:00
|
|
|
return func() {
|
|
|
|
c.Perf.EndRequest()
|
|
|
|
log := logging.Info()
|
|
|
|
blockStack := make([]time.Time, 0)
|
|
|
|
for _, block := range c.Perf.Blocks {
|
|
|
|
for len(blockStack) > 0 && block.End.After(blockStack[len(blockStack)-1]) {
|
|
|
|
blockStack = blockStack[:len(blockStack)-1]
|
|
|
|
}
|
|
|
|
log.Str(fmt.Sprintf("At %9.2fms", c.Perf.MsFromStart(&block)), fmt.Sprintf("%*.s[%s] %s (%.4fms)", len(blockStack)*2, "", block.Category, block.Description, block.DurationMs()))
|
|
|
|
blockStack = append(blockStack, block.End)
|
|
|
|
}
|
2021-04-29 03:34:22 +00:00
|
|
|
log.Msg(fmt.Sprintf("Served %s in %.4fms", c.Perf.Path, float64(c.Perf.End.Sub(c.Perf.Start).Nanoseconds())/1000/1000))
|
2021-04-29 03:07:14 +00:00
|
|
|
perfCollector.SubmitRun(c.Perf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func LogContextErrors(c *RequestContext, res ResponseData) {
|
|
|
|
for _, err := range res.Errors {
|
|
|
|
c.Logger.Error().Err(err).Msg("error occurred during request")
|
|
|
|
}
|
|
|
|
}
|