File size: 8,926 Bytes
b6bd94d | 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | /* Implementation of ArticleSaver helper to remove duplicated save logic.
* This file centralizes the logic originally present in mainwindow.cc and
* scanpopup.cc.
*/
#include "articlesaver.hh"
#include "ui/articleview.hh"
#include "config.hh"
#include <QStatusBar>
#include <QFileDialog>
#include <QMessageBox>
#include <QRegularExpression>
#include <QWebEnginePage>
#include <QWebEngineDownloadRequest>
#include <QCryptographicHash>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QUrl>
#include <QDebug>
using std::set;
using std::vector;
using std::pair;
namespace {
// Helper moved from original implementations: collect resource urls and
// rewrite html to point to local files.
static void filterAndCollectResources( QString & html,
QRegularExpression & rx,
const QString & sep,
const QString & folder,
set< QByteArray > & resourceIncluded,
vector< pair< QUrl, QString > > & downloadResources )
{
int pos = 0;
auto match = rx.match( html, pos );
while ( match.hasMatch() ) {
pos = match.capturedStart();
QUrl url( match.captured( 1 ) );
QString host = url.host();
QString resourcePath = Utils::Url::path( url );
if ( !host.startsWith( '/' ) ) {
host.insert( 0, '/' );
}
if ( !resourcePath.startsWith( '/' ) ) {
resourcePath.insert( 0, '/' );
}
QCryptographicHash hash( QCryptographicHash::Md5 );
hash.addData( match.captured().toUtf8() );
if ( resourceIncluded.insert( hash.result() ).second ) {
// Gather resource information (url, filename) to be downloaded later
downloadResources.emplace_back( url, folder + host + resourcePath );
}
// Modify original url, set to the native one
resourcePath = QString::fromLatin1( QUrl::toPercentEncoding( resourcePath, "/" ) );
QString newUrl = sep + QDir( folder ).dirName() + host + resourcePath + sep;
html.replace( pos, match.captured().length(), newUrl );
pos += newUrl.length();
match = rx.match( html, pos );
}
}
} // namespace
ArticleSaver::ArticleSaver( QWidget * uiParent, ArticleView * view, Config::Class & cfg ):
uiParent_( uiParent ),
view_( view ),
cfg_( cfg )
{
}
ArticleSaver::~ArticleSaver() = default;
void ArticleSaver::save()
{
if ( !view_ ) {
qWarning() << "ArticleSaver::save called with null view";
return;
}
QString fileName = view_->getTitle().simplified();
// Replace reserved filename characters
QRegularExpression rxName( R"([/\\\?\*:|<>])" );
fileName.replace( rxName, "_" );
fileName += ".html";
QString savePath;
if ( cfg_.articleSavePath.isEmpty() ) {
savePath = QDir::homePath();
}
else {
savePath = QDir::fromNativeSeparators( cfg_.articleSavePath );
if ( !QDir( savePath ).exists() ) {
savePath = QDir::homePath();
}
}
QFileDialog::Options options = QFileDialog::HideNameFilterDetails;
QString selectedFilter;
QStringList filters;
filters.push_back( QObject::tr( "Complete Html (*.html *.htm)" ) );
filters.push_back( QObject::tr( "Single Html (*.html *.htm)" ) );
filters.push_back( QObject::tr( "PDF document (*.pdf *.PDF)" ) );
filters.push_back( QObject::tr( "Mime Html (*.mhtml)" ) );
fileName = savePath + "/" + fileName;
fileName = QFileDialog::getSaveFileName( uiParent_,
QObject::tr( "Save Article As" ),
fileName,
filters.join( ";;" ),
&selectedFilter,
options );
qDebug() << "filter:" << selectedFilter;
const bool complete = filters.at( 0 ).startsWith( selectedFilter );
if ( fileName.isEmpty() ) {
return;
}
// PDF
if ( filters.at( 2 ).startsWith( selectedFilter ) ) {
QWebEnginePage * page = view_->page();
QObject::connect( page, &QWebEnginePage::pdfPrintingFinished, this, [ this ]( const QString & fp, bool success ) {
Q_UNUSED( fp )
emit statusMessage( success ? QObject::tr( "Save PDF complete" ) : QObject::tr( "Save PDF failed" ), 5000 );
} );
page->printToPdf( fileName );
return;
}
// MHTML
if ( filters.at( 3 ).startsWith( selectedFilter ) ) {
QWebEnginePage * page = view_->page();
page->save( fileName, QWebEngineDownloadRequest::MimeHtmlSaveFormat );
emit statusMessage( QObject::tr( "Save article complete" ), 5000 );
return;
}
// Website handling
if ( view_->isWebsite() ) {
QWebEnginePage * page = view_->page();
if ( filters.at( 0 ).startsWith( selectedFilter ) ) {
page->save( fileName, QWebEngineDownloadRequest::CompleteHtmlSaveFormat );
}
else if ( filters.at( 1 ).startsWith( selectedFilter ) ) {
page->save( fileName, QWebEngineDownloadRequest::SingleHtmlSaveFormat );
}
emit statusMessage( QObject::tr( "Save article complete" ), 5000 );
return;
}
// Internal article -> get HTML and possibly collect resources
view_->toHtml( [ this, fileName, complete, rxName ]( QString & html ) mutable {
QFile file( fileName );
if ( !file.open( QIODevice::WriteOnly ) ) {
QMessageBox::critical( uiParent_,
QObject::tr( "Error" ),
QObject::tr( "Can't save article: %1" ).arg( file.errorString() ) );
}
else {
QFileInfo fi( fileName );
cfg_.articleSavePath = QDir::toNativeSeparators( fi.absoluteDir().absolutePath() );
// Convert internal links
static QRegularExpression rx3( R"lit(href="(bword:|gdlookup://localhost/)([^"]+)")lit" );
int pos = 0;
QRegularExpression anchorRx( "(g[0-9a-f]{32}_[0-9a-f]+_)" );
auto match = rx3.match( html, pos );
while ( match.hasMatch() ) {
pos = match.capturedStart();
QString name = QUrl::fromPercentEncoding( match.captured( 2 ).simplified().toLatin1() );
QString anchor;
name.replace( "?gdanchor=", "#" );
int n = name.indexOf( '#' );
if ( n > 0 ) {
anchor = name.mid( n );
name.truncate( n );
anchor.replace( anchorRx, "\\1" );
}
name.replace( rxName, "_" );
name = QString( R"(href=")" ) + QUrl::toPercentEncoding( name ) + ".html" + anchor + "\"";
html.replace( pos, match.captured().length(), name );
pos += name.length();
match = rx3.match( html, pos );
}
// MDict anchors
QRegularExpression anchorLinkRe(
R"((<\s*a\s+[^>]*\b(?:name|id)\b\s*=\s*["']*g[0-9a-f]{32}_)([0-9a-f]+_)(?=[^"']))",
QRegularExpression::PatternOption::CaseInsensitiveOption | QRegularExpression::UseUnicodePropertiesOption );
html.replace( anchorLinkRe, "\\1" );
if ( complete ) {
QString folder = fi.absoluteDir().absolutePath() + "/" + fi.baseName() + "_files";
static QRegularExpression rx1( R"lit("((?:bres|gico|gdau|qrcx|qrc|gdvideo)://[^"]+)")lit" );
static QRegularExpression rx2( "'((?:bres|gico|gdau|qrcx|qrc|gdvideo)://[^']+)'" );
set< QByteArray > resourceIncluded;
vector< pair< QUrl, QString > > downloadResources;
filterAndCollectResources( html, rx1, "\"", folder, resourceIncluded, downloadResources );
filterAndCollectResources( html, rx2, "'", folder, resourceIncluded, downloadResources );
int totalResources = downloadResources.size();
auto completedResourcesPtr = std::make_shared< int >( 0 );
for ( const auto & p : downloadResources ) {
ResourceToSaveHandler * handler = view_->saveResource( p.first, p.second );
if ( handler && !handler->isEmpty() ) {
QObject::connect(
handler,
&ResourceToSaveHandler::done,
this,
[ this, totalResources, completedResourcesPtr ]() {
*completedResourcesPtr += 1;
if ( *completedResourcesPtr == totalResources ) {
// All resources completed
emit statusMessage( QObject::tr( "Save article complete" ), 5000 );
}
else {
emit statusMessage(
QObject::tr( "Saving article... (%1/%2)" ).arg( *completedResourcesPtr ).arg( totalResources ),
100 );
}
} );
}
else {
// Handler is empty, count it as already completed
*completedResourcesPtr += 1;
}
}
file.write( html.toUtf8() );
}
else {
file.write( html.toUtf8() );
emit statusMessage( QObject::tr( "Save article complete" ), 5000 );
}
}
} );
}
|