aboutsummaryrefslogtreecommitdiffstats
path: root/app/discover/events/event_router_delete.py
blob: 65072d61d02aaced03107b6f0e5260426e85f05e (plain)
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
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems)   #
# and others                                                                  #
#                                                                             #
# All rights reserved. This program and the accompanying materials            #
# are made available under the terms of the Apache License, Version 2.0       #
# which accompanies this distribution, and is available at                    #
# http://www.apache.org/licenses/LICENSE-2.0                                  #
###############################################################################
from discover.events.event_base import EventResult
from discover.events.event_delete_base import EventDeleteBase
from utils.util import encode_router_id


class EventRouterDelete(EventDeleteBase):

    def handle(self, env, values):
        payload = values['payload']

        if 'publisher_id' not in values:
            self.log.error("Publisher_id is not in event values. Aborting router delete")
            return EventResult(result=False, retry=False)

        host_id = values['publisher_id'].replace('network.', '', 1)
        if 'router_id' in payload:
            router_id = payload['router_id']
        elif 'id' in payload:
            router_id = payload['id']
        else:
            router_id = payload.get('router', {}).get('id')

        if not router_id:
            self.log.error("Router id is not in payload. Aborting router delete")
            return EventResult(result=False, retry=False)

        router_full_id = encode_router_id(host_id, router_id)
        return self.delete_handler(env, router_full_id, "vservice")