gosora/gen_router.go

189 lines
5.0 KiB
Go
Raw Normal View History

// Code generated by. DO NOT EDIT.
/* This file was automatically generated by the software. Please don't edit it as your changes may be overwritten at any moment. */
Happy 100th commit! For the 100th commit, I've revamped a good portion of the user interface, and we don't plan on stopping! There's more to come! Each theme has more of a distinct feel in the control panel now. I moved a large portion of the inline CSS into global.css, tweaked some core code which didn't line up, and added CSS text insertions to make things more flexible. Revamped the alerts interface. We have more changes coming up! Added screenshots for Tempra Cursive and Tempra Conflux Mobile to the README. Added a .htaccess file, just in case someone plops Gosora in Apache's /www/ folder to stop the contents of config.go from becoming publically visible. Never put Gosora in your /www/ folder, Gosora is a standalone program which does NOT use Apache or any other webserver. Fixed a bug in the inline forum editor. Added a hand-written Markdown parser which is much faster than the previous Regex based one. This is still a work in progress. Added support for strikethrough and underline elements to the Markdown parser. Fixed the missing semicolons in global.js Revamped the form CSS. Author bits on the theme manager now link to the author's website. Improved the profiles a little. The code in the stylesheets now have a more consistent style. Fixed a bug in the Cosmo theme relating to the fact that Gosora doesn't have sidebars yet. There are many more changes which aren't listed here. If weirdness regarding lines or spacing occurs, I'm experimenting with a new text editor. I hope to have this fixed by the next commit.
2017-05-29 14:52:37 +00:00
// The router generator might be discontinued in favour of syncmaps in Go 1.9, it will be temporarily used for a couple of months as a lockless alternative to maps
package main
//import "fmt"
import "sync"
import "strings"
import "net/http"
type GenRouter struct {
UploadHandler func(http.ResponseWriter, *http.Request)
sync.RWMutex // Temporary Fallback
old_routes map[string]func(http.ResponseWriter, *http.Request) // Temporary Fallback
}
func NewGenRouter(uploads http.Handler) *GenRouter {
return &GenRouter{
UploadHandler: http.StripPrefix("/uploads/",uploads).ServeHTTP,
old_routes: make(map[string]func(http.ResponseWriter, *http.Request)),
}
}
func (router *GenRouter) Handle(_ string, _ http.Handler) {
}
func (router *GenRouter) HandleFunc(pattern string, handle func(http.ResponseWriter, *http.Request)) {
router.Lock()
router.old_routes[pattern] = handle
router.Unlock()
}
func (router *GenRouter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
//if req.URL.Path == "/" {
// default_route(w,req)
// return
//}
if 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]
}
//fmt.Println("prefix:",prefix)
//fmt.Println("req.URL.Path:",req.URL.Path)
//fmt.Println("extra_data:",extra_data)
switch(prefix) {
case "/api":
route_api(w,req)
return
case "/static":
req.URL.Path += extra_data
route_static(w,req)
return
case "/overview":
route_overview(w,req)
return
case "/forums":
route_forums(w,req)
return
case "/forum":
route_forum(w,req,extra_data)
return
case "/report":
switch(req.URL.Path) {
case "/report/submit/":
route_report_submit(w,req,extra_data)
return
}
case "/topics":
switch(req.URL.Path) {
case "/topics/create/":
route_topic_create(w,req,extra_data)
return
default:
route_topics(w,req)
return
}
case "/panel":
switch(req.URL.Path) {
case "/panel/forums/":
route_panel_forums(w,req)
return
case "/panel/forums/create/":
route_panel_forums_create_submit(w,req)
return
case "/panel/forums/delete/":
route_panel_forums_delete(w,req,extra_data)
return
case "/panel/forums/delete/submit/":
route_panel_forums_delete_submit(w,req,extra_data)
return
case "/panel/forums/edit/":
route_panel_forums_edit(w,req,extra_data)
return
case "/panel/forums/edit/submit/":
route_panel_forums_edit_submit(w,req,extra_data)
return
case "/panel/settings/":
route_panel_settings(w,req)
return
case "/panel/settings/edit/":
route_panel_setting(w,req,extra_data)
return
case "/panel/settings/edit/submit/":
route_panel_setting_edit(w,req,extra_data)
return
case "/panel/themes/":
route_panel_themes(w,req)
return
case "/panel/themes/default/":
route_panel_themes_default(w,req,extra_data)
return
case "/panel/plugins/":
route_panel_plugins(w,req)
return
case "/panel/plugins/activate/":
route_panel_plugins_activate(w,req,extra_data)
return
case "/panel/plugins/deactivate/":
route_panel_plugins_deactivate(w,req,extra_data)
return
case "/panel/users/":
route_panel_users(w,req)
return
case "/panel/users/edit/":
route_panel_users_edit(w,req,extra_data)
return
case "/panel/users/edit/submit/":
route_panel_users_edit_submit(w,req,extra_data)
return
case "/panel/groups/":
route_panel_groups(w,req)
return
case "/panel/groups/edit/":
route_panel_groups_edit(w,req,extra_data)
return
case "/panel/groups/edit/perms/":
route_panel_groups_edit_perms(w,req,extra_data)
return
case "/panel/groups/edit/submit/":
route_panel_groups_edit_submit(w,req,extra_data)
return
case "/panel/groups/edit/perms/submit/":
route_panel_groups_edit_perms_submit(w,req,extra_data)
return
case "/panel/groups/create/":
route_panel_groups_create_submit(w,req)
return
case "/panel/logs/mod/":
route_panel_logs_mod(w,req)
return
default:
route_panel(w,req)
return
}
case "/uploads":
if extra_data == "" {
NotFound(w,req)
return
}
req.URL.Path += extra_data
router.UploadHandler(w,req)
return
case "":
default_route(w,req)
return
//default: NotFound(w,req)
}
// A fallback for the routes which haven't been converted to the new router yet
router.RLock()
handle, ok := router.old_routes[req.URL.Path]
router.RUnlock()
if ok {
req.URL.Path += extra_data
handle(w,req)
return
}
NotFound(w,req)
}