Refactor routing
This commit is contained in:
@@ -32,39 +32,39 @@ func ApplyRouteTable(router *httprouter.Router, getfile *universal.GetFile, torM
|
||||
log: log,
|
||||
}
|
||||
|
||||
// HTTP router
|
||||
router.GET("/http/:directory/:torrent/", zr.httpTorrentHandler)
|
||||
router.GET("/http/:directory/", zr.httpDirectoryHandler)
|
||||
router.GET("/http/", zr.httpRootHandler)
|
||||
|
||||
// WEBDAV router
|
||||
router.Handle("PROPFIND", "/dav/:directory/:torrent/", zr.davTorrentHandler)
|
||||
router.Handle("PROPFIND", "/dav/:directory/", zr.davDirectoryHandler)
|
||||
router.Handle("PROPFIND", "/dav/", zr.davRootHandler)
|
||||
// EXTRA: for browser handling
|
||||
router.GET("/dav/:directory/:torrent/", zr.davTorrentHandler)
|
||||
router.GET("/dav/:directory/", zr.davDirectoryHandler)
|
||||
router.GET("/dav/", zr.davRootHandler)
|
||||
// DELETE routes
|
||||
router.DELETE("/dav/:directory/:torrent/:file", zr.deleteFileHandler)
|
||||
router.DELETE("/dav/:directory/:torrent/", zr.deleteTorrentHandler)
|
||||
// RENAME sequence
|
||||
router.Handle("PROPFIND", "/dav/:directory/:torrent/:file", zr.propfindFileHandler)
|
||||
router.Handle("MKCOL", "/dav/:directory/:torrent/", zr.mkcolTorrentHandler)
|
||||
router.Handle("MOVE", "/dav/:directory/:torrent/:file", zr.moveFileHandler)
|
||||
router.Handle("MOVE", "/dav/:directory/:torrent/", zr.moveTorrentHandler)
|
||||
|
||||
// INFUSE DAV routes
|
||||
router.Handle("PROPFIND", "/infuse/:directory/:torrent/", zr.infuseDavTorrentHandler)
|
||||
router.Handle("PROPFIND", "/infuse/:directory/", zr.infuseDavDirectoryHandler)
|
||||
router.Handle("PROPFIND", "/infuse/", zr.infuseDavRootHandler)
|
||||
|
||||
// file download handler
|
||||
router.GET("/http/:directory/:torrent/:file", zr.universalDownloadFileHandler)
|
||||
router.GET("/dav/:directory/:torrent/:file", zr.universalDownloadFileHandler)
|
||||
router.GET("/infuse/:directory/:torrent/:file", zr.universalDownloadFileHandler)
|
||||
// HEAD route
|
||||
router.HEAD("/http/:directory/:torrent/:file", zr.headHandler)
|
||||
router.HEAD("/http/:directory/:torrent/:file", zr.httpHeadHandler)
|
||||
|
||||
// HTTP router
|
||||
router.GET("/http/", zr.httpRootHandler)
|
||||
router.GET("/http/:directory/", zr.httpTorrentsListHandler)
|
||||
router.GET("/http/:directory/:torrent/", zr.httpFilesListHandler)
|
||||
|
||||
// INFUSE DAV routes
|
||||
router.Handle("PROPFIND", "/infuse/", zr.infuseDavRootHandler)
|
||||
router.Handle("PROPFIND", "/infuse/:directory/", zr.infuseDavTorrentsListHandler)
|
||||
router.Handle("PROPFIND", "/infuse/:directory/:torrent/", zr.infuseDavFilesListHandler)
|
||||
|
||||
// WEBDAV router
|
||||
router.Handle("PROPFIND", "/dav/", zr.davRootHandler)
|
||||
router.Handle("PROPFIND", "/dav/:directory/", zr.davTorrentsListHandler)
|
||||
router.Handle("PROPFIND", "/dav/:directory/:torrent/", zr.davFilesListHandler)
|
||||
// EXTRA: for browser handling
|
||||
router.GET("/dav/", zr.davRootHandler)
|
||||
router.GET("/dav/:directory/", zr.davTorrentsListHandler)
|
||||
router.GET("/dav/:directory/:torrent/", zr.davFilesListHandler)
|
||||
// DELETE routes
|
||||
router.DELETE("/dav/:directory/:torrent/", zr.deleteTorrentHandler)
|
||||
router.DELETE("/dav/:directory/:torrent/:file", zr.deleteFileHandler)
|
||||
// RENAME sequence
|
||||
router.Handle("PROPFIND", "/dav/:directory/:torrent/:file", zr.davCheckSingleFileHandler)
|
||||
router.Handle("MKCOL", "/dav/:directory/:torrent/", zr.mkcolTorrentHandler)
|
||||
router.Handle("MOVE", "/dav/:directory/:torrent/:file", zr.moveFileHandler)
|
||||
router.Handle("MOVE", "/dav/:directory/:torrent/", zr.moveTorrentHandler)
|
||||
|
||||
// Global OPTIONS route
|
||||
router.GlobalOPTIONS = http.HandlerFunc(zr.globalOptionsHandler)
|
||||
@@ -94,18 +94,18 @@ func (zr *ZurgRouter) handleRootRequest(resp http.ResponseWriter, req *http.Requ
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) httpRootHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleRootRequest(resp, req, params, intHttp.HandleListDirectories, "text/html; charset=\"utf-8\"")
|
||||
zr.handleRootRequest(resp, req, params, intHttp.ServeRootDirectory, "text/html; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) davRootHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleRootRequest(resp, req, params, dav.HandleListDirectories, "text/xml; charset=\"utf-8\"")
|
||||
zr.handleRootRequest(resp, req, params, dav.ServeRootDirectory, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) infuseDavRootHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleRootRequest(resp, req, params, dav.HandleInfuseListDirectories, "text/xml; charset=\"utf-8\"")
|
||||
zr.handleRootRequest(resp, req, params, dav.ServeRootDirectoryForInfuse, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) handleDirectoryRequest(resp http.ResponseWriter, req *http.Request, params httprouter.Params, handleFunc func(string, *torrent.TorrentManager, *logutil.Logger) ([]byte, error), contentType string) {
|
||||
func (zr *ZurgRouter) handleTorrentsListRequest(resp http.ResponseWriter, req *http.Request, params httprouter.Params, handleFunc func(string, *torrent.TorrentManager, *logutil.Logger) ([]byte, error), contentType string) {
|
||||
directory := params.ByName("directory")
|
||||
out, err := handleFunc(directory, zr.torMgr, zr.log)
|
||||
if err != nil {
|
||||
@@ -117,19 +117,19 @@ func (zr *ZurgRouter) handleDirectoryRequest(resp http.ResponseWriter, req *http
|
||||
resp.Write(out)
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) httpDirectoryHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleDirectoryRequest(resp, req, params, intHttp.HandleListTorrents, "text/html; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) httpTorrentsListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentsListRequest(resp, req, params, intHttp.ServeTorrentsList, "text/html; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) davDirectoryHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleDirectoryRequest(resp, req, params, dav.HandleListTorrents, "text/xml; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) davTorrentsListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentsListRequest(resp, req, params, dav.ServeTorrentsList, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) infuseDavDirectoryHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleDirectoryRequest(resp, req, params, dav.HandleInfuseListTorrents, "text/xml; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) infuseDavTorrentsListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentsListRequest(resp, req, params, dav.ServeTorrentsListForInfuse, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) handleTorrentRequest(resp http.ResponseWriter, req *http.Request, params httprouter.Params, handleFunc func(string, string, *torrent.TorrentManager, *logutil.Logger) ([]byte, error), contentType string) {
|
||||
func (zr *ZurgRouter) handleFilesListRequest(resp http.ResponseWriter, req *http.Request, params httprouter.Params, handleFunc func(string, string, *torrent.TorrentManager, *logutil.Logger) ([]byte, error), contentType string) {
|
||||
directory := params.ByName("directory")
|
||||
torrentName := params.ByName("torrent")
|
||||
out, err := handleFunc(directory, torrentName, zr.torMgr, zr.log)
|
||||
@@ -142,16 +142,16 @@ func (zr *ZurgRouter) handleTorrentRequest(resp http.ResponseWriter, req *http.R
|
||||
resp.Write(out)
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) httpTorrentHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentRequest(resp, req, params, intHttp.HandleListFiles, "text/html; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) httpFilesListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleFilesListRequest(resp, req, params, intHttp.ServeFilesList, "text/html; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) davTorrentHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentRequest(resp, req, params, dav.HandleListFiles, "text/xml; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) davFilesListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleFilesListRequest(resp, req, params, dav.ServeFilesList, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) infuseDavTorrentHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleTorrentRequest(resp, req, params, dav.HandleInfuseListFiles, "text/xml; charset=\"utf-8\"")
|
||||
func (zr *ZurgRouter) infuseDavFilesListHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
zr.handleFilesListRequest(resp, req, params, dav.ServeFilesListForInfuse, "text/xml; charset=\"utf-8\"")
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) deleteFileHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
@@ -175,11 +175,11 @@ func (zr *ZurgRouter) deleteTorrentHandler(resp http.ResponseWriter, req *http.R
|
||||
resp.WriteHeader(http.StatusNoContent)
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) propfindFileHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
func (zr *ZurgRouter) davCheckSingleFileHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
directory := params.ByName("directory")
|
||||
torrentName := params.ByName("torrent")
|
||||
fileName := params.ByName("file")
|
||||
out, err := dav.HandlePropfindFile(directory, torrentName, fileName, zr.torMgr, zr.log)
|
||||
out, err := dav.HandleSingleFile(directory, torrentName, fileName, zr.torMgr, zr.log)
|
||||
if err != nil {
|
||||
fmt.Println(">>>>>>>>>>>>>>>>>>>. not found", err)
|
||||
http.Error(resp, "Not Found", http.StatusNotFound)
|
||||
@@ -232,10 +232,10 @@ func (zr *ZurgRouter) universalDownloadFileHandler(resp http.ResponseWriter, req
|
||||
directory := params.ByName("directory")
|
||||
torrentName := params.ByName("torrent")
|
||||
fileName := params.ByName("file")
|
||||
zr.getfile.HandleGetRequest(directory, torrentName, fileName, resp, req, zr.torMgr, zr.cfg, zr.log)
|
||||
zr.getfile.ServeFile(directory, torrentName, fileName, resp, req, zr.torMgr, zr.cfg, zr.log)
|
||||
}
|
||||
|
||||
func (zr *ZurgRouter) headHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
func (zr *ZurgRouter) httpHeadHandler(resp http.ResponseWriter, req *http.Request, params httprouter.Params) {
|
||||
directory := params.ByName("directory")
|
||||
torrentName := params.ByName("torrent")
|
||||
fileName := params.ByName("file")
|
||||
|
||||
Reference in New Issue
Block a user