aboutsummaryrefslogtreecommitdiffstats
path: root/api/database/v2/handlers.py
blob: e4f1dd66893adf62ad1e900f566102a75b98ef6c (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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
##############################################################################
# Copyright (c) 2017 Huawei Technologies Co.,Ltd.
#
# 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 api.database import db_session
from api.database.v2.models import V2Environment
from api.database.v2.models import V2Openrc
from api.database.v2.models import V2Image
from api.database.v2.models import V2Pod
from api.database.v2.models import V2Container
from api.database.v2.models import V2Project
from api.database.v2.models import V2Task


class V2EnvironmentHandler(object):

    def insert(self, kwargs):
        environment = V2Environment(**kwargs)
        db_session.add(environment)
        db_session.commit()
        return environment

    def list_all(self):
        return V2Environment.query.all()

    def get_by_uuid(self, uuid):
        environment = V2Environment.query.filter_by(uuid=uuid).first()
        if not environment:
            raise ValueError
        return environment

    def update_attr(self, uuid, attr):
        environment = self.get_by_uuid(uuid)
        for k, v in attr.items():
            setattr(environment, k, v)
        db_session.commit()

    def append_attr(self, uuid, attr):
        environment = self.get_by_uuid(uuid)
        for k, v in attr.items():
            value = getattr(environment, k)
            new = '{},{}'.format(value, v) if value else v
            setattr(environment, k, new)
        db_session.commit()

    def delete_by_uuid(self, uuid):
        environment = self.get_by_uuid(uuid)
        db_session.delete(environment)
        db_session.commit()


class V2OpenrcHandler(object):

    def insert(self, kwargs):
        openrc = V2Openrc(**kwargs)
        db_session.add(openrc)
        db_session.commit()
        return openrc

    def get_by_uuid(self, uuid):
        openrc = V2Openrc.query.filter_by(uuid=uuid).first()
        if not openrc:
            raise ValueError
        return openrc

    def delete_by_uuid(self, uuid):
        openrc = self.get_by_uuid(uuid)
        db_session.delete(openrc)
        db_session.commit()


class V2ImageHandler(object):

    def insert(self, kwargs):
        image = V2Image(**kwargs)
        db_session.add(image)
        db_session.commit()
        return image

    def get_by_uuid(self, uuid):
        image = V2Image.query.filter_by(uuid=uuid).first()
        if not image:
            raise ValueError
        return image

    def delete_by_uuid(self, uuid):
        image = self.get_by_uuid(uuid)
        db_session.delete(image)
        db_session.commit()


class V2PodHandler(object):

    def insert(self, kwargs):
        pod = V2Pod(**kwargs)
        db_session.add(pod)
        db_session.commit()
        return pod

    def get_by_uuid(self, uuid):
        pod = V2Pod.query.filter_by(uuid=uuid).first()
        if not pod:
            raise ValueError
        return pod

    def delete_by_uuid(self, uuid):
        pod = self.get_by_uuid(uuid)
        db_session.delete(pod)
        db_session.commit()


class V2ContainerHandler(object):

    def insert(self, kwargs):
        container = V2Container(**kwargs)
        db_session.add(container)
        db_session.commit()
        return container

    def get_by_uuid(self, uuid):
        container = V2Container.query.filter_by(uuid=uuid).first()
        if not container:
            raise ValueError
        return container

    def update_attr(self, uuid, attr):
        container = self.get_by_uuid(uuid)
        for k, v in attr.items():
            setattr(container, k, v)
        db_session.commit()

    def delete_by_uuid(self, uuid):
        container = self.get_by_uuid(uuid)
        db_session.delete(container)
        db_session.commit()


class V2ProjectHandler(object):

    def list_all(self):
        return V2Project.query.all()

    def insert(self, kwargs):
        project = V2Project(**kwargs)
        db_session.add(project)
        db_session.commit()
        return project

    def get_by_uuid(self, uuid):
        project = V2Project.query.filter_by(uuid=uuid).first()
        if not project:
            raise ValueError
        return project

    def update_attr(self, uuid, attr):
        project = self.get_by_uuid(uuid)
        for k, v in attr.items():
            setattr(project, k, v)
        db_session.commit()

    def append_attr(self, uuid, attr):
        project = self.get_by_uuid(uuid)
        for k, v in attr.items():
            value = getattr(project, k)
            new = '{},{}'.format(value, v) if value else v
            setattr(project, k, new)
        db_session.commit()

    def delete_by_uuid(self, uuid):
        project = self.get_by_uuid(uuid)
        db_session.delete(project)
        db_session.commit()


class V2TaskHandler(object):

    def list_all(self):
        return V2Task.query.all()

    def insert(self, kwargs):
        task = V2Task(**kwargs)
        db_session.add(task)
        db_session.commit()
        return task

    def get_by_uuid(self, uuid):
        task = V2Task.query.filter_by(uuid=uuid).first()
        if not task:
            raise ValueError
        return task

    def update_attr(self, uuid, attr):
        task = self.get_by_uuid(uuid)
        for k, v in attr.items():
            setattr(task, k, v)
        db_session.commit()

    def delete_by_uuid(self, uuid):
        task = self.get_by_uuid(uuid)
        db_session.delete(task)
        db_session.commit()