2021-12-22 13:14:34 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2023-02-14 19:06:46 +00:00
|
|
|
"errors"
|
2021-12-22 13:14:34 +00:00
|
|
|
"fmt"
|
2023-04-03 11:16:02 +00:00
|
|
|
cp "github.com/otiai10/copy"
|
2021-12-22 13:14:34 +00:00
|
|
|
"os"
|
2023-02-04 01:39:51 +00:00
|
|
|
"path/filepath"
|
2021-12-25 14:32:20 +00:00
|
|
|
"strings"
|
2021-12-22 13:14:34 +00:00
|
|
|
"text/template"
|
|
|
|
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
2022-08-30 21:52:53 +00:00
|
|
|
"github.com/avelino/awesome-go/pkg/slug"
|
2021-12-22 13:14:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Link struct {
|
|
|
|
Title string
|
|
|
|
Url string
|
|
|
|
Description string
|
|
|
|
}
|
|
|
|
|
2023-02-14 23:19:40 +00:00
|
|
|
// FIXME: rename to Category
|
2021-12-22 13:14:34 +00:00
|
|
|
type Object struct {
|
|
|
|
Title string
|
|
|
|
Slug string
|
|
|
|
Description string
|
|
|
|
Items []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:49:59 +00:00
|
|
|
|
2023-02-14 17:58:36 +00:00
|
|
|
// This files should be copied 'as is' to outDir directory
|
2023-02-14 17:49:59 +00:00
|
|
|
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
|
2023-04-03 11:16:02 +00:00
|
|
|
|
|
|
|
var outIndexFile = filepath.Join(outDir, "index.html")
|
|
|
|
var outSitemapFile = filepath.Join(outDir, "sitemap.xml")
|
2023-02-04 01:39:51 +00:00
|
|
|
|
2021-12-22 13:14:34 +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)
|
2022-08-30 13:20:58 +00:00
|
|
|
}
|
2023-02-04 01:39:51 +00:00
|
|
|
|
2023-04-03 11:16:02 +00:00
|
|
|
input, err := os.ReadFile(outIndexFile)
|
2021-12-22 13:14:34 +00:00
|
|
|
if err != nil {
|
2023-02-14 22:10:50 +00:00
|
|
|
return fmt.Errorf("unable to read converted html: %w", err)
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
2023-02-04 01:39:51 +00:00
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
doc, err := goquery.NewDocumentFromReader(bytes.NewReader(input))
|
2021-12-22 13:14:34 +00:00
|
|
|
if err != nil {
|
2023-02-14 22:10:50 +00:00
|
|
|
return fmt.Errorf("unable to create goquery instance: %w", err)
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
2023-02-14 18:56:32 +00:00
|
|
|
objs := make(map[string]Object)
|
2023-02-14 23:21:17 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
obj, err := makeObjByID(selector, doc)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
objs[selector] = *obj
|
|
|
|
})
|
2021-12-22 13:14:34 +00:00
|
|
|
})
|
|
|
|
|
2023-02-14 22:50:57 +00:00
|
|
|
if err := renderCategories(objs); 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 22:26:55 +00:00
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
if err := rewriteLinksInIndex(doc, objs); err != nil {
|
2023-02-14 22:26:55 +00:00
|
|
|
return fmt.Errorf("unable to rewrite links in index: %w", err)
|
|
|
|
}
|
2022-08-30 13:20:58 +00:00
|
|
|
|
2023-02-14 23:05:31 +00:00
|
|
|
if err := renderSitemap(objs); err != nil {
|
|
|
|
return fmt.Errorf("unable to render sitemap: %w", err)
|
|
|
|
}
|
2023-04-03 11:16:02 +00:00
|
|
|
|
2023-02-14 17:49:59 +00:00
|
|
|
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 17:49:59 +00:00
|
|
|
}
|
2023-04-03 11:16:02 +00:00
|
|
|
}
|
2023-02-14 22:10:50 +00:00
|
|
|
|
|
|
|
return nil
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
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 22:50:57 +00:00
|
|
|
func renderCategories(objs map[string]Object) error {
|
2021-12-22 13:14:34 +00:00
|
|
|
for _, obj := range objs {
|
2023-04-03 11:16:02 +00:00
|
|
|
categoryDir := filepath.Join(outDir, obj.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)
|
|
|
|
if err := tplCategoryIndex.Execute(buf, obj); err != nil {
|
2023-02-14 23:31:31 +00:00
|
|
|
return fmt.Errorf("unable to render category `%s`: %w", categoryDir, err)
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
2023-02-04 01:39:51 +00:00
|
|
|
|
|
|
|
return nil
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
2023-02-14 23:05:31 +00:00
|
|
|
func renderSitemap(objs map[string]Object) 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:05:31 +00:00
|
|
|
if err := tplSitemap.Execute(f, objs); err != nil {
|
|
|
|
return fmt.Errorf("unable to render sitemap: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
func makeObjByID(selector string, doc *goquery.Document) (*Object, error) {
|
2023-02-14 19:06:46 +00:00
|
|
|
var obj Object
|
|
|
|
var err error
|
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
doc.Find(selector).Each(func(_ int, selCatHeader *goquery.Selection) {
|
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")
|
2021-12-22 13:14:34 +00:00
|
|
|
|
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")
|
2021-12-22 13:14:34 +00:00
|
|
|
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(),
|
2021-12-22 13:14:34 +00:00
|
|
|
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 19:06:46 +00:00
|
|
|
err = errors.New("object has no links")
|
2022-08-30 14:21:44 +00:00
|
|
|
return
|
|
|
|
}
|
2023-02-14 19:06:46 +00:00
|
|
|
obj = Object{
|
2023-02-14 19:24:30 +00:00
|
|
|
Slug: slug.Generate(selCatHeader.Text()),
|
|
|
|
Title: selCatHeader.Text(),
|
|
|
|
Description: selDescr.Text(),
|
2021-12-22 13:14:34 +00:00
|
|
|
Items: links,
|
|
|
|
}
|
|
|
|
})
|
2023-02-14 19:06:46 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to build an object: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &obj, nil
|
2021-12-22 13:14:34 +00:00
|
|
|
}
|
2021-12-25 14:32:20 +00:00
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
func rewriteLinksInIndex(doc *goquery.Document, objs map[string]Object) error {
|
|
|
|
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
|
|
|
|
}
|
2021-12-25 14:32:20 +00:00
|
|
|
|
2023-02-14 23:21:17 +00:00
|
|
|
// do not replace links if no page has been created for it
|
|
|
|
_, objExists := objs[href]
|
|
|
|
if !objExists {
|
|
|
|
return
|
|
|
|
}
|
2022-08-30 13:20:58 +00:00
|
|
|
|
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])
|
|
|
|
}
|
|
|
|
})
|
2021-12-25 14:32:20 +00:00
|
|
|
|
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()
|
2023-02-14 22:26:55 +00:00
|
|
|
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
|
2021-12-25 14:32:20 +00:00
|
|
|
}
|