22650aad27
Added Attachments. Added Attachment Media Embeds. Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing. Added petabytes as a unit and cleaned up a few of the friendly units. Refactored the username change logic to make it easier to maintain. Refactored the avatar change logic to make it easier to maintain. Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on! Snuck some CSS Variables into Tempra Conflux. Added the GroupCache interface to MemoryGroupStore. Added the Length method to MemoryGroupStore. Added support for a site short name. Added the UploadFiles permission. Renamed more functions. Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow. Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler. Added support for if statements operating on slices and maps for the template compiler. Fixed a security exploit in reply editing. Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports. Fixed buttons having blue outlines on focus on Shadow. Refactored the topic creation logic to make it easier to maintain. Made a few responsive fixes, but there's still more to do in the following commits!
228 lines
5.0 KiB
Go
228 lines
5.0 KiB
Go
/* WIP Under Construction */
|
|
package main
|
|
|
|
import "log"
|
|
|
|
//import "strings"
|
|
import "os"
|
|
|
|
var routeList []Route
|
|
var routeGroups []RouteGroup
|
|
|
|
func main() {
|
|
log.Println("Generating the router...")
|
|
|
|
// Load all the routes...
|
|
routes()
|
|
|
|
var out string
|
|
var fileData = "// Code generated by. DO NOT EDIT.\n/* This file was automatically generated by the software. Please don't edit it as your changes may be overwritten at any moment. */\n"
|
|
|
|
for _, route := range routeList {
|
|
var end int
|
|
if route.Path[len(route.Path)-1] == '/' {
|
|
end = len(route.Path) - 1
|
|
} else {
|
|
end = len(route.Path) - 1
|
|
}
|
|
out += "\n\t\tcase \"" + route.Path[0:end] + "\":"
|
|
if route.Before != "" {
|
|
out += "\n\t\t\t" + route.Before
|
|
}
|
|
out += "\n\t\t\t" + route.Name + "(w,req,user"
|
|
for _, item := range route.Vars {
|
|
out += "," + item
|
|
}
|
|
out += ")\n\t\t\treturn"
|
|
}
|
|
|
|
for _, group := range routeGroups {
|
|
var end int
|
|
if group.Path[len(group.Path)-1] == '/' {
|
|
end = len(group.Path) - 1
|
|
} else {
|
|
end = len(group.Path) - 1
|
|
}
|
|
out += `
|
|
case "` + group.Path[0:end] + `":
|
|
switch(req.URL.Path) {`
|
|
var defaultRoute Route
|
|
for _, route := range group.Routes {
|
|
if group.Path == route.Path {
|
|
defaultRoute = route
|
|
continue
|
|
}
|
|
|
|
out += "\n\t\t\t\tcase \"" + route.Path + "\":"
|
|
if route.Before != "" {
|
|
out += "\n\t\t\t\t\t" + route.Before
|
|
}
|
|
out += "\n\t\t\t\t\t" + route.Name + "(w,req,user"
|
|
for _, item := range route.Vars {
|
|
out += "," + item
|
|
}
|
|
out += ")\n\t\t\t\t\treturn"
|
|
}
|
|
|
|
if defaultRoute.Name != "" {
|
|
out += "\n\t\t\t\tdefault:"
|
|
if defaultRoute.Before != "" {
|
|
out += "\n\t\t\t\t\t" + defaultRoute.Before
|
|
}
|
|
out += "\n\t\t\t\t\t" + defaultRoute.Name + "(w,req,user"
|
|
for _, item := range defaultRoute.Vars {
|
|
out += ", " + item
|
|
}
|
|
out += ")\n\t\t\t\t\treturn"
|
|
}
|
|
out += "\n\t\t\t}"
|
|
}
|
|
|
|
fileData += `package main
|
|
|
|
import "log"
|
|
import "strings"
|
|
import "sync"
|
|
import "errors"
|
|
import "net/http"
|
|
|
|
var ErrNoRoute = errors.New("That route doesn't exist.")
|
|
|
|
type GenRouter struct {
|
|
UploadHandler func(http.ResponseWriter, *http.Request)
|
|
extra_routes map[string]func(http.ResponseWriter, *http.Request, User)
|
|
|
|
sync.RWMutex
|
|
}
|
|
|
|
func NewGenRouter(uploads http.Handler) *GenRouter {
|
|
return &GenRouter{
|
|
UploadHandler: http.StripPrefix("/uploads/",uploads).ServeHTTP,
|
|
extra_routes: make(map[string]func(http.ResponseWriter, *http.Request, User)),
|
|
}
|
|
}
|
|
|
|
func (router *GenRouter) Handle(_ string, _ http.Handler) {
|
|
}
|
|
|
|
func (router *GenRouter) HandleFunc(pattern string, handle func(http.ResponseWriter, *http.Request, User)) {
|
|
router.Lock()
|
|
router.extra_routes[pattern] = handle
|
|
router.Unlock()
|
|
}
|
|
|
|
func (router *GenRouter) RemoveFunc(pattern string) error {
|
|
router.Lock()
|
|
_, ok := router.extra_routes[pattern]
|
|
if !ok {
|
|
router.Unlock()
|
|
return ErrNoRoute
|
|
}
|
|
delete(router.extra_routes,pattern)
|
|
router.Unlock()
|
|
return nil
|
|
}
|
|
|
|
func (router *GenRouter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
//if req.URL.Path == "/" {
|
|
// default_route(w,req)
|
|
// return
|
|
//}
|
|
if len(req.URL.Path) == 0 || req.URL.Path[0] != '/' {
|
|
w.WriteHeader(405)
|
|
w.Write([]byte(""))
|
|
return
|
|
}
|
|
|
|
var prefix, extra_data string
|
|
prefix = req.URL.Path[0:strings.IndexByte(req.URL.Path[1:],'/') + 1]
|
|
if req.URL.Path[len(req.URL.Path) - 1] != '/' {
|
|
extra_data = req.URL.Path[strings.LastIndexByte(req.URL.Path,'/') + 1:]
|
|
req.URL.Path = req.URL.Path[:strings.LastIndexByte(req.URL.Path,'/') + 1]
|
|
}
|
|
|
|
if dev.SuperDebug {
|
|
log.Print("before routeStatic")
|
|
log.Print("prefix: ", prefix)
|
|
log.Print("req.URL.Path: ", req.URL.Path)
|
|
log.Print("extra_data: ", extra_data)
|
|
log.Print("req.Referer(): ", req.Referer())
|
|
}
|
|
|
|
if prefix == "/static" {
|
|
req.URL.Path += extra_data
|
|
routeStatic(w,req)
|
|
return
|
|
}
|
|
|
|
if dev.SuperDebug {
|
|
log.Print("before PreRoute")
|
|
}
|
|
|
|
// Deal with the session stuff, etc.
|
|
user, ok := PreRoute(w,req)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
if dev.SuperDebug {
|
|
log.Print("after PreRoute")
|
|
}
|
|
|
|
switch(prefix) {` + out + `
|
|
case "/uploads":
|
|
if extra_data == "" {
|
|
NotFound(w,req)
|
|
return
|
|
}
|
|
req.URL.Path += extra_data
|
|
router.UploadHandler(w,req)
|
|
return
|
|
case "":
|
|
// Stop the favicons, robots.txt file, etc. resolving to the topics list
|
|
// TODO: Add support for favicons and robots.txt files
|
|
switch(extra_data) {
|
|
case "robots.txt":
|
|
routeRobotsTxt(w,req)
|
|
return
|
|
}
|
|
|
|
if extra_data != "" {
|
|
NotFound(w,req)
|
|
return
|
|
}
|
|
config.DefaultRoute(w,req,user)
|
|
return
|
|
//default: NotFound(w,req)
|
|
}
|
|
|
|
// A fallback for the routes which haven't been converted to the new router yet or plugins
|
|
router.RLock()
|
|
handle, ok := router.extra_routes[req.URL.Path]
|
|
router.RUnlock()
|
|
|
|
if ok {
|
|
req.URL.Path += extra_data
|
|
handle(w,req,user)
|
|
return
|
|
}
|
|
NotFound(w,req)
|
|
}
|
|
`
|
|
writeFile("./gen_router.go", fileData)
|
|
log.Println("Successfully generated the router")
|
|
}
|
|
|
|
func writeFile(name string, content string) {
|
|
f, err := os.Create(name)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
_, err = f.WriteString(content)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
f.Sync()
|
|
f.Close()
|
|
}
|