-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHierarchicalRepo.cs
53 lines (47 loc) · 1.35 KB
/
HierarchicalRepo.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NuGet;
namespace NuSpecHelper
{
public class HierarchicalRepo
{
public IPackageRepository Repository;
private readonly IPackageRepository[] _repos = new IPackageRepository[3];
internal IPackageRepository GetRepo(string branch = "nuget")
{
var repoId = GetIndex(branch);
if (_repos[repoId] != null)
{
return _repos[repoId];
}
var repo = PackageRepositoryFactory.Default.CreateRepository(GetUrl(repoId));
_repos[repoId] = repo;
return repo;
}
private static int GetIndex(string branch)
{
switch (branch)
{
case "nuget":
return 0;
case "master":
return 1;
}
return 2;
}
private static string GetUrl(int level)
{
switch (level)
{
case 0:
return "https://packages.nuget.org/api/v2";
case 1:
return "https://www.myget.org/F/xbim-master/api/v2";
}
return "https://www.myget.org/F/xbim-develop/api/v2";
}
}
}