package main import ( "bytes" "encoding/json" "flag" "fmt" "github.com/russross/blackfriday" "html/template" "io/ioutil" "log" "net/http" "os" "path/filepath" "strings" "time" ) var ( listen = flag.String("l", ":8080", "set http listener to [ip]:port") root = flag.String("root", "werc", "werc webroot") ) type WercConfig struct { MasterSite string Title string Subtitle string } type WercPage struct { Title string // title Menu []MenuEntry // menu entries Content template.HTML // inner page content Config WercConfig // site-specific config } type MenuEntry struct { Name string Path string This bool Sub []MenuEntry } type Werc struct { root string conf WercConfig tmpl *template.Template } func New(root string) *Werc { w := new(Werc) w.root = root w.tmpl = template.Must(template.ParseGlob(root + "/lib/*.html")) b, err := ioutil.ReadFile(root + "/etc/config.json") if err != nil { log.Printf("no config.json in %s", root) return nil } err = json.Unmarshal(b, &w.conf) if err != nil { log.Printf("%s: %s", root+"/config.json", err) return nil } return w } func cleanname(s string) string { if s == "_werc" { return "" } if strings.HasPrefix(s, "index") { return "" } switch s { case "sitemap.txt", "sitemap.gz": return "" } for _, suf := range []string{".md", ".txt", ".html"} { if strings.HasSuffix(s, suf) { return strings.TrimSuffix(s, suf) } } return s } func ptitle(s string) string { s = strings.TrimSuffix(s, "/") if idx := strings.LastIndex(s, "index"); idx != -1 { s = s[:idx-1] } _, file := filepath.Split(s) for _, suf := range []string{".md", ".txt", ".html"} { if strings.HasSuffix(file, suf) { return strings.TrimSuffix(file, suf) } } return file } func (werc *Werc) genmenu(site, dir string) []MenuEntry { var dirs []string var root []MenuEntry base := werc.root + "/sites/" + site spl := strings.Split(strings.TrimPrefix(filepath.Clean(dir), "/"), string(filepath.Separator)) _, current := filepath.Split(dir) if current != "" { spl = spl[:len(spl)-1] } //log.Printf("base %s path %s spl %+v", base, dir, spl) dirs = append(dirs, "/") for i := range spl { path := "/" + filepath.Join(spl[:i+1]...) dirs = append(dirs, path) } //log.Printf("dirs %v", dirs) var last []MenuEntry for i := range dirs { var sub []MenuEntry b := filepath.Join(base, dirs[i]) fi, _ := ioutil.ReadDir(b) for _, f := range fi { newname, ok := okmenu(b, f) if !ok { continue } me := MenuEntry{Name: newname, Path: filepath.Join(dirs[i], newname)} if f.Mode().IsDir() { me.Path = me.Path + "/" me.Name = me.Name + "/" } // if browing a file, mark it as current if me.Name == current { me.This = true } //log.Printf("me %+v", me) sub = append(sub, me) } if dirs[i] == "/" { root = sub last = root } else { // mark directories as currently being browsed for l, v := range last { _, file := filepath.Split(dirs[i]) if v.Name == file+"/" { last[l].This = true last[l].Sub = sub last = sub } } } } return root } func (werc *Werc) WercCommon(w http.ResponseWriter, r *http.Request, page *WercPage) { site, _, _ := net.SplitHostPort(r.Host) if site == "" { site = werc.conf.MasterSite } path := r.URL.Path page.Menu = werc.genmenu(site, path) conf := werc.root + "/sites/" + site + "/_werc/config.json" b, err := ioutil.ReadFile(conf) if err != nil { log.Printf("%s: %s", conf, err) } err = json.Unmarshal(b, &page.Config) if err != nil { log.Printf("%s: %s", conf, err) } //log.Printf("root %+v", page.Menu) if err := werc.tmpl.ExecuteTemplate(w, "base.html", page); err != nil { log.Printf("%s: %s", r.URL, err) } } // returns true if a path name is ok to show in the navigation func okmenu(base string, fi os.FileInfo) (string, bool) { if strings.HasPrefix(fi.Name(), ".") { return "", false } if fi.Name() == "_werc" { return "", false } if strings.HasPrefix(fi.Name(), "index.") { return "", false } if strings.Contains(fi.Name(), "sitemap.") { return "", false } if fi.Mode().IsDir() { return fi.Name(), true } for _, suf := range []string{".md", ".txt", ".html"} { if strings.HasSuffix(fi.Name(), suf) { return strings.TrimSuffix(fi.Name(), suf), true } } return "", false } func (werc *Werc) WercDir(w http.ResponseWriter, r *http.Request, dir string) { type DirEntry struct { Name string Fi os.FileInfo } type DirData struct { Title string Entries []DirEntry } var data DirData data.Title = r.URL.Path buf := new(bytes.Buffer) fi, err := ioutil.ReadDir(dir) if err != nil { http.Error(w, fmt.Sprintf("%s", err), 500) return } for _, f := range fi { if name := cleanname(f.Name()); name != "" { e := DirEntry{Name: name, Fi: f} data.Entries = append(data.Entries, e) } } werc.tmpl.ExecuteTemplate(buf, "directory.html", data) werc.WercCommon(w, r, &WercPage{Title: ptitle(dir), Content: template.HTML(buf.String())}) } func (werc *Werc) WercMd(w http.ResponseWriter, r *http.Request, path string) { b, err := ioutil.ReadFile(path) if err != nil { http.Error(w, fmt.Sprintf("%s", err), 404) return } md := blackfriday.MarkdownBasic(b) werc.WercCommon(w, r, &WercPage{Title: ptitle(path), Content: template.HTML(string(md))}) } func (werc *Werc) WercHTML(w http.ResponseWriter, r *http.Request, path string) { b, err := ioutil.ReadFile(path) if err != nil { http.Error(w, fmt.Sprintf("%s", err), 404) return } werc.WercCommon(w, r, &WercPage{Title: ptitle(path), Content: template.HTML(string(b))}) } func (werc *Werc) WercTXT(w http.ResponseWriter, r *http.Request, path string) { b, err := ioutil.ReadFile(path) if err != nil { http.Error(w, fmt.Sprintf("%s", err), 404) return } buf := new(bytes.Buffer) werc.tmpl.ExecuteTemplate(buf, "text.html", string(b)) werc.WercCommon(w, r, &WercPage{Title: ptitle(path), Content: template.HTML(buf.String())}) } func (werc *Werc) Werc404(w http.ResponseWriter, r *http.Request) { http.NotFound(w, r) } func (werc *Werc) ServeHTTP(w http.ResponseWriter, r *http.Request) { log.Printf("%s", r.URL) site, _, _ := net.SplitHostPort(r.Host) if site == "" { site = werc.conf.MasterSite } path := r.URL.Path base := werc.root + "/sites/" + site if strings.HasSuffix(path, "/index") { http.Redirect(w, r, strings.TrimSuffix(path, "/index"), http.StatusMovedPermanently) return } if !strings.HasSuffix(path, "/") { if st, err := os.Stat(base + path); err == nil { if st.Mode().IsDir() { http.Redirect(w, r, path+"/", http.StatusMovedPermanently) return } } } // various format handling sufferring := map[string]func(w http.ResponseWriter, r *http.Request, path string){ "md": werc.WercMd, "html": werc.WercHTML, "txt": werc.WercTXT, } for suf, handler := range sufferring { f := base if strings.HasSuffix(path, "/") { f = filepath.Join(f, path, "index."+suf) } else { f = filepath.Join(f, path+"."+suf) } if _, err := os.Stat(f); err == nil { log.Printf("%s %s", suf, f) handler(w, r, f) return } } if st, err := os.Stat(base + path); err == nil { if st.Mode().IsDir() { // directory handling log.Printf("d %s", base+path) werc.WercDir(w, r, base+path) return } else { // plain file handling log.Printf("f %s", base+path) http.ServeFile(w, r, base+path) return } } werc.Werc404(w, r) } func main() { flag.Parse() w := New(*root) mux := http.NewServeMux() mux.Handle("/", w) mux.Handle("/pub/", http.StripPrefix("/pub/", http.FileServer(http.Dir(filepath.Join(w.root, "pub"))))) s := &http.Server{ Addr: *listen, Handler: mux, ReadTimeout: 10 * time.Second, WriteTimeout: 10 * time.Second, MaxHeaderBytes: 1 << 20, } log.Fatal(s.ListenAndServe()) }