134 lines
3.0 KiB
Go
134 lines
3.0 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"text/template"
|
|
|
|
"github.com/google/go-github/v48/github"
|
|
"golang.org/x/oauth2"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
const (
|
|
postFilesPath = "posts"
|
|
templatePostPath = "templates/post.html"
|
|
|
|
generatedPath = "docs"
|
|
|
|
extHTML = ".html"
|
|
)
|
|
|
|
type templatePostData struct {
|
|
Index string
|
|
Body string
|
|
}
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
|
|
// Cleanup generated path
|
|
if err := os.RemoveAll(generatedPath); err != nil {
|
|
log.Fatalln("Failed to remove all", generatedPath, err)
|
|
}
|
|
|
|
if err := os.MkdirAll(generatedPath, 0o777); err != nil {
|
|
log.Fatalln("Failed to mkdir all", generatedPath)
|
|
}
|
|
|
|
// Read post files directory
|
|
postFiles, err := os.ReadDir(postFilesPath)
|
|
if err != nil {
|
|
log.Fatalln("Failed to read dir", postFilesPath)
|
|
}
|
|
|
|
// Prepare template
|
|
templatePostBytes, err := os.ReadFile(templatePostPath)
|
|
if err != nil {
|
|
log.Fatalln("Failed to read file", templatePostPath, err)
|
|
}
|
|
|
|
templatePost, err := template.New("post").Parse(string(templatePostBytes))
|
|
if err != nil {
|
|
log.Fatalln("Failed to parse template", err)
|
|
}
|
|
|
|
// Prepare GitHub
|
|
ghAccessTokenBytes, err := os.ReadFile(".github_access_token")
|
|
if err != nil {
|
|
log.Fatalln("Failed to read file", ".github_access_token", err)
|
|
}
|
|
|
|
ghTokenSrc := oauth2.StaticTokenSource(
|
|
&oauth2.Token{
|
|
AccessToken: string(ghAccessTokenBytes),
|
|
},
|
|
)
|
|
ghHTTPClient := oauth2.NewClient(ctx, ghTokenSrc)
|
|
ghClient := github.NewClient(ghHTTPClient)
|
|
|
|
eg := new(errgroup.Group)
|
|
|
|
// Generate post files
|
|
for _, postFile := range postFiles {
|
|
if postFile.IsDir() {
|
|
continue
|
|
}
|
|
|
|
postFilename := postFile.Name()
|
|
|
|
eg.Go(func() error {
|
|
// Prepare post file
|
|
mdFilename := filepath.Join(postFilesPath, postFilename)
|
|
mdFileBytes, err := os.ReadFile(mdFilename)
|
|
if err != nil {
|
|
return fmt.Errorf("os: failed to read file %s: %w", mdFilename, err)
|
|
}
|
|
|
|
ghMarkdown, _, err := ghClient.Markdown(ctx, string(mdFileBytes), &github.MarkdownOptions{
|
|
Mode: "markdown",
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("github: failed to markdown: %w", err)
|
|
}
|
|
|
|
// Prepare html file
|
|
htmlFilename := strings.TrimSuffix(postFilename, filepath.Ext(postFilename)) + extHTML
|
|
htmlFilepath := filepath.Join(generatedPath, htmlFilename)
|
|
|
|
htmlFile, err := os.OpenFile(htmlFilepath, os.O_RDWR|os.O_CREATE, 0o600)
|
|
if err != nil {
|
|
return fmt.Errorf("os: failed to open file %s: %w", htmlFilepath, err)
|
|
}
|
|
defer htmlFile.Close()
|
|
|
|
// Ignore index in index file
|
|
indexHTML := `<div><a href="index">Index</a></div>`
|
|
if strings.Contains(postFilename, "index") {
|
|
indexHTML = ""
|
|
}
|
|
|
|
if err := templatePost.Execute(htmlFile, templatePostData{
|
|
Index: indexHTML,
|
|
Body: ghMarkdown,
|
|
}); err != nil {
|
|
return fmt.Errorf("template: failed to execute: %w", err)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
}
|
|
|
|
// Wait for all HTTP fetches to complete.
|
|
if err := eg.Wait(); err != nil {
|
|
log.Fatalln("I am sorry :(", err)
|
|
} else {
|
|
log.Println("Build successfully. Are you happy now?")
|
|
}
|
|
}
|