#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# +------------------------------------------------------------------+
# |             ____ _               _        __  __ _  __           |
# |            / ___| |__   ___  ___| | __   |  \/  | |/ /           |
# |           | |   | '_ \ / _ \/ __| |/ /   | |\/| | ' /            |
# |           | |___| | | |  __/ (__|   <    | |  | | . \            |
# |            \____|_| |_|\___|\___|_|\_\___|_|  |_|_|\_\           |
# |                                                                  |
# | Copyright Mathias Kettner 2017             mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software;  you can redistribute it and/or modify it
# under the  terms of the  GNU General Public License  as published by
# the Free Software Foundation in version 2.  check_mk is  distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY;  with-
# out even the implied warranty of  MERCHANTABILITY  or  FITNESS FOR A
# PARTICULAR PURPOSE. See the  GNU General Public License for more de-
# tails. You should have  received  a copy of the  GNU  General Public
# License along with GNU Make; see the file  COPYING.  If  not,  write
# to the Free Software Foundation, Inc., 51 Franklin St,  Fifth Floor,
# Boston, MA 02110-1301 USA.


# .1.3.6.1.4.1.2606.4.3.1.1.0 1
# .1.3.6.1.4.1.2606.4.3.1.2.0 1
# .1.3.6.1.4.1.2606.4.3.1.3.0 1
# .1.3.6.1.4.1.2606.4.3.1.4.0 2
# .1.3.6.1.4.1.2606.4.3.1.5.0 2


def inventory_cmctc_config(info):
    return [(None, {})]


def check_cmctc_config(_no_item, _no_params, info):
    temp_unit_map = {
        '1': 'celsius',
        '2': 'fahrenheit',
    }

    beeper_map = {
        '1': 'on',
        '2': 'off',
    }

    acknowledge_map = {
        '1': 'disabled',
        '2': 'enabled',
    }

    alarm_relay_map = {
        '1': 'pick up',
        '2': 'release',
        '3': 'off',
    }

    web_access_map = {
        '1': 'view only',
        '2': 'full',
        '3': 'disables',
    }

    temp_id, beeper_id, ack_id, relay_logic_id, web_access_id = info[0]

    temperature_unit = temp_unit_map.get(temp_id)
    beeper = beeper_map.get(beeper_id)
    acknowledging = acknowledge_map.get(ack_id)
    relay_logic = alarm_relay_map.get(relay_logic_id)
    web_access = web_access_map.get(web_access_id)

    infotext = ('Web access: %s, Beeper: %s, Acknowledging: %s, '
                'Alarm relay logic in case of alarm: %s, Temperature unit: %s'
               ) % (web_access, beeper, acknowledging, relay_logic, temperature_unit)

    return 0, infotext


check_info['cmctc_config'] = {
    "inventory_function"  : inventory_cmctc_config,
    "check_function"      : check_cmctc_config,
    "service_description" : "TC configuration",
    "snmp_scan_function"  : cmctc_snmp_scan_function,
    "snmp_info"           : (".1.3.6.1.4.1.2606.4.3.1", [  # cmcTcSetupGeneral from RITTAL-CMC-TC-MIB
                                    "1",  # cmcTcTempUnit
                                    "2",  # cmcTcSetBeeper
                                    "3",  # cmcTcQuitRelay
                                    "4",  # cmcTcLogicRelay
                                    "5",  # cmcTcWebAccess
                            ]),
    "includes"            : [ "cmctc.include" ],
}
