Projet

Général

Profil

0001-add-corbo-privisionning-agent-12910.patch

Serghei Mihai, 19 mars 2017 00:29

Télécharger (4,74 ko)

Voir les différences:

Subject: [PATCH] add corbo privisionning agent (#12910)

 hobo/agent/corbo/__init__.py                       |  1 +
 hobo/agent/corbo/apps.py                           | 22 +++++++++++
 hobo/agent/corbo/management/__init__.py            |  0
 hobo/agent/corbo/management/commands/__init__.py   |  0
 .../agent/corbo/management/commands/hobo_notify.py | 46 ++++++++++++++++++++++
 5 files changed, 69 insertions(+)
 create mode 100644 hobo/agent/corbo/__init__.py
 create mode 100644 hobo/agent/corbo/apps.py
 create mode 100644 hobo/agent/corbo/management/__init__.py
 create mode 100644 hobo/agent/corbo/management/commands/__init__.py
 create mode 100644 hobo/agent/corbo/management/commands/hobo_notify.py
hobo/agent/corbo/__init__.py
1
default_app_config = 'hobo.agent.corbo.apps.CorboAgentConfig'
hobo/agent/corbo/apps.py
1
# hobo - portal to configure and deploy applications
2
# Copyright (C) 2015  Entr'ouvert
3
#
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU Affero General Public License as published
6
# by the Free Software Foundation, either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU Affero General Public License for more details.
13
#
14
# You should have received a copy of the GNU Affero General Public License
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16

  
17
from django.apps import AppConfig
18

  
19
class CorboAgentConfig(AppConfig):
20
    name = 'hobo.agent.corbo'
21
    label = 'corbo_agent'
22
    verbose_name = 'Corbo Agent'
hobo/agent/corbo/management/commands/hobo_notify.py
1
# hobo - portal to configure and deploy applications
2
# Copyright (C) 2015  Entr'ouvert
3
#
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU Affero General Public License as published
6
# by the Free Software Foundation, either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU Affero General Public License for more details.
13
#
14
# You should have received a copy of the GNU Affero General Public License
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16

  
17
from hobo.agent.common.management.commands.hobo_notify import Command as CommonCommand
18

  
19
from corbo.models import Subscription
20

  
21
class Command(CommonCommand):
22

  
23
    @classmethod
24
    def process_notification(cls, tenant, notification):
25
        super(CommonCommand, self).process_notification(cls, tenant, notification)
26
        object_type = notification['objects']['@type']
27
        full = notification['full'] if 'full' in notification else False
28
        if object_type != 'user':
29
            return
30
        data = notification['objects']['data']
31
        action = notification['@type']
32
        if full:
33
            uuids = [obj['uuid'] for obj in data]
34
            Subscription.objects.exclude(uuid__in=uuids).delete()
35
            return
36

  
37
        for obj in data:
38
            for subscription in Subscription.objects.filter(uuid=obj['uuid']):
39
                if action == 'provision':
40
                    if subscription.identifier.startswith('mailto:'):
41
                        subscription.identifier = 'mailto:%s' % obj['email']
42
                    elif subscription.identifier.startswith('sms:'):
43
                        subscription.identifier = 'sms:%s' % obj['mobile']
44
                    subscription.save()
45
                elif action == 'deprovision':
46
                    subscription.delete()
0
-