mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 13:30:26 +00:00
41 lines
821 B
Go
41 lines
821 B
Go
package interwiki
|
|
|
|
import (
|
|
"embed"
|
|
"github.com/bouncepaw/mycorrhiza/viewutil"
|
|
"github.com/gorilla/mux"
|
|
"net/http"
|
|
)
|
|
|
|
var (
|
|
//go:embed *html
|
|
fs embed.FS
|
|
ruTranslation = ``
|
|
chainInterwiki viewutil.Chain
|
|
)
|
|
|
|
func InitHandlers(rtr *mux.Router) {
|
|
chainInterwiki = viewutil.CopyEnRuWith(fs, "view_interwiki.html", ruTranslation)
|
|
rtr.HandleFunc("/interwiki", handlerInterwiki)
|
|
}
|
|
|
|
func handlerInterwiki(w http.ResponseWriter, rq *http.Request) {
|
|
viewInterwiki(viewutil.MetaFrom(w, rq))
|
|
}
|
|
|
|
type interwikiData struct {
|
|
*viewutil.BaseData
|
|
Entries []*Wiki
|
|
CanEdit bool
|
|
Error string
|
|
}
|
|
|
|
func viewInterwiki(meta viewutil.Meta) {
|
|
viewutil.ExecutePage(meta, chainInterwiki, interwikiData{
|
|
BaseData: &viewutil.BaseData{},
|
|
Entries: theMap.list,
|
|
CanEdit: meta.U.Group == "admin",
|
|
Error: "",
|
|
})
|
|
}
|