/**************************************************************** * This file is distributed under the following license: * * Copyright (c) 2010, Thomas Kister * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ #include #include #include #include #include #include #include #include #include "HandleRichText.h" #include "gui/RetroShareLink.h" #include "util/ObjectPainter.h" #include /** * The type of embedding we'd like to do */ enum EmbeddedType { Ahref, ///< into Img ///< into }; /** * Base class for storing information about a given kind of embedding. * * Its only constructor is protected so it is impossible to instantiate it, and * at the same time derived classes have to provide a type. */ class EmbedInHtml { protected: EmbedInHtml(EmbeddedType newType) : myType(newType) {} public: const EmbeddedType myType; QRegExp myRE; }; /** * This class is used to store information for embedding links into tags. */ class EmbedInHtmlAhref : public EmbedInHtml { public: EmbedInHtmlAhref() : EmbedInHtml(Ahref) { myRE.setPattern("(\\bretroshare://[^\\s]*)|(\\bhttps?://[^\\s]*)|(\\bfile://[^\\s]*)|(\\bwww\\.[^\\s]*)"); } }; /** * This class is used to store information for embedding smileys into tags. * * By default the QRegExp the variables are empty, which means it must be * filled at runtime, typically when the smileys set is loaded. It can be * either done by hand or by using one of the helper methods available. * * Note: The QHash uses only *one* smiley per key (unlike soon-to-be-upgraded * code out there). */ class EmbedInHtmlImg : public EmbedInHtml { public: EmbedInHtmlImg() : EmbedInHtml(Img) {} QHash smileys; }; /* global instance for embedding emoticons */ static EmbedInHtmlImg defEmbedImg; RsHtml::RsHtml() { } void RsHtml::initEmoticons(const QHash< QString, QString >& hash) { QString newRE; for(QHash::const_iterator it = hash.begin(); it != hash.end(); ++it) foreach(QString smile, it.key().split("|")) { if (smile.isEmpty()) { continue; } defEmbedImg.smileys.insert(smile, it.value()); newRE += "(" + QRegExp::escape(smile) + ")|"; } newRE.chop(1); // remove last | defEmbedImg.myRE.setPattern(newRE); } bool RsHtml::canReplaceAnchor(QDomDocument &/*doc*/, QDomElement &/*element*/, const RetroShareLink &link) { switch (link.type()) { case RetroShareLink::TYPE_UNKNOWN: case RetroShareLink::TYPE_FILE: case RetroShareLink::TYPE_PERSON: case RetroShareLink::TYPE_FORUM: case RetroShareLink::TYPE_CHANNEL: case RetroShareLink::TYPE_SEARCH: case RetroShareLink::TYPE_MESSAGE: case RetroShareLink::TYPE_EXTRAFILE: case RetroShareLink::TYPE_PRIVATE_CHAT: case RetroShareLink::TYPE_PUBLIC_MSG: // not yet implemented break; case RetroShareLink::TYPE_CERTIFICATE: return true; } return false; } void RsHtml::anchorTextForImg(QDomDocument &/*doc*/, QDomElement &/*element*/, const RetroShareLink &link, QString &text) { text = link.niceName(); } void RsHtml::anchorStylesheetForImg(QDomDocument &/*doc*/, QDomElement &/*element*/, const RetroShareLink &link, QString &styleSheet) { switch (link.type()) { case RetroShareLink::TYPE_UNKNOWN: case RetroShareLink::TYPE_FILE: case RetroShareLink::TYPE_PERSON: case RetroShareLink::TYPE_FORUM: case RetroShareLink::TYPE_CHANNEL: case RetroShareLink::TYPE_SEARCH: case RetroShareLink::TYPE_MESSAGE: case RetroShareLink::TYPE_EXTRAFILE: case RetroShareLink::TYPE_PRIVATE_CHAT: case RetroShareLink::TYPE_PUBLIC_MSG: // not yet implemented break; case RetroShareLink::TYPE_CERTIFICATE: styleSheet = "QPushButton{ border-image: url(:/images/btn_blue.png) ;border-width: 4;padding: 0px 6px;font-size: 12px;color: white;} QPushButton:hover{ border-image: url(:/images/btn_blue_hover.png) ;}"; break; } } void RsHtml::replaceAnchorWithImg(QDomDocument &doc, QDomElement &element, QTextDocument *textDocument, const RetroShareLink &link) { if (!textDocument) { return; } if (!link.valid()) { return; } if (element.childNodes().length() != 1) { return; } if (!canReplaceAnchor(doc, element, link)) { return; } QString imgText; anchorTextForImg(doc, element, link, imgText); QString styleSheet; anchorStylesheetForImg(doc, element, link, styleSheet); QDomNode childNode = element.firstChild(); /* build resource name */ QString resourceName = QString("%1_%2.png").arg(link.type()).arg(imgText); if (!textDocument->resource(QTextDocument::ImageResource, QUrl(resourceName)).isValid()) { /* draw a button on a pixmap */ QPixmap pixmap; ObjectPainter::drawButton(imgText, styleSheet, pixmap); /* add the image to the resource cache of the text document */ textDocument->addResource(QTextDocument::ImageResource, QUrl(resourceName), QVariant(pixmap)); } element.removeChild(childNode); /* replace text of the anchor with */ QDomElement img = doc.createElement("img"); img.setAttribute("src", resourceName); element.appendChild(img); } /** * Parses a DOM tree and replaces text by HTML tags. * The tree is traversed depth-first, but only through children of Element type * nodes. Any other kind of node is terminal. * * If the node is of type Text, its data is checked against the user-provided * regular expression. If there is a match, the text is cut in three parts: the * preceding part that will be inserted before, the part to be replaced, and the * following part which will be itself checked against the regular expression. * * The part to be replaced is sent to a user-provided functor that will create * the necessary embedding and return a new Element node to be inserted. * * @param[in] doc The whole DOM tree, necessary to create new nodes * @param[in,out] currentElement The current node (which is of type Element) * @param[in] embedInfos The regular expression and the type of embedding to use */ void RsHtml::embedHtml(QTextDocument *textDocument, QDomDocument& doc, QDomElement& currentElement, EmbedInHtml& embedInfos, ulong flag) { if(embedInfos.myRE.pattern().length() == 0) // we'll get stuck with an empty regexp return; QDomNodeList children = currentElement.childNodes(); for(uint index = 0; index < children.length(); index++) { QDomNode node = children.item(index); if(node.isElement()) { // child is an element, we skip it if it's an tag QDomElement element = node.toElement(); if(element.tagName().toLower() == "head") { // skip it } else if(element.tagName().toLower() == "style") { // skip it } else if (element.tagName().toLower() == "a") { // skip it if (embedInfos.myType == Ahref) { // but add title if not available if (element.attribute("title").isEmpty()) { RetroShareLink link(element.attribute("href")); if (link.valid()) { QString title = link.title(); if (!title.isEmpty()) { element.setAttribute("title", title); } if (textDocument && (flag & RSHTML_FORMATTEXT_REPLACE_LINKS)) { replaceAnchorWithImg(doc, element, textDocument, link); } } } else { if (textDocument && (flag & RSHTML_FORMATTEXT_REPLACE_LINKS)) { RetroShareLink link(element.attribute("href")); if (link.valid()) { replaceAnchorWithImg(doc, element, textDocument, link); } } } } } else { embedHtml(textDocument, doc, element, embedInfos, flag); } } else if(node.isText()) { // child is a text, we parse it QString tempText = node.toText().data(); if(embedInfos.myRE.indexIn(tempText) == -1) continue; // there is at least one link inside, we start replacing int currentPos = 0; int nextPos = 0; while((nextPos = embedInfos.myRE.indexIn(tempText, currentPos)) != -1) { // if nextPos == 0 it means the text begins by a link if(nextPos > 0) { QDomText textPart = doc.createTextNode(tempText.mid(currentPos, nextPos - currentPos)); currentElement.insertBefore(textPart, node); index++; } // inserted tag QDomElement insertedTag; switch(embedInfos.myType) { case Ahref: { insertedTag = doc.createElement("a"); insertedTag.setAttribute("href", embedInfos.myRE.cap(0)); insertedTag.appendChild(doc.createTextNode(embedInfos.myRE.cap(0))); RetroShareLink link(embedInfos.myRE.cap(0)); if (link.valid()) { QString title = link.title(); if (!title.isEmpty()) { insertedTag.setAttribute("title", title); } if (textDocument && (flag & RSHTML_FORMATTEXT_REPLACE_LINKS)) { replaceAnchorWithImg(doc, insertedTag, textDocument, link); } } } break; case Img: { insertedTag = doc.createElement("img"); const EmbedInHtmlImg& embedImg = static_cast(embedInfos); insertedTag.setAttribute("src", embedImg.smileys[embedInfos.myRE.cap(0)]); } break; } currentElement.insertBefore(insertedTag, node); index++; currentPos = nextPos + embedInfos.myRE.matchedLength(); } // text after the last link, only if there's one, don't touch the index // otherwise decrement the index because we're going to remove node if(currentPos < tempText.length()) { QDomText textPart = doc.createTextNode(tempText.mid(currentPos)); currentElement.insertBefore(textPart, node); } else index--; currentElement.removeChild(node); } } } /** * Save space and tab out of bracket that XML loose. * * @param[in] text The text to save space. * @return Text with space saved. */ static QString saveSpace(const QString text) { QString savedSpaceText=text; bool outBrackets=false, echapChar=false; QString keyName = ""; bool getKeyName = false; bool firstOutBracket = false; for(int i=0;i'))) { getKeyName=keyName.isEmpty(); } else { keyName.append(cursChar.toLower()); } } if(cursChar==QLatin1Char('>')) { if(!echapChar && i>0) {outBrackets=true; firstOutBracket=true;} } else if(cursChar==QLatin1Char('\t')) { if(outBrackets && firstOutBracket && (keyName!="style")) savedSpaceText.replace(i, 1, "  "); } else if(cursChar==QLatin1Char(' ')) { if(outBrackets && firstOutBracket && (keyName!="style")) savedSpaceText.replace(i, 1, " "); } else if(cursChar==QChar(0xA0)) { if(outBrackets && firstOutBracket && (keyName!="style")) savedSpaceText.replace(i, 1, " "); } else if(cursChar==QLatin1Char('<')) { if(!echapChar) {outBrackets=false; getKeyName=true; keyName.clear();} } else firstOutBracket=false; echapChar=(cursChar==QLatin1Char('\\')); } return savedSpaceText; } QString RsHtml::formatText(QTextDocument *textDocument, const QString &text, ulong flag, const QColor &backgroundColor, qreal desiredContrast, int desiredMinimumFontSize) { if (flag == 0 || text.isEmpty()) { // nothing to do return text; } QString formattedText=text; //remove all prepend char that make doc.setContent() fail formattedText.remove(0,text.indexOf("<")); // Save Space and Tab because doc loose it. formattedText=saveSpace(formattedText); QString errorMsg; int errorLine; int errorColumn; QDomDocument doc; if (doc.setContent(formattedText, &errorMsg, &errorLine, &errorColumn) == false) { // convert text with QTextBrowser QTextBrowser textBrowser; textBrowser.setText(text); formattedText=textBrowser.toHtml(); formattedText.remove(0,formattedText.indexOf("<")); formattedText=saveSpace(formattedText); doc.setContent(formattedText, &errorMsg, &errorLine, &errorColumn); } QDomElement body = doc.documentElement(); if (flag & RSHTML_FORMATTEXT_EMBED_SMILEYS) { embedHtml(textDocument, doc, body, defEmbedImg, flag); } if (flag & RSHTML_FORMATTEXT_EMBED_LINKS) { EmbedInHtmlAhref defEmbedAhref; embedHtml(textDocument, doc, body, defEmbedAhref, flag); } formattedText = doc.toString(-1); // -1 removes any annoying carriage return misinterpreted by QTextEdit if (flag & RSHTML_OPTIMIZEHTML_MASK) { optimizeHtml(formattedText, flag, backgroundColor, desiredContrast, desiredMinimumFontSize); } return formattedText; } static void findElements(QDomDocument& doc, QDomElement& currentElement, const QString& nodeName, const QString& nodeAttribute, QStringList &elements) { if(nodeName.isEmpty()) { return; } QDomNodeList children = currentElement.childNodes(); for (uint index = 0; index < children.length(); index++) { QDomNode node = children.item(index); if (node.isElement()) { QDomElement element = node.toElement(); if (QString::compare(element.tagName(), nodeName, Qt::CaseInsensitive) == 0) { if (nodeAttribute.isEmpty()) { // use text elements.append(element.text()); } else { QString attribute = element.attribute(nodeAttribute); if (attribute.isEmpty() == false) { elements.append(attribute); } } continue; } findElements(doc, element, nodeName, nodeAttribute, elements); } } } bool RsHtml::findAnchors(const QString &text, QStringList& urls) { QString errorMsg; int errorLine; int errorColumn; QDomDocument doc; if (doc.setContent(text, &errorMsg, &errorLine, &errorColumn) == false) { // convert text with QTextBrowser QTextBrowser textBrowser; textBrowser.setText(text); doc.setContent(textBrowser.toHtml(), &errorMsg, &errorLine, &errorColumn); } QDomElement body = doc.documentElement(); findElements(doc, body, "a", "href", urls); return true; } static void removeElement(QDomElement& parentElement, QDomElement& element) { QDomNodeList children = element.childNodes(); while (children.length() > 0) { QDomNode childElement = element.removeChild(children.item(children.length() - 1)); parentElement.insertAfter(childElement, element); } parentElement.removeChild(element); } static qreal linearizeColorComponent(qreal v) { if (v <= 0.03928) return v/12.92; else return pow((v+0.055)/1.055, 2.4); } static qreal getRelativeLuminance(const QColor &c) { qreal r = linearizeColorComponent(c.redF()) * 0.2126; qreal g = linearizeColorComponent(c.greenF()) * 0.7152; qreal b = linearizeColorComponent(c.blueF()) * 0.0722; return r+g+b; } /** * @brief Compute the contrast between two relative luminances. * See: http://www.w3.org/TR/2012/NOTE-WCAG20-TECHS-20120103/G18 * @param lum1, lum2 Relative luminances returned by getRelativeLuminance(). * @return Contrast between 1 and 21. */ static qreal getContrastRatio(qreal lum1, qreal lum2) { if (lum2 > lum1) { qreal t = lum1; lum1 = lum2; lum2 = t; } return (lum1+0.05)/(lum2+0.05); } /** * @brief Find a color with the same hue that provides the desired contrast with bglum. * @param[in,out] val Name of the original color. Will be modified. * @param bglum Background's relative luminance as returned by getRelativeLuminance(). */ static void findBestColor(QString &val, qreal bglum, qreal desiredContrast) { #if QT_VERSION < 0x040600 // missing methods on class QColor Q_UNUSED(val); Q_UNUSED(bglum); Q_UNUSED(desiredContrast); #else // Change text color to get a good contrast with the background QColor c(val); qreal lum = ::getRelativeLuminance(c); // Keep text color darker/brighter than the bg if possible qreal lowContrast = ::getContrastRatio(bglum, 0.0); qreal highContrast = ::getContrastRatio(bglum, 1.0); bool searchDown = (lum <= bglum && lowContrast >= desiredContrast) || (lum > bglum && highContrast < desiredContrast && lowContrast >= highContrast); // There's no such thing as too much contrast on a bright background, // but on a dark background it creates haloing which makes text hard to read. // So we enforce desired contrast when the bg is dark. if (!searchDown || ::getContrastRatio(lum, bglum) < desiredContrast) { // Bisection search of the correct "lightness" to get the desired contrast qreal minl = searchDown ? 0.0 : bglum; qreal maxl = searchDown ? bglum : 1.0; do { QColor d = c; qreal midl = (minl+maxl)/2.0; d.setHslF(c.hslHueF(), c.hslSaturationF(), midl); qreal lum = ::getRelativeLuminance(d); if ((::getContrastRatio(lum, bglum) < desiredContrast) ^ searchDown ) { minl = midl; } else { maxl = midl; } } while (maxl - minl > 0.01); c.setHslF(c.hslHueF(), c.hslSaturationF(), minl); val = c.name(); } #endif // QT_VERSION < 0x040600 } /** * @brief optimizeHtml: Optimize HTML Text in DomDocument to reduce size * @param doc: QDomDocument containing Text to optimize * @param currentElement: Current element optimized * @param stylesList: List where to save all differents styles used in text * @param knownStyle: List of known styles */ static void optimizeHtml(QDomDocument& doc , QDomElement& currentElement , QHash &stylesList , QHash &knownStyle) { if (doc.documentElement().namedItem("style").toElement().attributeNode("RSOptimized").isAttr()) { //Already optimized only get StyleList QDomElement styleElem = doc.documentElement().namedItem("style").toElement(); if (!styleElem.isElement()) return; //Not an element so a bad message. QDomAttr styleAttr = styleElem.attributeNode("RSOptimized"); if (!styleAttr.isAttr()) return; //Not an attribute so a bad message. QString version = styleAttr.value(); if (version == "v2") { QStringList allStyles = styleElem.text().split('}'); foreach (QString style, allStyles){ QStringList pair = style.split('{'); if (pair.length()!=2) return; //Malformed style list so a bad message or last item. QString keyvalue = pair.at(1); keyvalue.replace(";",""); QStringList classUsingIt(pair.at(0).split(',')); QStringList* exported = new QStringList(); foreach (QString keyVal, classUsingIt) { if(!keyVal.trimmed().isEmpty()) { exported->append(keyVal.trimmed().replace(".","")); } } stylesList.insert(keyvalue, exported); } } return; } if (currentElement.tagName().toLower() == "html") { // change to currentElement.setTagName("span"); } QDomNode styleNode; bool addBR = false; QDomNodeList children = currentElement.childNodes(); for (uint index = 0; index < children.length(); ) { QDomNode node = children.item(index); if (node.isElement()) { QDomElement element = node.toElement(); styleNode = node.attributes().namedItem("style"); // not

if (addBR && element.tagName().toLower() != "p") { // add
after a removed

but not before a

QDomElement elementBr = doc.createElement("br"); currentElement.insertBefore(elementBr, element); addBR = false; ++index; } // if (element.tagName().toLower() == "body") { if (element.attributes().length() == 0) { // remove without attributes removeElement(currentElement, element); // no ++index; continue; } // change to element.setTagName("span"); } // if (element.tagName().toLower() == "head") { // remove currentElement.removeChild(node); // no ++index; continue; } //hidden text in a if (element.tagName().toLower() == "a") { if(element.hasAttribute("href")){ QString href = element.attribute("href", ""); if(href.startsWith("hidden:")){ //this text should be hidden and appear in title //we need this trick, because QTextEdit doesn't export the title attribute QString title = href.remove(0, QString("hidden:").length()); QString text = element.text(); element.setTagName("span"); element.removeAttribute("href"); QDomNodeList c = element.childNodes(); for(int i = 0; i < c.count(); i++){ element.removeChild(c.at(i)); }; element.setAttribute(QString("title"), title); QDomText textnode = doc.createTextNode(text); element.appendChild(textnode); } } } // iterate children optimizeHtml(doc, element, stylesList, knownStyle); //

if (element.tagName().toLower() == "p") { //

if (styleNode.isAttr()) { QString style = styleNode.toAttr().value().simplified().trimmed(); style.replace("margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;", "margin:0px 0px 0px 0px;"); style.replace("; ", ";"); if (style == "margin:0px 0px 0px 0px;-qt-block-indent:0;text-indent:0px;" || style.startsWith("-qt-paragraph-type:empty;margin:0px 0px 0px 0px;-qt-block-indent:0;text-indent:0px;")) { if (addBR) { // add
after a removed

but not before a removed

QDomElement elementBr = doc.createElement("br"); currentElement.insertBefore(elementBr, element); ++index; } // remove Qt standard

or empty

index += element.childNodes().length(); removeElement(currentElement, element); // do not add extra
after empty paragraph, the paragraph already contains one addBR = ! style.startsWith("-qt-paragraph-type:empty"); continue; } } addBR = false; } // Compress style attribute if (styleNode.isAttr()) { QDomAttr styleAttr = styleNode.toAttr(); QString style = styleAttr.value().simplified().trimmed(); style.replace("margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;", "margin:0px 0px 0px 0px;"); style.replace("; ", ";"); QString className = knownStyle.value(style); if (className.isEmpty()) { // Create a new class className = QString("S%1").arg(knownStyle.count()); knownStyle.insert(style, className); // Now add this for each attribute values QStringList styles = style.split(';'); foreach (QString pair, styles) { pair.replace(" ",""); if (!pair.isEmpty()) { QStringList* stylesListItem = stylesList.value(pair); if(!stylesListItem){ // If value doesn't exist create it stylesListItem = new QStringList(); stylesList.insert(pair, stylesListItem); } //Add the new class to this value stylesListItem->push_back(className); } } } style.clear(); node.attributes().removeNamedItem("style"); styleNode.clear(); if (!className.isEmpty()) { QDomNode classNode = doc.createAttribute("class"); classNode.setNodeValue(className); node.attributes().setNamedItem(classNode); } } } ++index; } } /** * @brief styleCreate: Add styles filtered in QDomDocument. * @param doc: QDomDocument containing all text formatted * @param stylesList: List of all styles recognized * @param flag: Bitfield of RSHTML_FORMATTEXT_* constants (they must be part of * RSHTML_OPTIMIZEHTML_MASK). * @param bglum: Luminance background color of the widget where the text will be * displayed. Needed only if RSHTML_FORMATTEXT_FIX_COLORS * is passed inside flag. * @param desiredContrast: Minimum contrast between text and background color, * between 1 and 21. * @param desiredMinimumFontSize: Minimum font size. */ static void styleCreate(QDomDocument& doc , QHash stylesList , unsigned int flag , qreal bglum , qreal desiredContrast , int desiredMinimumFontSize) { QDomElement styleElem; do{ if (doc.documentElement().namedItem("style").toElement().attributeNode("RSOptimized").isAttr()) { QDomElement ele = doc.documentElement().namedItem("style").toElement(); //Remove child before filter if (!ele.isElement()) break; //Not an element so a bad message. QDomAttr styleAttr = ele.attributeNode("RSOptimized"); if (!styleAttr.isAttr()) break; //Not an attribute so a bad message. QString version = styleAttr.value(); if (version == "v2") { styleElem = ele; } } }while (false); //for break if(!styleElem.isElement()) { styleElem = doc.createElement("style"); // Creation of Style class list: