Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | import json |
Scott Baker | 71d2047 | 2019-02-01 12:05:35 -0800 | [diff] [blame] | 17 | from xossynchronizer.event_steps.eventstep import EventStep |
Matteo Scandolo | de8cfa8 | 2018-10-16 13:49:05 -0700 | [diff] [blame] | 18 | from helpers import AttHelpers |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 19 | |
Scott Baker | c2a633d | 2019-04-01 19:27:41 -0700 | [diff] [blame] | 20 | |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 21 | class SubscriberAuthEventStep(EventStep): |
| 22 | topics = ["authentication.events"] |
| 23 | technology = "kafka" |
| 24 | |
| 25 | def __init__(self, *args, **kwargs): |
| 26 | super(SubscriberAuthEventStep, self).__init__(*args, **kwargs) |
| 27 | |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 28 | def process_event(self, event): |
| 29 | value = json.loads(event.value) |
Matteo Scandolo | 59e10fc | 2019-04-18 14:19:52 -0700 | [diff] [blame] | 30 | self.log.info("authentication.events: Got event for subscriber", event_value=value) |
| 31 | |
| 32 | si = AttHelpers.find_or_create_att_si(self.model_accessor, self.log, value) |
| 33 | self.log.debug("authentication.events: Updating service instance", si=si) |
Scott Baker | c2a633d | 2019-04-01 19:27:41 -0700 | [diff] [blame] | 34 | si.authentication_state = value["authenticationState"] |
Andy Bavier | 0d631eb | 2018-10-17 18:05:04 -0700 | [diff] [blame] | 35 | si.save_changed_fields(always_update_timestamp=True) |