updatechecker.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * @author Lukas Reschke <lukas@owncloud.com>
  4. *
  5. * @copyright Copyright (c) 2016, ownCloud, Inc.
  6. * @license AGPL-3.0
  7. *
  8. * This code is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License, version 3,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License, version 3,
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>
  19. *
  20. */
  21. namespace OCA\UpdateNotification;
  22. use OC\Updater;
  23. class UpdateChecker {
  24. /** @var Updater */
  25. private $updater;
  26. /**
  27. * @param Updater $updater
  28. */
  29. public function __construct(Updater $updater) {
  30. $this->updater = $updater;
  31. }
  32. /**
  33. * @return array
  34. */
  35. public function getUpdateState() {
  36. $data = $this->updater->check();
  37. $result = [];
  38. if(isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
  39. $result['updateAvailable'] = true;
  40. $result['updateVersion'] = $data['versionstring'];
  41. if(substr($data['web'], 0, 8) === 'https://') {
  42. $result['updateLink'] = $data['web'];
  43. }
  44. return $result;
  45. }
  46. return [];
  47. }
  48. /**
  49. * @param array $data
  50. */
  51. public function getJavaScript(array $data) {
  52. $data['array']['oc_updateState'] = json_encode([
  53. 'updateAvailable' => true,
  54. 'updateVersion' => $this->getUpdateState()['updateVersion'],
  55. 'updateLink' => isset($this->getUpdateState()['updateLink']) ? $this->getUpdateState()['updateLink'] : '',
  56. ]);
  57. }
  58. }