/*
* Copyright (C) 2019 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 .
*/
#include "SubsonicId.hpp"
namespace lms::api::subsonic
{
std::string idToString(db::ArtistId id)
{
return "ar-" + id.toString();
}
std::string idToString(db::DirectoryId id)
{
return "dir-" + id.toString();
}
std::string idToString(db::PodcastEpisodeId id)
{
return "podep-" + id.toString();
}
std::string idToString(db::PodcastId id)
{
return "pod-" + id.toString();
}
std::string idToString(db::ReleaseId id)
{
return "al-" + id.toString();
}
std::string idToString(db::TrackId id)
{
return "tr-" + id.toString();
}
std::string idToString(db::TrackListId id)
{
return "pl-" + id.toString();
}
} // namespace lms::api::subsonic
namespace lms::core::stringUtils
{
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "ar")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::ArtistId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "dir")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::DirectoryId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
if (const auto value{ core::stringUtils::readAs(str) })
return db::MediaLibraryId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "podep")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::PodcastEpisodeId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "pod")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::PodcastId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "al")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::ReleaseId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "tr")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::TrackId{ *value };
return std::nullopt;
}
template<>
std::optional readAs(std::string_view str)
{
std::vector values{ core::stringUtils::splitString(str, '-') };
if (values.size() != 2)
return std::nullopt;
if (values[0] != "pl")
return std::nullopt;
if (const auto value{ core::stringUtils::readAs(values[1]) })
return db::TrackListId{ *value };
return std::nullopt;
}
} // namespace lms::core::stringUtils