Vendors YahnisElsts/plugin-update-checker v5.7 under vendor/ and wires it to poll updates.json on the repo main branch. WP surfaces new versions via Dashboard → Updates on its normal twice-daily cadence. PUC is vendored (not a submodule) so Gitea's archive/main.zip — the download target — includes it. Also relicenses from GPL-2.0-or-later to a proprietary licence granting use only to authorised sites, with all other rights reserved. Plugin URI + Author URI switched from the placeholder github.com URL to the canonical Gitea repo. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace YahnisElsts\PluginUpdateChecker\v5p7\Vcs;
|
|
|
|
if ( !trait_exists(VcsCheckerMethods::class, false) ) :
|
|
|
|
trait VcsCheckerMethods {
|
|
/**
|
|
* @var string The branch where to look for updates. Defaults to "master".
|
|
*/
|
|
protected $branch = 'master';
|
|
|
|
/**
|
|
* @var Api Repository API client.
|
|
*/
|
|
protected $api = null;
|
|
|
|
public function setBranch($branch) {
|
|
$this->branch = $branch;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set authentication credentials.
|
|
*
|
|
* @param array|string $credentials
|
|
* @return $this
|
|
*/
|
|
public function setAuthentication($credentials) {
|
|
$this->api->setAuthentication($credentials);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Api
|
|
*/
|
|
public function getVcsApi() {
|
|
return $this->api;
|
|
}
|
|
|
|
public function getUpdate() {
|
|
$update = parent::getUpdate();
|
|
|
|
if ( isset($update) && !empty($update->download_url) ) {
|
|
$update->download_url = $this->api->signDownloadUrl($update->download_url);
|
|
}
|
|
|
|
return $update;
|
|
}
|
|
|
|
public function onDisplayConfiguration($panel) {
|
|
parent::onDisplayConfiguration($panel);
|
|
$panel->row('Branch', $this->branch);
|
|
$panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No');
|
|
$panel->row('API client', get_class($this->api));
|
|
}
|
|
}
|
|
|
|
endif; |