mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
8a0043468c
* fix gfm compat Signed-off-by: Kirill Danshin <k@guava.by> * fix .travis.yml Signed-off-by: Kirill Danshin <k@guava.by> * requested changes Signed-off-by: Kirill Danshin <k@guava.by>
60 lines
1007 B
Go
60 lines
1007 B
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"text/template"
|
|
|
|
"github.com/gorilla/mux"
|
|
gfm "github.com/shurcooL/github_flavored_markdown"
|
|
)
|
|
|
|
// memory usage optimizations
|
|
const (
|
|
emtyStr = ""
|
|
git = "git"
|
|
checkout = "checkout"
|
|
force = "-f"
|
|
pull = "pull"
|
|
|
|
// options
|
|
readmePath = "./README.md"
|
|
tplPath = "tmpl/tmpl.html"
|
|
idxPath = "tmpl/index.html"
|
|
)
|
|
|
|
var (
|
|
doneResp = []byte("Done!\n")
|
|
)
|
|
|
|
type content struct {
|
|
Body string
|
|
}
|
|
|
|
func generateHTML() {
|
|
// Update repo
|
|
exec.Command(git, checkout, force).Output()
|
|
exec.Command(git, pull).Output()
|
|
|
|
input, _ := ioutil.ReadFile(readmePath)
|
|
body := string(gfm.Markdown(input))
|
|
c := &content{Body: body}
|
|
|
|
t := template.Must(template.ParseFiles(tplPath))
|
|
f, _ := os.Create(idxPath)
|
|
t.Execute(f, c)
|
|
}
|
|
|
|
func hookHandler(w http.ResponseWriter, r *http.Request) {
|
|
go generateHTML()
|
|
w.Write(doneResp)
|
|
}
|
|
|
|
func main() {
|
|
r := mux.NewRouter()
|
|
r.HandleFunc("/hook", hookHandler)
|
|
http.ListenAndServe(":9000", r)
|
|
}
|