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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
from opendc.models.rack import Rack
from opendc.models.tile import Tile
from opendc.util import database, exceptions
from opendc.util.rest import Response
def GET(request):
"""Get this Tile's Rack."""
# Make sure required parameters are there
try:
request.check_required_parameters(
path = {
'tileId': 'int'
},
)
except exceptions.ParameterError as e:
return Response(400, e.message)
# Instantiate a Tile from the database
tile = Tile.from_primary_key((request.params_path['tileId'],))
# Make sure this Tile exists
if not tile.exists():
return Response(404, '{} not found.'.format(tile))
# Make sure this user is authorized to view this Tile
if not tile.google_id_has_at_least(request.google_id, 'VIEW'):
return Response(403, 'Forbidden from editing {}'.format(tile))
# Instantiate a Rack from the database
rack = Rack.from_primary_key((tile.object_id,))
# Make sure this Rack exists
if not rack.exists():
return Response(404, '{} not found'.format(rack))
# Return the Rack
rack.read()
return Response(
200,
'Successfully retrieved {}.'.format(rack),
rack.to_JSON()
)
def POST(request):
"""Add a Rack to this Tile if it is empty."""
# Make sure required parameters are there
try:
request.check_required_parameters(
path = {
'tileId': 'int'
},
body = {
'rack': {
'name': 'string',
'capacity': 'int',
'powerCapacityW': 'int'
}
}
)
except exceptions.ParameterError as e:
return Response(400, e.message)
# Instantiate a Tile from the database
tile = Tile.from_primary_key((request.params_path['tileId'],))
# Make sure this Tile exists
if not tile.exists():
return Response(404, '{} not found.'.format(tile))
# Make sure this user is authorized to edit this Tile
if not tile.google_id_has_at_least(request.google_id, 'EDIT'):
return Response(403, 'Forbidden from editing {}'.format(tile))
# Make sure this Tile isn't occupied
if tile.object_id is not None:
return Response(409, '{} occupied.'.format(tile))
# Instantiate a Rack and insert it into the database
rack = Rack.from_JSON(request.params_body['rack'])
rack.insert()
# Try to add this Rack to this Tile
tile.object_id = rack.id
tile.object_type = 'RACK'
tile.update()
# Return this Rack
rack.read()
return Response(
200,
'Successfully added {}.'.format(rack),
rack.to_JSON()
)
def PUT(request):
"""Update the Rack on this Tile."""
# Make sure required parameters are there
try:
request.check_required_parameters(
path = {
'tileId': 'int'
},
body = {
'rack': {
'name': 'string',
'capacity': 'int',
'powerCapacityW': 'int'
}
}
)
except exceptions.ParameterError as e:
return Response(400, e.message)
# Instantiate a Tile from the database
tile = Tile.from_primary_key((request.params_path['tileId'],))
# Make sure this Tile exists
if not tile.exists():
return Response(404, '{} not found.'.format(tile))
# Make sure this user is authorized to edit this Tile
if not tile.google_id_has_at_least(request.google_id, 'EDIT'):
return Response(403, 'Forbidden from editing {}'.format(tile))
# Instantiate a Rack from the database
rack = Rack.from_primary_key((tile.object_id,))
# Make sure this Rack exists
if not rack.exists():
return Response(404, '{} not found'.format(rack))
# Update this Rack
rack.name = request.params_body['rack']['name']
rack.capacity = request.params_body['rack']['capacity']
rack.update()
# Return this Rack
rack.read()
return Response(
200,
'Successfully updated {}.'.format(rack),
rack.to_JSON()
)
def DELETE(request):
"""Delete this Tile's Rack."""
# Make sure required parameters are there
try:
request.check_required_parameters(
path = {
'tileId': 'int'
},
)
except exceptions.ParameterError as e:
return Response(400, e.message)
# Instantiate a Tile from the database
tile = Tile.from_primary_key((request.params_path['tileId'],))
# Make sure this Tile exists
if not tile.exists():
return Response(404, '{} not found.'.format(tile))
# Make sure this user is authorized to edit this Tile
if not tile.google_id_has_at_least(request.google_id, 'EDIT'):
return Response(403, 'Forbidden from editing {}'.format(tile))
# Instantiate a Rack from the database
rack = Rack.from_primary_key((tile.object_id,))
# Make sure this Rack exists
if not rack.exists():
return Response(404, '{} not found'.format(rack))
# Remove this Rack from this Tile
tile.object_id = None
tile.object_type = None
tile.update()
# Delete this Rack
rack.delete()
# Return this Rack
return Response(
200,
'Successfully deleted {}.'.format(rack),
rack.to_JSON()
)
|