-
Notifications
You must be signed in to change notification settings - Fork 310
/
gateway_registry.go
182 lines (158 loc) · 4.78 KB
/
gateway_registry.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
// Copyright © 2022 The Things Network Foundation, The Things Industries B.V.
//
// 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 mockis
import (
"context"
"fmt"
"sync"
"go.thethings.network/lorawan-stack/v3/pkg/errors"
"go.thethings.network/lorawan-stack/v3/pkg/ttnpb"
"go.thethings.network/lorawan-stack/v3/pkg/types"
"go.thethings.network/lorawan-stack/v3/pkg/unique"
"go.thethings.network/lorawan-stack/v3/pkg/util/test"
"google.golang.org/grpc/metadata"
"google.golang.org/protobuf/types/known/emptypb"
)
var errNoGatewayRights = errors.DefinePermissionDenied("no_gateway_rights", "no gateway rights")
// DefaultGateway generates a gateway with values that is adequate for most test cases.
func DefaultGateway(ids *ttnpb.GatewayIdentifiers, locationPublic, updateLocationFromStatus bool) *ttnpb.Gateway {
return &ttnpb.Gateway{
Ids: ids,
FrequencyPlanId: test.EUFrequencyPlanID,
FrequencyPlanIds: []string{test.EUFrequencyPlanID},
Antennas: []*ttnpb.GatewayAntenna{
{
Location: &ttnpb.Location{
Source: ttnpb.LocationSource_SOURCE_REGISTRY,
},
},
},
GatewayServerAddress: "mockgatewayserver",
LocationPublic: locationPublic,
UpdateLocationFromStatus: updateLocationFromStatus,
}
}
type mockISGatewayRegistry struct {
ttnpb.UnimplementedGatewayRegistryServer
ttnpb.UnimplementedGatewayAccessServer
gateways map[string]*ttnpb.Gateway
gatewayAuths map[string][]string
gatewayRights map[string]authKeyToRights
registeredGateway *ttnpb.GatewayIdentifiers
mu sync.Mutex
}
func (is *mockISGatewayRegistry) SetRegisteredGateway(gtwIDs *ttnpb.GatewayIdentifiers) {
is.mu.Lock()
defer is.mu.Unlock()
is.registeredGateway = gtwIDs
}
func (is *mockISGatewayRegistry) Add(
ctx context.Context,
ids *ttnpb.GatewayIdentifiers,
key string,
gtw *ttnpb.Gateway,
rights ...ttnpb.Right,
) {
is.mu.Lock()
defer is.mu.Unlock()
uid := unique.ID(ctx, ids)
is.gateways[uid] = gtw
var bearerKey string
if key != "" {
bearerKey = fmt.Sprintf("Bearer %v", key)
is.gatewayAuths[uid] = []string{bearerKey}
}
if is.gatewayRights[uid] == nil {
is.gatewayRights[uid] = make(authKeyToRights)
}
is.gatewayRights[uid][bearerKey] = rights
}
func (is *mockISGatewayRegistry) Get(ctx context.Context, req *ttnpb.GetGatewayRequest) (*ttnpb.Gateway, error) {
is.mu.Lock()
defer is.mu.Unlock()
uid := unique.ID(ctx, req.GetGatewayIds())
gtw, ok := is.gateways[uid]
if !ok {
return nil, errNotFound.New()
}
if gtw == nil {
return nil, errNoGatewayRights.New()
}
return gtw, nil
}
func (is *mockISGatewayRegistry) Update(ctx context.Context, req *ttnpb.UpdateGatewayRequest) (*ttnpb.Gateway, error) {
is.mu.Lock()
defer is.mu.Unlock()
uid := unique.ID(ctx, req.Gateway.GetIds())
gtw, ok := is.gateways[uid]
if !ok {
return nil, errNotFound.New()
}
if err := gtw.SetFields(req.Gateway, req.FieldMask.GetPaths()...); err != nil {
return nil, err
}
return gtw, nil
}
func (is *mockISGatewayRegistry) Delete(ctx context.Context, ids *ttnpb.GatewayIdentifiers) (*emptypb.Empty, error) {
is.mu.Lock()
defer is.mu.Unlock()
uid := unique.ID(ctx, ids)
_, ok := is.gateways[uid]
if !ok {
return nil, errNotFound.New()
}
is.gateways[uid] = nil
return ttnpb.Empty, nil
}
func (is *mockISGatewayRegistry) ListRights(
ctx context.Context,
ids *ttnpb.GatewayIdentifiers,
) (res *ttnpb.Rights, err error) {
is.mu.Lock()
defer is.mu.Unlock()
res = &ttnpb.Rights{}
md, ok := metadata.FromIncomingContext(ctx)
if !ok {
return res, err
}
authorization, ok := md["authorization"]
if !ok || len(authorization) == 0 {
return res, err
}
uid := unique.ID(ctx, ids)
auths, ok := is.gatewayAuths[uid]
if !ok {
return res, err
}
for _, auth := range auths {
if auth == authorization[0] && is.gatewayRights[uid] != nil {
res.Rights = append(res.Rights, is.gatewayRights[uid][auth]...)
}
}
return res, err
}
func (is *mockISGatewayRegistry) GetIdentifiersForEUI(
_ context.Context,
req *ttnpb.GetGatewayIdentifiersForEUIRequest,
) (*ttnpb.GatewayIdentifiers, error) {
is.mu.Lock()
defer is.mu.Unlock()
if is.registeredGateway == nil {
return nil, errNotFound.New()
}
if types.MustEUI64(req.Eui).OrZero().Equal(types.MustEUI64(is.registeredGateway.Eui).OrZero()) {
return is.registeredGateway, nil
}
return nil, errNotFound.New()
}