2021-05-09 10:42:12 +00:00
|
|
|
|
package web
|
2020-08-05 15:08:59 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2021-09-23 09:36:54 +00:00
|
|
|
|
"io"
|
2020-08-05 15:08:59 +00:00
|
|
|
|
"log"
|
|
|
|
|
"net/http"
|
|
|
|
|
"os"
|
2020-10-22 17:12:12 +00:00
|
|
|
|
"path/filepath"
|
2020-08-20 17:20:13 +00:00
|
|
|
|
"strings"
|
2020-08-05 15:08:59 +00:00
|
|
|
|
|
2021-07-15 17:46:35 +00:00
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
|
2021-09-12 08:58:03 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/cfg"
|
2020-08-19 18:54:23 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/history"
|
2021-02-17 18:41:35 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/hyphae"
|
2021-09-06 17:46:34 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/l18n"
|
2021-01-28 19:07:21 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/mimetype"
|
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"
|
2021-02-20 15:48:51 +00:00
|
|
|
|
"github.com/bouncepaw/mycorrhiza/views"
|
2021-05-25 07:11:16 +00:00
|
|
|
|
|
2021-10-05 20:10:28 +00:00
|
|
|
|
"github.com/bouncepaw/mycomarkup/v3"
|
|
|
|
|
"github.com/bouncepaw/mycomarkup/v3/mycocontext"
|
|
|
|
|
"github.com/bouncepaw/mycomarkup/v3/tools"
|
2020-08-05 15:08:59 +00:00
|
|
|
|
)
|
|
|
|
|
|
2021-07-15 17:46:35 +00:00
|
|
|
|
func initReaders(r *mux.Router) {
|
|
|
|
|
r.PathPrefix("/page/").HandlerFunc(handlerHypha)
|
|
|
|
|
r.PathPrefix("/hypha/").HandlerFunc(handlerHypha)
|
|
|
|
|
r.PathPrefix("/text/").HandlerFunc(handlerText)
|
|
|
|
|
r.PathPrefix("/binary/").HandlerFunc(handlerBinary)
|
|
|
|
|
r.PathPrefix("/rev/").HandlerFunc(handlerRevision)
|
2021-09-23 09:36:54 +00:00
|
|
|
|
r.PathPrefix("/rev-text/").HandlerFunc(handlerRevisionText)
|
2021-07-15 17:46:35 +00:00
|
|
|
|
r.PathPrefix("/primitive-diff/").HandlerFunc(handlerPrimitiveDiff)
|
|
|
|
|
r.PathPrefix("/attachment/").HandlerFunc(handlerAttachment)
|
2021-02-24 17:34:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handlerAttachment(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
2021-02-24 17:34:42 +00:00
|
|
|
|
var (
|
2021-05-09 10:42:12 +00:00
|
|
|
|
hyphaName = util.HyphaNameFromRq(rq, "attachment")
|
2021-02-24 17:34:42 +00:00
|
|
|
|
h = hyphae.ByName(hyphaName)
|
|
|
|
|
u = user.FromRequest(rq)
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc = l18n.FromRequest(rq)
|
2021-02-24 17:34:42 +00:00
|
|
|
|
)
|
|
|
|
|
util.HTTP200Page(w,
|
|
|
|
|
views.BaseHTML(
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("ui.attach_title", &l18n.Replacements{"name": util.BeautifulName(hyphaName)}),
|
2021-02-24 17:34:42 +00:00
|
|
|
|
views.AttachmentMenuHTML(rq, h, u),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc,
|
2021-02-24 17:34:42 +00:00
|
|
|
|
u))
|
2020-08-20 17:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-14 15:01:32 +00:00
|
|
|
|
func handlerPrimitiveDiff(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
2021-03-14 15:01:32 +00:00
|
|
|
|
var (
|
2021-10-01 17:12:16 +00:00
|
|
|
|
shorterURL = strings.TrimPrefix(rq.URL.Path, "/primitive-diff/")
|
|
|
|
|
firstSlashIndex = strings.IndexRune(shorterURL, '/')
|
|
|
|
|
revHash = shorterURL[:firstSlashIndex]
|
|
|
|
|
hyphaName = util.CanonicalName(shorterURL[firstSlashIndex+1:])
|
2021-03-14 15:01:32 +00:00
|
|
|
|
h = hyphae.ByName(hyphaName)
|
|
|
|
|
u = user.FromRequest(rq)
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc = l18n.FromRequest(rq)
|
2021-03-14 15:01:32 +00:00
|
|
|
|
)
|
|
|
|
|
util.HTTP200Page(w,
|
|
|
|
|
views.BaseHTML(
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("ui.diff_title", &l18n.Replacements{"name": util.BeautifulName(hyphaName), "rev": revHash}),
|
2021-03-14 15:01:32 +00:00
|
|
|
|
views.PrimitiveDiffHTML(rq, h, u, revHash),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc,
|
2021-03-14 15:01:32 +00:00
|
|
|
|
u))
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-23 09:36:54 +00:00
|
|
|
|
// handlerRevisionText sends Mycomarkup text of the hypha at the given revision. See also: handlerRevision, handlerText.
|
|
|
|
|
//
|
|
|
|
|
// /rev-text/<revHash>/<hyphaName>
|
|
|
|
|
func handlerRevisionText(w http.ResponseWriter, rq *http.Request) {
|
|
|
|
|
util.PrepareRq(rq)
|
|
|
|
|
var (
|
2021-10-01 17:12:16 +00:00
|
|
|
|
shorterURL = strings.TrimPrefix(rq.URL.Path, "/rev-text/")
|
|
|
|
|
firstSlashIndex = strings.IndexRune(shorterURL, '/')
|
|
|
|
|
revHash = shorterURL[:firstSlashIndex]
|
|
|
|
|
hyphaName = util.CanonicalName(shorterURL[firstSlashIndex+1:])
|
2021-09-23 09:36:54 +00:00
|
|
|
|
h = hyphae.ByName(hyphaName)
|
|
|
|
|
textContents, err = history.FileAtRevision(h.TextPartPath(), revHash)
|
|
|
|
|
)
|
|
|
|
|
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
|
|
|
|
if err != nil {
|
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
|
log.Printf("While serving text of ‘%s’ at revision ‘%s’: %s\n", hyphaName, revHash, err.Error())
|
|
|
|
|
_, _ = io.WriteString(w, "Error: "+err.Error())
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
log.Printf("Serving text of ‘%s’ from ‘%s’ at revision ‘%s’\n", hyphaName, h.TextPartPath(), revHash)
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
|
_, _ = io.WriteString(w, textContents)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handlerRevision displays a specific revision of the text part the hypha
|
2020-08-20 17:20:13 +00:00
|
|
|
|
func handlerRevision(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
2020-08-20 17:20:13 +00:00
|
|
|
|
var (
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc = l18n.FromRequest(rq)
|
2021-10-01 17:12:16 +00:00
|
|
|
|
shorterURL = strings.TrimPrefix(rq.URL.Path, "/rev/")
|
|
|
|
|
firstSlashIndex = strings.IndexRune(shorterURL, '/')
|
|
|
|
|
revHash = shorterURL[:firstSlashIndex]
|
|
|
|
|
hyphaName = util.CanonicalName(shorterURL[firstSlashIndex+1:])
|
2021-02-20 15:48:51 +00:00
|
|
|
|
h = hyphae.ByName(hyphaName)
|
2021-09-06 17:46:34 +00:00
|
|
|
|
contents = fmt.Sprintf(`<p>%s</p>`, lc.Get("ui.revision_no_text"))
|
2021-07-30 14:16:58 +00:00
|
|
|
|
textContents, err = history.FileAtRevision(h.TextPartPath(), revHash)
|
2021-01-24 07:30:14 +00:00
|
|
|
|
u = user.FromRequest(rq)
|
2020-08-20 17:20:13 +00:00
|
|
|
|
)
|
|
|
|
|
if err == nil {
|
2021-05-25 07:11:16 +00:00
|
|
|
|
ctx, _ := mycocontext.ContextFromStringInput(hyphaName, textContents)
|
|
|
|
|
contents = mycomarkup.BlocksToHTML(ctx, mycomarkup.BlockTree(ctx))
|
2020-08-20 17:20:13 +00:00
|
|
|
|
}
|
2021-02-20 16:14:33 +00:00
|
|
|
|
page := views.RevisionHTML(
|
2020-11-16 15:26:03 +00:00
|
|
|
|
rq,
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc,
|
2021-02-20 15:48:51 +00:00
|
|
|
|
h,
|
2020-08-20 17:20:13 +00:00
|
|
|
|
contents,
|
2020-08-31 17:52:26 +00:00
|
|
|
|
revHash,
|
|
|
|
|
)
|
2020-08-20 17:20:13 +00:00
|
|
|
|
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2021-08-12 12:12:53 +00:00
|
|
|
|
_, _ = fmt.Fprint(
|
|
|
|
|
w,
|
|
|
|
|
views.BaseHTML(
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc.Get("ui.revision_title", &l18n.Replacements{"name": util.BeautifulName(hyphaName), "rev": revHash}),
|
2021-08-12 12:12:53 +00:00
|
|
|
|
page,
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc,
|
2021-08-12 12:12:53 +00:00
|
|
|
|
u,
|
|
|
|
|
),
|
|
|
|
|
)
|
2020-08-19 18:54:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-05 15:08:59 +00:00
|
|
|
|
// handlerText serves raw source text of the hypha.
|
|
|
|
|
func handlerText(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
|
|
|
|
hyphaName := util.HyphaNameFromRq(rq, "text")
|
2021-02-17 18:41:35 +00:00
|
|
|
|
if h := hyphae.ByName(hyphaName); h.Exists {
|
|
|
|
|
log.Println("Serving", h.TextPath)
|
2020-11-02 19:24:50 +00:00
|
|
|
|
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
2021-02-17 18:41:35 +00:00
|
|
|
|
http.ServeFile(w, rq, h.TextPath)
|
2020-08-05 15:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-25 13:08:59 +00:00
|
|
|
|
// handlerBinary serves attachment of the hypha.
|
2020-08-05 15:08:59 +00:00
|
|
|
|
func handlerBinary(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
|
|
|
|
hyphaName := util.HyphaNameFromRq(rq, "binary")
|
2021-02-17 18:41:35 +00:00
|
|
|
|
if h := hyphae.ByName(hyphaName); h.Exists {
|
|
|
|
|
log.Println("Serving", h.BinaryPath)
|
|
|
|
|
w.Header().Set("Content-Type", mimetype.FromExtension(filepath.Ext(h.BinaryPath)))
|
|
|
|
|
http.ServeFile(w, rq, h.BinaryPath)
|
2020-08-05 15:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-30 18:29:56 +00:00
|
|
|
|
// handlerHypha is the main hypha action that displays the hypha and the binary upload form along with some navigation.
|
|
|
|
|
func handlerHypha(w http.ResponseWriter, rq *http.Request) {
|
2021-05-09 10:42:12 +00:00
|
|
|
|
util.PrepareRq(rq)
|
2020-08-05 15:08:59 +00:00
|
|
|
|
var (
|
2021-05-09 10:42:12 +00:00
|
|
|
|
hyphaName = util.HyphaNameFromRq(rq, "page", "hypha")
|
2021-02-17 18:41:35 +00:00
|
|
|
|
h = hyphae.ByName(hyphaName)
|
|
|
|
|
contents string
|
|
|
|
|
openGraph string
|
|
|
|
|
u = user.FromRequest(rq)
|
2021-09-06 17:46:34 +00:00
|
|
|
|
lc = l18n.FromRequest(rq)
|
2020-08-05 15:08:59 +00:00
|
|
|
|
)
|
2021-02-17 18:41:35 +00:00
|
|
|
|
if h.Exists {
|
2021-07-02 08:29:55 +00:00
|
|
|
|
fileContentsT, errT := os.ReadFile(h.TextPath)
|
2021-02-17 18:41:35 +00:00
|
|
|
|
_, errB := os.Stat(h.BinaryPath)
|
2020-08-05 15:08:59 +00:00
|
|
|
|
if errT == nil {
|
2021-05-25 07:11:16 +00:00
|
|
|
|
ctx, _ := mycocontext.ContextFromStringInput(hyphaName, string(fileContentsT))
|
2021-06-12 09:42:00 +00:00
|
|
|
|
ctx = mycocontext.WithWebSiteURL(ctx, cfg.URL)
|
2021-09-12 08:58:03 +00:00
|
|
|
|
getOpenGraph, descVisitor, imgVisitor := tools.OpenGraphVisitors(ctx)
|
2021-06-12 09:42:00 +00:00
|
|
|
|
ast := mycomarkup.BlockTree(ctx, descVisitor, imgVisitor)
|
2021-05-25 07:11:16 +00:00
|
|
|
|
contents = mycomarkup.BlocksToHTML(ctx, ast)
|
2021-06-12 09:42:00 +00:00
|
|
|
|
openGraph = getOpenGraph()
|
2020-08-05 15:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
if !os.IsNotExist(errB) {
|
2021-09-06 17:46:34 +00:00
|
|
|
|
contents = views.AttachmentHTML(h, lc) + contents
|
2020-08-05 15:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-05 12:20:51 +00:00
|
|
|
|
if contents == "" {
|
|
|
|
|
util.HTTP404Page(w,
|
|
|
|
|
views.BaseHTML(
|
|
|
|
|
util.BeautifulName(hyphaName),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
views.HyphaHTML(rq, lc, h, contents),
|
|
|
|
|
lc,
|
2021-03-05 12:20:51 +00:00
|
|
|
|
u,
|
|
|
|
|
openGraph))
|
|
|
|
|
} else {
|
|
|
|
|
util.HTTP200Page(w,
|
|
|
|
|
views.BaseHTML(
|
|
|
|
|
util.BeautifulName(hyphaName),
|
2021-09-06 17:46:34 +00:00
|
|
|
|
views.HyphaHTML(rq, lc, h, contents),
|
|
|
|
|
lc,
|
2021-03-05 12:20:51 +00:00
|
|
|
|
u,
|
|
|
|
|
openGraph))
|
|
|
|
|
}
|
2020-08-05 15:08:59 +00:00
|
|
|
|
}
|