summaryrefslogtreecommitdiff
path: root/main.go
blob: 7fd73d228924fc6dc459819d5d2f6f0be4ffd079 (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package main

import (
	"fmt"
	"github.com/gomarkdown/markdown"
	"github.com/gomarkdown/markdown/html"
	"github.com/gomarkdown/markdown/parser"
	"html/template"
	"io"
	"log"
	"net/http"
	"os"
	"slices"
)

func GetHome(w http.ResponseWriter, r *http.Request) {
	log.Println("Request for:", r.URL.String())

	if r.URL.String() != "/" {
		ErrorPage(w, "Page Not Found.", 404)
		return
	}

	t := template.Must(template.ParseFiles("templates/template.html"))

	html, err := MarkdownToHTML("static/home.md")
	if err != nil {
		ErrorPage(w, "Internal Server Error", 500)
	} else {
		t.Execute(w, template.HTML(html))
	}
}

func GetFiles(w http.ResponseWriter, r *http.Request) {
	log.Println("Request for:", r.URL.String())
	url := fmt.Sprintf("static%s", r.URL.String())

	allowed := []string{
		"static/rss.xml",
		"static/card",
		"static/css/main.css",
		"static/logos/FirstInitialLogo.svg",
		"static/logos/FullNameLogo.svg",
		"static/logos/favicon.png",
		"static/logos/favicon.svg",
		"static/logos/favicon16.png",
		"static/logos/favicon32.png",
		"static/robots.txt",
	}

	if slices.Contains(allowed, url) {
		http.ServeFile(w, r, url)
	} else {
		ErrorPage(w, "Page Not Found.", 404)
	}
}

func MarkdownToHTML(path string) (string, error) {
	extensions := parser.CommonExtensions | parser.AutoHeadingIDs | parser.NoEmptyLineBeforeBlock
	p := parser.NewWithExtensions(extensions)

	f, err := os.Open(path)
	if err != nil {
		return "", err
	}
	defer f.Close()

	md, err := io.ReadAll(f)
	if err != nil {
		return "", err
	}

	doc := p.Parse(md)

	htmlFlags := html.CommonFlags | html.HrefTargetBlank
	opts := html.RendererOptions{Flags: htmlFlags}
	renderer := html.NewRenderer(opts)

	return string(markdown.Render(doc, renderer)), nil
}

func ErrorPage(w http.ResponseWriter, message string, code int) {
	log.Println(code, message)
	t := template.Must(template.ParseFiles("templates/error.html"))
	t.Execute(w, struct {
		Code    int
		Message string
	}{
		Code:    code,
		Message: message,
	})
}

func Usage() {
	fmt.Fprintf(os.Stderr, "%s [--port port]\n", os.Args[0])
}

func main() {
	port := ":8000"

	for i := 1; i < len(os.Args); i++ {
		switch os.Args[i] {
		case "--port":
			if i+1 >= len(os.Args) {
				Usage()
			} else {
				port = ":" + os.Args[i+1]
				i++
			}
		default:
			log.Println("Unknown option: ", os.Args[i])
			Usage()
		}
	}

	http.HandleFunc("/robots.txt", GetFiles)
	http.HandleFunc("/rss.xml", GetFiles)
	http.HandleFunc("/card", GetFiles)
	http.HandleFunc("/css/", GetFiles)
	http.HandleFunc("/logos/", GetFiles)
	http.HandleFunc("/", GetHome)
	log.Fatal(http.ListenAndServe(port, nil))
}