1
|
|
|
# Licensed to the StackStorm, Inc ('StackStorm') under one or more |
2
|
|
|
# contributor license agreements. See the NOTICE file distributed with |
3
|
|
|
# this work for additional information regarding copyright ownership. |
4
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0 |
5
|
|
|
# (the "License"); you may not use this file except in compliance with |
6
|
|
|
# the License. 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
|
|
|
from lib.icsp import ICSPBaseActions |
17
|
|
|
|
18
|
|
|
|
19
|
|
|
class SetServerAttribute(ICSPBaseActions): |
20
|
|
|
def run(self, mid, attribute_key, function, |
21
|
|
|
attribute_value=None, connection_details=None): |
22
|
|
|
|
23
|
|
|
self.set_connection(connection_details) |
24
|
|
|
self.get_sessionid() |
25
|
|
|
endpoint = "/rest/os-deployment-servers/%s" % (mid) |
26
|
|
|
payload = {"category": "os-deployment-servers", |
27
|
|
|
"customAttributes": [], "type": "OSDServer"} |
28
|
|
|
if function == "Add": |
29
|
|
|
payload["customAttributes"].append( |
30
|
|
|
{"key": attribute_key, "values": [ |
31
|
|
|
{"scope": "server", "value": attribute_value}]}) |
32
|
|
|
|
33
|
|
|
# If function is set to append any undefined attributes from server |
34
|
|
|
# any attribute to replace must be defined in full in the new call |
35
|
|
|
|
36
|
|
|
currentdetails = self.icsp_get(endpoint) |
37
|
|
|
payload["name"] = currentdetails['name'] |
38
|
|
|
for element in currentdetails['customAttributes']: |
39
|
|
|
if element['values'][0]['scope'] == 'server'\ |
40
|
|
|
and not element['key'].startswith("__"): |
41
|
|
|
if function == "Delete" and element['key'] == attribute_key: |
42
|
|
|
continue |
43
|
|
|
else: |
44
|
|
|
if element['key'] != attribute_key: |
45
|
|
|
oldatt = {"key": element['key'], "values": [ |
46
|
|
|
{"scope": "server", |
47
|
|
|
"value": element['values'][0]['value']}]} |
48
|
|
|
payload['customAttributes'].append(oldatt) |
49
|
|
|
|
50
|
|
|
try: |
51
|
|
|
self.icsp_put(endpoint, payload) |
52
|
|
|
except Exception as e: |
53
|
|
|
raise Exception("Error: %s" % e) |
54
|
|
|
return |
55
|
|
|
|