Subsonci API: added getAlbmInfo support

This commit is contained in:
emeric
2024-10-31 15:50:17 +01:00
parent a15b060242
commit 0ca2d8b34c
6 changed files with 120 additions and 2 deletions
@@ -0,0 +1,47 @@
/*
* Copyright (C) 2024 Emeric Poupon
*
* This file is part of LMS.
*
* LMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LMS. If not, see <http://www.gnu.org/licenses/>.
*/
#include "AlbumInfo.hpp"
#include "database/Release.hpp"
#include "RequestContext.hpp"
namespace lms::api::subsonic
{
Response::Node createAlbumInfoNode(RequestContext& context, const db::ObjectPtr<db::Release>& release)
{
Response::Node albumInfo;
if (const auto releaseMBID{ release->getMBID() })
{
switch (context.responseFormat)
{
case ResponseFormat::json:
albumInfo.setAttribute("musicBrainzId", releaseMBID->getAsString());
break;
case ResponseFormat::xml:
albumInfo.createChild("musicBrainzId").setValue(releaseMBID->getAsString());
break;
}
}
return albumInfo;
}
} // namespace lms::api::subsonic
@@ -0,0 +1,36 @@
/*
* Copyright (C) 2024 Emeric Poupon
*
* This file is part of LMS.
*
* LMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LMS. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "database/Object.hpp"
#include "SubsonicResponse.hpp"
namespace lms::db
{
class Release;
} // namespace lms::db
namespace lms::api::subsonic
{
struct RequestContext;
Response::Node createAlbumInfoNode(RequestContext& context, const db::ObjectPtr<db::Release>& release);
} // namespace lms::api::subsonic