aboutsummaryrefslogtreecommitdiffstats
path: root/core/pluginmanager.cpp
blob: 7a871f9b651cb49df01c5d8a068f0818085a1d7a (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
#include "pluginmanager.h"

#include <QApplication>
#include <QDir>
#include <QPluginLoader>
#include <QDebug>

static QList<ISocialNetworkIntegration*> _socialNetworks;

// no point in including dive.h for this
extern int verbose;

PluginManager& PluginManager::instance()
{
	static PluginManager self;
	return self;
}

PluginManager::PluginManager()
{
}

void PluginManager::loadPlugins()
{
	QDir pluginsDir(qApp->applicationDirPath());

#if defined(Q_OS_WIN)
	if (pluginsDir.dirName().toLower() == "debug" || pluginsDir.dirName().toLower() == "release")
		pluginsDir.cdUp();
#elif defined(Q_OS_MAC)
	if (pluginsDir.dirName() == "MacOS") {
		pluginsDir.cdUp();
		pluginsDir.cdUp();
		pluginsDir.cdUp();
	}
#endif
	pluginsDir.cd("plugins");

	if (verbose)
		qDebug() << "Plugins Directory: " << pluginsDir;

	foreach (const QString& fileName, pluginsDir.entryList(QDir::Files)) {
		QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
		QObject *plugin = loader.instance();
		if(!plugin)
			continue;

		if (ISocialNetworkIntegration *social = qobject_cast<ISocialNetworkIntegration*>(plugin)) {
			qDebug() << "Adding the plugin: " << social->socialNetworkName();
			_socialNetworks.push_back(social);
		}
	}
}