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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*
* Copyright (C) 2012-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 "DbUrl.h"
#include "utils/URIUtils.h"
CDbUrl::CDbUrl()
{
Reset();
}
CDbUrl::~CDbUrl() = default;
void CDbUrl::Reset()
{
m_valid = false;
m_type.clear();
m_url.Reset();
m_options.clear();
}
std::string CDbUrl::ToString() const
{
if (!m_valid)
return "";
return m_url.Get();
}
bool CDbUrl::FromString(const std::string &dbUrl)
{
Reset();
m_url.Parse(dbUrl);
m_valid = parse();
if (!m_valid)
Reset();
return m_valid;
}
void CDbUrl::AppendPath(const std::string &subPath)
{
if (!m_valid || subPath.empty())
return;
m_url.SetFileName(URIUtils::AddFileToFolder(m_url.GetFileName(), subPath));
}
void CDbUrl::AddOption(const std::string &key, const char *value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOption(const std::string &key, const std::string &value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOption(const std::string &key, int value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOption(const std::string &key, float value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOption(const std::string &key, double value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOption(const std::string &key, bool value)
{
if (!validateOption(key, value))
return;
CUrlOptions::AddOption(key, value);
updateOptions();
}
void CDbUrl::AddOptions(const std::string &options)
{
CUrlOptions::AddOptions(options);
updateOptions();
}
void CDbUrl::RemoveOption(const std::string &key)
{
CUrlOptions::RemoveOption(key);
updateOptions();
}
bool CDbUrl::validateOption(const std::string &key, const CVariant &value)
{
return !key.empty();
}
void CDbUrl::updateOptions()
{
// Update the options string in the CURL object
std::string options = GetOptionsString();
if (!options.empty())
options = "?" + options;
m_url.SetOptions(options);
}
|