-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtmlescape.cc
162 lines (132 loc) · 3.35 KB
/
htmlescape.cc
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include <QString>
#include <QTextDocumentFragment>
#include <QRegExp>
#include "htmlescape.hh"
namespace Html {
string escape( string const & str )
{
string result( str );
for( size_t x = result.size(); x--; )
switch ( result[ x ] )
{
case '&':
result.erase( x, 1 );
result.insert( x, "&" );
break;
case '<':
result.erase( x, 1 );
result.insert( x, "<" );
break;
case '>':
result.erase( x, 1 );
result.insert( x, ">" );
break;
case '"':
result.erase( x, 1 );
result.insert( x, """ );
break;
default:
break;
}
return result;
}
static void storeLineInDiv( string & result, string const & line, bool baseRightToLeft )
{
result += "<div";
if( unescape( QString::fromUtf8( line.c_str(), line.size() ) ).isRightToLeft() != baseRightToLeft )
{
result += " dir=\"";
result += baseRightToLeft ? "ltr\"" : "rtl\"";
}
result += ">";
result += line + "</div>";
}
string preformat(string const & str , bool baseRightToLeft )
{
string escaped = escape( str ), result, line;
line.reserve( escaped.size() );
result.reserve( escaped.size() );
bool leading = true;
for( char const * nextChar = escaped.c_str(); *nextChar; ++nextChar )
{
if ( leading )
{
if ( *nextChar == ' ' )
{
line += " ";
continue;
}
else
if ( *nextChar == '\t' )
{
line += " ";
continue;
}
}
if ( *nextChar == '\n' )
{
storeLineInDiv( result, line, baseRightToLeft );
line.clear();
leading = true;
continue;
}
if ( *nextChar == '\r' )
continue; // Just skip all \r
line.push_back( *nextChar );
leading = false;
}
if( !line.empty() )
storeLineInDiv( result, line, baseRightToLeft );
return result;
}
string escapeForJavaScript( string const & str )
{
string result( str );
for( size_t x = result.size(); x--; )
switch ( result[ x ] )
{
case '\\':
case '"':
case '\'':
result.insert( x, 1, '\\' );
break;
case '\n':
result.erase( x, 1 );
result.insert( x, "\\n" );
break;
case '\r':
result.erase( x, 1 );
result.insert( x, "\\r" );
break;
case '\t':
result.erase( x, 1 );
result.insert( x, "\\t" );
break;
default:
break;
}
return result;
}
QString unescape( QString const & str, bool saveFormat )
{
// Does it contain HTML? If it does, we need to strip it
if ( str.contains( '<' ) || str.contains( '&' ) )
{
QString tmp = str;
if( !saveFormat )
{
tmp.replace( QRegExp( "<(?:\\s*(?:div|p(?![alr])|br|li(?![ns])|td|blockquote|/ol))[^>]{0,}>",
Qt::CaseInsensitive, QRegExp::RegExp2 ), " " );
tmp.remove( QRegExp( "<[^>]*>", Qt::CaseSensitive, QRegExp::RegExp2 ) );
}
return QTextDocumentFragment::fromHtml( tmp.trimmed() ).toPlainText();
}
return str;
}
string unescapeUtf8( const string &str, bool saveFormat )
{
return string( unescape( QString::fromUtf8( str.c_str(), str.size() ) ).toUtf8().data(), saveFormat );
}
}