aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com
diff options
context:
space:
mode:
authorGravatar Akira Baruah <akira.baruah@gmail.com>2017-11-08 21:41:11 +0100
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-11-09 18:29:20 +0100
commit7459a2117709ba927ed80f70233397598918dfa0 (patch)
treee959d648c0a085a6b219f36ee207baab2b408a8b /src/main/java/com
parent4193c0fb51a027f6cc143784f0b522842597103c (diff)
GitHub repository archive download
Addresses #3661 and fixes #3770 bug Changes: - Properly escape the download URL. `GitCloner` used to incorrectly escape `/` delimiters as `%2F`. This change was originally introduced in #3770 but [rolled back](https://github.com/akira-baruah/bazel/commit/58c003cf98b81d433603eeeb3874c7dbba33e1f0) due to a bug that is now fixed below. - Omit an initial "v" from a version tag (e.g. `v1.2.3`) in the archive prefix. GitHub seems to do this. Closes #4002. PiperOrigin-RevId: 175047685
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/repository/GitCloner.java23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/repository/GitCloner.java b/src/main/java/com/google/devtools/build/lib/bazel/repository/GitCloner.java
index 2ee5ba8834..a1c98fb928 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/repository/GitCloner.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/repository/GitCloner.java
@@ -62,6 +62,8 @@ public class GitCloner {
private static final Pattern GITHUB_URL = Pattern.compile(
"(?:git@|https?://)github\\.com[:/](\\w+)/(\\w+)\\.git");
+ private static final Pattern GITHUB_VERSION_FORMAT = Pattern.compile("v(\\d+\\.)*\\d+");
+
private GitCloner() {
// Only static methods in this class
}
@@ -291,18 +293,23 @@ public class GitCloner {
String repositoryName = matcher.group(2);
String downloadUrl =
"https://github.com/"
- + UrlEscapers.urlPathSegmentEscaper().escape(
- user + "/" + repositoryName + "/archive/" + descriptor.ref + ".tar.gz");
+ + UrlEscapers.urlFragmentEscaper()
+ .escape(user + "/" + repositoryName + "/archive/" + descriptor.ref + ".tar.gz");
try {
FileSystemUtils.createDirectoryAndParents(descriptor.directory);
Path tgz = downloader.download(ImmutableList.of(new URL(downloadUrl)), uncheckedSha256,
Optional.of("tar.gz"), descriptor.directory, eventHandler, clientEnvironment);
- DecompressorValue.decompress(DecompressorDescriptor.builder()
- .setArchivePath(tgz)
- // GitHub puts the contents under a directory called <repo>-<commit>.
- .setPrefix(repositoryName + "-" + descriptor.ref)
- .setRepositoryPath(descriptor.directory)
- .build());
+ String githubRef = descriptor.ref;
+ if (githubRef.startsWith("v") && GITHUB_VERSION_FORMAT.matcher(githubRef).matches()) {
+ githubRef = githubRef.substring(1);
+ }
+ DecompressorValue.decompress(
+ DecompressorDescriptor.builder()
+ .setArchivePath(tgz)
+ // GitHub puts the contents under a directory called <repo>-<commit>.
+ .setPrefix(repositoryName + "-" + githubRef)
+ .setRepositoryPath(descriptor.directory)
+ .build());
} catch (InterruptedException | IOException e) {
try {
FileSystemUtils.deleteTree(descriptor.directory);