2016-10-27 18:41:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\App\AppStore\Fetcher;
|
|
|
|
|
2016-12-22 11:46:10 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2016-10-27 18:41:15 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\Files\IAppData;
|
|
|
|
use OCP\Files\NotFoundException;
|
|
|
|
use OCP\Http\Client\IClientService;
|
2016-12-16 00:04:03 +03:00
|
|
|
use OCP\IConfig;
|
2016-10-27 18:41:15 +03:00
|
|
|
|
|
|
|
abstract class Fetcher {
|
|
|
|
const INVALIDATE_AFTER_SECONDS = 300;
|
|
|
|
|
|
|
|
/** @var IAppData */
|
2016-11-24 16:29:57 +03:00
|
|
|
protected $appData;
|
2016-10-27 18:41:15 +03:00
|
|
|
/** @var IClientService */
|
2016-11-24 16:29:57 +03:00
|
|
|
protected $clientService;
|
2016-10-27 18:41:15 +03:00
|
|
|
/** @var ITimeFactory */
|
2016-11-24 16:29:57 +03:00
|
|
|
protected $timeFactory;
|
2016-12-16 00:04:03 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
2016-10-27 18:41:15 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $fileName;
|
|
|
|
/** @var string */
|
|
|
|
protected $endpointUrl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IAppData $appData
|
|
|
|
* @param IClientService $clientService
|
|
|
|
* @param ITimeFactory $timeFactory
|
2016-12-16 00:04:03 +03:00
|
|
|
* @param IConfig $config
|
2016-10-27 18:41:15 +03:00
|
|
|
*/
|
|
|
|
public function __construct(IAppData $appData,
|
|
|
|
IClientService $clientService,
|
2016-12-16 00:04:03 +03:00
|
|
|
ITimeFactory $timeFactory,
|
|
|
|
IConfig $config) {
|
2016-10-27 18:41:15 +03:00
|
|
|
$this->appData = $appData;
|
|
|
|
$this->clientService = $clientService;
|
|
|
|
$this->timeFactory = $timeFactory;
|
2016-12-16 00:04:03 +03:00
|
|
|
$this->config = $config;
|
2016-10-27 18:41:15 +03:00
|
|
|
}
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
/**
|
|
|
|
* Fetches the response from the server
|
|
|
|
*
|
2016-12-22 11:46:10 +03:00
|
|
|
* @param string $ETag
|
|
|
|
* @param string $content
|
|
|
|
*
|
2016-11-24 16:29:57 +03:00
|
|
|
* @return array
|
|
|
|
*/
|
2016-12-22 11:46:10 +03:00
|
|
|
protected function fetch($ETag, $content) {
|
2017-02-23 23:56:28 +03:00
|
|
|
$appstoreenabled = $this->config->getSystemValue('appstoreenabled', true);
|
2017-01-26 21:02:45 +03:00
|
|
|
|
|
|
|
if (!$appstoreenabled) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:46:10 +03:00
|
|
|
$options = [];
|
|
|
|
|
|
|
|
if ($ETag !== '') {
|
|
|
|
$options['headers'] = [
|
|
|
|
'If-None-Match' => $ETag,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
$client = $this->clientService->newClient();
|
2016-12-22 11:46:10 +03:00
|
|
|
$response = $client->get($this->endpointUrl, $options);
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
$responseJson = [];
|
2016-12-22 11:46:10 +03:00
|
|
|
if ($response->getStatusCode() === Http::STATUS_NOT_MODIFIED) {
|
|
|
|
$responseJson['data'] = json_decode($content, true);
|
|
|
|
} else {
|
|
|
|
$responseJson['data'] = json_decode($response->getBody(), true);
|
|
|
|
$ETag = $response->getHeader('ETag');
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
$responseJson['timestamp'] = $this->timeFactory->getTime();
|
2016-12-16 00:04:03 +03:00
|
|
|
$responseJson['ncversion'] = $this->config->getSystemValue('version');
|
2016-12-22 11:46:10 +03:00
|
|
|
if ($ETag !== '') {
|
|
|
|
$responseJson['ETag'] = $ETag;
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
return $responseJson;
|
|
|
|
}
|
|
|
|
|
2016-10-27 18:41:15 +03:00
|
|
|
/**
|
|
|
|
* Returns the array with the categories on the appstore server
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-01-26 21:02:45 +03:00
|
|
|
public function get() {
|
2017-02-23 23:56:28 +03:00
|
|
|
$appstoreenabled = $this->config->getSystemValue('appstoreenabled', true);
|
2017-01-26 21:02:45 +03:00
|
|
|
|
|
|
|
if (!$appstoreenabled) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2016-10-27 18:41:15 +03:00
|
|
|
$rootFolder = $this->appData->getFolder('/');
|
|
|
|
|
2016-12-22 11:46:10 +03:00
|
|
|
$ETag = '';
|
|
|
|
$content = '';
|
|
|
|
|
2016-10-27 18:41:15 +03:00
|
|
|
try {
|
|
|
|
// File does already exists
|
|
|
|
$file = $rootFolder->getFile($this->fileName);
|
|
|
|
$jsonBlob = json_decode($file->getContent(), true);
|
2017-01-26 21:02:45 +03:00
|
|
|
if (is_array($jsonBlob)) {
|
2016-12-16 00:04:03 +03:00
|
|
|
/*
|
|
|
|
* If the timestamp is older than 300 seconds request the files new
|
|
|
|
* If the version changed (update!) also refresh
|
|
|
|
*/
|
2017-01-26 21:02:45 +03:00
|
|
|
if ((int)$jsonBlob['timestamp'] > ($this->timeFactory->getTime() - self::INVALIDATE_AFTER_SECONDS) &&
|
|
|
|
isset($jsonBlob['ncversion']) && $jsonBlob['ncversion'] === $this->config->getSystemValue('version', '0.0.0')
|
|
|
|
) {
|
2016-10-27 18:41:15 +03:00
|
|
|
return $jsonBlob['data'];
|
|
|
|
}
|
2016-12-22 11:46:10 +03:00
|
|
|
|
|
|
|
if (isset($jsonBlob['ETag'])) {
|
|
|
|
$ETag = $jsonBlob['ETag'];
|
|
|
|
$content = json_encode($jsonBlob['data']);
|
|
|
|
}
|
2016-10-27 18:41:15 +03:00
|
|
|
}
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
// File does not already exists
|
|
|
|
$file = $rootFolder->newFile($this->fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Refresh the file content
|
|
|
|
try {
|
2016-12-22 11:46:10 +03:00
|
|
|
$responseJson = $this->fetch($ETag, $content);
|
2016-10-27 18:41:15 +03:00
|
|
|
$file->putContent(json_encode($responseJson));
|
|
|
|
return json_decode($file->getContent(), true)['data'];
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|