1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/plugins/CoreUpdater/ReleaseChannel.php
Stefan Giehl 15bbb307c7 Ensure LatestStable release channel uses the version provided from API (#22603)
* Ensure LatestStable release channel uses the version provided from API

* Adjust test and link in UI

* always download latest stable if no version provided
2024-09-20 15:58:32 +02:00

51 خطوط
1.4 KiB
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\CoreUpdater;
use Piwik\Common;
use Piwik\Db;
use Piwik\Http;
use Piwik\Plugins\Marketplace\Api\Client;
use Piwik\Plugins\SitesManager\API;
use Piwik\UpdateCheck\ReleaseChannel as BaseReleaseChannel;
use Piwik\Url;
use Piwik\Version;
abstract class ReleaseChannel extends BaseReleaseChannel
{
public function getUrlToCheckForLatestAvailableVersion()
{
$parameters = array(
'piwik_version' => Version::VERSION,
'php_version' => PHP_VERSION,
'mysql_version' => Db::get()->getServerVersion(),
'release_channel' => $this->getId(),
'url' => Url::getCurrentUrlWithoutQueryString(),
'trigger' => Common::getRequestVar('module', '', 'string'),
'timezone' => API::getInstance()->getDefaultTimezone(),
);
$url = Client::getApiServiceUrl()
. '/1.0/getLatestVersion/'
. '?' . Http::buildQuery($parameters);
return $url;
}
public function getDownloadUrlWithoutScheme($version)
{
if (!empty($version)) {
return sprintf('://builds.matomo.org/matomo-%s.zip', $version);
}
return '://builds.matomo.org/matomo.zip';
}
}