go/main.go

305 lines
7.7 KiB
Go
Raw Normal View History

package main
import (
"bytes"
2023-02-14 19:06:46 +00:00
"errors"
"fmt"
cp "github.com/otiai10/copy"
"os"
2023-02-04 01:39:51 +00:00
"path/filepath"
"strings"
"text/template"
"github.com/PuerkitoBio/goquery"
2022-08-30 21:52:53 +00:00
"github.com/avelino/awesome-go/pkg/slug"
)
type Link struct {
Title string
Url string
Description string
}
2023-02-14 23:48:07 +00:00
type Category struct {
Title string
Slug string
Description string
2023-02-14 23:49:25 +00:00
Links []Link
}
2023-02-14 17:58:36 +00:00
// Source files
2023-02-04 01:39:51 +00:00
const readmePath = "README.md"
2023-02-14 17:58:36 +00:00
// This files should be copied 'as is' to outDir directory
var staticFiles = []string{
"tmpl/assets",
"tmpl/_redirects",
"tmpl/robots.txt",
}
2023-02-04 01:39:51 +00:00
2023-02-14 18:12:57 +00:00
// TODO: embed
// Templates
var tplIndex = template.Must(template.ParseFiles("tmpl/tmpl.html"))
var tplCategoryIndex = template.Must(template.ParseFiles("tmpl/cat-tmpl.html"))
var tplSitemap = template.Must(template.ParseFiles("tmpl/sitemap-tmpl.xml"))
2023-02-04 01:39:51 +00:00
2023-02-14 17:58:36 +00:00
// Output files
const outDir = "out/" // NOTE: trailing slash is required
var outIndexFile = filepath.Join(outDir, "index.html")
var outSitemapFile = filepath.Join(outDir, "sitemap.xml")
2023-02-04 01:39:51 +00:00
func main() {
2023-02-14 22:10:50 +00:00
if err := renderAll(); err != nil {
panic(err)
}
}
// FIXME: choose a better name
func renderAll() error {
2023-02-14 23:39:11 +00:00
if err := dropCreateDir(outDir); err != nil {
return fmt.Errorf("unable to drop-create out dir: %w", err)
2023-02-04 02:01:22 +00:00
}
2023-02-14 23:39:17 +00:00
if err := renderIndex(readmePath, outIndexFile); err != nil {
2023-02-14 22:10:50 +00:00
return fmt.Errorf("unable to convert markdown to html: %w", err)
}
2023-02-04 01:39:51 +00:00
input, err := os.ReadFile(outIndexFile)
if err != nil {
2023-02-14 22:10:50 +00:00
return fmt.Errorf("unable to read converted html: %w", err)
}
2023-02-04 01:39:51 +00:00
2023-02-14 23:21:17 +00:00
doc, err := goquery.NewDocumentFromReader(bytes.NewReader(input))
if err != nil {
2023-02-14 22:10:50 +00:00
return fmt.Errorf("unable to create goquery instance: %w", err)
}
2023-02-14 23:48:07 +00:00
categories, err := extractCategories(doc)
2023-02-14 23:42:19 +00:00
if err != nil {
return fmt.Errorf("unable to extract categories: %w", err)
}
2023-02-14 23:48:07 +00:00
if err := renderCategories(categories); err != nil {
2023-02-14 22:10:50 +00:00
return fmt.Errorf("unable to render categories: %w", err)
2023-02-04 01:39:51 +00:00
}
2023-02-14 23:48:07 +00:00
if err := rewriteLinksInIndex(doc, categories); err != nil {
return fmt.Errorf("unable to rewrite links in index: %w", err)
}
2023-02-14 23:48:07 +00:00
if err := renderSitemap(categories); err != nil {
2023-02-14 23:05:31 +00:00
return fmt.Errorf("unable to render sitemap: %w", err)
}
for _, srcFilename := range staticFiles {
dstFilename := filepath.Join(outDir, filepath.Base(srcFilename))
fmt.Printf("Copy static file: %s -> %s\n", srcFilename, dstFilename)
if err := cp.Copy(srcFilename, dstFilename); err != nil {
2023-02-14 22:10:50 +00:00
return fmt.Errorf("unable to copy static file `%s` to `%s`: %w", srcFilename, dstFilename, err)
}
}
2023-02-14 22:10:50 +00:00
return nil
}
2023-02-14 23:39:11 +00:00
// dropCreateDir drop and create output directory
func dropCreateDir(dir string) error {
if err := os.RemoveAll(dir); err != nil {
return fmt.Errorf("unable to remove dir: %w", err)
}
if err := mkdirAll(dir); err != nil {
return fmt.Errorf("unable to create dir: %w", err)
}
return nil
}
2023-02-04 01:39:51 +00:00
func mkdirAll(path string) error {
_, err := os.Stat(path)
// NOTE: directory is exists
if err == nil {
return nil
}
// NOTE: unknown error
if !os.IsNotExist(err) {
2023-02-14 23:31:31 +00:00
return fmt.Errorf("unexpected result of dir stat: %w", err)
2023-02-04 01:39:51 +00:00
}
// NOTE: directory is not exists
2023-02-14 23:31:31 +00:00
if err := os.MkdirAll(path, 0755); err != nil {
return fmt.Errorf("unable to midirAll: %w", err)
2023-02-04 01:39:51 +00:00
}
return nil
}
2023-02-14 23:48:07 +00:00
func renderCategories(categories map[string]Category) error {
for _, category := range categories {
categoryDir := filepath.Join(outDir, category.Slug)
if err := mkdirAll(categoryDir); err != nil {
2023-02-14 23:31:31 +00:00
return fmt.Errorf("unable to create category dir `%s`: %w", categoryDir, err)
2023-02-04 01:39:51 +00:00
}
// FIXME: embed templates
// FIXME: parse templates once at start
2023-02-14 17:50:14 +00:00
categoryIndexFilename := filepath.Join(categoryDir, "index.html")
2023-02-14 22:58:11 +00:00
fmt.Printf("Write category Index file: %s\n", categoryIndexFilename)
buf := bytes.NewBuffer(nil)
2023-02-14 23:48:07 +00:00
if err := tplCategoryIndex.Execute(buf, category); err != nil {
2023-02-14 23:31:31 +00:00
return fmt.Errorf("unable to render category `%s`: %w", categoryDir, err)
}
2023-02-14 22:58:11 +00:00
// Sanitize HTML. This is not necessary, but allows to have content
// of all html files in same style.
{
query, err := goquery.NewDocumentFromReader(buf)
if err != nil {
2023-02-14 23:31:31 +00:00
// FIXME: remove `unable to` from all fmt.Errorf
return fmt.Errorf("unable to create goquery instance for `%s`: %w", categoryDir, err)
2023-02-14 22:58:11 +00:00
}
2023-02-14 17:50:14 +00:00
2023-02-14 22:58:11 +00:00
html, err := query.Html()
if err != nil {
2023-02-14 23:31:31 +00:00
return fmt.Errorf("unable to render goquery html for `%s`: %w", categoryDir, err)
2023-02-14 22:58:11 +00:00
}
if err := os.WriteFile(categoryIndexFilename, []byte(html), 0644); err != nil {
2023-02-14 23:31:31 +00:00
return fmt.Errorf("unable to write category file `%s`: %w", categoryDir, err)
2023-02-14 22:58:11 +00:00
}
2023-02-04 01:39:51 +00:00
}
}
2023-02-04 01:39:51 +00:00
return nil
}
2023-02-14 23:48:07 +00:00
func renderSitemap(categories map[string]Category) error {
2023-02-14 17:50:14 +00:00
// FIXME: handle error
2023-02-14 23:05:31 +00:00
f, err := os.Create(outSitemapFile)
if err != nil {
return fmt.Errorf("unable to create sitemap file `%s`: %w", outSitemapFile, err)
}
2023-02-14 17:50:14 +00:00
fmt.Printf("Render Sitemap to: %s\n", outSitemapFile)
2023-02-14 23:48:07 +00:00
if err := tplSitemap.Execute(f, categories); err != nil {
2023-02-14 23:05:31 +00:00
return fmt.Errorf("unable to render sitemap: %w", err)
}
return nil
}
func extractCategories(doc *goquery.Document) (map[string]Category, error) {
categories := make(map[string]Category)
doc.
Find("body #contents").
NextFiltered("ul").
Find("ul").
Each(func(_ int, selUl *goquery.Selection) {
selUl.
Find("li a").
Each(func(_ int, s *goquery.Selection) {
selector, exists := s.Attr("href")
if !exists {
return
}
category, err := makeCategoryByID(selector, doc)
if err != nil {
return
}
categories[selector] = *category
})
})
// FIXME: handle error
return categories, nil
}
2023-02-14 23:48:07 +00:00
func makeCategoryByID(selector string, doc *goquery.Document) (*Category, error) {
var category Category
2023-02-14 19:06:46 +00:00
var err error
2023-02-14 23:48:07 +00:00
doc.Find(selector).EachWithBreak(func(_ int, selCatHeader *goquery.Selection) bool {
2023-02-14 19:24:30 +00:00
selDescr := selCatHeader.NextFiltered("p")
// FIXME: bug. this would select links from all neighboring
// sub-categories until the next category. To prevent this we should
// find only first ul
ul := selCatHeader.NextFilteredUntil("ul", "h2")
2023-02-14 19:06:46 +00:00
var links []Link
2023-02-14 19:24:30 +00:00
ul.Find("li").Each(func(_ int, selLi *goquery.Selection) {
selLink := selLi.Find("a")
url, _ := selLink.Attr("href")
link := Link{
2023-02-14 19:24:30 +00:00
Title: selLink.Text(),
// FIXME: Title contains only title but description contains Title + description
Description: selLi.Text(),
Url: url,
}
links = append(links, link)
})
2023-02-14 19:06:46 +00:00
// FIXME: In this case we would have an empty category in main index.html with link to 404 page.
2022-08-30 14:21:44 +00:00
if len(links) == 0 {
2023-02-14 23:48:07 +00:00
err = errors.New("category does not contain links")
return false
2022-08-30 14:21:44 +00:00
}
2023-02-14 23:48:07 +00:00
category = Category{
2023-02-14 19:24:30 +00:00
Slug: slug.Generate(selCatHeader.Text()),
Title: selCatHeader.Text(),
Description: selDescr.Text(),
2023-02-14 23:49:25 +00:00
Links: links,
}
2023-02-14 23:48:07 +00:00
return true
})
2023-02-14 19:06:46 +00:00
if err != nil {
2023-02-14 23:48:07 +00:00
return nil, fmt.Errorf("unable to build a category: %w", err)
2023-02-14 19:06:46 +00:00
}
2023-02-14 23:48:07 +00:00
return &category, nil
}
2023-02-14 23:48:07 +00:00
func rewriteLinksInIndex(doc *goquery.Document, categories map[string]Category) error {
2023-02-14 23:21:17 +00:00
doc.
Find("body #content ul li ul li a").
Each(func(_ int, s *goquery.Selection) {
href, hrefExists := s.Attr("href")
if !hrefExists {
// FIXME: looks like is an error. Tag `a` in our case always
// should have `href` attr.
return
}
2023-02-14 23:21:17 +00:00
// do not replace links if no page has been created for it
2023-02-14 23:48:07 +00:00
_, catExists := categories[href]
if !catExists {
2023-02-14 23:21:17 +00:00
return
}
2023-02-14 23:21:17 +00:00
// FIXME: parse url
uri := strings.SplitAfter(href, "#")
if len(uri) >= 2 && uri[1] != "contents" {
s.SetAttr("href", uri[1])
}
})
2023-02-14 17:50:14 +00:00
fmt.Printf("Rewrite links in Index file: %s\n", outIndexFile)
2023-02-14 23:21:17 +00:00
resultHtml, err := doc.Html()
if err != nil {
return fmt.Errorf("unable to render html: %w", err)
}
if err := os.WriteFile(outIndexFile, []byte(resultHtml), 0644); err != nil {
return fmt.Errorf("unable to rewrite index file: %w", err)
}
return nil
}