forked from firebase/firebase-admin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.go
134 lines (118 loc) · 3.54 KB
/
db.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
// Copyright 2018 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package db contains functions for accessing the Firebase Realtime Database.
package db
import (
"encoding/json"
"fmt"
"runtime"
"strings"
"firebase.google.com/go/internal"
"net/url"
"golang.org/x/net/context"
"google.golang.org/api/option"
"google.golang.org/api/transport"
)
const userAgentFormat = "Firebase/HTTP/%s/%s/AdminGo"
const invalidChars = "[].#$"
const authVarOverride = "auth_variable_override"
// Client is the interface for the Firebase Realtime Database service.
type Client struct {
hc *internal.HTTPClient
url string
authOverride string
}
// NewClient creates a new instance of the Firebase Database Client.
//
// This function can only be invoked from within the SDK. Client applications should access the
// Database service through firebase.App.
func NewClient(ctx context.Context, c *internal.DatabaseConfig) (*Client, error) {
opts := append([]option.ClientOption{}, c.Opts...)
ua := fmt.Sprintf(userAgentFormat, c.Version, runtime.Version())
opts = append(opts, option.WithUserAgent(ua))
hc, _, err := transport.NewHTTPClient(ctx, opts...)
if err != nil {
return nil, err
}
p, err := url.ParseRequestURI(c.URL)
if err != nil {
return nil, err
} else if p.Scheme != "https" {
return nil, fmt.Errorf("invalid database URL: %q; want scheme: %q", c.URL, "https")
} else if !strings.HasSuffix(p.Host, ".firebaseio.com") {
return nil, fmt.Errorf("invalid database URL: %q; want host: %q", c.URL, "firebaseio.com")
}
var ao []byte
if c.AuthOverride == nil || len(c.AuthOverride) > 0 {
ao, err = json.Marshal(c.AuthOverride)
if err != nil {
return nil, err
}
}
ep := func(b []byte) string {
var p struct {
Error string `json:"error"`
}
if err := json.Unmarshal(b, &p); err != nil {
return ""
}
return p.Error
}
return &Client{
hc: &internal.HTTPClient{Client: hc, ErrParser: ep},
url: fmt.Sprintf("https://%s", p.Host),
authOverride: string(ao),
}, nil
}
// NewRef returns a new database reference representing the node at the specified path.
func (c *Client) NewRef(path string) *Ref {
segs := parsePath(path)
key := ""
if len(segs) > 0 {
key = segs[len(segs)-1]
}
return &Ref{
Key: key,
Path: "/" + strings.Join(segs, "/"),
client: c,
segs: segs,
}
}
func (c *Client) send(
ctx context.Context,
method, path string,
body internal.HTTPEntity,
opts ...internal.HTTPOption) (*internal.Response, error) {
if strings.ContainsAny(path, invalidChars) {
return nil, fmt.Errorf("invalid path with illegal characters: %q", path)
}
if c.authOverride != "" {
opts = append(opts, internal.WithQueryParam(authVarOverride, c.authOverride))
}
return c.hc.Do(ctx, &internal.Request{
Method: method,
URL: fmt.Sprintf("%s%s.json", c.url, path),
Body: body,
Opts: opts,
})
}
func parsePath(path string) []string {
var segs []string
for _, s := range strings.Split(path, "/") {
if s != "" {
segs = append(segs, s)
}
}
return segs
}