device.cpp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright 2011 Wolfgang Koller - http://www.gofg.at/
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <QDeviceInfo>
  17. #include <QtSystemInfo>
  18. #include"device.h"
  19. #define CORDOVA "3.0.0"
  20. Device::Device(Cordova *cordova) : CPlugin(cordova) {
  21. }
  22. static QString getOSName() {
  23. #ifdef Q_OS_SYMBIAN
  24. QString platform = "Symbian";
  25. #endif
  26. #ifdef Q_OS_WIN
  27. QString platform = "Windows";
  28. #endif
  29. #ifdef Q_OS_WINCE
  30. QString platform = "Windows CE";
  31. #endif
  32. #ifdef Q_OS_LINUX
  33. QString platform = "Linux";
  34. #endif
  35. return platform;
  36. }
  37. void Device::getInfo(int scId, int ecId) {
  38. Q_UNUSED(ecId)
  39. QDeviceInfo systemDeviceInfo;
  40. QDeviceInfo systemInfo;
  41. QString platform = getOSName();
  42. QString uuid = systemDeviceInfo.uniqueDeviceID();
  43. if (uuid.isEmpty()) {
  44. QString deviceDescription = systemInfo.imei(0) + ";" + systemInfo.manufacturer() + ";" + systemInfo.model() + ";" + systemInfo.productName() + ";" + platform;
  45. QString user = qgetenv("USER");
  46. if (user.isEmpty()) {
  47. user = qgetenv("USERNAME");
  48. if (user.isEmpty())
  49. user = QDir::homePath();
  50. }
  51. uuid = QString(QCryptographicHash::hash((deviceDescription + ";" + user).toUtf8(), QCryptographicHash::Md5).toHex());
  52. }
  53. this->cb(scId, systemDeviceInfo.model(), CORDOVA, platform, uuid, systemInfo.version(QDeviceInfo::Os));
  54. }