Completed
Pull Request — master (#474)
by
unknown
02:46
created

SetServerAttribute.run()   F

Complexity

Conditions 9

Size

Total Lines 34

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 9
c 1
b 0
f 0
dl 0
loc 34
rs 3
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
        for element in currentdetails['customAttributes']:
38
            if element['values'][0]['scope'] == 'server'\
39
                    and not element['key'].startswith("__"):
40
                if function == "Delete" and element['key'] == attribute_key:
41
                    continue
42
                else:
43
                    if element['key'] != attribute_key:
44
                        oldatt = {"key": element['key'], "values": [
45
                            {"scope": "server",
46
                             "value": element['values'][0]['value']}]}
47
                        payload['customAttributes'].append(oldatt)
48
49
        try:
50
            self.icsp_put(endpoint, payload)
51
        except Exception as e:
52
            raise Exception("Error: %s" % e)
53
        return
54