2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2015, 2018 Vladimir Golovnev <glassez@yandex.ru>
4 * Copyright (C) 2006 Christophe Dumez <chris@qbittorrent.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * In addition, as a special exception, the copyright holders give permission to
21 * link this program with the OpenSSL project's "OpenSSL" library (or with
22 * modified versions of it that use the same license as the "OpenSSL" library),
23 * and distribute the linked executables. You must obey the GNU General Public
24 * License in all respects for all of the code used other than "OpenSSL". If you
25 * modify file(s), you may extend this exception to your version of the file(s),
26 * but you are not obligated to do so. If you do not wish to do so, delete this
27 * exception statement from your version.
36 #include "base/path.h"
37 #include "base/utils/version.h"
39 using PluginVersion
= Utils::Version
<unsigned short, 2>;
40 Q_DECLARE_METATYPE(PluginVersion
)
44 struct DownloadResult
;
50 PluginVersion version
;
53 QStringList supportedCategories
;
58 class SearchDownloadHandler
;
61 class SearchPluginManager
: public QObject
64 Q_DISABLE_COPY_MOVE(SearchPluginManager
)
67 SearchPluginManager();
68 ~SearchPluginManager() override
;
70 static SearchPluginManager
*instance();
71 static void freeInstance();
73 QStringList
allPlugins() const;
74 QStringList
enabledPlugins() const;
75 QStringList
supportedCategories() const;
76 QStringList
getPluginCategories(const QString
&pluginName
) const;
77 PluginInfo
*pluginInfo(const QString
&name
) const;
79 void enablePlugin(const QString
&name
, bool enabled
= true);
80 void updatePlugin(const QString
&name
);
81 void installPlugin(const QString
&source
);
82 bool uninstallPlugin(const QString
&name
);
83 static void updateIconPath(PluginInfo
*const plugin
);
84 void checkForUpdates();
86 SearchHandler
*startSearch(const QString
&pattern
, const QString
&category
, const QStringList
&usedPlugins
);
87 SearchDownloadHandler
*downloadTorrent(const QString
&siteUrl
, const QString
&url
);
89 static PluginVersion
getPluginVersion(const Path
&filePath
);
90 static QString
categoryFullName(const QString
&categoryName
);
91 QString
pluginFullName(const QString
&pluginName
);
92 static Path
pluginsLocation();
93 static Path
engineLocation();
96 void pluginEnabled(const QString
&name
, bool enabled
);
97 void pluginInstalled(const QString
&name
);
98 void pluginInstallationFailed(const QString
&name
, const QString
&reason
);
99 void pluginUninstalled(const QString
&name
);
100 void pluginUpdated(const QString
&name
);
101 void pluginUpdateFailed(const QString
&name
, const QString
&reason
);
103 void checkForUpdatesFinished(const QHash
<QString
, PluginVersion
> &updateInfo
);
104 void checkForUpdatesFailed(const QString
&reason
);
109 void parseVersionInfo(const QByteArray
&info
);
110 void installPlugin_impl(const QString
&name
, const Path
&path
);
111 bool isUpdateNeeded(const QString
&pluginName
, PluginVersion newVersion
) const;
113 void versionInfoDownloadFinished(const Net::DownloadResult
&result
);
114 void pluginDownloadFinished(const Net::DownloadResult
&result
);
116 static Path
pluginPath(const QString
&name
);
118 static QPointer
<SearchPluginManager
> m_instance
;
120 const QString m_updateUrl
;
122 QHash
<QString
, PluginInfo
*> m_plugins
;