From d8bd147b145a25a3bae665f01aae602282e79151 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 5 Oct 2018 15:15:55 +0200
Subject: [PATCH] refactor(go): separate getSourcePurl

---
 lib/datasource/go.js | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/lib/datasource/go.js b/lib/datasource/go.js
index 3821af9336..defd99232f 100644
--- a/lib/datasource/go.js
+++ b/lib/datasource/go.js
@@ -5,9 +5,7 @@ module.exports = {
   getPkgReleases,
 };
 
-async function getPkgReleases(purl, config) {
-  const { fullname: name } = purl;
-  logger.trace(`go.getPkgReleases(${name})`);
+async function getSourcePurl(name) {
   const pkgUrl = 'https://' + name + '?go-get=1';
   try {
     const res = (await got(pkgUrl, {
@@ -18,7 +16,7 @@ async function getPkgReleases(purl, config) {
     );
     if (sourceMatch) {
       const [, sourceUrl] = sourceMatch;
-      logger.debug({ name, sourceUrl }, 'Go lookup sourceUrl');
+      logger.debug({ depName: name, sourceUrl }, 'Go lookup sourceUrl');
       if (sourceUrl && sourceUrl.startsWith('https://github.com/')) {
         const githubPurl = {
           fullname: sourceUrl
@@ -26,10 +24,8 @@ async function getPkgReleases(purl, config) {
             .replace(/\/$/, ''),
           qualifiers: {},
         };
-        const githubTags = await github.getPkgReleases(githubPurl, config);
-        return githubTags;
+        return githubPurl;
       }
-      logger.info('Unknown go source: ' + sourceUrl);
     } else {
       logger.trace({ depName: name }, 'No go-source header found');
     }
@@ -46,3 +42,14 @@ async function getPkgReleases(purl, config) {
     return null;
   }
 }
+
+async function getPkgReleases(purl, config) {
+  const { fullname: name } = purl;
+  logger.trace(`go.getPkgReleases(${name})`);
+  const githubPurl = await getSourcePurl(name);
+  if (githubPurl) {
+    const githubTags = await github.getPkgReleases(githubPurl, config);
+    return githubTags;
+  }
+  return null;
+}
-- 
GitLab