-
Notifications
You must be signed in to change notification settings - Fork 0
/
bb.go
70 lines (56 loc) · 1.62 KB
/
bb.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
package bb_pix_go
type BB struct {
Environment Environment
// Token básico para acesso do OAuth
Basic string
// É a credencial necessária para acionar as APIs do Banco do Brasil, independente
// de estar em produção ou não.
DeveloperKey string
// É o identificador público e único no OAuth do Banco do Brasil.
ClientID string
// É conhecido apenas para sua aplicação e o servidor de autorização.
ClientSecret string
// Configuração do certificado mTLS (caso seja usado)
Certificado mTLS
}
// New é a função responsável por instanciar toda a API e permitir o uso
// é recomendado que use em forma de singleton no seu programa
func New(options ...func(*BB)) *BB {
bb := &BB{}
for _, o := range options {
o(bb)
}
return bb
}
// WithEnvironment é responsável por passar o ambiente
// que você deseja executar os pedidos
func WithEnvironment(env Environment) func(*BB) {
return func(bb *BB) {
bb.Environment = env
}
}
// WithDeveloperKey é responsável por definir a chave
// do desenvolvedor do aplicativo
func WithDeveloperKey(devKey string) func(*BB) {
return func(bb *BB) {
bb.DeveloperKey = devKey
}
}
// WithClientID é responsável por definir o Client ID usado
func WithClientID(clientId string) func(*BB) {
return func(bb *BB) {
bb.ClientID = clientId
}
}
// WithClientSecret é responsável por definir o Client Secret
func WithClientSecret(clientSecret string) func(*BB) {
return func(bb *BB) {
bb.ClientSecret = clientSecret
}
}
// WithBasic é responsável por definir o token básico do Oauth
func WithBasic(basic string) func(*BB) {
return func(bb *BB) {
bb.Basic = basic
}
}