2020-08-01 23:05:35 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type testReq struct {
|
|
|
|
Host string `json:"jfHost"`
|
|
|
|
Username string `json:"jfUser"`
|
|
|
|
Password string `json:"jfPassword"`
|
|
|
|
}
|
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
func (app *appContext) TestJF(gc *gin.Context) {
|
2020-08-01 23:05:35 +00:00
|
|
|
var req testReq
|
|
|
|
gc.BindJSON(&req)
|
|
|
|
tempjf := Jellyfin{}
|
2020-08-16 12:36:54 +00:00
|
|
|
tempjf.init(req.Host, "jfa-go-setup", app.version, "auth", "auth")
|
2020-08-01 23:05:35 +00:00
|
|
|
_, status, err := tempjf.authenticate(req.Username, req.Password)
|
|
|
|
if !(status == 200 || status == 204) || err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.info.Printf("Auth failed with code %d (%s)", status, err)
|
2020-08-01 23:05:35 +00:00
|
|
|
gc.JSON(401, map[string]bool{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
gc.JSON(200, map[string]bool{"success": true})
|
|
|
|
}
|