mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-30 09:59:03 +01:00
82 lines
1.7 KiB
Go
82 lines
1.7 KiB
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"mime"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/jaschaephraim/lrserver"
|
|
"github.com/osteele/gojekyll/site"
|
|
"github.com/pkg/browser"
|
|
)
|
|
|
|
// Server serves the site on HTTP.
|
|
type Server struct {
|
|
sync.Mutex
|
|
Site *site.Site
|
|
lr *lrserver.Server
|
|
}
|
|
|
|
// Run runs the server.
|
|
func (s *Server) Run(open bool, logger func(label, value string)) error {
|
|
cfg := s.Site.Config()
|
|
s.Site.SetAbsoluteURL("")
|
|
address := fmt.Sprintf("%s:%d", cfg.Host, cfg.Port)
|
|
logger("Server address:", "http://"+address+"/")
|
|
if cfg.Watch {
|
|
if err := s.StartLiveReloader(); err != nil {
|
|
return err
|
|
}
|
|
if err := s.watchAndReload(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
http.HandleFunc("/", s.handler)
|
|
c := make(chan error)
|
|
go func() {
|
|
c <- http.ListenAndServe(address, nil)
|
|
}()
|
|
logger("Server running...", "press ctrl-c to stop.")
|
|
if open {
|
|
if err := browser.OpenURL("http://" + address); err != nil {
|
|
fmt.Println("Error opening page:", err)
|
|
}
|
|
}
|
|
return <-c
|
|
}
|
|
|
|
func (s *Server) handler(rw http.ResponseWriter, r *http.Request) {
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
|
|
var (
|
|
site = s.Site
|
|
urlpath = r.URL.Path
|
|
p, found = site.URLPage(urlpath)
|
|
)
|
|
if !found {
|
|
rw.WriteHeader(http.StatusNotFound)
|
|
p, found = site.Routes["/404.html"]
|
|
}
|
|
if !found {
|
|
fmt.Fprintf(rw, "404 page not found: %s\n", urlpath) // nolint: gas
|
|
return
|
|
}
|
|
mimeType := mime.TypeByExtension(p.OutputExt())
|
|
if mimeType != "" {
|
|
rw.Header().Set("Content-Type", mimeType)
|
|
}
|
|
var w io.Writer = rw
|
|
if strings.HasPrefix(mimeType, "text/html;") {
|
|
w = NewLiveReloadInjector(w)
|
|
}
|
|
err := site.WriteDocument(w, p)
|
|
if err != nil {
|
|
fmt.Fprintf(w, "<div>%s</div>", err)
|
|
fmt.Printf("Error rendering %s: %s\n", urlpath, err)
|
|
}
|
|
}
|