mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
package subsonic
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/navidrome/navidrome/model/request"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
)
|
|
|
|
// TODO This is a placeholder. The real one has to read this info from a config file or the database
|
|
func (api *Router) GetUser(r *http.Request) (*responses.Subsonic, error) {
|
|
loggedUser, ok := request.UserFrom(r.Context())
|
|
if !ok {
|
|
return nil, newError(responses.ErrorGeneric, "Internal error")
|
|
}
|
|
response := newResponse()
|
|
response.User = &responses.User{}
|
|
response.User.Username = loggedUser.UserName
|
|
response.User.AdminRole = loggedUser.IsAdmin
|
|
response.User.Email = loggedUser.Email
|
|
response.User.StreamRole = true
|
|
response.User.DownloadRole = true
|
|
response.User.ScrobblingEnabled = true
|
|
return response, nil
|
|
}
|
|
|
|
func (api *Router) GetUsers(r *http.Request) (*responses.Subsonic, error) {
|
|
loggedUser, ok := request.UserFrom(r.Context())
|
|
if !ok {
|
|
return nil, newError(responses.ErrorGeneric, "Internal error")
|
|
}
|
|
user := responses.User{}
|
|
user.Username = loggedUser.Name
|
|
user.AdminRole = loggedUser.IsAdmin
|
|
user.Email = loggedUser.Email
|
|
user.StreamRole = true
|
|
user.DownloadRole = true
|
|
user.ScrobblingEnabled = true
|
|
response := newResponse()
|
|
response.Users = &responses.Users{User: []responses.User{user}}
|
|
return response, nil
|
|
}
|