113 lines
2.0 KiB
Go
113 lines
2.0 KiB
Go
package main
|
|
|
|
func init() {
|
|
// User
|
|
app.Test("/user/:nick", []string{
|
|
"/+Akyoto",
|
|
})
|
|
|
|
app.Test("/user/:nick/threads", []string{
|
|
"/+Akyoto/threads",
|
|
})
|
|
|
|
app.Test("/user/:nick/animelist", []string{
|
|
"/+Akyoto/animelist",
|
|
})
|
|
|
|
app.Test("/user/:nick/animelist/:id", []string{
|
|
"/+Akyoto/animelist/7929",
|
|
})
|
|
|
|
// Pages
|
|
app.Test("/anime/:id", []string{
|
|
"/anime/1",
|
|
})
|
|
|
|
app.Test("/threads/:id", []string{
|
|
"/threads/HJgS7c2K",
|
|
})
|
|
|
|
app.Test("/posts/:id", []string{
|
|
"/posts/B1RzshnK",
|
|
})
|
|
|
|
app.Test("/forum/:tag", []string{
|
|
"/forum/general",
|
|
})
|
|
|
|
app.Test("/search/:term", []string{
|
|
"/search/Dragon Ball",
|
|
})
|
|
|
|
// API
|
|
app.Test("/api/anime/:id", []string{
|
|
"/api/anime/1",
|
|
})
|
|
|
|
app.Test("/api/thread/:id", []string{
|
|
"/api/thread/HJgS7c2K",
|
|
})
|
|
|
|
app.Test("/api/post/:id", []string{
|
|
"/api/post/B1RzshnK",
|
|
})
|
|
|
|
app.Test("/api/animelist/:id", []string{
|
|
"/api/animelist/4J6qpK1ve",
|
|
})
|
|
|
|
app.Test("/api/settings/:id", []string{
|
|
"/api/settings/4J6qpK1ve",
|
|
})
|
|
|
|
app.Test("/api/user/:id", []string{
|
|
"/api/user/4J6qpK1ve",
|
|
})
|
|
|
|
app.Test("/api/emailtouser/:id", []string{
|
|
"/api/emailtouser/e.urbach@gmail.com",
|
|
})
|
|
|
|
app.Test("/api/googletouser/:id", []string{
|
|
"/api/googletouser/106530160120373282283",
|
|
})
|
|
|
|
app.Test("/api/nicktouser/:id", []string{
|
|
"/api/nicktouser/Akyoto",
|
|
})
|
|
|
|
app.Test("/api/searchindex/:id", []string{
|
|
"/api/searchindex/Anime",
|
|
})
|
|
|
|
// Images
|
|
app.Test("/images/avatars/large/:file", []string{
|
|
"/images/avatars/large/4J6qpK1ve.webp",
|
|
})
|
|
|
|
app.Test("/images/avatars/small/:file", []string{
|
|
"/images/avatars/small/4J6qpK1ve.webp",
|
|
})
|
|
|
|
app.Test("/images/brand/:file", []string{
|
|
"/images/brand/64.webp",
|
|
})
|
|
|
|
app.Test("/images/login/:file", []string{
|
|
"/images/login/google",
|
|
})
|
|
|
|
app.Test("/images/cover/:file", []string{
|
|
"/images/cover/default",
|
|
})
|
|
|
|
app.Test("/images/elements/:file", []string{
|
|
"/images/elements/no-avatar.svg",
|
|
})
|
|
|
|
// Disable
|
|
app.Test("/auth/google", nil)
|
|
app.Test("/auth/google/callback", nil)
|
|
app.Test("/user", nil)
|
|
}
|