/* This file is (c) 2008-2012 Konstantin Isakov * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */ #include "mediawiki.hh" #include "wstring_qt.hh" #include #include #include #include #include #include #include "gddebug.hh" #include "audiolink.hh" #include "langcoder.hh" #include "utils.hh" #include #include "globalbroadcaster.h" namespace MediaWiki { using namespace Dictionary; namespace { class MediaWikiDictionary: public Dictionary::Class { string name; QString url, icon; QNetworkAccessManager & netMgr; quint32 langId; public: MediaWikiDictionary( string const & id, string const & name_, QString const & url_, QString const & icon_, QNetworkAccessManager & netMgr_ ): Dictionary::Class( id, vector< string >() ), name( name_ ), url( url_ ), icon( icon_ ), netMgr( netMgr_ ), langId( 0 ) { int n = url.indexOf( "." ); if( n == 2 || ( n > 3 && url[ n-3 ] == '/' ) ) langId = LangCoder::code2toInt( url.mid( n - 2, 2 ).toLatin1().data() ); } virtual string getName() noexcept { return name; } virtual map< Property, string > getProperties() noexcept { return map< Property, string >(); } virtual unsigned long getArticleCount() noexcept { return 0; } virtual unsigned long getWordCount() noexcept { return 0; } virtual sptr< WordSearchRequest > prefixMatch( wstring const &, unsigned long maxResults ) ; virtual sptr< DataRequest > getArticle( wstring const &, vector< wstring > const & alts, wstring const &, bool ); virtual quint32 getLangFrom() const { return langId; } virtual quint32 getLangTo() const { return langId; } protected: virtual void loadIcon() noexcept; }; void MediaWikiDictionary::loadIcon() noexcept { if ( dictionaryIconLoaded ) return; if( !icon.isEmpty() ) { QFileInfo fInfo( QDir( Config::getConfigDir() ), icon ); if( fInfo.isFile() ) loadIconFromFile( fInfo.absoluteFilePath(), true ); } if( dictionaryIcon.isNull() ) { if( url.contains( "tionary" ) ) dictionaryIcon = dictionaryNativeIcon = QIcon( ":/icons/wiktionary.png" ); else dictionaryIcon = dictionaryNativeIcon = QIcon( ":/icons/icon32_wiki.png" ); } dictionaryIconLoaded = true; } class MediaWikiWordSearchRequest: public MediaWikiWordSearchRequestSlots { sptr< QNetworkReply > netReply; bool isCancelling; public: MediaWikiWordSearchRequest( wstring const &, QString const & url, QNetworkAccessManager & mgr ); ~MediaWikiWordSearchRequest(); virtual void cancel(); private: virtual void downloadFinished(); }; MediaWikiWordSearchRequest::MediaWikiWordSearchRequest( wstring const & str, QString const & url, QNetworkAccessManager & mgr ) : isCancelling( false ) { GD_DPRINTF( "request begin\n" ); QUrl reqUrl( url + "/api.php?action=query&list=allpages&aplimit=40&format=xml" ); GlobalBroadcaster::instance()->addWhitelist( reqUrl.host() ); Utils::Url::addQueryItem( reqUrl, "apfrom", gd::toQString( str ).replace( '+', "%2B" ) ); netReply = std::shared_ptr(mgr.get( QNetworkRequest( reqUrl ) )); connect( netReply.get(), SIGNAL( finished() ), this, SLOT( downloadFinished() ) ); #ifndef QT_NO_SSL connect( netReply.get(), SIGNAL( sslErrors( QList< QSslError > ) ), netReply.get(), SLOT( ignoreSslErrors() ) ); #endif } MediaWikiWordSearchRequest::~MediaWikiWordSearchRequest() { GD_DPRINTF( "request end\n" ); } void MediaWikiWordSearchRequest::cancel() { // We either finish it in place, or in the timer handler isCancelling = true; if( netReply.get() ) netReply.reset(); finish(); GD_DPRINTF( "cancel the request" ); } void MediaWikiWordSearchRequest::downloadFinished() { if ( isCancelling || isFinished() ) // Was cancelled return; if ( netReply->error() == QNetworkReply::NoError ) { QDomDocument dd; QString errorStr; int errorLine, errorColumn; if ( !dd.setContent( netReply.get(), false, &errorStr, &errorLine, &errorColumn ) ) { setErrorString( QString( tr( "XML parse error: %1 at %2,%3" ). arg( errorStr ).arg( errorLine ).arg( errorColumn ) ) ); } else { QDomNode pages = dd.namedItem( "api" ).namedItem( "query" ).namedItem( "allpages" ); if ( !pages.isNull() ) { QDomNodeList nl = pages.toElement().elementsByTagName( "p" ); Mutex::Lock _( dataMutex ); for( int x = 0; x < nl.length(); ++x ) matches.push_back( gd::toWString( nl.item( x ).toElement().attribute( "title" ) ) ); } } GD_DPRINTF( "done.\n" ); } else setErrorString( netReply->errorString() ); finish(); } class MediaWikiArticleRequest: public MediaWikiDataRequestSlots { typedef std::list< std::pair< QNetworkReply *, bool > > NetReplies; NetReplies netReplies; QString url; public: MediaWikiArticleRequest( wstring const & word, vector< wstring > const & alts, QString const & url, QNetworkAccessManager & mgr, Class * dictPtr_ ); virtual void cancel(); private: void addQuery( QNetworkAccessManager & mgr, wstring const & word ); virtual void requestFinished( QNetworkReply * ); /// This simple set implementation should be much more efficient than tree- /// and hash-based standard/Qt containers when there are very few elements. template< typename T > class SmallSet { public: bool insert( T x ) { if( std::find( elements.begin(), elements.end(), x ) != elements.end() ) return false; elements.push_back( x ); return true; } private: std::vector< T > elements; }; /// The page id set allows to filter out duplicate articles in case MediaWiki /// redirects the main word and words in the alts collection to the same page. SmallSet< long long > addedPageIds; Class * dictPtr; }; void MediaWikiArticleRequest::cancel() { finish(); } MediaWikiArticleRequest::MediaWikiArticleRequest( wstring const & str, vector< wstring > const & alts, QString const & url_, QNetworkAccessManager & mgr, Class * dictPtr_ ): url( url_ ), dictPtr( dictPtr_ ) { connect( &mgr, SIGNAL( finished( QNetworkReply * ) ), this, SLOT( requestFinished( QNetworkReply * ) ), Qt::QueuedConnection ); addQuery( mgr, str ); for( unsigned x = 0; x < alts.size(); ++x ) addQuery( mgr, alts[ x ] ); } void MediaWikiArticleRequest::addQuery( QNetworkAccessManager & mgr, wstring const & str ) { gdDebug( "MediaWiki: requesting article %s\n", gd::toQString( str ).toUtf8().data() ); QUrl reqUrl( url + "/api.php?action=parse&prop=text|revid&format=xml&redirects" ); Utils::Url::addQueryItem( reqUrl, "page", gd::toQString( str ).replace( '+', "%2B" ) ); QNetworkRequest req( reqUrl ) ; //millseconds. req.setTransferTimeout(3000); QNetworkReply * netReply = mgr.get(req); connect( netReply, &QNetworkReply::errorOccurred, this, [=](QNetworkReply::NetworkError e){ qDebug()<< "error:"< ) ), netReply, SLOT( ignoreSslErrors() ) ); #endif netReplies.push_back( std::make_pair( netReply, false ) ); } void MediaWikiArticleRequest::requestFinished( QNetworkReply * r ) { GD_DPRINTF( "Finished.\n" ); if ( isFinished() ) // Was cancelled return; // Find this reply bool found = false; for( NetReplies::iterator i = netReplies.begin(); i != netReplies.end(); ++i ) { if ( i->first == r ) { i->second = true; // Mark as finished found = true; break; } } if ( !found ) { // Well, that's not our reply, don't do anything return; } bool updated = false; for( ; netReplies.size() && netReplies.front().second; netReplies.pop_front() ) { QNetworkReply * netReply = netReplies.front().first; if ( netReply->error() == QNetworkReply::NoError ) { QDomDocument dd; QString errorStr; int errorLine, errorColumn; if ( !dd.setContent( netReply, false, &errorStr, &errorLine, &errorColumn ) ) { setErrorString( QString( tr( "XML parse error: %1 at %2,%3" ). arg( errorStr ).arg( errorLine ).arg( errorColumn ) ) ); } else { QDomNode parseNode = dd.namedItem( "api" ).namedItem( "parse" ); if ( !parseNode.isNull() && parseNode.toElement().attribute( "revid" ) != "0" // Don't show the same article more than once: && addedPageIds.insert( parseNode.toElement().attribute( "pageid" ).toLongLong() ) ) { QDomNode textNode = parseNode.namedItem( "text" ); if ( !textNode.isNull() ) { QString articleString = textNode.toElement().text(); // Replace all ":" in links, remove '#' part in links to other articles int pos = 0; QRegularExpression regLinks( "= 0 ) { // External link articleNewString += match.captured(); continue; } if( link.indexOf( ':' ) >= 0 ) link.replace( ':', "%3A" ); int n = link.indexOf( '#', 1 ); if( n > 0 ) { QString anchor = link.mid( n + 1 ).replace( '_', "%5F" ); link.truncate( n ); link += QString( "?gdanchor=%1" ).arg( anchor ); } QString newLink = QString( "", QRegularExpression::CaseInsensitiveOption | QRegularExpression::DotMatchesEverythingOption ); QRegularExpression reg2( "\"Play\"/"; articleNewString += audio_url; } else articleNewString += match.captured(); } if( pos ) { articleNewString += articleString.mid( pos ); articleString = articleNewString; articleNewString.clear(); } // audio url articleString.replace( QRegularExpression( "dictPtr->getId() ) + "#]+" ); it = rxLink.globalMatch( articleString ); while( it.hasNext() ) { QRegularExpressionMatch match = it.next(); for( int i = match.capturedStart() + 9; i < match.capturedEnd(); i++ ) if( articleString.at( i ) == QChar( '_') ) articleString[ i ] = ' '; } //fix file: url articleString.replace( QRegularExpression( "isToLanguageRTL() ? "
" : "
" ); articleBody.append( "
" ); Mutex::Lock _( dataMutex ); size_t prevSize = data.size(); data.resize( prevSize + articleBody.size() ); memcpy( &data.front() + prevSize, articleBody.data(), articleBody.size() ); hasAnyData = true; updated = true; } } } GD_DPRINTF( "done.\n" ); } else setErrorString( netReply->errorString() ); disconnect( netReply, 0, 0, 0 ); netReply->deleteLater(); } if ( netReplies.empty() ) finish(); else if ( updated ) update(); } sptr< WordSearchRequest > MediaWikiDictionary::prefixMatch( wstring const & word, unsigned long maxResults ) { (void) maxResults; if ( word.size() > 80 ) { // Don't make excessively large queries -- they're fruitless anyway return std::make_shared(); } else return std::make_shared< MediaWikiWordSearchRequest>( word, url, netMgr ); } sptr< DataRequest > MediaWikiDictionary::getArticle( wstring const & word, vector< wstring > const & alts, wstring const &, bool ) { if ( word.size() > 80 ) { // Don't make excessively large queries -- they're fruitless anyway return std::make_shared( false ); } else return std::make_shared( word, alts, url, netMgr, this ); } } vector< sptr< Dictionary::Class > > makeDictionaries( Dictionary::Initializing &, Config::MediaWikis const & wikis, QNetworkAccessManager & mgr ) { vector< sptr< Dictionary::Class > > result; for( int x = 0; x < wikis.size(); ++x ) { if ( wikis[ x ].enabled ) result.push_back( std::make_shared( wikis[ x ].id.toStdString(), wikis[ x ].name.toUtf8().data(), wikis[ x ].url, wikis[ x ].icon, mgr ) ); } return result; } }