Revert "get multiarch repodigest"

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-02-02 18:26:44 +01:00
parent f5c32a1a67
commit 5a959e9b07

View file

@ -26,31 +26,29 @@ class DockerHubManager
// If one of the links below should ever become outdated, we can still upgrade the mastercontainer via the webinterface manually by opening '/api/docker/getwatchtower' // If one of the links below should ever become outdated, we can still upgrade the mastercontainer via the webinterface manually by opening '/api/docker/getwatchtower'
try { try {
$request = $this->guzzleClient->request( $authTokenRequest = $this->guzzleClient->request(
'GET', 'GET',
'https://hub.docker.com/v2/repositories/' . $name . '/tags?page_size=128' 'https://auth.docker.io/token?service=registry.docker.io&scope=repository:' . $name . ':pull'
); );
$body = $request->getBody()->getContents(); $body = $authTokenRequest->getBody()->getContents();
$decodedBody = json_decode($body, true); $decodedBody = json_decode($body, true);
if(isset($decodedBody['token'])) {
if (isset($decodedBody['results'])) { $authToken = $decodedBody['token'];
$arch = php_uname('m') === 'x86_64' ? 'amd64' : 'arm64'; $manifestRequest = $this->guzzleClient->request(
foreach($decodedBody['results'] as $values) { 'GET',
if (isset($values['name']) 'https://registry-1.docker.io/v2/'.$name.'/manifests/' . $tag,
&& $values['name'] === $tag [
&& isset($values['images']) 'headers' => [
&& is_array($values['images'])) { 'Accept' => 'application/vnd.docker.distribution.manifest.v2+json,application/vnd.oci.image.index.v1+json',
foreach ($values['images'] as $images) { 'Authorization' => 'Bearer ' . $authToken,
if (isset($images['architecture']) ],
&& $images['architecture'] === $arch ]
&& isset($images['digest']) );
&& is_string($images['digest'])) { $responseHeaders = $manifestRequest->getHeader('docker-content-digest');
$latestVersion = $images['digest']; if(count($responseHeaders) === 1) {
apcu_add($cacheKey, $latestVersion, 600); $latestVersion = $responseHeaders[0];
return $latestVersion; apcu_add($cacheKey, $latestVersion, 600);
} return $latestVersion;
}
}
} }
} }