mirror of
https://github.com/navidrome/navidrome.git
synced 2025-07-14 15:41:18 +03:00
* chore: .gitignore any navidrome binary Signed-off-by: Deluan <deluan@navidrome.org> * feat: implement internal authentication handling in middleware Signed-off-by: Deluan <deluan@navidrome.org> * feat(manager): add SubsonicRouter to Manager for API routing Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): add SubsonicAPI Host service for plugins and an example plugin Signed-off-by: Deluan <deluan@navidrome.org> * fix lint Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): refactor path handling in SubsonicAPI to extract endpoint correctly Signed-off-by: Deluan <deluan@navidrome.org> * docs(plugins): add SubsonicAPI service documentation to README Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): implement permission checks for SubsonicAPI service Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): enhance SubsonicAPI service initialization with atomic router handling Signed-off-by: Deluan <deluan@navidrome.org> * refactor(plugins): better encapsulated dependency injection Signed-off-by: Deluan <deluan@navidrome.org> * refactor(plugins): rename parameter in WithInternalAuth for clarity Signed-off-by: Deluan <deluan@navidrome.org> * docs(plugins): update SubsonicAPI permissions section in README for clarity and detail Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): enhance SubsonicAPI permissions output with allowed usernames and admin flag Signed-off-by: Deluan <deluan@navidrome.org> * feat(plugins): add schema reference to example plugins Signed-off-by: Deluan <deluan@navidrome.org> * remove import alias Signed-off-by: Deluan <deluan@navidrome.org> --------- Signed-off-by: Deluan <deluan@navidrome.org>
65 lines
1.7 KiB
Go
65 lines
1.7 KiB
Go
//go:build wasip1
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
|
|
"github.com/navidrome/navidrome/plugins/api"
|
|
"github.com/navidrome/navidrome/plugins/host/subsonicapi"
|
|
)
|
|
|
|
// SubsonicAPIService instance for making API calls
|
|
var subsonicService = subsonicapi.NewSubsonicAPIService()
|
|
|
|
// SubsonicAPIDemoPlugin implements LifecycleManagement interface
|
|
type SubsonicAPIDemoPlugin struct{}
|
|
|
|
// OnInit is called when the plugin is loaded
|
|
func (SubsonicAPIDemoPlugin) OnInit(ctx context.Context, req *api.InitRequest) (*api.InitResponse, error) {
|
|
log.Printf("SubsonicAPI Demo Plugin initializing...")
|
|
|
|
// Example: Call the ping endpoint to check if the server is alive
|
|
response, err := subsonicService.Call(ctx, &subsonicapi.CallRequest{
|
|
Url: "/rest/ping?u=admin",
|
|
})
|
|
|
|
if err != nil {
|
|
log.Printf("SubsonicAPI call failed: %v", err)
|
|
return &api.InitResponse{Error: err.Error()}, nil
|
|
}
|
|
|
|
if response.Error != "" {
|
|
log.Printf("SubsonicAPI returned error: %s", response.Error)
|
|
return &api.InitResponse{Error: response.Error}, nil
|
|
}
|
|
|
|
log.Printf("SubsonicAPI ping response: %s", response.Json)
|
|
|
|
// Example: Get server info
|
|
infoResponse, err := subsonicService.Call(ctx, &subsonicapi.CallRequest{
|
|
Url: "/rest/getLicense?u=admin",
|
|
})
|
|
|
|
if err != nil {
|
|
log.Printf("SubsonicAPI getLicense call failed: %v", err)
|
|
return &api.InitResponse{Error: err.Error()}, nil
|
|
}
|
|
|
|
if infoResponse.Error != "" {
|
|
log.Printf("SubsonicAPI getLicense returned error: %s", infoResponse.Error)
|
|
return &api.InitResponse{Error: infoResponse.Error}, nil
|
|
}
|
|
|
|
log.Printf("SubsonicAPI license info: %s", infoResponse.Json)
|
|
|
|
return &api.InitResponse{}, nil
|
|
}
|
|
|
|
func main() {}
|
|
|
|
func init() {
|
|
api.RegisterLifecycleManagement(&SubsonicAPIDemoPlugin{})
|
|
}
|