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
|
// Jellyfin.Versioning/ExtendedVersion.cs
// Part of the Jellyfin project (https://jellyfin.media)
//
// All copyright belongs to the Jellyfin contributors; a full list can
// be found in the file CONTRIBUTORS.md
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
namespace Jellyfin.Versioning
{
public class ExtendedVersion
{
[IgnoreDataMember]
public Version ApiVersion { get; }
public string CommitHash { get; } = String.Empty;
public long Revision { get; } = 0;
public string Branch { get; } = String.Empty;
public string TagDescription { get; } = String.Empty;
[IgnoreDataMember]
public Uri Remote { get; } = null;
public ExtendedVersion(Version apiVersion, Stream extendedVersionFileStream)
{
ApiVersion = apiVersion;
int line = 1;
using (var reader = new StreamReader(extendedVersionFileStream))
{
while (!reader.EndOfStream)
{
string item = reader.ReadLine();
if (string.IsNullOrWhiteSpace(item.Trim()))
{
//empty line, skip
continue;
}
var kvpair = item.Split('=');
if (kvpair.Length != 2)
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile contains bad key-value pair '{item}' at line {line}.");
}
var key = kvpair[0].Trim().ToLower();
var value = kvpair[1].Trim();
switch (key)
{
case "commit":
if (value.Length < 7 || value.Length > 40)
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile has a bad commit hash '{value}' on line {line}, it should be a string between 7 and 40 characters.");
}
CommitHash = value;
break;
case "branch":
if (string.IsNullOrWhiteSpace(value))
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile has a bad branch '{value}' on line {line}, it can not be empty.");
}
Branch = value;
break;
case "revision":
if (!long.TryParse(value, out long rev))
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile has a bad revision '{value}' on line {line}, it should be an integer.");
}
Revision = rev;
break;
case "tagdesc":
if (string.IsNullOrWhiteSpace(value))
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile has a bad tag description '{value}' on line {line}, it can not be empty.");
}
TagDescription = value;
break;
case "remote":
var remoteRepo = value.Replace(".git", string.Empty).Replace("git@github.com:", "https://github.com/");
if (Uri.IsWellFormedUriString(remoteRepo, UriKind.Absolute))
{
Remote = new Uri(remoteRepo);
}
else if (Uri.IsWellFormedUriString(value, UriKind.Absolute))
{
//fallback if the replace about broke the Uri
Remote = new Uri(value);
}
else
{
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile has a bad remote URI '{value}' on line {line}, it should be a valid remote URI (ssh or https).");
}
break;
default:
throw new ArgumentException(nameof(extendedVersionFileStream),
$"ExtendedVersionFile contains an unrecognized key-value pair '{item}' at line {line}.");
}
line++;
}
}
}
public override string ToString()
{
return $"{ApiVersion};{CommitHash};{Revision};{Branch};{TagDescription};{Remote}";
}
}
}
|