| // 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 apidVerifyApiKey |
| |
| import ( |
| "github.com/apid/apid-core" |
| "github.com/apigee-labs/transicator/common" |
| ) |
| |
| const ( |
| APIGEE_SYNC_EVENT = "ApigeeSync" |
| ) |
| |
| type apigeeSyncHandler struct { |
| dbMan dbManagerInterface |
| apiMan apiManager |
| } |
| |
| func (h *apigeeSyncHandler) initListener(services apid.Services) { |
| services.Events().Listen(APIGEE_SYNC_EVENT, h) |
| } |
| |
| func (h *apigeeSyncHandler) String() string { |
| return "verifyAPIKey" |
| } |
| |
| func (h *apigeeSyncHandler) processSnapshot(snapshot *common.Snapshot) { |
| log.Debugf("Snapshot received. Switching to DB version: %s", snapshot.SnapshotInfo) |
| h.dbMan.setDbVersion(snapshot.SnapshotInfo) |
| h.apiMan.InitAPI() |
| log.Debug("Snapshot processed") |
| } |
| |
| func (h *apigeeSyncHandler) Handle(e apid.Event) { |
| |
| if snapData, ok := e.(*common.Snapshot); ok { |
| h.processSnapshot(snapData) |
| } else { |
| log.Debugf("Received event. No action required for verifyApiKey plugin. Ignoring. %v", e) |
| } |
| } |