| // Copyright (c) 2011-2013, 'pq' Contributors Portions Copyright (C) 2011 Blake |
| // Mizerany |
| // |
| // Permission is hereby granted, free of charge, to any person obtaining a copy |
| // of this software and associated documentation files (the "Software"), to deal |
| // in the Software without restriction, including without limitation the rights |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| // copies of the Software, and to permit persons to whom the Software is |
| // furnished to do so, subject to the following conditions: |
| // |
| // The above copyright notice and this permission notice shall be included in |
| // all copies or substantial portions of the Software. |
| // |
| // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| // SOFTWARE. |
| |
| // Copied from https://github.com/lib/pq/blob/v1.10.6/url.go#L32 |
| |
| package dbutil |
| |
| import ( |
| "fmt" |
| "net" |
| nurl "net/url" |
| "sort" |
| "strings" |
| ) |
| |
| // ParseURL no longer needs to be used by clients of this library since supplying a URL as a |
| // connection string to sql.Open() is now supported: |
| // |
| // sql.Open("postgres", "postgres://bob:secret@1.2.3.4:5432/mydb?sslmode=verify-full") |
| // |
| // It remains exported here for backwards-compatibility. |
| // |
| // ParseURL converts a url to a connection string for driver.Open. |
| // Example: |
| // |
| // "postgres://bob:secret@1.2.3.4:5432/mydb?sslmode=verify-full" |
| // |
| // converts to: |
| // |
| // "user=bob password=secret host=1.2.3.4 port=5432 dbname=mydb sslmode=verify-full" |
| // |
| // A minimal example: |
| // |
| // "postgres://" |
| // |
| // This will be blank, causing driver.Open to use all of the defaults |
| func ParseURL(url string) (string, error) { |
| u, err := nurl.Parse(url) |
| if err != nil { |
| return "", err |
| } |
| |
| if u.Scheme != "postgres" && u.Scheme != "postgresql" { |
| return "", fmt.Errorf("invalid connection protocol: %s", u.Scheme) |
| } |
| |
| var kvs []string |
| escaper := strings.NewReplacer(`'`, `\'`, `\`, `\\`) |
| accrue := func(k, v string) { |
| if v != "" { |
| kvs = append(kvs, k+"='"+escaper.Replace(v)+"'") |
| } |
| } |
| |
| if u.User != nil { |
| v := u.User.Username() |
| accrue("user", v) |
| |
| v, _ = u.User.Password() |
| accrue("password", v) |
| } |
| |
| if host, port, err := net.SplitHostPort(u.Host); err != nil { |
| accrue("host", u.Host) |
| } else { |
| accrue("host", host) |
| accrue("port", port) |
| } |
| |
| if u.Path != "" { |
| accrue("dbname", u.Path[1:]) |
| } |
| |
| q := u.Query() |
| for k := range q { |
| accrue(k, q.Get(k)) |
| } |
| |
| sort.Strings(kvs) // Makes testing easier (not a performance concern) |
| return strings.Join(kvs, " "), nil |
| } |