-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
nuget.cake
229 lines (192 loc) · 8.02 KB
/
nuget.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#addin "nuget:https://api.nuget.org/v3/index.json?package=Polly&version=7.2.2"
#addin "nuget:https://api.nuget.org/v3/index.json??package=Cake.FileHelpers&version=6.1.3"
#addin "nuget:https://api.nuget.org/v3/index.json?package=NuGet.Protocol&version=5.11.0"
using System.Net.Http;
using System.Threading;
using NuGet.Common;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGetRepository = NuGet.Protocol.Core.Types.Repository;
using NuGet.Versioning;
using Polly;
public static void DownloadPackages(this ICakeContext context, DirectoryPath extensionDir, IDictionary<string, string> packageIdAndVersionLookup)
{
var retryPolicy = Policy
.Handle<Exception>()
.WaitAndRetry(5, retryAttempt =>
TimeSpan.FromSeconds(Math.Pow(2, retryAttempt))
);
using (var httpClient = new HttpClient())
{
Parallel.ForEach(
packageIdAndVersionLookup,
packageIdAndVersion => retryPolicy.Execute(
() => context.DownloadPackage(extensionDir, httpClient, packageIdAndVersion)
)
);
}
}
public static void DownloadPackage(this ICakeContext context, DirectoryPath extensionDir, HttpClient httpClient, KeyValuePair<string, string> packageIdAndVersion)
{
var packageId = packageIdAndVersion.Key;
var packageVersion = packageIdAndVersion.Value;
if (string.IsNullOrWhiteSpace(packageVersion))
{
context.Warning($"[{{0}}] Skipping download of {packageId} - AnalyzedPackageVersion not specified in metadata", packageId);
return;
}
context.Information($"[{{0}}] Downloading NuGet package {packageId} v{packageVersion}...", packageId);
var packageIdLower = packageId.ToLowerInvariant();
var packageVersionLower = packageVersion.ToLowerInvariant();
var packageDownloadUrl = $"https://api.nuget.org/v3-flatcontainer/{packageIdLower}/{packageVersionLower}/{packageIdLower}.{packageVersionLower}.nupkg";
context.Verbose($"[{{0}}] GET {packageDownloadUrl}", packageId);
var packageDir = extensionDir.Combine($"{packageId}.{packageVersion}".ToLowerInvariant());
using (var stream = httpClient.GetStreamAsync(packageDownloadUrl).GetAwaiter().GetResult())
{
using (var zipStream = new System.IO.Compression.ZipArchive(stream))
{
var extractedFiles = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
foreach (var entry in zipStream.Entries)
{
if (!entry.FullName.StartsWith("lib") || extractedFiles.Contains(entry.Name))
{
continue;
}
extractedFiles.Add(entry.Name);
var entryPath = packageDir.CombineWithFilePath(entry.FullName);
var fileExtension = entryPath.GetExtension().ToLowerInvariant();
var fileName = entryPath.GetFilename().FullPath.ToLowerInvariant();
var extractedExtensions = new List <string> { ".xml", ".dll" };
var ignoredFiles = new List<string> { "cake.core.dll", "cake.common.dll" };
if (!extractedExtensions.Contains(fileExtension) || ignoredFiles.Contains(fileName))
{
continue;
}
context.Verbose("[{0}] {1}", packageId, entry.FullName);
var directory = entryPath.GetDirectory();
context.EnsureDirectoryExists(directory);
using (System.IO.Stream source = entry.Open(),
target = context.FileSystem.GetFile(entryPath).OpenWrite())
{
source.CopyTo(target);
}
}
}
}
context.Information("[{0}] done.", packageId);
}
// Cake compatibility ranges derived from `LatestPotentialBreakingChange`
// Version range values use interval notation
// https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges
static VersionRange[] _compatibilityVersionRanges = new []
{
"[3.0.0, )",
"[2.0.0, 3.0.0)",
"[1.0.0, 2.0.0)",
"[0.33.0, 1.0.0)",
"[0.28.0, 0.33.0)",
"[0.26.0, 0.28.0)",
"[0.22.0, 0.26.0)",
"[0.16.0, 0.22.0)",
"[0.15.0, 0.16.0)",
"[0.14.0, 0.15.0)",
"[0.13.0, 0.14.0)",
"[0.12.0, 0.13.0)",
"[0.11.0, 0.12.0)",
"[0.10.0, 0.11.0)",
"[0.9.0, 0.10.0)",
"[0.8.0, 0.9.0)",
"[0.7.0, 0.8.0)",
"[0.6.0, 0.7.0)",
"[0.5.0, 0.6.0)",
"[0.4.0, 0.5.0)",
"[0.3.0, 0.4.0)",
"[0.2.0, 0.3.0)",
"[0.1.0, 0.2.0)",
"[0.0.0, 0.1.0)",
}
.Select(r => VersionRange.Parse(r))
.OrderByDescending(r => r.MinVersion)
.ToArray();
public static void CalcSupportedCakeVersions(this ICakeContext context, DirectoryPath extensionDir, IDictionary<string, string> packageVersionLookup)
{
var allListedCakeVersions = GetAllListedCakeVersions();
foreach (var item in packageVersionLookup)
{
var packageId = item.Key;
var targetCakeVersion = item.Value is null ? null : new NuGetVersion(item.Value);
var supportedCakeVersions = CalcSupportedCakeVersionsForExtension(targetCakeVersion, allListedCakeVersions);
context.FileWriteText(extensionDir.CombineWithFilePath($"{packageId}.supportedcakeversions"), supportedCakeVersions);
}
}
static IReadOnlyList<NuGetVersion> GetAllListedCakeVersions()
{
using (var cacheContext = new SourceCacheContext { NoCache = true })
{
var repository = NuGetRepository.Factory.GetCoreV3("https://api.nuget.org/v3/index.json");
var resource = repository.GetResourceAsync<PackageMetadataResource>().GetAwaiter().GetResult();
var packages = resource.GetMetadataAsync("Cake.Core", includePrerelease: true,
includeUnlisted: true, cacheContext, NullLogger.Instance, CancellationToken.None).GetAwaiter().GetResult();
var allVersionsOfCake = packages.OfType<PackageSearchMetadataRegistration>()
.OrderByDescending(p => p.Version)
.Select(p => p.Version)
.ToList();
return allVersionsOfCake;
}
}
static string CalcSupportedCakeVersionsForExtension(NuGetVersion extensionVersion, IReadOnlyList<NuGetVersion> allListedCakeVersions)
{
if (extensionVersion is null) return null;
// Map AddInDiscoverer's TargetCakeVersion to a listed Cake version
// (edge case if core libraries are released separately from the Cake package)
var minCakeVersion = allListedCakeVersions
.Where(v => v >= extensionVersion && v.IsPrerelease == extensionVersion.IsPrerelease)
.OrderBy(v => v)
.FirstOrDefault();
if (minCakeVersion is null)
{
// Extension seems to reference a version of Cake that is not listed
return null;
}
NuGetVersion maxCakeVersion = null;
if (minCakeVersion.IsPrerelease)
{
// Extensions targeting pre-release versions of Cake are pinned to the specific pre-release version they target
return $"{minCakeVersion}";
}
else
{
// Find the latest compatibility range that this extension falls into
var compatRange = _compatibilityVersionRanges
.Where(r => r.Satisfies(minCakeVersion))
.OrderByDescending(r => r.MinVersion)
.First();
// Find the maximum stable Cake version that satisfies the compat range
maxCakeVersion = allListedCakeVersions
.Where(v => compatRange.Satisfies(v) && !v.IsPrerelease)
.OrderByDescending(v => v)
.First();
}
return (minCakeVersion == maxCakeVersion)
? $"{maxCakeVersion}"
: $"{minCakeVersion} - {maxCakeVersion}";
}
public class Package
{
public PackageItem[] items { get; set; }
}
public class PackageItem
{
public PackageRevisions[] items { get; set; }
public string upper { get; set; }
}
public class PackageRevisions
{
public PackageCatalogentry catalogEntry { get; set; }
public string packageContent { get; set; }
}
public class PackageCatalogentry
{
public string version { get; set; }
public bool listed { get; set; }
}