This repository was archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlistener.go
72 lines (63 loc) · 2.13 KB
/
listener.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
// Copyright 2017 Google Inc.
//
// 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 apidApiMetadata
import (
"github.com/apid/apid-core"
"github.com/apid/apidApiMetadata/common"
tran "github.com/apigee-labs/transicator/common"
)
const (
APIGEE_SYNC_EVENT = "ApigeeSync"
)
type apigeeSyncHandler struct {
dbMans []common.DbManagerInterface
apiMans []common.ApiManagerInterface
cipherMan common.CipherManagerInterface
}
func (h *apigeeSyncHandler) initListener(services apid.Services) {
services.Events().Listen(APIGEE_SYNC_EVENT, h)
}
func (h *apigeeSyncHandler) String() string {
return "apiMetadata"
}
func (h *apigeeSyncHandler) processSnapshot(snapshot *tran.Snapshot) {
log.Debugf("Snapshot received. Switching to DB version: %s", snapshot.SnapshotInfo)
// set db version for all packages
for _, dbMan := range h.dbMans {
dbMan.SetDbVersion(snapshot.SnapshotInfo)
}
// add indexes
if err := common.AddIndexes(snapshot.SnapshotInfo); err != nil {
// not on critical path, continue in case of error
log.Errorf("Failed to add KMS indexes: %v", err)
}
// retrieve encryption keys
orgs, err := h.dbMans[0].GetOrgs()
if err != nil {
log.Panicf("Failed to get orgs: %v", err)
}
h.cipherMan.AddOrgs(orgs)
// idempotent init api for all packages
for _, apiMan := range h.apiMans {
apiMan.InitAPI()
}
log.Debug("Snapshot processed")
}
func (h *apigeeSyncHandler) Handle(e apid.Event) {
if snapData, ok := e.(*tran.Snapshot); ok {
h.processSnapshot(snapData)
} else { //TODO handle changelist and retrieve key for new orgs
log.Debugf("Received event. No action required for apiMetadata plugin. Ignoring. %v", e)
}
}