From 07e1e8497c441c67d11bab25beacc3b5dae14783 Mon Sep 17 00:00:00 2001 From: Joseph Date: Mon, 15 Mar 2021 16:54:26 +0000 Subject: [PATCH] [DockerHubBridge] Add detectParameters() (#1996) --- bridges/DockerHubBridge.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/bridges/DockerHubBridge.php b/bridges/DockerHubBridge.php index a349a5f5..b0aaa149 100644 --- a/bridges/DockerHubBridge.php +++ b/bridges/DockerHubBridge.php @@ -32,6 +32,29 @@ class DockerHubBridge extends BridgeAbstract { const CACHE_TIMEOUT = 3600; // 1 hour private $apiURL = 'https://hub.docker.com/v2/repositories/'; + private $imageUrlRegex = '/hub\.docker\.com\/r\/([\w]+)\/([\w-]+)\/?/'; + private $officialImageUrlRegex = '/hub\.docker\.com\/_\/([\w-]+)\/?/'; + + public function detectParameters($url) { + $params = array(); + + // user submitted image + if(preg_match($this->imageUrlRegex, $url, $matches)) { + $params['context'] = 'User Submitted Image'; + $params['user'] = $matches[1]; + $params['repo'] = $matches[2]; + return $params; + } + + // official image + if(preg_match($this->officialImageUrlRegex, $url, $matches)) { + $params['context'] = 'Official Image'; + $params['repo'] = $matches[1]; + return $params; + } + + return null; + } public function collectData() { $json = getContents($this->getApiUrl())