2015-01-21 12:58:45 +01:00
|
|
|
/* ============================================================
|
2017-08-25 17:55:52 +02:00
|
|
|
* FlashCookieManager plugin for Falkon
|
2018-01-24 19:18:58 +01:00
|
|
|
* Copyright (C) 2014-2018 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
|
|
|
|
* Copyright (C) 2017-2018 David Rosca <nowrep@gmail.com>
|
2015-01-21 12:58:45 +01:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "fcm_plugin.h"
|
|
|
|
#include "browserwindow.h"
|
|
|
|
#include "pluginproxy.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "fcm_dialog.h"
|
2018-01-24 20:30:55 +01:00
|
|
|
#include "abstractbuttoninterface.h"
|
2015-01-21 12:58:45 +01:00
|
|
|
#include "tabbedwebview.h"
|
|
|
|
#include "fcm_notification.h"
|
2016-12-24 00:23:44 +01:00
|
|
|
#include "datapaths.h"
|
2018-01-24 14:25:38 +01:00
|
|
|
#include "../config.h"
|
2018-01-24 19:18:58 +01:00
|
|
|
#include "statusbar.h"
|
2018-01-24 20:30:55 +01:00
|
|
|
#include "navigationbar.h"
|
2015-01-21 12:58:45 +01:00
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QDir>
|
2015-10-13 02:53:17 +02:00
|
|
|
#include <QMenu>
|
2015-01-21 12:58:45 +01:00
|
|
|
|
|
|
|
#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
|
|
|
|
#include <QProcessEnvironment>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const int refreshInterval = 60 * 1000;
|
|
|
|
|
2018-01-24 20:30:55 +01:00
|
|
|
class FCM_Button : public AbstractButtonInterface
|
|
|
|
{
|
2019-12-14 00:32:01 +01:00
|
|
|
Q_OBJECT
|
2018-01-24 20:30:55 +01:00
|
|
|
public:
|
|
|
|
explicit FCM_Button(QObject *parent = nullptr)
|
|
|
|
: AbstractButtonInterface(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString id() const override
|
|
|
|
{
|
|
|
|
return QSL("fcm-icon");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString name() const override
|
|
|
|
{
|
|
|
|
return tr("Flash Cookie Manager button");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-21 12:58:45 +01:00
|
|
|
FCM_Plugin::FCM_Plugin()
|
|
|
|
: QObject()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::init(InitState state, const QString &settingsPath)
|
|
|
|
{
|
|
|
|
m_settingsPath = settingsPath;
|
|
|
|
|
2019-01-08 13:28:02 +01:00
|
|
|
connect(mApp->plugins(), &PluginProxy::mainWindowCreated, this, &FCM_Plugin::mainWindowCreated);
|
|
|
|
connect(mApp->plugins(), &PluginProxy::mainWindowDeleted, this, &FCM_Plugin::mainWindowDeleted);
|
2015-01-21 12:58:45 +01:00
|
|
|
|
|
|
|
m_timer = new QTimer(this);
|
|
|
|
m_timer->setInterval(refreshInterval);
|
2019-01-08 13:28:02 +01:00
|
|
|
connect(m_timer, &QTimer::timeout, this, &FCM_Plugin::autoRefresh);
|
2015-01-21 12:58:45 +01:00
|
|
|
|
|
|
|
// start timer if needed
|
|
|
|
startStopTimer();
|
|
|
|
|
|
|
|
if (state == StartupInitState && readSettings().value(QL1S("deleteAllOnStartExit")).toBool()) {
|
|
|
|
loadFlashCookies();
|
|
|
|
|
|
|
|
removeAllButWhitelisted();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state == LateInitState) {
|
2019-12-30 17:20:44 +01:00
|
|
|
const auto windows = mApp->windows();
|
|
|
|
for (BrowserWindow* window : windows) {
|
2015-01-21 12:58:45 +01:00
|
|
|
mainWindowCreated(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::unload()
|
|
|
|
{
|
|
|
|
if (m_fcmDialog) {
|
|
|
|
m_fcmDialog->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mApp->isClosing() && readSettings().value(QL1S("deleteAllOnStartExit")).toBool()) {
|
|
|
|
removeAllButWhitelisted();
|
|
|
|
}
|
|
|
|
|
2019-12-30 17:20:44 +01:00
|
|
|
const auto windows = mApp->windows();
|
|
|
|
for (BrowserWindow* window : windows) {
|
2018-01-24 20:30:55 +01:00
|
|
|
mainWindowDeleted(window);
|
2015-01-21 12:58:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
delete m_fcmDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FCM_Plugin::testPlugin()
|
|
|
|
{
|
2017-08-25 17:11:29 +02:00
|
|
|
return (Qz::VERSION == QLatin1String(FALKON_VERSION));
|
2015-01-21 12:58:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::showSettings(QWidget* parent)
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent)
|
|
|
|
|
|
|
|
showFlashCookieManager();
|
|
|
|
m_fcmDialog->showPage(2);
|
|
|
|
}
|
|
|
|
|
2015-10-13 02:53:17 +02:00
|
|
|
void FCM_Plugin::populateExtensionsMenu(QMenu* menu)
|
|
|
|
{
|
|
|
|
QAction* showFCM = new QAction(QIcon(":/flashcookiemanager/data/flash-cookie-manager.png"), tr("Flash Cookie Manager"), menu);
|
2019-01-08 13:28:02 +01:00
|
|
|
connect(showFCM, &QAction::triggered, this, &FCM_Plugin::showFlashCookieManager);
|
2015-10-13 02:53:17 +02:00
|
|
|
menu->addAction(showFCM);
|
|
|
|
}
|
|
|
|
|
2015-01-21 12:58:45 +01:00
|
|
|
void FCM_Plugin::setFlashCookies(const QList<FlashCookie> &flashCookies)
|
|
|
|
{
|
|
|
|
m_flashCookies = flashCookies;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<FlashCookie> FCM_Plugin::flashCookies()
|
|
|
|
{
|
|
|
|
if (m_flashCookies.isEmpty()) {
|
|
|
|
loadFlashCookies();
|
|
|
|
}
|
|
|
|
return m_flashCookies;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList FCM_Plugin::newCookiesList()
|
|
|
|
{
|
|
|
|
return m_newCookiesList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::clearNewOrigins()
|
|
|
|
{
|
|
|
|
m_newCookiesList.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::clearCache()
|
|
|
|
{
|
|
|
|
m_flashCookies.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FCM_Plugin::isBlacklisted(const FlashCookie &flashCookie)
|
|
|
|
{
|
|
|
|
return readSettings().value(QL1S("flashCookiesBlacklist")).toStringList().contains(flashCookie.origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FCM_Plugin::isWhitelisted(const FlashCookie &flashCookie)
|
|
|
|
{
|
|
|
|
return readSettings().value(QL1S("flashCookiesWhitelist")).toStringList().contains(flashCookie.origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::removeAllButWhitelisted()
|
|
|
|
{
|
2019-12-30 17:20:44 +01:00
|
|
|
for (const FlashCookie &flashCookie : qAsConst(m_flashCookies)) {
|
2015-01-21 12:58:45 +01:00
|
|
|
if (isWhitelisted(flashCookie)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
removeCookie(flashCookie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FCM_Plugin::sharedObjectDirName() const
|
|
|
|
{
|
|
|
|
if (flashPlayerDataPath().contains(QL1S("macromedia"), Qt::CaseInsensitive) ||
|
|
|
|
!flashPlayerDataPath().contains(QL1S("/.gnash"), Qt::CaseInsensitive)) {
|
|
|
|
return QLatin1String(QL1S("/#SharedObjects/"));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return QLatin1String(QL1S("/SharedObjects/"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FCM_Plugin::flashPlayerDataPath() const
|
|
|
|
{
|
2016-12-24 00:23:44 +01:00
|
|
|
return DataPaths::currentProfilePath() + QSL("/Pepper Data/Shockwave Flash/WritableRoot/");
|
2015-01-21 12:58:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariantHash FCM_Plugin::readSettings() const
|
|
|
|
{
|
|
|
|
if (m_settingsHash.isEmpty()) {
|
|
|
|
m_settingsHash.insert(QL1S("autoMode"), QVariant(false));
|
|
|
|
m_settingsHash.insert(QL1S("deleteAllOnStartExit"), QVariant(false));
|
|
|
|
m_settingsHash.insert(QL1S("notification"), QVariant(false));
|
|
|
|
m_settingsHash.insert(QL1S("flashCookiesWhitelist"), QVariant());
|
|
|
|
m_settingsHash.insert(QL1S("flashCookiesBlacklist"), QVariant());
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath + QL1S("/extensions.ini"), QSettings::IniFormat);
|
|
|
|
settings.beginGroup(QL1S("FlashCookieManager"));
|
|
|
|
QVariantHash::iterator i = m_settingsHash.begin();
|
|
|
|
while (i != m_settingsHash.end()) {
|
|
|
|
*i = settings.value(i.key(), i.value());
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_settingsHash;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::writeSettings(const QVariantHash &hashSettings)
|
|
|
|
{
|
|
|
|
m_settingsHash = hashSettings;
|
|
|
|
|
|
|
|
QSettings settings(m_settingsPath + QL1S(QL1S("/extensions.ini")), QSettings::IniFormat);
|
|
|
|
settings.beginGroup(QL1S("FlashCookieManager"));
|
|
|
|
QVariantHash::const_iterator i = m_settingsHash.constBegin();
|
|
|
|
while (i != m_settingsHash.constEnd()) {
|
|
|
|
settings.setValue(i.key(), i.value());
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
startStopTimer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::removeCookie(const FlashCookie &flashCookie)
|
|
|
|
{
|
|
|
|
if (m_flashCookies.contains(flashCookie)) {
|
|
|
|
m_flashCookies.removeOne(flashCookie);
|
|
|
|
if (QFile(flashCookie.path + QL1C('/') + flashCookie.name).remove()) {
|
|
|
|
QDir dir(flashCookie.path);
|
|
|
|
dir.rmpath(flashCookie.path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::autoRefresh()
|
|
|
|
{
|
|
|
|
if (m_fcmDialog && m_fcmDialog->isVisible()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<FlashCookie> oldflashCookies = m_flashCookies;
|
|
|
|
loadFlashCookies();
|
|
|
|
QStringList newCookieList;
|
|
|
|
|
2019-12-30 17:20:44 +01:00
|
|
|
for (const FlashCookie &flashCookie : qAsConst(m_flashCookies)) {
|
2015-01-21 12:58:45 +01:00
|
|
|
if (isBlacklisted(flashCookie)) {
|
|
|
|
removeCookie(flashCookie);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isWhitelisted(flashCookie)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool newCookie = true;
|
2019-12-30 17:20:44 +01:00
|
|
|
for (const FlashCookie &oldFlashCookie : qAsConst(oldflashCookies)) {
|
2015-01-21 12:58:45 +01:00
|
|
|
if (QString(oldFlashCookie.path + oldFlashCookie.name) ==
|
|
|
|
QString(flashCookie.path + flashCookie.name)) {
|
|
|
|
newCookie = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newCookie) {
|
|
|
|
newCookieList << flashCookie.path + QL1C('/') + flashCookie.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!newCookieList.isEmpty() && readSettings().value(QL1S("notification")).toBool()) {
|
|
|
|
m_newCookiesList << newCookieList;
|
|
|
|
BrowserWindow* window = mApp->getWindow();
|
|
|
|
if (!window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TabbedWebView* weView = window->weView();
|
|
|
|
if (!weView) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FCM_Notification* notif = new FCM_Notification(this, newCookieList.size());
|
|
|
|
weView->addNotification(notif);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::showFlashCookieManager()
|
|
|
|
{
|
|
|
|
if (!m_fcmDialog) {
|
|
|
|
m_fcmDialog = new FCM_Dialog(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_fcmDialog->refreshView();
|
|
|
|
m_fcmDialog->showPage(0);
|
|
|
|
m_fcmDialog->show();
|
|
|
|
m_fcmDialog->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::mainWindowCreated(BrowserWindow *window)
|
|
|
|
{
|
2018-01-24 20:30:55 +01:00
|
|
|
window->statusBar()->addButton(createStatusBarIcon(window));
|
|
|
|
window->navigationBar()->addToolButton(createStatusBarIcon(window));
|
2015-01-21 12:58:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::mainWindowDeleted(BrowserWindow *window)
|
|
|
|
{
|
|
|
|
if (!window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_fcmDialog && m_fcmDialog->parent() == window) {
|
|
|
|
m_fcmDialog->setParent(0);
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:30:55 +01:00
|
|
|
window->statusBar()->removeButton(m_statusBarIcons.value(window));
|
|
|
|
window->navigationBar()->removeToolButton(m_statusBarIcons.value(window));
|
|
|
|
|
2015-01-21 12:58:45 +01:00
|
|
|
delete m_statusBarIcons.value(window);
|
|
|
|
m_statusBarIcons.remove(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::startStopTimer()
|
|
|
|
{
|
|
|
|
if (readSettings().value(QL1S("autoMode")).toBool()) {
|
|
|
|
if (!m_timer->isActive()) {
|
|
|
|
if (m_flashCookies.isEmpty()) {
|
|
|
|
loadFlashCookies();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_timer->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_timer->stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:30:55 +01:00
|
|
|
AbstractButtonInterface* FCM_Plugin::createStatusBarIcon(BrowserWindow* mainWindow)
|
2015-01-21 12:58:45 +01:00
|
|
|
{
|
|
|
|
if (m_statusBarIcons.contains(mainWindow)) {
|
|
|
|
return m_statusBarIcons.value(mainWindow);
|
|
|
|
}
|
|
|
|
|
2018-01-24 20:30:55 +01:00
|
|
|
FCM_Button* icon = new FCM_Button(this);
|
|
|
|
icon->setIcon(QIcon(QSL(":/flashcookiemanager/data/flash-cookie-manager.png")));
|
|
|
|
icon->setTitle(tr("Flash Cookie Manager"));
|
2015-10-13 02:53:17 +02:00
|
|
|
icon->setToolTip(tr("Show Flash Cookie Manager"));
|
2018-01-24 20:30:55 +01:00
|
|
|
connect(icon, &AbstractButtonInterface::clicked, this, &FCM_Plugin::showFlashCookieManager);
|
2015-01-21 12:58:45 +01:00
|
|
|
|
|
|
|
m_statusBarIcons.insert(mainWindow, icon);
|
|
|
|
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::loadFlashCookies()
|
|
|
|
{
|
|
|
|
m_flashCookies.clear();
|
|
|
|
loadFlashCookies(flashPlayerDataPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
void FCM_Plugin::loadFlashCookies(QString path)
|
|
|
|
{
|
|
|
|
QDir solDir(path);
|
|
|
|
QStringList entryList = solDir.entryList();
|
|
|
|
entryList.removeAll(QL1S("."));
|
|
|
|
entryList.removeAll(QL1S(".."));
|
|
|
|
|
2019-12-30 17:20:44 +01:00
|
|
|
for (QString entry : qAsConst(entryList)) {
|
2015-01-21 12:58:45 +01:00
|
|
|
if (path.endsWith(QL1S("#SharedObjects")) && entry == QL1S("#AppContainer")) {
|
|
|
|
// specific to IE and Windows
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
path.replace(QL1C('\\'), QL1C('/'));
|
|
|
|
QFileInfo entryInfo(path + QL1C('/') + entry);
|
|
|
|
if (entryInfo.isDir()) {
|
|
|
|
loadFlashCookies(entryInfo.filePath());
|
|
|
|
}
|
|
|
|
else if (entryInfo.isFile() && entryInfo.suffix() == QL1S("sol")) {
|
|
|
|
insertFlashCookie(entryInfo.filePath());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 07:40:51 +01:00
|
|
|
void FCM_Plugin::insertFlashCookie(const QString &path)
|
2015-01-21 12:58:45 +01:00
|
|
|
{
|
|
|
|
QFile solFile(path);
|
|
|
|
if (!solFile.open(QFile::ReadOnly)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray file = solFile.readAll();
|
|
|
|
for (int i = 0; i < file.size(); ++i) {
|
|
|
|
if (!((file.at(i) >= 'a' && file.at(i) <= 'z') || (file.at(i) >= 'A' && file.at(i) <= 'Z') ||
|
|
|
|
(file.at(i) >= '0' && file.at(i) <= '9'))) {
|
|
|
|
file[i] = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString fileStr = QString(file);
|
|
|
|
fileStr = fileStr.split(QL1C('.'), QString::SkipEmptyParts).join(QL1S("\n"));
|
|
|
|
|
|
|
|
QFileInfo solFileInfo(solFile);
|
|
|
|
|
|
|
|
FlashCookie flashCookie;
|
|
|
|
flashCookie.contents = fileStr;
|
|
|
|
flashCookie.name = solFileInfo.fileName();
|
|
|
|
flashCookie.path = solFileInfo.canonicalPath();
|
|
|
|
flashCookie.size = (int)solFile.size();
|
|
|
|
flashCookie.lastModification = solFileInfo.lastModified();
|
|
|
|
flashCookie.origin = extractOriginFrom(path);
|
|
|
|
|
|
|
|
m_flashCookies << flashCookie;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FCM_Plugin::extractOriginFrom(const QString &path)
|
|
|
|
{
|
|
|
|
QString origin = path;
|
|
|
|
if (path.startsWith(flashPlayerDataPath() + sharedObjectDirName())) {
|
|
|
|
origin.remove(flashPlayerDataPath() + sharedObjectDirName());
|
|
|
|
if (origin.indexOf(QL1C('/')) != -1) {
|
|
|
|
origin.remove(0, origin.indexOf(QL1C('/')) + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (path.startsWith(flashPlayerDataPath() + QL1S("/macromedia.com/support/flashplayer/sys/"))) {
|
|
|
|
origin.remove(flashPlayerDataPath() + QL1S("/macromedia.com/support/flashplayer/sys/"));
|
|
|
|
if (origin == QL1S("settings.sol")) {
|
|
|
|
return tr("!default");
|
|
|
|
}
|
|
|
|
else if (origin.startsWith(QL1C('#'))) {
|
|
|
|
origin.remove(0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
origin.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = origin.indexOf(QL1C('/'));
|
|
|
|
if (index == -1) {
|
|
|
|
return tr("!other");
|
|
|
|
}
|
2019-09-13 08:03:02 +02:00
|
|
|
origin.remove(index, origin.size());
|
2015-01-21 12:58:45 +01:00
|
|
|
if (origin == QL1S("localhost") || origin == QL1S("local")) {
|
|
|
|
origin = QL1S("!localhost");
|
|
|
|
}
|
|
|
|
|
|
|
|
return origin;
|
|
|
|
}
|
2019-12-14 00:32:01 +01:00
|
|
|
|
|
|
|
#include "fcm_plugin.moc"
|