2026-07-27 08:16:20 +12:00
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
2026-07-27 21:06:51 +12:00
|
|
|
"errors"
|
2026-07-27 08:16:20 +12:00
|
|
|
"net/http"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"github.com/ponzischeme89/memby/server/internal/cache"
|
2026-07-27 21:06:51 +12:00
|
|
|
"github.com/ponzischeme89/memby/server/internal/emby"
|
2026-07-27 08:16:20 +12:00
|
|
|
"github.com/ponzischeme89/memby/server/internal/store"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type loginRequest struct {
|
2026-07-27 21:06:51 +12:00
|
|
|
Username string `json:"username"`
|
|
|
|
|
Password string `json:"password"`
|
|
|
|
|
DeviceID string `json:"deviceId"`
|
|
|
|
|
DeviceName string `json:"deviceName"`
|
2026-07-27 08:16:20 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type loginResponse struct {
|
2026-07-27 21:06:51 +12:00
|
|
|
Token string `json:"token"`
|
|
|
|
|
UserID string `json:"userId"`
|
|
|
|
|
Username string `json:"username"`
|
|
|
|
|
ServerID string `json:"serverId"`
|
|
|
|
|
ActiveClients int `json:"activeClients,omitempty"`
|
|
|
|
|
MaxClientsPerUser int `json:"maxClientsPerUser"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type authPolicyResponse struct {
|
|
|
|
|
MaxClientsPerUser int `json:"maxClientsPerUser"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *Server) handleAuthPolicy(w http.ResponseWriter, _ *http.Request) {
|
|
|
|
|
writeJSON(w, http.StatusOK, authPolicyResponse{
|
|
|
|
|
MaxClientsPerUser: s.cfg.MaxClientsPerUser,
|
|
|
|
|
})
|
2026-07-27 08:16:20 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleLogin exchanges Emby credentials for a gateway token.
|
|
|
|
|
//
|
|
|
|
|
// The Emby access token stays here: the TV only ever holds the gateway token, so
|
|
|
|
|
// revoking a device is a DELETE in Postgres rather than an Emby-side cleanup.
|
|
|
|
|
func (s *Server) handleLogin(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
var req loginRequest
|
|
|
|
|
if err := json.NewDecoder(http.MaxBytesReader(w, r.Body, 8<<10)).Decode(&req); err != nil {
|
|
|
|
|
writeError(w, http.StatusBadRequest, "malformed request body")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
req.Username = strings.TrimSpace(req.Username)
|
|
|
|
|
if req.Username == "" {
|
|
|
|
|
writeError(w, http.StatusBadRequest, "username is required")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if req.DeviceID == "" {
|
|
|
|
|
req.DeviceID = "memby-tv"
|
|
|
|
|
}
|
2026-07-27 21:06:51 +12:00
|
|
|
req.DeviceName = strings.TrimSpace(req.DeviceName)
|
|
|
|
|
if req.DeviceName == "" {
|
|
|
|
|
// Compatibility for APKs released before device naming. New clients require an
|
|
|
|
|
// editable name in their UI, but an older TV must still be able to sign in while
|
|
|
|
|
// the household rollout is in progress.
|
|
|
|
|
req.DeviceName = "Memby TV"
|
|
|
|
|
}
|
|
|
|
|
if len([]rune(req.DeviceName)) > 80 {
|
|
|
|
|
writeError(w, http.StatusBadRequest, "device name is too long")
|
|
|
|
|
return
|
|
|
|
|
}
|
2026-07-27 08:16:20 +12:00
|
|
|
|
2026-07-27 21:06:51 +12:00
|
|
|
auth, err := s.emby.Authenticate(
|
|
|
|
|
r.Context(), req.Username, req.Password, req.DeviceID, req.DeviceName,
|
|
|
|
|
)
|
2026-07-27 08:16:20 +12:00
|
|
|
if err != nil {
|
|
|
|
|
// Never echo Emby's body here: a failed sign-in is the one place a wrong
|
|
|
|
|
// password could be reflected back.
|
|
|
|
|
s.log.Warn("emby authentication failed", "username", req.Username)
|
|
|
|
|
writeError(w, http.StatusUnauthorized, "sign-in failed")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
token, err := newToken()
|
|
|
|
|
if err != nil {
|
|
|
|
|
s.log.Error("token generation failed", "error", err)
|
|
|
|
|
writeError(w, http.StatusInternalServerError, "could not issue a token")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sess := store.Session{
|
2026-07-29 15:26:27 +12:00
|
|
|
TokenHash: hashToken(token),
|
|
|
|
|
EmbyUserID: auth.User.ID,
|
|
|
|
|
EmbyToken: auth.AccessToken,
|
|
|
|
|
Username: auth.User.Name,
|
|
|
|
|
ServerID: auth.ServerID,
|
|
|
|
|
DeviceID: req.DeviceID,
|
|
|
|
|
DeviceName: req.DeviceName,
|
|
|
|
|
ClientVersion: clientVersion(r),
|
|
|
|
|
ClientProtocol: clientProtocol(r),
|
2026-07-27 08:16:20 +12:00
|
|
|
}
|
|
|
|
|
if sess.Username == "" {
|
|
|
|
|
sess.Username = req.Username
|
|
|
|
|
}
|
2026-07-27 21:06:51 +12:00
|
|
|
replacedHash, activeClients, err := s.store.CreateSession(
|
|
|
|
|
r.Context(), sess, s.cfg.MaxClientsPerUser,
|
|
|
|
|
)
|
|
|
|
|
if errors.Is(err, store.ErrDeviceLimit) {
|
|
|
|
|
if revokeErr := s.emby.Logout(r.Context(), emby.Credentials{
|
|
|
|
|
UserID: auth.User.ID, Token: auth.AccessToken,
|
|
|
|
|
DeviceID: req.DeviceID, DeviceName: req.DeviceName,
|
|
|
|
|
}); revokeErr != nil {
|
|
|
|
|
s.log.Warn("could not retire refused emby session", "error", revokeErr)
|
|
|
|
|
}
|
|
|
|
|
s.log.Warn("device allowance reached",
|
|
|
|
|
"username", sess.Username,
|
|
|
|
|
"active_clients", activeClients,
|
|
|
|
|
"max_clients", s.cfg.MaxClientsPerUser,
|
|
|
|
|
)
|
|
|
|
|
writeJSON(w, http.StatusConflict, map[string]any{
|
|
|
|
|
"error": "device_limit_reached",
|
|
|
|
|
"message": "This account has reached its Memby device allowance.",
|
|
|
|
|
"activeClients": activeClients,
|
|
|
|
|
"maxClientsPerUser": s.cfg.MaxClientsPerUser,
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
|
|
|
|
_ = s.emby.Logout(r.Context(), emby.Credentials{
|
|
|
|
|
UserID: auth.User.ID, Token: auth.AccessToken,
|
|
|
|
|
DeviceID: req.DeviceID, DeviceName: req.DeviceName,
|
|
|
|
|
})
|
2026-07-27 08:16:20 +12:00
|
|
|
s.log.Error("session persist failed", "error", err)
|
|
|
|
|
writeError(w, http.StatusInternalServerError, "could not start a session")
|
|
|
|
|
return
|
|
|
|
|
}
|
2026-07-27 21:06:51 +12:00
|
|
|
if len(replacedHash) > 0 {
|
|
|
|
|
_ = s.cache.Delete(r.Context(), cache.SessionKey(hexHash(replacedHash)))
|
|
|
|
|
}
|
2026-07-29 15:26:27 +12:00
|
|
|
if s.forYou != nil {
|
|
|
|
|
s.forYou.MarkDirty(r.Context(), sess)
|
|
|
|
|
s.forYou.RefreshAsync(sess, false)
|
|
|
|
|
}
|
2026-07-27 08:16:20 +12:00
|
|
|
|
|
|
|
|
writeJSON(w, http.StatusOK, loginResponse{
|
2026-07-27 21:06:51 +12:00
|
|
|
Token: token,
|
|
|
|
|
UserID: sess.EmbyUserID,
|
|
|
|
|
Username: sess.Username,
|
|
|
|
|
ServerID: sess.ServerID,
|
|
|
|
|
ActiveClients: activeClients,
|
|
|
|
|
MaxClientsPerUser: s.cfg.MaxClientsPerUser,
|
2026-07-27 08:16:20 +12:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *Server) handleLogout(w http.ResponseWriter, r *http.Request, sess store.Session) {
|
|
|
|
|
if err := s.store.DeleteSession(r.Context(), sess.TokenHash); err != nil {
|
|
|
|
|
s.log.Error("session delete failed", "error", err)
|
|
|
|
|
}
|
|
|
|
|
_ = s.cache.Delete(r.Context(), cache.SessionKey(hexHash(sess.TokenHash)))
|
|
|
|
|
_ = s.cache.InvalidateUser(r.Context(), sess.EmbyUserID)
|
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleSession lets the TV confirm a stored token is still good before rendering.
|
|
|
|
|
func (s *Server) handleSession(w http.ResponseWriter, _ *http.Request, sess store.Session) {
|
|
|
|
|
writeJSON(w, http.StatusOK, loginResponse{
|
2026-07-27 21:06:51 +12:00
|
|
|
UserID: sess.EmbyUserID,
|
|
|
|
|
Username: sess.Username,
|
|
|
|
|
ServerID: sess.ServerID,
|
|
|
|
|
MaxClientsPerUser: s.cfg.MaxClientsPerUser,
|
2026-07-27 08:16:20 +12:00
|
|
|
})
|
|
|
|
|
}
|