1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/http_readers.go

114 lines
3.3 KiB
Go
Raw Normal View History

package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path/filepath"
"strings"
2020-08-19 18:54:23 +00:00
"github.com/bouncepaw/mycorrhiza/history"
2020-10-30 13:25:48 +00:00
"github.com/bouncepaw/mycorrhiza/markup"
2020-08-31 17:52:26 +00:00
"github.com/bouncepaw/mycorrhiza/templates"
2020-08-05 20:19:14 +00:00
"github.com/bouncepaw/mycorrhiza/tree"
2021-01-24 07:30:14 +00:00
"github.com/bouncepaw/mycorrhiza/user"
2020-08-31 17:52:26 +00:00
"github.com/bouncepaw/mycorrhiza/util"
)
func init() {
http.HandleFunc("/page/", handlerPage)
http.HandleFunc("/text/", handlerText)
http.HandleFunc("/binary/", handlerBinary)
http.HandleFunc("/rev/", handlerRevision)
}
// handlerRevision displays a specific revision of text part a page
func handlerRevision(w http.ResponseWriter, rq *http.Request) {
log.Println(rq.URL)
var (
shorterUrl = strings.TrimPrefix(rq.URL.Path, "/rev/")
2020-09-29 15:04:22 +00:00
firstSlashIndex = strings.IndexRune(shorterUrl, '/')
revHash = shorterUrl[:firstSlashIndex]
hyphaName = CanonicalName(shorterUrl[firstSlashIndex+1:])
contents = fmt.Sprintf(`<p>This hypha had no text at this revision.</p>`)
textPath = hyphaName + ".myco"
textContents, err = history.FileAtRevision(textPath, revHash)
2021-01-24 07:30:14 +00:00
u = user.FromRequest(rq)
)
if err == nil {
2020-12-17 12:59:59 +00:00
contents = markup.Doc(hyphaName, textContents).AsHTML()
}
2020-11-29 11:32:52 +00:00
treeHTML, _, _ := tree.Tree(hyphaName, IterateHyphaNamesWith)
2020-08-31 17:52:26 +00:00
page := templates.RevisionHTML(
rq,
2020-08-31 17:52:26 +00:00
hyphaName,
naviTitle(hyphaName),
contents,
2020-11-29 11:32:52 +00:00
treeHTML,
2020-08-31 17:52:26 +00:00
revHash,
)
w.Header().Set("Content-Type", "text/html;charset=utf-8")
w.WriteHeader(http.StatusOK)
2021-01-24 07:30:14 +00:00
w.Write([]byte(base(hyphaName, page, u)))
2020-08-19 18:54:23 +00:00
}
// handlerText serves raw source text of the hypha.
func handlerText(w http.ResponseWriter, rq *http.Request) {
log.Println(rq.URL)
hyphaName := HyphaNameFromRq(rq, "text")
if data, ok := HyphaStorage[hyphaName]; ok {
log.Println("Serving", data.textPath)
2020-11-02 19:24:50 +00:00
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
http.ServeFile(w, rq, data.textPath)
}
}
// handlerBinary serves binary part of the hypha.
func handlerBinary(w http.ResponseWriter, rq *http.Request) {
log.Println(rq.URL)
hyphaName := HyphaNameFromRq(rq, "binary")
if data, ok := HyphaStorage[hyphaName]; ok {
log.Println("Serving", data.binaryPath)
w.Header().Set("Content-Type", ExtensionToMime(filepath.Ext(data.binaryPath)))
http.ServeFile(w, rq, data.binaryPath)
}
}
// handlerPage is the main hypha action that displays the hypha and the binary upload form along with some navigation.
func handlerPage(w http.ResponseWriter, rq *http.Request) {
log.Println(rq.URL)
var (
hyphaName = HyphaNameFromRq(rq, "page")
data, hyphaExists = HyphaStorage[hyphaName]
2021-01-19 18:08:59 +00:00
hasAmnt = hyphaExists && data.binaryPath != ""
2020-08-31 17:52:26 +00:00
contents string
2020-12-17 12:59:59 +00:00
openGraph string
2021-01-24 07:30:14 +00:00
u = user.FromRequest(rq)
)
if hyphaExists {
fileContentsT, errT := ioutil.ReadFile(data.textPath)
_, errB := os.Stat(data.binaryPath)
if errT == nil {
2020-12-17 12:59:59 +00:00
md := markup.Doc(hyphaName, string(fileContentsT))
contents = md.AsHTML()
openGraph = md.OpenGraphHTML()
}
if !os.IsNotExist(errB) {
contents = binaryHtmlBlock(hyphaName, data) + contents
}
}
2020-11-29 11:32:52 +00:00
treeHTML, prevHypha, nextHypha := tree.Tree(hyphaName, IterateHyphaNamesWith)
2020-12-17 12:59:59 +00:00
util.HTTP200Page(w,
templates.BaseHTML(
hyphaName,
templates.PageHTML(rq, hyphaName,
naviTitle(hyphaName),
contents,
2021-01-19 18:08:59 +00:00
treeHTML, prevHypha, nextHypha,
hasAmnt),
2021-01-24 07:30:14 +00:00
u,
2020-12-17 12:59:59 +00:00
openGraph))
}