-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathHttpPath.cs
116 lines (99 loc) · 2.78 KB
/
HttpPath.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
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
using System;
namespace WebApiClientCore
{
/// <summary>
/// 表示 http 路径
/// </summary>
public abstract class HttpPath
{
/// <summary>
/// 合成Uri
/// </summary>
/// <param name="baseUri">基础 uri</param>
/// <returns></returns>
public abstract Uri? MakeUri(Uri? baseUri);
/// <summary>
/// 创建HttpPath实例
/// </summary>
/// <param name="pathString">http路径</param>
/// <exception cref="UriFormatException"></exception>
/// <returns></returns>
public static HttpPath Create(string? pathString)
{
if (string.IsNullOrEmpty(pathString))
{
return NullPath.Instance;
}
var path = new Uri(pathString, UriKind.RelativeOrAbsolute);
if (path.IsAbsoluteUri == true)
{
return new AbsolutePath(path);
}
return new RelativePath(path);
}
/// <summary>
/// 空路径
/// </summary>
private sealed class NullPath : HttpPath
{
/// <summary>
/// 获取实例
/// </summary>
public static HttpPath Instance { get; } = new NullPath();
public override Uri? MakeUri(Uri? baseUri)
{
return baseUri;
}
public override string ToString()
{
return string.Empty;
}
}
/// <summary>
/// 绝对路径
/// </summary>
private sealed class AbsolutePath : HttpPath
{
private readonly Uri path;
public AbsolutePath(Uri path)
{
this.path = path;
}
public override Uri? MakeUri(Uri? baseUri)
{
return this.path;
}
public override string ToString()
{
return this.path.ToString();
}
}
/// <summary>
/// 相对路径
/// </summary>
private sealed class RelativePath : HttpPath
{
private readonly Uri path;
public RelativePath(Uri path)
{
this.path = path;
}
public override Uri? MakeUri(Uri? baseUri)
{
if (baseUri == null)
{
return this.path;
}
if (baseUri.IsAbsoluteUri)
{
return new Uri(baseUri, this.path);
}
return this.path;
}
public override string ToString()
{
return this.path.ToString();
}
}
}
}