mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Removed MainController
This commit is contained in:
parent
e8a8313b43
commit
5d2a7b1db1
3 changed files with 1 additions and 53 deletions
|
@ -1,23 +0,0 @@
|
||||||
package controllers
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
)
|
|
||||||
|
|
||||||
type MainController struct{ beego.Controller }
|
|
||||||
|
|
||||||
func (c *MainController) Get() {
|
|
||||||
c.Ctx.Redirect(302, "/static/Jamstash/")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *MainController) Error404() {
|
|
||||||
if beego.BConfig.RunMode != beego.PROD || beego.BConfig.Log.AccessLogs {
|
|
||||||
r := c.Ctx.Request
|
|
||||||
devInfo := fmt.Sprintf("| %-10s | %-40s | %-16s", r.Method, r.URL.Path, r.URL.RawQuery)
|
|
||||||
if beego.DefaultAccessLogFilter == nil || !beego.DefaultAccessLogFilter.Filter(c.Ctx) {
|
|
||||||
beego.Warn(devInfo)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
c.CustomAbort(404, "Error 404")
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
package controllers_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
"github.com/cloudsonic/sonic-server/tests"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestErrorHandler(t *testing.T) {
|
|
||||||
tests.Init(t, false)
|
|
||||||
|
|
||||||
r, _ := http.NewRequest("GET", "/INVALID_PATH", nil)
|
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Debug("testing", "TestErrorHandler", fmt.Sprintf("\nUrl: %s\nStatus Code: [%d]\n%s", r.URL, w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("When requesting an non-existing URL\n", t, func() {
|
|
||||||
Convey("Then the status code should be 404", func() {
|
|
||||||
So(w.Code, ShouldEqual, 404)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
3
main.go
3
main.go
|
@ -3,7 +3,6 @@ package main
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
"github.com/cloudsonic/sonic-server/api"
|
"github.com/cloudsonic/sonic-server/api"
|
||||||
"github.com/cloudsonic/sonic-server/conf"
|
"github.com/cloudsonic/sonic-server/conf"
|
||||||
)
|
)
|
||||||
|
@ -12,7 +11,7 @@ func main() {
|
||||||
conf.LoadFromLocalFile()
|
conf.LoadFromLocalFile()
|
||||||
conf.LoadFromFlags()
|
conf.LoadFromFlags()
|
||||||
|
|
||||||
fmt.Printf("\nCloudSonic Server v%s (%s mode)\n\n", "0.2", beego.BConfig.RunMode)
|
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")
|
||||||
|
|
||||||
a := App{}
|
a := App{}
|
||||||
a.Initialize()
|
a.Initialize()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue