forked from firebase/firebase-admin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternal.go
137 lines (114 loc) · 3.94 KB
/
internal.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
// Copyright 2017 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 internal contains functionality that is only accessible from within the Admin SDK.
package internal // import "firebase.google.com/go/internal"
import (
"fmt"
"time"
"golang.org/x/oauth2"
"google.golang.org/api/option"
)
// FirebaseScopes is the set of OAuth2 scopes used by the Admin SDK.
var FirebaseScopes = []string{
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/datastore",
"https://www.googleapis.com/auth/devstorage.full_control",
"https://www.googleapis.com/auth/firebase",
"https://www.googleapis.com/auth/identitytoolkit",
"https://www.googleapis.com/auth/userinfo.email",
}
// SystemClock is a clock that returns local time of the system.
var SystemClock = &systemClock{}
// AuthConfig represents the configuration of Firebase Auth service.
type AuthConfig struct {
Opts []option.ClientOption
ProjectID string
ServiceAccountID string
Version string
}
// HashConfig represents a hash algorithm configuration used to generate password hashes.
type HashConfig map[string]interface{}
// InstanceIDConfig represents the configuration of Firebase Instance ID service.
type InstanceIDConfig struct {
Opts []option.ClientOption
ProjectID string
}
// DatabaseConfig represents the configuration of Firebase Database service.
type DatabaseConfig struct {
Opts []option.ClientOption
URL string
Version string
AuthOverride map[string]interface{}
}
// StorageConfig represents the configuration of Google Cloud Storage service.
type StorageConfig struct {
Opts []option.ClientOption
Bucket string
}
// MessagingConfig represents the configuration of Firebase Cloud Messaging service.
type MessagingConfig struct {
Opts []option.ClientOption
ProjectID string
Version string
}
// FirebaseError is an error type containing an error code string.
type FirebaseError struct {
Code string
String string
}
func (fe *FirebaseError) Error() string {
return fe.String
}
// HasErrorCode checks if the given error contain a specific error code.
func HasErrorCode(err error, code string) bool {
fe, ok := err.(*FirebaseError)
return ok && fe.Code == code
}
// Error creates a new FirebaseError from the specified error code and message.
func Error(code string, msg string) *FirebaseError {
return &FirebaseError{
Code: code,
String: msg,
}
}
// Errorf creates a new FirebaseError from the specified error code and message.
func Errorf(code string, msg string, args ...interface{}) *FirebaseError {
return Error(code, fmt.Sprintf(msg, args...))
}
// MockTokenSource is a TokenSource implementation that can be used for testing.
type MockTokenSource struct {
AccessToken string
}
// Token returns the test token associated with the TokenSource.
func (ts *MockTokenSource) Token() (*oauth2.Token, error) {
return &oauth2.Token{AccessToken: ts.AccessToken}, nil
}
// Clock is used to query the current local time.
type Clock interface {
Now() time.Time
}
// systemClock returns the current system time.
type systemClock struct{}
// Now returns the current system time by calling time.Now().
func (s *systemClock) Now() time.Time {
return time.Now()
}
// MockClock can be used to mock current time during tests.
type MockClock struct {
Timestamp time.Time
}
// Now returns the timestamp set in the MockClock.
func (m *MockClock) Now() time.Time {
return m.Timestamp
}