moth/cmd/transpile/main.go

184 lines
3.4 KiB
Go
Raw Normal View History

package main
import (
"bufio"
"bytes"
2019-08-17 13:09:09 -06:00
"encoding/json"
"flag"
"fmt"
2019-08-17 13:09:09 -06:00
"gopkg.in/russross/blackfriday.v2"
"gopkg.in/yaml.v2"
"io"
2019-08-17 13:09:09 -06:00
"log"
"net/mail"
2019-08-17 13:09:09 -06:00
"os"
"strings"
)
2019-08-17 13:09:09 -06:00
type Attachment struct {
Filename string // Filename presented as part of puzzle
FilesystemPath string // Filename in backing FS (URL, mothball, or local FS)
Listed bool // Whether this file is listed as an attachment
}
type Puzzle struct {
Pre struct {
2019-08-17 13:09:09 -06:00
Authors []string
Attachments []Attachment
AnswerPattern string
Body string
}
Post struct {
Objective string
2019-08-17 13:09:09 -06:00
Success struct {
Acceptable string
Mastery string
}
KSAs []string
}
Debug struct {
2019-08-17 13:09:09 -06:00
Log []string
Errors []string
Hints []string
Summary string
}
2019-08-17 13:09:09 -06:00
Answers []string
}
2019-08-17 13:09:09 -06:00
type HeaderParser func([]byte) (*Puzzle, error)
func YamlParser(input []byte) (*Puzzle, error) {
puzzle := new(Puzzle)
2019-08-17 13:09:09 -06:00
err := yaml.Unmarshal(input, puzzle)
if err != nil {
return nil, err
}
2019-08-17 13:09:09 -06:00
return puzzle, nil
}
2019-08-17 13:09:09 -06:00
func Rfc822Parser(input []byte) (*Puzzle, error) {
msgBytes := append(input, '\n')
r := bytes.NewReader(msgBytes)
m, err := mail.ReadMessage(r)
if err != nil {
return nil, err
}
2019-08-17 13:09:09 -06:00
puzzle := new(Puzzle)
for key, val := range m.Header {
key = strings.ToLower(key)
switch key {
2019-08-17 13:09:09 -06:00
case "author":
puzzle.Pre.Authors = val
case "pattern":
puzzle.Pre.AnswerPattern = val[0]
case "answer":
puzzle.Answers = val
case "summary":
puzzle.Debug.Summary = val[0]
case "hint":
puzzle.Debug.Hints = val
case "ksa":
puzzle.Post.KSAs = val
case "file":
for _, txt := range val {
parts := strings.SplitN(txt, " ", 3)
attachment := Attachment{}
attachment.FilesystemPath = parts[0]
if len(parts) > 1 {
attachment.Filename = parts[1]
} else {
attachment.Filename = attachment.FilesystemPath
}
if (len(parts) > 2) && (parts[2] == "hidden") {
attachment.Listed = false
} else {
attachment.Listed = true
}
puzzle.Pre.Attachments = append(puzzle.Pre.Attachments, attachment)
}
default:
return nil, fmt.Errorf("Unknown header field: %s", key)
}
}
2019-08-17 13:09:09 -06:00
return puzzle, nil
}
2019-08-17 13:09:09 -06:00
func parse(r io.Reader) error {
headerEnd := ""
headerBuf := new(bytes.Buffer)
headerParser := Rfc822Parser
scanner := bufio.NewScanner(r)
lineNo := 0
for scanner.Scan() {
line := scanner.Text()
lineNo += 1
if lineNo == 1 {
if line == "---" {
headerParser = YamlParser
headerEnd = "---"
continue
} else {
headerParser = Rfc822Parser
}
}
if line == headerEnd {
break
}
headerBuf.WriteString(line)
headerBuf.WriteRune('\n')
}
2019-08-17 13:09:09 -06:00
bodyBuf := new(bytes.Buffer)
for scanner.Scan() {
line := scanner.Text()
lineNo += 1
bodyBuf.WriteString(line)
bodyBuf.WriteRune('\n')
}
2019-08-17 13:09:09 -06:00
puzzle, err := headerParser(headerBuf.Bytes())
if err != nil {
return err
}
2019-08-17 13:09:09 -06:00
bodyB := blackfriday.Run(bodyBuf.Bytes())
2019-08-17 13:09:09 -06:00
if (puzzle.Pre.Body != "") && (len(bodyB) > 0) {
log.Print("Body specified in header; overwriting...")
}
puzzle.Pre.Body = string(bodyB)
puzzleB, _ := json.MarshalIndent(puzzle, "", " ")
fmt.Println(string(puzzleB))
return nil
}
func main() {
flag.Parse()
2019-08-17 13:09:09 -06:00
if flag.NArg() < 1 {
fmt.Fprintf(flag.CommandLine.Output(), "Error: no files to parse\n\n")
flag.PrintDefaults()
os.Exit(1)
}
2019-08-17 13:09:09 -06:00
for _, filename := range flag.Args() {
f, err := os.Open(filename)
if err != nil {
log.Fatal(err)
}
defer f.Close()
2019-08-17 13:09:09 -06:00
if err := parse(f); err != nil {
log.Fatal(err)
}
}
}