|
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 SetServerAttributes(ICSPBaseActions): |
|
20
|
|
|
def run(self, mid, connection_details, attributes, function): |
|
21
|
|
|
if connection_details: |
|
22
|
|
|
self.setConnection(connection_details) |
|
23
|
|
|
self.getSessionID() |
|
24
|
|
|
endpoint = "/rest/os-deployment-servers/%s" % mid |
|
25
|
|
|
payload = {"category": "os-deployment-servers", |
|
26
|
|
|
"customAttributes": [], "type": "OSDServer"} |
|
27
|
|
|
for attribute in attributes: |
|
28
|
|
|
payload["customAttributes"].append( |
|
29
|
|
|
{"key": attribute, "values": [ |
|
30
|
|
|
{"scope": "server", "value": attributes[attribute]}]}) |
|
31
|
|
|
|
|
32
|
|
|
# If function is set to append any undefined attributes from server |
|
33
|
|
|
# any attribute to replace must be defined in full in the new call |
|
34
|
|
|
|
|
35
|
|
|
if function == "append": |
|
36
|
|
|
currentdetails = self.icspGET(endpoint) |
|
37
|
|
|
for element in currentdetails['customAttributes']: |
|
38
|
|
|
if element['values'][0]['scope'] == 'server'\ |
|
39
|
|
|
and not element['key'].startswith("__"): |
|
40
|
|
|
oldatt = {"key": element['key'], "values": [ |
|
41
|
|
|
{"scope": "server", |
|
42
|
|
|
"value": element['values'][0]['value']}]} |
|
43
|
|
|
if oldatt not in payload['customAttributes']: |
|
44
|
|
|
payload['customAttributes'].append(oldatt) |
|
45
|
|
|
|
|
46
|
|
|
try: |
|
47
|
|
|
self.icspPUT(endpoint, payload) |
|
48
|
|
|
except Exception as e: |
|
49
|
|
|
raise Exception("Error: %s" % e) |
|
50
|
|
|
return |
|
51
|
|
|
|