mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[DockerHubBridge] Display compressed image size in items (#3279)
* [DockerHubBridge] Display compressed image size in items * [DockerHubBridge] lint * [DockerHubBridge] Use format_bytes()
This commit is contained in:
parent
5ab949ca55
commit
8c4dbb32de
@ -93,7 +93,7 @@ class DockerHubBridge extends BridgeAbstract
|
|||||||
<Strong>Last pushed</strong><br>
|
<Strong>Last pushed</strong><br>
|
||||||
<p>{$lastPushed}</p>
|
<p>{$lastPushed}</p>
|
||||||
<Strong>Images</strong><br>
|
<Strong>Images</strong><br>
|
||||||
{$this->getImages($result)}
|
{$this->getImagesTable($result)}
|
||||||
EOD;
|
EOD;
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
@ -187,25 +187,37 @@ EOD;
|
|||||||
return $url . '/tags/?&name=' . $name;
|
return $url . '/tags/?&name=' . $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getImages($result)
|
private function getImagesTable($result)
|
||||||
{
|
{
|
||||||
$html = <<<EOD
|
$data = '';
|
||||||
<table style="width:300px;"><thead><tr><th>Digest</th><th>OS/architecture</th></tr></thead></tbody>
|
|
||||||
EOD;
|
|
||||||
|
|
||||||
foreach ($result->images as $image) {
|
foreach ($result->images as $image) {
|
||||||
$layersUrl = $this->getLayerUrl($result->name, $image->digest);
|
$layersUrl = $this->getLayerUrl($result->name, $image->digest);
|
||||||
$id = $this->getShortDigestId($image->digest);
|
$id = $this->getShortDigestId($image->digest);
|
||||||
|
$size = format_bytes($image->size);
|
||||||
$html .= <<<EOD
|
$data .= <<<EOD
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{$layersUrl}">{$id}</a></td>
|
<td><a href="{$layersUrl}">{$id}</a></td>
|
||||||
<td>{$image->os}/{$image->architecture}</td>
|
<td>{$image->os}/{$image->architecture}</td>
|
||||||
</tr>
|
<td>{$size}</td>
|
||||||
|
</tr>
|
||||||
EOD;
|
EOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $html . '</tbody></table>';
|
return <<<EOD
|
||||||
|
<table style="width:400px;">
|
||||||
|
<thead>
|
||||||
|
<tr style="text-align: left;">
|
||||||
|
<th>Digest</th>
|
||||||
|
<th>OS/architecture</th>
|
||||||
|
<th>Compressed Size</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</tbody>
|
||||||
|
{$data}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
EOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getShortDigestId($digest)
|
private function getShortDigestId($digest)
|
||||||
|
Loading…
Reference in New Issue
Block a user