123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- #include <QSysInfo>
- #include <QProcess>
- #include <QMap>
- #include <QtNetwork/qnetworkinterface.h>
- #include <QGuiApplication>
- #include <QDesktopServices>
- #include <QDir>
- #include "input/InputComponent.h"
- #include "SystemComponent.h"
- #include "Version.h"
- #include "QsLog.h"
- #include "settings/SettingsComponent.h"
- #include "ui/KonvergoWindow.h"
- #include "Paths.h"
- #include "Names.h"
- #define MOUSE_TIMEOUT 5 * 1000
- #define KONVERGO_PRODUCTID_DEFAULT 3
- #define KONVERGO_PRODUCTID_OPENELEC 4
- QMap<SystemComponent::PlatformType, QString> g_platformTypeNames = { \
- { SystemComponent::platformTypeOsx, "macosx" }, \
- { SystemComponent::platformTypeWindows, "windows" },
- { SystemComponent::platformTypeLinux, "linux" },
- { SystemComponent::platformTypeOpenELEC, "openelec" },
- { SystemComponent::platformTypeUnknown, "unknown" },
- };
- QMap<SystemComponent::PlatformArch, QString> g_platformArchNames = { \
- { SystemComponent::platformArchX86_64, "x86_64" }, \
- { SystemComponent::platformArchRpi2, "rpi2" },
- { SystemComponent::platformArchUnknown, "unknown" }
- };
- SystemComponent::SystemComponent(QObject* parent) : ComponentBase(parent), m_platformType(platformTypeUnknown), m_platformArch(platformArchUnknown), m_doLogMessages(false)
- {
- m_mouseOutTimer = new QTimer(this);
- m_mouseOutTimer->setSingleShot(true);
- connect(m_mouseOutTimer, &QTimer::timeout, [&] () { setCursorVisibility(false); });
- m_mouseOutTimer->start(MOUSE_TIMEOUT);
- #if defined(Q_OS_MAC)
- m_platformType = platformTypeOsx;
- #elif defined(Q_OS_WIN)
- m_platformType = platformTypeWindows;
- #elif defined(KONVERGO_OPENELEC)
- m_platformType = platformTypeOpenELEC;
- #elif defined(Q_OS_LINUX)
- m_platformType = platformTypeLinux;
- #endif
- #if TARGET_RPI
- m_platformArch = platformArchRpi2;
- #elif defined(Q_PROCESSOR_X86_32)
- m_platformArch = platformArchX86_32;
- #elif defined(Q_PROCESSOR_X86_64)
- m_platformArch = platformArchX86_64;
- #endif
- }
- bool SystemComponent::componentInitialize()
- {
- QDir().mkpath(Paths::dataDir("scripts"));
- return true;
- }
- void SystemComponent::crashApp()
- {
- *(volatile int*)nullptr=0;
- }
- void SystemComponent::componentPostInitialize()
- {
- InputComponent::Get().registerHostCommand("crash!", this, "crashApp");
- InputComponent::Get().registerHostCommand("script", this, "runUserScript");
- InputComponent::Get().registerHostCommand("message", this, "hostMessage");
- }
- QString SystemComponent::getPlatformTypeString() const
- {
- return g_platformTypeNames[m_platformType];
- }
- QString SystemComponent::getPlatformArchString() const
- {
- return g_platformArchNames[m_platformArch];
- }
- QVariantMap SystemComponent::systemInformation() const
- {
- QVariantMap info;
- QString build;
- QString dist;
- QString arch;
- int productid = KONVERGO_PRODUCTID_DEFAULT;
- #ifdef Q_OS_WIN
- arch = "x86_64";
- #else
- arch = QSysInfo::currentCpuArchitecture();
- #endif
- build = getPlatformTypeString();
- dist = getPlatformTypeString();
- #if defined(KONVERGO_OPENELEC)
- productid = KONVERGO_PRODUCTID_OPENELEC;
- dist = "openelec";
- if (m_platformArch == platformArchRpi2)
- {
- build = "rpi2";
- }
- else
- {
- build = "generic";
- }
- #endif
-
- info["build"] = build + "-" + arch;
- info["dist"] = dist;
- info["version"] = Version::GetVersionString();
- info["productid"] = productid;
-
- QLOG_DEBUG() << QString(
- "System Information : build(%1)-arch(%2).dist(%3).version(%4).productid(%5)")
- .arg(build)
- .arg(arch)
- .arg(dist)
- .arg(Version::GetVersionString())
- .arg(productid);
- return info;
- }
- void SystemComponent::exit()
- {
- qApp->quit();
- }
- void SystemComponent::restart()
- {
- qApp->quit();
- QProcess::startDetached(qApp->arguments()[0], qApp->arguments());
- }
- void SystemComponent::info(QString text)
- {
- if (QsLogging::Logger::instance().loggingLevel() <= QsLogging::InfoLevel)
- QsLogging::Logger::Helper(QsLogging::InfoLevel).stream() << "JS:" << qPrintable(text);
- }
- void SystemComponent::setCursorVisibility(bool visible)
- {
- if (visible)
- {
- m_mouseOutTimer->start(MOUSE_TIMEOUT);
- while (qApp->overrideCursor())
- qApp->restoreOverrideCursor();
- }
- else
- {
- if (!qApp->overrideCursor())
- {
- if (m_mouseOutTimer->isActive())
- m_mouseOutTimer->stop();
- qApp->setOverrideCursor(QCursor(Qt::BlankCursor));
- }
- }
- }
- QString SystemComponent::getUserAgent()
- {
- QString osVersion = QSysInfo::productVersion();
- QString userAgent = QString("PlexMediaPlayer %1 (%2-%3 %4)").arg(Version::GetVersionString()).arg(getPlatformTypeString()).arg(getPlatformArchString()).arg(osVersion);
- return userAgent;
- }
- QString SystemComponent::debugInformation()
- {
- QString debugInfo;
- QTextStream stream(&debugInfo);
- stream << "Plex Media Player" << endl;
- stream << " Version: " << Version::GetVersionString() << " built: " << Version::GetBuildDate() << endl;
- stream << " Web Client Version: " << Version::GetWebVersion() << endl;
- stream << " Web Client URL: " << SettingsComponent::Get().value(SETTINGS_SECTION_PATH, "startupurl").toString() << endl;
- stream << " Platform: " << getPlatformTypeString() << "-" << getPlatformArchString() << endl;
- stream << " User-Agent: " << getUserAgent() << endl;
- stream << " Qt version: " << qVersion() << QString("(%1)").arg(Version::GetQtDepsVersion()) << endl;
- stream << " Depends version: " << Version::GetDependenciesVersion() << endl;
- stream << endl;
- stream << "Files" << endl;
- stream << " Log file: " << Paths::logDir(Names::MainName() + ".log") << endl;
- stream << " Config file: " << Paths::dataDir(Names::MainName() + ".conf") << endl;
- stream << endl;
- stream << "Network Addresses" << endl;
- foreach (const QString& addr, networkAddresses())
- {
- stream << " " << addr << endl;
- }
- stream << endl;
- stream << flush;
- return debugInfo;
- }
- int SystemComponent::networkPort() const
- {
- return SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "webserverport").toInt();
- }
- QStringList SystemComponent::networkAddresses() const
- {
- QStringList list;
- foreach(const QHostAddress& address, QNetworkInterface::allAddresses())
- {
- if (! address.isLoopback() && (address.protocol() == QAbstractSocket::IPv4Protocol ||
- address.protocol() == QAbstractSocket::IPv6Protocol))
- {
- auto s = address.toString();
- if (!s.startsWith("fe80::"))
- list << s;
- }
- }
- return list;
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- void SystemComponent::userInformation(const QVariantMap& userModel)
- {
- QStringList roleList;
- foreach (const QVariant& role, userModel.value("roles").toList())
- {
- roleList << role.toMap().value("id").toString();
- }
- SettingsComponent::Get().setUserRoleList(roleList);
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- void SystemComponent::openExternalUrl(const QString& url)
- {
- QDesktopServices::openUrl(QUrl(url));
- }
- /////////////////////////////////////////////////////////////////////////////////////////
- void SystemComponent::runUserScript(QString script)
- {
- // We take the path the user supplied and run it through fileInfo and
- // look for the fileName() part, this is to avoid people sharing keymaps
- // that tries to execute things like ../../ etc. Note that this function
- // is still not safe, people can do nasty things with it, so users needs
- // to be careful with their keymaps.
- //
- QFileInfo fi(script);
- QString scriptPath = Paths::dataDir("scripts/" + fi.fileName());
- QFile scriptFile(scriptPath);
- if (scriptFile.exists())
- {
- if (!QFileInfo(scriptFile).isExecutable())
- {
- QLOG_WARN() << "Script:" << script << "is not executable";
- return;
- }
- QLOG_INFO() << "Running script:" << scriptPath;
- if (QProcess::startDetached(scriptPath, QStringList()))
- QLOG_DEBUG() << "Script started successfully";
- else
- QLOG_WARN() << "Error running script:" << scriptPath;
- }
- else
- {
- QLOG_WARN() << "Could not find script:" << scriptPath;
- }
- }
|