mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 17:10:10 +00:00
Harvey Tindall
ba67fa7536
When enabled, an account for the user is created on both Jellyfin and Ombi. Account defaults can be stored similarly to jf.
60 lines
2.3 KiB
Go
60 lines
2.3 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (app *appContext) AdminPage(gc *gin.Context) {
|
|
bs5 := app.config.Section("ui").Key("bs5").MustBool(false)
|
|
emailEnabled, _ := app.config.Section("invite_emails").Key("enabled").Bool()
|
|
notificationsEnabled, _ := app.config.Section("notifications").Key("enabled").Bool()
|
|
ombiEnabled := app.config.Section("ombi").Key("enabled").MustBool(false)
|
|
gc.HTML(http.StatusOK, "admin.html", gin.H{
|
|
"bs5": bs5,
|
|
"cssFile": app.cssFile,
|
|
"contactMessage": "",
|
|
"email_enabled": emailEnabled,
|
|
"notifications": notificationsEnabled,
|
|
"version": VERSION,
|
|
"commit": COMMIT,
|
|
"ombiEnabled": ombiEnabled,
|
|
})
|
|
}
|
|
|
|
func (app *appContext) InviteProxy(gc *gin.Context) {
|
|
code := gc.Param("invCode")
|
|
/* Don't actually check if the invite is valid, just if it exists, just so the page loads quicker. Invite is actually checked on submit anyway. */
|
|
// if app.checkInvite(code, false, "") {
|
|
if _, ok := app.storage.invites[code]; ok {
|
|
email := app.storage.invites[code].Email
|
|
gc.HTML(http.StatusOK, "form.html", gin.H{
|
|
"bs5": app.config.Section("ui").Key("bs5").MustBool(false),
|
|
"cssFile": app.cssFile,
|
|
"contactMessage": app.config.Section("ui").Key("contac_message").String(),
|
|
"helpMessage": app.config.Section("ui").Key("help_message").String(),
|
|
"successMessage": app.config.Section("ui").Key("success_message").String(),
|
|
"jfLink": app.config.Section("jellyfin").Key("public_server").String(),
|
|
"validate": app.config.Section("password_validation").Key("enabled").MustBool(false),
|
|
"requirements": app.validator.getCriteria(),
|
|
"email": email,
|
|
"username": !app.config.Section("email").Key("no_username").MustBool(false),
|
|
})
|
|
} else {
|
|
gc.HTML(404, "invalidCode.html", gin.H{
|
|
"bs5": app.config.Section("ui").Key("bs5").MustBool(false),
|
|
"cssFile": app.cssFile,
|
|
"contactMessage": app.config.Section("ui").Key("contac_message").String(),
|
|
})
|
|
}
|
|
}
|
|
|
|
func (app *appContext) NoRouteHandler(gc *gin.Context) {
|
|
gc.HTML(404, "404.html", gin.H{
|
|
"bs5": app.config.Section("ui").Key("bs5").MustBool(false),
|
|
"cssFile": app.cssFile,
|
|
"contactMessage": app.config.Section("ui").Key("contact_message").String(),
|
|
})
|
|
}
|