Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • funkwhale funkwhale
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 380
    • Issues 380
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 22
    • Merge requests 22
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • funkwhalefunkwhale
  • funkwhalefunkwhale
  • Issues
  • #623
Closed
Open
Issue created Nov 26, 2018 by MichaelBechHansen@MichaelBechHansen

Subsonic API: expose more metadata in getAlbumList endpoint

Expose more data in the albumList endpoint to improve compatibility with Subsonic client apps.

Subsonic exposes this for album in the albumList endpoint:

    "albumList2": {
      "album": [
        {
          "id": "4489",
          "name": "Going for the One",
          "artist": "Yes",
          "artistId": "861",
          "coverArt": "al-4489",
          "songCount": 8,
          "duration": 2934,
          "playCount": 0,
          "created": "2018-11-24T14:27:06.000Z",
          "year": 1977,
          "genre": "Progressive rock"*
        }

Funkwhale 0.17 exposes this:

    "albumList2": {
      "album": [
        {
          "id": 2,
          "artistId": 2,
          "name": "Feels Like Home EP",
          "artist": "Becays",
          "created": "2018-11-25T15:36:40.634786Z",
          "coverArt": "al-2",
          "songCount": 25
        }

It would be nice to expose as much as possible of the "static" metadata: duration, year and genre. Some Subsonic clients (i.e. play:Sub) display and make use of this info.

playCount would be lower priority; I'm not aware of any Subsonic client app that makes use of this.

Assignee
Assign to
Time tracking