2015-12-25 06:10:02 +08:00
|
|
|
// Copyright (c) 2014-2016 Thomas Fussell
|
2015-12-25 04:51:11 +08:00
|
|
|
// Copyright (c) 2010-2015 openpyxl
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE
|
|
|
|
//
|
|
|
|
// @license: http://www.opensource.org/licenses/mit-license.php
|
|
|
|
// @author: see AUTHORS file
|
2016-08-12 12:22:14 +08:00
|
|
|
|
2015-11-01 22:48:51 +08:00
|
|
|
#include <algorithm>
|
2016-08-12 12:22:14 +08:00
|
|
|
#include <unordered_set>
|
2015-11-01 22:48:51 +08:00
|
|
|
|
2015-11-03 21:46:40 +08:00
|
|
|
#include <xlnt/packaging/manifest.hpp>
|
2016-08-05 13:52:05 +08:00
|
|
|
#include <xlnt/utils/exceptions.hpp>
|
|
|
|
|
2015-10-30 01:46:56 +08:00
|
|
|
namespace xlnt {
|
|
|
|
|
2016-07-30 05:50:33 +08:00
|
|
|
void manifest::clear()
|
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
default_content_types_.clear();
|
|
|
|
override_content_types_.clear();
|
|
|
|
relationships_.clear();
|
2016-07-30 05:50:33 +08:00
|
|
|
}
|
|
|
|
|
2016-11-14 00:52:39 +08:00
|
|
|
path manifest::canonicalize(const std::vector<relationship> &rels)
|
|
|
|
{
|
|
|
|
xlnt::path relative;
|
|
|
|
|
|
|
|
for (auto component : rels)
|
|
|
|
{
|
|
|
|
if (component == rels.back())
|
|
|
|
{
|
|
|
|
relative = relative.append(component.get_target().get_path());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
relative = relative.append(component.get_target().get_path().parent());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> absolute_parts;
|
|
|
|
|
|
|
|
for (const auto &component : relative.split())
|
|
|
|
{
|
|
|
|
if (component == ".") continue;
|
|
|
|
|
|
|
|
if (component == "..")
|
|
|
|
{
|
|
|
|
absolute_parts.pop_back();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
absolute_parts.push_back(component);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::path result;
|
|
|
|
|
|
|
|
for (const auto &component : absolute_parts)
|
|
|
|
{
|
|
|
|
result = result.append(component);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
bool manifest::has_relationship(const path &part, relationship::type type) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (relationships_.find(part) == relationships_.end()) return false;
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &rel : relationships_.at(part))
|
|
|
|
{
|
|
|
|
if (rel.second.get_type() == type) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
relationship manifest::get_relationship(const path &part, relationship::type type) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (relationships_.find(part) == relationships_.end()) throw key_not_found();
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &rel : relationships_.at(part))
|
|
|
|
{
|
|
|
|
if (rel.second.get_type() == type) return rel.second;
|
|
|
|
}
|
|
|
|
|
2016-08-05 13:52:05 +08:00
|
|
|
throw key_not_found();
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<relationship> manifest::get_relationships(const path &part, relationship::type type) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
std::vector<relationship> matches;
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &rel : relationships_.at(part))
|
|
|
|
{
|
|
|
|
if (rel.second.get_type() == type)
|
|
|
|
{
|
|
|
|
matches.push_back(rel.second);
|
|
|
|
}
|
|
|
|
}
|
2016-08-05 13:52:05 +08:00
|
|
|
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::string manifest::get_content_type(const path &part) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-13 11:06:25 +08:00
|
|
|
auto absolute = part.resolve(path("/"));
|
|
|
|
|
|
|
|
if (has_override_type(absolute))
|
2016-08-12 12:22:14 +08:00
|
|
|
{
|
2016-08-13 11:06:25 +08:00
|
|
|
return get_override_type(absolute);
|
2016-08-12 12:22:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (has_default_type(part.extension()))
|
|
|
|
{
|
|
|
|
return get_default_type(part.extension());
|
|
|
|
}
|
|
|
|
|
|
|
|
throw key_not_found();
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-06 22:40:17 +08:00
|
|
|
void manifest::register_override_type(const path &part, const std::string &content_type)
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
override_content_types_[part] = content_type;
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-10-23 01:53:44 +08:00
|
|
|
void manifest::unregister_override_type(const path &part)
|
|
|
|
{
|
|
|
|
override_content_types_.erase(part);
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<path> manifest::get_parts_with_overriden_types() const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-06 22:40:17 +08:00
|
|
|
std::vector<path> overriden;
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &part : override_content_types_)
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
overriden.push_back(part.first);
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-06 22:40:17 +08:00
|
|
|
return overriden;
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<relationship> manifest::get_relationships(const path &part) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (relationships_.find(part) == relationships_.end())
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
return {};
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<relationship> relationships;
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &rel : relationships_.at(part))
|
|
|
|
{
|
|
|
|
relationships.push_back(rel.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
return relationships;
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
relationship manifest::get_relationship(const path &part, const std::string &rel_id) const
|
2015-10-30 01:46:56 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (relationships_.find(part) == relationships_.end())
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
throw key_not_found();
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &rel : relationships_.at(part))
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (rel.second.get_id() == rel_id)
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
return rel.second;
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw key_not_found();
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<path> manifest::get_parts() const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
std::unordered_set<path> parts;
|
2015-10-30 01:46:56 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &part_rels : relationships_)
|
2016-08-06 22:40:17 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
parts.insert(part_rels.first);
|
|
|
|
|
|
|
|
for (const auto &rel : part_rels.second)
|
|
|
|
{
|
|
|
|
if (rel.second.get_target_mode() == target_mode::internal)
|
|
|
|
{
|
|
|
|
parts.insert(rel.second.get_target().get_path());
|
|
|
|
}
|
|
|
|
}
|
2016-08-06 22:40:17 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
return std::vector<path>(parts.begin(), parts.end());
|
2015-10-31 06:54:04 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::string manifest::register_relationship(const uri &source, relationship::type type, const uri &target, target_mode mode)
|
2015-10-31 06:54:04 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
return register_relationship(source, type, target, mode, next_relationship_id(source.get_path()));
|
2015-10-31 06:54:04 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::string manifest::register_relationship(const uri &source, relationship::type type, const uri &target, target_mode mode, const std::string &rel_id)
|
2015-10-31 06:54:04 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
relationships_[source.get_path()][rel_id] = relationship(rel_id, type, source, target, mode);
|
2016-08-05 13:52:05 +08:00
|
|
|
return rel_id;
|
|
|
|
}
|
|
|
|
|
2016-10-23 01:53:44 +08:00
|
|
|
void manifest::unregister_relationship(const uri &source, const std::string &rel_id)
|
|
|
|
{
|
|
|
|
relationships_.at(source.get_path()).erase(rel_id);
|
|
|
|
}
|
|
|
|
|
2016-08-05 13:52:05 +08:00
|
|
|
bool manifest::has_default_type(const std::string &extension) const
|
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
return default_content_types_.find(extension) != default_content_types_.end();
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::vector<std::string> manifest::get_extensions_with_default_types() const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
std::vector<std::string> extensions;
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
for (const auto &extension_type_pair : default_content_types_)
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
extensions.push_back(extension_type_pair.first);
|
|
|
|
}
|
|
|
|
|
|
|
|
return extensions;
|
2015-10-30 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
2015-11-11 07:58:54 +08:00
|
|
|
std::string manifest::get_default_type(const std::string &extension) const
|
2015-10-30 01:46:56 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (default_content_types_.find(extension) == default_content_types_.end())
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
throw key_not_found();
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
return default_content_types_.at(extension);
|
2015-10-30 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
2016-08-05 13:52:05 +08:00
|
|
|
void manifest::register_default_type(const std::string &extension, const std::string &content_type)
|
2015-10-30 01:46:56 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
default_content_types_[extension] = content_type;
|
2015-10-30 01:46:56 +08:00
|
|
|
}
|
|
|
|
|
2016-08-05 13:52:05 +08:00
|
|
|
void manifest::unregister_default_type(const std::string &extension)
|
2015-11-20 11:54:54 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
default_content_types_.erase(extension);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::string manifest::next_relationship_id(const path &part) const
|
2015-11-20 11:54:54 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
if (relationships_.find(part) == relationships_.end()) return "rId1";
|
|
|
|
|
2016-08-05 13:52:05 +08:00
|
|
|
std::size_t index = 1;
|
2016-08-12 12:22:14 +08:00
|
|
|
const auto &part_rels = relationships_.at(part);
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
while (part_rels.find("rId" + std::to_string(index)) != part_rels.end())
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
|
|
|
++index;
|
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
return "rId" + std::to_string(index);
|
2016-08-05 13:52:05 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
bool manifest::has_override_type(const xlnt::path &part) const
|
2016-08-05 13:52:05 +08:00
|
|
|
{
|
2016-08-12 12:22:14 +08:00
|
|
|
return override_content_types_.find(part) != override_content_types_.end();
|
|
|
|
}
|
2016-08-05 13:52:05 +08:00
|
|
|
|
2016-08-12 12:22:14 +08:00
|
|
|
std::string manifest::get_override_type(const xlnt::path &part) const
|
|
|
|
{
|
|
|
|
if (!has_override_type(part))
|
|
|
|
{
|
|
|
|
throw key_not_found();
|
|
|
|
}
|
|
|
|
|
|
|
|
return override_content_types_.at(part);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
2015-10-30 01:46:56 +08:00
|
|
|
} // namespace xlnt
|