mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
41 lines
901 B
C++
41 lines
901 B
C++
#include "globalbroadcaster.h"
|
|
#include <QGlobalStatic>
|
|
#include "utils.hh"
|
|
|
|
Q_GLOBAL_STATIC( GlobalBroadcaster, bdcaster )
|
|
GlobalBroadcaster::GlobalBroadcaster( QObject * parent ) : QObject( parent )
|
|
{
|
|
QStringList whiteUrlHosts = { "ajax.googleapis.com" };
|
|
|
|
for( auto host : whiteUrlHosts )
|
|
{
|
|
addWhitelist( host );
|
|
}
|
|
}
|
|
|
|
GlobalBroadcaster * GlobalBroadcaster::instance()
|
|
{
|
|
return bdcaster;
|
|
}
|
|
void GlobalBroadcaster::setPreference( Config::Preferences * p )
|
|
{
|
|
preference = p;
|
|
}
|
|
Config::Preferences * GlobalBroadcaster::getPreference()
|
|
{
|
|
return preference;
|
|
}
|
|
|
|
void GlobalBroadcaster::addWhitelist( QString url )
|
|
{
|
|
whitelist.push_back( url );
|
|
auto baseUrl = ::getHostBase( url );
|
|
whitelist.push_back( baseUrl );
|
|
}
|
|
|
|
bool GlobalBroadcaster::existedInWhitelist( QString url )
|
|
{
|
|
return std::find( whitelist.begin(), whitelist.end(), url ) != whitelist.end();
|
|
}
|
|
// namespace global
|