123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\Updater;
- use OCP\Http\Client\IClientService;
- use OCP\IConfig;
- use OCP\Util;
- class VersionCheck {
- /** @var IClientService */
- private $clientService;
- /** @var IConfig */
- private $config;
- /**
- * @param IClientService $clientService
- * @param IConfig $config
- */
- public function __construct(IClientService $clientService,
- IConfig $config) {
- $this->clientService = $clientService;
- $this->config = $config;
- }
- /**
- * Check if a new version is available
- *
- * @return array|bool
- */
- public function check() {
- // If this server is set to have no internet connection this is all not needed
- if (!$this->config->getSystemValueBool('has_internet_connection', true)) {
- return false;
- }
- // Look up the cache - it is invalidated all 30 minutes
- if (((int)$this->config->getAppValue('core', 'lastupdatedat') + 1800) > time()) {
- return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
- }
- $updaterUrl = $this->config->getSystemValueString('updater.server.url', 'https://updates.nextcloud.com/updater_server/');
- $this->config->setAppValue('core', 'lastupdatedat', (string)time());
- if ($this->config->getAppValue('core', 'installedat', '') === '') {
- $this->config->setAppValue('core', 'installedat', (string)microtime(true));
- }
- $version = Util::getVersion();
- $version['installed'] = $this->config->getAppValue('core', 'installedat');
- $version['updated'] = $this->config->getAppValue('core', 'lastupdatedat');
- $version['updatechannel'] = \OC_Util::getChannel();
- $version['edition'] = '';
- $version['build'] = \OC_Util::getBuild();
- $version['php_major'] = PHP_MAJOR_VERSION;
- $version['php_minor'] = PHP_MINOR_VERSION;
- $version['php_release'] = PHP_RELEASE_VERSION;
- $versionString = implode('x', $version);
- //fetch xml data from updater
- $url = $updaterUrl . '?version=' . $versionString;
- $tmp = [];
- try {
- $xml = $this->getUrlContent($url);
- } catch (\Exception $e) {
- return false;
- }
- if ($xml) {
- if (\LIBXML_VERSION < 20900) {
- $loadEntities = libxml_disable_entity_loader(true);
- $data = @simplexml_load_string($xml);
- libxml_disable_entity_loader($loadEntities);
- } else {
- $data = @simplexml_load_string($xml);
- }
- if ($data !== false) {
- $tmp['version'] = (string)$data->version;
- $tmp['versionstring'] = (string)$data->versionstring;
- $tmp['url'] = (string)$data->url;
- $tmp['web'] = (string)$data->web;
- $tmp['changes'] = isset($data->changes) ? (string)$data->changes : '';
- $tmp['autoupdater'] = (string)$data->autoupdater;
- $tmp['eol'] = isset($data->eol) ? (string)$data->eol : '0';
- } else {
- libxml_clear_errors();
- }
- }
- // Cache the result
- $this->config->setAppValue('core', 'lastupdateResult', json_encode($tmp));
- return $tmp;
- }
- /**
- * @codeCoverageIgnore
- * @param string $url
- * @return resource|string
- * @throws \Exception
- */
- protected function getUrlContent($url) {
- $client = $this->clientService->newClient();
- $response = $client->get($url);
- return $response->getBody();
- }
- }
|