forked from xo/dburl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
url.go
235 lines (196 loc) · 4.9 KB
/
url.go
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
230
231
232
233
234
235
package dburl
import (
"net/url"
"strings"
)
// URL wraps the standard net/url.URL type, adding OriginalScheme, Proto,
// Driver, and DSN strings.
type URL struct {
// URL is the base net/url/URL.
url.URL
// OriginalScheme is the original parsed scheme (ie, "sq", "mysql+unix", "sap", etc).
OriginalScheme string
// Proto is the specified protocol (ie, "tcp", "udp", "unix"), if provided.
Proto string
// Driver is the non-aliased SQL driver name that should be used in a call
// to sql/Open.
Driver string
// Unaliased is the unaliased driver name.
Unaliased string
// DSN is the built connection "data source name" that can be used in a
// call to sql/Open.
DSN string
// hostPortDB will be set by Gen*() funcs after determining the host, port,
// database.
//
// when empty, indicates that these values are not special, and can be
// retrieved as the host, port, and path[1:] as usual.
hostPortDB []string
}
// Parse parses urlstr, returning a URL with the OriginalScheme, Proto, Driver,
// Unaliased, and DSN fields populated.
//
// Note: if urlstr has a Opaque component (ie, URLs not specified as "scheme://"
// but "scheme:"), and the database scheme does not support opaque components,
// then Parse will attempt to re-process the URL as "scheme://<opaque>" using
// the OriginalScheme.
func Parse(urlstr string) (*URL, error) {
// parse url
u, err := url.Parse(urlstr)
if err != nil {
return nil, err
}
if u.Scheme == "" {
return nil, ErrInvalidDatabaseScheme
}
// create url
v := &URL{URL: *u, OriginalScheme: urlstr[:len(u.Scheme)], Proto: "tcp"}
// check for +protocol in scheme
var checkProto bool
if i := strings.IndexRune(v.Scheme, '+'); i != -1 {
v.Proto = urlstr[i+1 : len(u.Scheme)]
v.Scheme = v.Scheme[:i]
checkProto = true
}
// get dsn generator
scheme, ok := schemeMap[v.Scheme]
if !ok {
return nil, ErrUnknownDatabaseScheme
}
// if scheme does not understand opaque URLs, retry parsing after making a fully
// qualified URL
if !scheme.Opaque && v.Opaque != "" {
q := ""
if v.RawQuery != "" {
q = "?" + v.RawQuery
}
f := ""
if v.Fragment != "" {
f = "#" + v.Fragment
}
return Parse(v.OriginalScheme + "://" + v.Opaque + q + f)
}
if scheme.Opaque && v.Opaque == "" {
// force Opaque
v.Opaque, v.Host, v.Path, v.RawPath = v.Host+v.Path, "", "", ""
} else if v.Host == "." || (v.Host == "" && strings.TrimPrefix(v.Path, "/") != "") {
// force unix proto
v.Proto = "unix"
}
// check proto
if checkProto || v.Proto != "tcp" {
if scheme.Proto == ProtoNone {
return nil, ErrInvalidTransportProtocol
}
switch {
case scheme.Proto&ProtoAny != 0 && v.Proto != "":
case scheme.Proto&ProtoTCP != 0 && v.Proto == "tcp":
case scheme.Proto&ProtoUDP != 0 && v.Proto == "udp":
case scheme.Proto&ProtoUnix != 0 && v.Proto == "unix":
default:
return nil, ErrInvalidTransportProtocol
}
}
// set driver
v.Driver = scheme.Driver
v.Unaliased = scheme.Driver
if scheme.Override != "" {
v.Driver = scheme.Override
}
// generate dsn
v.DSN, err = scheme.Generator(v)
if err != nil {
return nil, err
}
return v, nil
}
// String satisfies the stringer interface.
func (u *URL) String() string {
p := &url.URL{
Scheme: u.OriginalScheme,
Opaque: u.Opaque,
User: u.User,
Host: u.Host,
Path: u.Path,
RawPath: u.RawPath,
RawQuery: u.RawQuery,
Fragment: u.Fragment,
}
return p.String()
}
// Short provides a short description of the user, host, and database.
func (u *URL) Short() string {
if u.Scheme == "" {
return ""
}
s := schemeMap[u.Scheme].Aliases[0]
if u.Scheme == "odbc" || u.Scheme == "oleodbc" {
n := u.Proto
if v, ok := schemeMap[n]; ok {
n = v.Aliases[0]
}
s += "+" + n
} else if u.Proto != "tcp" {
s += "+" + u.Proto
}
s += ":"
if u.User != nil {
if un := u.User.Username(); un != "" {
s += un + "@"
}
}
if u.Host != "" {
s += u.Host
}
if u.Path != "" && u.Path != "/" {
s += u.Path
}
if u.Opaque != "" {
s += u.Opaque
}
return s
}
// Normalize returns the driver, host, port, database, and user name of a URL,
// joined with sep, populating blank fields with empty.
func (u *URL) Normalize(sep, empty string, cut int) string {
s := make([]string, 5)
s[0] = u.Unaliased
if u.Proto != "tcp" && u.Proto != "unix" {
s[0] += "+" + u.Proto
}
// set host port dbname fields
if u.hostPortDB == nil {
if u.Opaque != "" {
u.hostPortDB = []string{u.Opaque, "", ""}
} else {
u.hostPortDB = []string{
hostname(u.Host),
hostport(u.Host),
strings.TrimPrefix(u.Path, "/"),
}
}
}
copy(s[1:], u.hostPortDB)
// set user
if u.User != nil {
s[4] = u.User.Username()
}
// replace blank entries ...
for i := 0; i < len(s); i++ {
if s[i] == "" {
s[i] = empty
}
}
if cut > 0 {
// cut to only populated fields
i := len(s) - 1
for ; i > cut; i-- {
if s[i] != "" {
break
}
}
s = s[:i]
}
// join
return strings.Join(s, sep)
}