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 137 138 139 140 141 142
|
/* This file is part of the KDE project
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KoEmbeddedDocumentLoader.h"
#include "KoDocumentBase.h"
#include "KoOdfLoadingContext.h"
#include "OdfDebug.h"
#include <QList>
#include <QUrl>
#include <QString>
#include <KoStore.h>
#include <KoXmlReader.h>
#include <KoXmlNS.h>
#define INTERNAL_PROTOCOL "intern"
#define STORE_PROTOCOL "tar"
class Q_DECL_HIDDEN KoEmbeddedDocumentLoader::Private
{
public:
Private() {}
KoDocumentBase *doc;
};
KoEmbeddedDocumentLoader::KoEmbeddedDocumentLoader(KoDocumentBase *doc)
: d(new Private())
{
d->doc = doc;
}
KoEmbeddedDocumentLoader::~KoEmbeddedDocumentLoader()
{
delete d;
}
bool isInternalUrl(const QString &url)
{
return url.startsWith(STORE_PROTOCOL) || url.startsWith(INTERNAL_PROTOCOL) || QUrl::fromUserInput(url).isRelative();
}
bool KoEmbeddedDocumentLoader::loadEmbeddedDocument(const KoXmlElement &element, KoOdfLoadingContext &context)
{
if (!element.hasAttributeNS(KoXmlNS::xlink, "href")) {
errorOdf << "Object element has no valid xlink:href attribute";
return false;
}
QString url = element.attributeNS(KoXmlNS::xlink, "href");
// It can happen that the url is empty e.g. when it is a
// presentation:placeholder.
if (url.isEmpty()) {
return true;
}
QString tmpURL;
if (url[0] == '#') {
url.remove(0, 1);
}
if (QUrl::fromUserInput(url).isRelative()) {
if (url.startsWith("./")) {
tmpURL = QString(INTERNAL_PROTOCOL) + ":/" + url.mid(2);
} else {
tmpURL = QString(INTERNAL_PROTOCOL) + ":/" + url;
}
} else {
tmpURL = url;
}
KoStore *store = context.store();
QString path = tmpURL;
if (tmpURL.startsWith(INTERNAL_PROTOCOL)) {
path = store->currentPath();
if (!path.isEmpty() && !path.endsWith('/')) {
path += '/';
}
QString relPath = QUrl::fromUserInput(tmpURL).path();
path += relPath.mid(1); // remove leading '/'
}
if (!path.endsWith('/')) {
path += '/';
}
const QString mimeType = context.mimeTypeForPath(path);
//debugOdf << "path for manifest file=" << path << "mimeType=" << mimeType;
if (mimeType.isEmpty()) {
//debugOdf << "Manifest doesn't have media-type for" << path;
return false;
}
bool res = true;
if (isInternalUrl(tmpURL)) {
store->pushDirectory();
Q_ASSERT(tmpURL.startsWith(INTERNAL_PROTOCOL));
QString relPath = QUrl::fromUserInput(tmpURL).path().mid(1);
store->enterDirectory(relPath);
res = d->doc->loadOasisFromStore(store);
store->popDirectory();
d->doc->setStoreInternal(true);
} else {
//TODO
// // Reference to an external document.
// dpc->setStoreInternal(false);
// QUrl url = QUrl::fromUserInput(tmpURL);
// if (!url.isLocalFile()) {
// //QApplication::restoreOverrideCursor();
//
// // For security reasons we need to ask confirmation if the
// // url is remote.
// int result = KMessageBox::warningYesNoCancel(
// 0, i18n("This document contains an external link to a remote document\n%1", tmpURL),
// i18n("Confirmation Required"), KGuiItem(i18n("Download")), KGuiItem(i18n("Skip")));
//
// if (result == KMessageBox::Cancel) {
// //d->m_parent->setErrorMessage("USER_CANCELED");
// return false;
// }
// if (result == KMessageBox::Yes) {
// res = openUrl(url);
// }
// // and if == No, res will still be false so we'll use a kounavail below
// } else {
// res = openUrl(url);
// }
}
return res;
}
|