mirror of
https://github.com/navidrome/navidrome.git
synced 2026-01-03 06:15:22 +00:00
153 lines
4.7 KiB
Go
153 lines
4.7 KiB
Go
package plugins
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/model/request"
|
|
"github.com/navidrome/navidrome/plugins/host"
|
|
)
|
|
|
|
// subsonicAPIVersion is the Subsonic API version used for plugin calls.
|
|
// This is defined locally to avoid import cycle with server/subsonic.
|
|
const subsonicAPIVersion = "1.16.1"
|
|
|
|
// subsonicAPIServiceImpl implements host.SubsonicAPIService.
|
|
// It provides plugins with access to Navidrome's Subsonic API.
|
|
//
|
|
// Authentication: The plugin must provide a valid 'u' (username) parameter in the URL.
|
|
// URL Format: Only the path and query parameters are used - host/protocol are ignored.
|
|
// Automatic Parameters: The service adds 'c' (client), 'v' (version), 'f' (format).
|
|
type subsonicAPIServiceImpl struct {
|
|
pluginID string
|
|
router SubsonicRouter
|
|
ds model.DataStore
|
|
permissions *subsonicAPIPermissions
|
|
}
|
|
|
|
// newSubsonicAPIService creates a new SubsonicAPIService for a plugin.
|
|
func newSubsonicAPIService(pluginID string, router SubsonicRouter, ds model.DataStore, permissions *SubsonicAPIPermission) host.SubsonicAPIService {
|
|
return &subsonicAPIServiceImpl{
|
|
pluginID: pluginID,
|
|
router: router,
|
|
ds: ds,
|
|
permissions: parseSubsonicAPIPermissions(permissions),
|
|
}
|
|
}
|
|
|
|
func (s *subsonicAPIServiceImpl) Call(ctx context.Context, uri string) (string, error) {
|
|
if s.router == nil {
|
|
return "", fmt.Errorf("SubsonicAPI router not available")
|
|
}
|
|
|
|
// Parse the input URL
|
|
parsedURL, err := url.Parse(uri)
|
|
if err != nil {
|
|
return "", fmt.Errorf("invalid URL format: %w", err)
|
|
}
|
|
|
|
// Extract query parameters
|
|
query := parsedURL.Query()
|
|
|
|
// Validate that 'u' (username) parameter is present
|
|
username := query.Get("u")
|
|
if username == "" {
|
|
return "", fmt.Errorf("missing required parameter 'u' (username)")
|
|
}
|
|
|
|
if err := s.checkPermissions(ctx, username); err != nil {
|
|
log.Warn(ctx, "SubsonicAPI call blocked by permissions", "plugin", s.pluginID, "user", username, err)
|
|
return "", err
|
|
}
|
|
|
|
// Add required Subsonic API parameters
|
|
query.Set("c", s.pluginID) // Client name (plugin ID)
|
|
query.Set("f", "json") // Response format
|
|
query.Set("v", subsonicAPIVersion) // API version
|
|
|
|
// Extract the endpoint from the path
|
|
endpoint := path.Base(parsedURL.Path)
|
|
|
|
// Build the final URL with processed path and modified query parameters
|
|
finalURL := &url.URL{
|
|
Path: "/" + endpoint,
|
|
RawQuery: query.Encode(),
|
|
}
|
|
|
|
// Create HTTP request with a fresh context to avoid Chi RouteContext pollution.
|
|
// Using http.NewRequest (instead of http.NewRequestWithContext) ensures the internal
|
|
// SubsonicAPI call doesn't inherit routing information from the parent handler,
|
|
// which would cause Chi to invoke the wrong handler. Authentication context is
|
|
// explicitly added in the next step via request.WithInternalAuth.
|
|
httpReq, err := http.NewRequest("GET", finalURL.String(), nil)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to create HTTP request: %w", err)
|
|
}
|
|
|
|
// Set internal authentication context using the username from the 'u' parameter
|
|
authCtx := request.WithInternalAuth(httpReq.Context(), username)
|
|
httpReq = httpReq.WithContext(authCtx)
|
|
|
|
// Use ResponseRecorder to capture the response
|
|
recorder := httptest.NewRecorder()
|
|
|
|
// Call the subsonic router
|
|
s.router.ServeHTTP(recorder, httpReq)
|
|
|
|
// Return the response body as JSON
|
|
return recorder.Body.String(), nil
|
|
}
|
|
|
|
func (s *subsonicAPIServiceImpl) checkPermissions(ctx context.Context, username string) error {
|
|
if s.permissions == nil {
|
|
return nil
|
|
}
|
|
if len(s.permissions.AllowedUsernames) > 0 {
|
|
if _, ok := s.permissions.usernameMap[strings.ToLower(username)]; !ok {
|
|
return fmt.Errorf("username %s is not allowed", username)
|
|
}
|
|
}
|
|
if !s.permissions.AllowAdmins {
|
|
usr, err := s.ds.User(ctx).FindByUsername(username)
|
|
if err != nil {
|
|
if errors.Is(err, model.ErrNotFound) {
|
|
return fmt.Errorf("username %s not found", username)
|
|
}
|
|
return err
|
|
}
|
|
if usr.IsAdmin {
|
|
return fmt.Errorf("calling SubsonicAPI as admin user is not allowed")
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type subsonicAPIPermissions struct {
|
|
AllowedUsernames []string
|
|
AllowAdmins bool
|
|
usernameMap map[string]struct{}
|
|
}
|
|
|
|
func parseSubsonicAPIPermissions(data *SubsonicAPIPermission) *subsonicAPIPermissions {
|
|
if data == nil {
|
|
return &subsonicAPIPermissions{}
|
|
}
|
|
perms := &subsonicAPIPermissions{
|
|
AllowedUsernames: data.AllowedUsernames,
|
|
AllowAdmins: data.AllowAdmins,
|
|
usernameMap: make(map[string]struct{}),
|
|
}
|
|
for _, u := range data.AllowedUsernames {
|
|
perms.usernameMap[strings.ToLower(u)] = struct{}{}
|
|
}
|
|
return perms
|
|
}
|