SystemComponent.cpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. #include <QSysInfo>
  2. #include <QProcess>
  3. #include <QMap>
  4. #include <QtNetwork/qnetworkinterface.h>
  5. #include <QGuiApplication>
  6. #include <QDesktopServices>
  7. #include "SystemComponent.h"
  8. #include "Version.h"
  9. #include "QsLog.h"
  10. #include "settings/SettingsComponent.h"
  11. #include "ui/KonvergoWindow.h"
  12. #include "Paths.h"
  13. #include "Names.h"
  14. #define MOUSE_TIMEOUT 5 * 1000
  15. #define KONVERGO_PRODUCTID_DEFAULT 3
  16. #define KONVERGO_PRODUCTID_OPENELEC 4
  17. // Platform types map
  18. QMap<SystemComponent::PlatformType, QString> platformTypeNames = { \
  19. { SystemComponent::platformTypeOsx, "macosx" }, \
  20. { SystemComponent::platformTypeWindows, "windows" },
  21. { SystemComponent::platformTypeLinux, "linux" },
  22. { SystemComponent::platformTypeOpenELEC, "openelec" },
  23. { SystemComponent::platformTypeUnknown, "unknown" },
  24. };
  25. // platform Archictecture map
  26. QMap<SystemComponent::PlatformArch, QString> platformArchNames = { \
  27. { SystemComponent::platformArchX86_64, "x86_64" }, \
  28. { SystemComponent::platformArchRpi2, "rpi2" },
  29. { SystemComponent::platformArchUnknown, "unknown" }
  30. };
  31. ///////////////////////////////////////////////////////////////////////////////////////////////////
  32. SystemComponent::SystemComponent(QObject* parent) : ComponentBase(parent), m_platformType(platformTypeUnknown), m_platformArch(platformArchUnknown), m_doLogMessages(false)
  33. {
  34. m_mouseOutTimer = new QTimer(this);
  35. m_mouseOutTimer->setSingleShot(true);
  36. connect(m_mouseOutTimer, &QTimer::timeout, [&] () { setCursorVisibility(false); });
  37. m_mouseOutTimer->start(MOUSE_TIMEOUT);
  38. // define OS Type
  39. #if defined(Q_OS_MAC)
  40. m_platformType = platformTypeOsx;
  41. #elif defined(Q_OS_WIN)
  42. m_platformType = platformTypeWindows;
  43. #elif defined(KONVERGO_OPENELEC)
  44. m_platformType = platformTypeOpenELEC;
  45. #elif defined(Q_OS_LINUX)
  46. m_platformType = platformTypeLinux;
  47. #endif
  48. // define target type
  49. #if TARGET_RPI
  50. m_platformArch = platformArchRpi2;
  51. #elif defined(Q_PROCESSOR_X86_32)
  52. m_platformArch = platformArchX86_32;
  53. #elif defined(Q_PROCESSOR_X86_64)
  54. m_platformArch = platformArchX86_64;
  55. #endif
  56. }
  57. ///////////////////////////////////////////////////////////////////////////////////////////////////
  58. QString SystemComponent::getPlatformTypeString() const
  59. {
  60. return platformTypeNames[m_platformType];
  61. }
  62. ///////////////////////////////////////////////////////////////////////////////////////////////////
  63. QString SystemComponent::getPlatformArchString() const
  64. {
  65. return platformArchNames[m_platformArch];
  66. }
  67. ///////////////////////////////////////////////////////////////////////////////////////////////////
  68. QVariantMap SystemComponent::systemInformation() const
  69. {
  70. QVariantMap info;
  71. QString build;
  72. QString dist;
  73. QString arch;
  74. int productid = KONVERGO_PRODUCTID_DEFAULT;
  75. #ifdef Q_OS_WIN
  76. arch = "x86_64";
  77. #else
  78. arch = QSysInfo::currentCpuArchitecture();
  79. #endif
  80. build = getPlatformTypeString();
  81. dist = getPlatformTypeString();
  82. #if defined(KONVERGO_OPENELEC)
  83. productid = KONVERGO_PRODUCTID_OPENELEC;
  84. dist = "openelec";
  85. if (m_platformArch == platformArchRpi2)
  86. {
  87. build = "rpi2";
  88. }
  89. else
  90. {
  91. build = "generic";
  92. }
  93. #endif
  94. info["build"] = build + "-" + arch;
  95. info["dist"] = dist;
  96. info["version"] = Version::GetVersionString();
  97. info["productid"] = productid;
  98. QLOG_DEBUG() << QString(
  99. "System Information : build(%1)-arch(%2).dist(%3).version(%4).productid(%5)")
  100. .arg(build)
  101. .arg(arch)
  102. .arg(dist)
  103. .arg(Version::GetVersionString())
  104. .arg(productid);
  105. return info;
  106. }
  107. ///////////////////////////////////////////////////////////////////////////////////////////////////
  108. void SystemComponent::exit()
  109. {
  110. qApp->quit();
  111. }
  112. ///////////////////////////////////////////////////////////////////////////////////////////////////
  113. void SystemComponent::restart()
  114. {
  115. qApp->quit();
  116. QProcess::startDetached(qApp->arguments()[0], qApp->arguments());
  117. }
  118. ///////////////////////////////////////////////////////////////////////////////////////////////////
  119. void SystemComponent::info(QString text)
  120. {
  121. if (QsLogging::Logger::instance().loggingLevel() <= QsLogging::InfoLevel)
  122. QsLogging::Logger::Helper(QsLogging::InfoLevel).stream() << "JS:" << qPrintable(text);
  123. }
  124. ///////////////////////////////////////////////////////////////////////////////////////////////////
  125. void SystemComponent::setCursorVisibility(bool visible)
  126. {
  127. if (visible)
  128. {
  129. m_mouseOutTimer->start(MOUSE_TIMEOUT);
  130. while (qApp->overrideCursor())
  131. qApp->restoreOverrideCursor();
  132. }
  133. else
  134. {
  135. if (!qApp->overrideCursor())
  136. {
  137. if (m_mouseOutTimer->isActive())
  138. m_mouseOutTimer->stop();
  139. qApp->setOverrideCursor(QCursor(Qt::BlankCursor));
  140. }
  141. }
  142. }
  143. ///////////////////////////////////////////////////////////////////////////////////////////////////
  144. QString SystemComponent::getUserAgent()
  145. {
  146. QString osVersion = QSysInfo::productVersion();
  147. QString userAgent = QString("PlexMediaPlayer %1 (%2-%3 %4)").arg(Version::GetVersionString()).arg(getPlatformTypeString()).arg(getPlatformArchString()).arg(osVersion);
  148. return userAgent;
  149. }
  150. /////////////////////////////////////////////////////////////////////////////////////////
  151. QString SystemComponent::debugInformation()
  152. {
  153. QString debugInfo;
  154. QTextStream stream(&debugInfo);
  155. stream << "Plex Media Player" << endl;
  156. stream << " Version: " << Version::GetVersionString() << " built: " << Version::GetBuildDate() << endl;
  157. stream << " Web Client Version: " << Version::GetWebVersion() << endl;
  158. stream << " Web Client URL: " << SettingsComponent::Get().value(SETTINGS_SECTION_PATH, "startupurl").toString() << endl;
  159. stream << " Platform: " << getPlatformTypeString() << "-" << getPlatformArchString() << endl;
  160. stream << " User-Agent: " << getUserAgent() << endl;
  161. stream << " Qt version: " << qVersion() << endl;
  162. stream << endl;
  163. stream << "Files" << endl;
  164. stream << " Log file: " << Paths::logDir(Names::MainName() + ".log") << endl;
  165. stream << " Config file: " << Paths::dataDir(Names::MainName() + ".conf") << endl;
  166. stream << endl;
  167. stream << "Network Addresses" << endl;
  168. foreach (const QString& addr, networkAddresses())
  169. {
  170. stream << " " << addr << endl;
  171. }
  172. stream << endl;
  173. stream << flush;
  174. return debugInfo;
  175. }
  176. /////////////////////////////////////////////////////////////////////////////////////////
  177. int SystemComponent::networkPort() const
  178. {
  179. return SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "webserverport").toInt();
  180. }
  181. /////////////////////////////////////////////////////////////////////////////////////////
  182. QStringList SystemComponent::networkAddresses() const
  183. {
  184. QStringList list;
  185. foreach(const QHostAddress& address, QNetworkInterface::allAddresses())
  186. {
  187. if (! address.isLoopback() && (address.protocol() == QAbstractSocket::IPv4Protocol))
  188. list << address.toString();
  189. }
  190. return list;
  191. }
  192. /////////////////////////////////////////////////////////////////////////////////////////
  193. void SystemComponent::userInformation(const QVariantMap& userModel)
  194. {
  195. QStringList roleList;
  196. auto roles = userModel.value("roles").toMap();
  197. foreach (const QString& key, roles.keys())
  198. {
  199. if (roles.value(key).toBool())
  200. roleList << key;
  201. }
  202. SettingsComponent::Get().setUserRoleList(roleList);
  203. }
  204. /////////////////////////////////////////////////////////////////////////////////////////
  205. void SystemComponent::openExternalUrl(const QString& url)
  206. {
  207. QDesktopServices::openUrl(QUrl(url));
  208. }