navidrome/core/agents
2022-07-26 16:53:17 -04:00
..
lastfm Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
listenbrainz Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
spotify Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
agents.go Better logging for agents configuration 2021-11-25 15:48:32 -05:00
agents_suite_test.go Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
agents_test.go Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
interfaces.go Refactor Agents to be singleton 2021-06-23 11:01:58 -04:00
placeholders.go Refactor Agents to be singleton 2021-06-23 11:01:58 -04:00
README.md Add some info about how to create new agents 2021-02-08 17:18:43 -05:00
session_keys.go Listenbrainz scrobbling (#1424) 2021-10-30 12:17:42 -04:00
session_keys_test.go Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00

This folder abstracts metadata lookup into "agents". Each agent can be implemented to get as much info as the external source provides, by using a granular set of interfaces (see interfaces].

A new agent must comply with these simple implementation rules:

  1. Implement the AgentName() method. It just returns the name of the agent for logging purposes.
  2. Implement one or more of the *Retriever() interfaces. That's where the agent's logic resides.
  3. Register itself (in its init() function).

For an agent to be used it needs to be listed in the Agents config option (default is "lastfm,spotify"). The order dictates the priority of the agents

For a simple Agent example, look at the placeholders.go agent source code.