mirror of
https://github.com/nkanaev/yarr.git
synced 2025-05-25 13:39:22 +00:00
router package
This commit is contained in:
parent
cc7bdc5b76
commit
4a4303afef
33
src/router/context.go
Normal file
33
src/router/context.go
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package router
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Context struct {
|
||||||
|
Req *http.Request
|
||||||
|
Out http.ResponseWriter
|
||||||
|
|
||||||
|
Vars map[string]string
|
||||||
|
|
||||||
|
chain []Handler
|
||||||
|
index int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Context) Next() {
|
||||||
|
c.index++
|
||||||
|
c.handlers[c.index](c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Context) JSON(status int, data interface{}) {
|
||||||
|
reply, err := json.Marshal(data)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
c.Out.WriteHeader(http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.Out.WriteHeader(status)
|
||||||
|
c.Out.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||||||
|
c.Out.Write(reply)
|
||||||
|
c.Out.Write([]byte("\n"))
|
||||||
|
}
|
35
src/router/example.go
Normal file
35
src/router/example.go
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package router
|
||||||
|
/*
|
||||||
|
func do() {
|
||||||
|
server := NewServer(db, worker)
|
||||||
|
|
||||||
|
router := NewRouter()
|
||||||
|
|
||||||
|
router.Use(AuthMiddleware())
|
||||||
|
router.Use(CorsMiddleware())
|
||||||
|
|
||||||
|
router.For("/", server.index)
|
||||||
|
router.For("/static/*path", server.static)
|
||||||
|
router.For("/api/status", server.status)
|
||||||
|
router.For("/api/folders", server.folderlist)
|
||||||
|
router.For("/api/folders/:id", server.folder)
|
||||||
|
router.For("/api/feeds", server.feedlist)
|
||||||
|
router.For("/api/feeds/refresh", server.feedsRefresh)
|
||||||
|
router.For("/api/feeds/errors", server.feedsErrors)
|
||||||
|
router.For("/api/feeds/:id/icon", server.feedsIcons)
|
||||||
|
router.For("/api/feeds/:id", server.feed)
|
||||||
|
router.For("/api/items", server.itemlist)
|
||||||
|
router.For("/api/items/:id", server.item)
|
||||||
|
router.For("/api/settings", server.settings)
|
||||||
|
router.For("/opml/import", server.opmlImport)
|
||||||
|
router.For("/opml/export", server.opmlExport)
|
||||||
|
router.For("/page", server.pagecrawl)
|
||||||
|
router.For("/logout", server.logout)
|
||||||
|
|
||||||
|
httpserver := &http.Server{Addr: server.Addr(), Handler: router}
|
||||||
|
httpserver.ListenAndServe()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
||||||
|
}
|
||||||
|
*/
|
66
src/router/router.go
Normal file
66
src/router/router.go
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
package router
|
||||||
|
|
||||||
|
import (
|
||||||
|
"regexp"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Handler func(*Context)
|
||||||
|
|
||||||
|
type Router struct {
|
||||||
|
middle []Handler
|
||||||
|
routes []Route
|
||||||
|
}
|
||||||
|
|
||||||
|
type Route struct {
|
||||||
|
regex *regexp.Regexp
|
||||||
|
chain []Handler
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewRouter() *Router {
|
||||||
|
router := &Router{}
|
||||||
|
router.middle = make([]Handler, 0)
|
||||||
|
router.routes = make([]Route, 0)
|
||||||
|
return router
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Router) Use(h Handler) {
|
||||||
|
r.middle = append(r.middle, h)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Router) For(path string, handler Handler) {
|
||||||
|
x := Route{}
|
||||||
|
x.regex = routeRegexp(path)
|
||||||
|
x.chain = append(r.middle, handler)
|
||||||
|
|
||||||
|
r.routes = append(r.routes, x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Router) resolve(path string) *route {
|
||||||
|
for _, r := range r.routes {
|
||||||
|
if r.regex.MatchString(path) {
|
||||||
|
return &r
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func regexGroups(input string, regex *regexp.Regexp) map[string]string {
|
||||||
|
groups := make(map[string]string)
|
||||||
|
matches := regex.FindStringSubmatchIndex(input)
|
||||||
|
for i, key := range regex.SubexpNames()[1:] {
|
||||||
|
groups[key] = input[matches[i*2+2]:matches[i*2+3]]
|
||||||
|
}
|
||||||
|
return groups
|
||||||
|
}
|
||||||
|
|
||||||
|
func routeRegexp(route string) *regexp.Regexp {
|
||||||
|
chunks := regexp.MustCompile(`[\*\:]\w+`)
|
||||||
|
output := chunks.ReplaceAllStringFunc(route, func(m string) string {
|
||||||
|
if m[0:1] == `*` {
|
||||||
|
return "(?P<" + m[1:] + ">.+)"
|
||||||
|
}
|
||||||
|
return "(?P<" + m[1:] + ">[^/]+)"
|
||||||
|
})
|
||||||
|
output = "^" + output + "$"
|
||||||
|
return regexp.MustCompile(output)
|
||||||
|
}
|
76
src/router/router_test.go
Normal file
76
src/router/router_test.go
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
package router
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestRouteRegexpPart(t *testing.T) {
|
||||||
|
in := "/hello/:world"
|
||||||
|
re := routeRegexp(in)
|
||||||
|
|
||||||
|
pos := []string{
|
||||||
|
"/hello/world",
|
||||||
|
"/hello/1234",
|
||||||
|
"/hello/bbc1",
|
||||||
|
}
|
||||||
|
for _, c := range pos {
|
||||||
|
if !re.MatchString(c) {
|
||||||
|
t.Errorf("%v must match %v", in, c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
neg := []string{
|
||||||
|
"/hello",
|
||||||
|
"/hello/world/",
|
||||||
|
"/sub/hello/123",
|
||||||
|
"//hello/123",
|
||||||
|
"/hello/123/hello/",
|
||||||
|
}
|
||||||
|
for _, c := range neg {
|
||||||
|
if re.MatchString(c) {
|
||||||
|
t.Errorf("%q must not match %q", in, c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRouteRegexpStar(t *testing.T) {
|
||||||
|
in := "/hello/*world"
|
||||||
|
re := routeRegexp(in)
|
||||||
|
|
||||||
|
pos := []string{"/hello/world", "/hello/world/test"}
|
||||||
|
for _, c := range pos {
|
||||||
|
if !re.MatchString(c) {
|
||||||
|
t.Errorf("%q must match %q", in, c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
neg := []string{"/hello/", "/hello"}
|
||||||
|
for _, c := range neg {
|
||||||
|
if re.MatchString(c) {
|
||||||
|
t.Errorf("%v must not match %v", in, c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRegexGroupsPart(t *testing.T) {
|
||||||
|
re := routeRegexp("/foo/:bar/1/:baz")
|
||||||
|
|
||||||
|
expect := map[string]string{"bar": "one", "baz": "two"}
|
||||||
|
actual := regexGroups("/foo/one/1/two", re)
|
||||||
|
|
||||||
|
if !reflect.DeepEqual(expect, actual) {
|
||||||
|
t.Errorf("expected: %q, actual: %q", expect, actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRegexGroupsStar(t *testing.T) {
|
||||||
|
re := routeRegexp("/foo/*bar")
|
||||||
|
|
||||||
|
expect := map[string]string{"bar": "bar/baz/"}
|
||||||
|
actual := regexGroups("/foo/bar/baz/", re)
|
||||||
|
|
||||||
|
if !reflect.DeepEqual(expect, actual) {
|
||||||
|
t.Errorf("expected: %q, actual: %q", expect, actual)
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user