1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PluginSource.h"
#include "URL.h"
#include "addons/addoninfo/AddonInfo.h"
#include "addons/addoninfo/AddonType.h"
#include "utils/StringUtils.h"
#include <utility>
namespace ADDON
{
CPluginSource::CPluginSource(const AddonInfoPtr& addonInfo, AddonType addonType)
: CAddon(addonInfo, addonType)
{
std::string provides = addonInfo->Type(addonType)->GetValue("provides").asString();
for (const auto& values : addonInfo->Type(addonType)->GetValues())
{
if (values.first != "medialibraryscanpath")
continue;
std::string url = "plugin://" + ID() + '/';
std::string content = values.second.GetValue("medialibraryscanpath@content").asString();
std::string path = values.second.GetValue("medialibraryscanpath").asString();
if (!path.empty() && path.front() == '/')
path.erase(0, 1);
if (path.compare(0, url.size(), url))
path.insert(0, url);
m_mediaLibraryScanPaths[content].push_back(CURL(path).GetFileName());
}
SetProvides(provides);
}
void CPluginSource::SetProvides(const std::string &content)
{
if (!content.empty())
{
std::vector<std::string> provides = StringUtils::Split(content, ' ');
for (std::vector<std::string>::const_iterator i = provides.begin(); i != provides.end(); ++i)
{
Content content = Translate(*i);
if (content != UNKNOWN)
m_providedContent.insert(content);
}
}
if (Type() == AddonType::SCRIPT && m_providedContent.empty())
m_providedContent.insert(EXECUTABLE);
}
CPluginSource::Content CPluginSource::Translate(const std::string &content)
{
if (content == "audio")
return CPluginSource::AUDIO;
else if (content == "image")
return CPluginSource::IMAGE;
else if (content == "executable")
return CPluginSource::EXECUTABLE;
else if (content == "video")
return CPluginSource::VIDEO;
else if (content == "game")
return CPluginSource::GAME;
else
return CPluginSource::UNKNOWN;
}
bool CPluginSource::HasType(AddonType type) const
{
return ((type == AddonType::VIDEO && Provides(VIDEO)) ||
(type == AddonType::AUDIO && Provides(AUDIO)) ||
(type == AddonType::IMAGE && Provides(IMAGE)) ||
(type == AddonType::GAME && Provides(GAME)) ||
(type == AddonType::EXECUTABLE && Provides(EXECUTABLE)) || (type == CAddon::Type()));
}
} /*namespace ADDON*/
|