2018-05-09 21:26:20 -04:00
|
|
|
#!/usr/bin/env python3
|
2018-05-09 10:12:02 -04:00
|
|
|
from xml.etree import ElementTree as ET
|
|
|
|
|
2018-05-14 11:23:25 -04:00
|
|
|
from common import *
|
2018-05-09 10:12:02 -04:00
|
|
|
|
2018-05-14 11:23:25 -04:00
|
|
|
TARGET_IP = '172.18.51.11'
|
2018-05-09 10:12:02 -04:00
|
|
|
|
|
|
|
# From /html/en_EN/en_EN.js localeStrings
|
|
|
|
eventStrings = {
|
|
|
|
1022: 'Denied Access{6} Card Not Found {3}',
|
|
|
|
1023: 'Denied Access{6} Access PIN Not Found {3}',
|
|
|
|
2020: 'Granted Access{6} {2}',
|
|
|
|
2021: 'Granted Access{6} Extended Time {2}',
|
|
|
|
2024: 'Denied Access{6} Schedule {2}',
|
|
|
|
2029: 'Denied Access{6} Wrong PIN {2}',
|
|
|
|
2036: 'Denied Access{6} Card Expired {2}',
|
|
|
|
2042: 'Denied Access{6} PIN Lockout {2}',
|
|
|
|
2043: 'Denied Access{6} Unassigned Card {3}',
|
|
|
|
2044: 'Denied Access{6} Unassigned Access PIN {3}',
|
|
|
|
2046: 'Denied Access - PIN Expired {2}',
|
|
|
|
4051: 'REX Switch Alarm',
|
|
|
|
7020: 'Time Set to: {5}',
|
|
|
|
12031: 'Granted Access{6} Manual',
|
|
|
|
12032: 'Door Unlocked',
|
|
|
|
12033: 'Door Locked',
|
|
|
|
4034: 'Alarm Acknowledged',
|
|
|
|
4035: 'Door Locked-Scheduled',
|
|
|
|
4036: 'Door Unlocked-Scheduled',
|
|
|
|
4041: 'Door Forced Alarm',
|
|
|
|
4042: 'Door Held Alarm',
|
|
|
|
4043: 'Tamper Switch Alarm',
|
|
|
|
4044: 'AC Failure',
|
|
|
|
4045: 'Battery Failure',
|
|
|
|
}
|
|
|
|
|
|
|
|
#<?xml version="1.0" encoding="UTF-8"?> <VertXMessage> <hid:EventMessages action="LR" recordCount="100" historyRecordMarker="463" historyTimestamp="1525824431"/> </VertXMessage>
|
|
|
|
|
|
|
|
#<?xml version="1.0" encoding="UTF-8"?><VertXMessage xmlns:hid="http://www.hidcorp.com/VertX"><hid:EventMessages action="RL" historyRecordMarker="463" historyTimestamp="1525824431" currentRecordMarker="463" currentTimestamp="1525824431" /></VertXMessage>
|
|
|
|
|
|
|
|
XML = ET.Element("VertXMessage")
|
|
|
|
ET.SubElement(XML, "hid:EventMessages", attrib={"action": "LR"})
|
2018-05-14 11:23:25 -04:00
|
|
|
xml = doXMLRequest(TARGET_IP, ET.tostring(XML))
|
2018-05-09 10:12:02 -04:00
|
|
|
print(xml[0].attrib)
|
|
|
|
|
|
|
|
XML = ET.Element("VertXMessage")
|
|
|
|
ET.SubElement(XML, "hid:EventMessages",
|
|
|
|
attrib={"action": "LR",
|
|
|
|
"recordCount": "1000",
|
|
|
|
"historyRecordMarker": xml[0].attrib["historyRecordMarker"],
|
|
|
|
"historyTimestamp": xml[0].attrib["historyTimestamp"]})
|
2018-05-14 11:23:25 -04:00
|
|
|
xml = doXMLRequest(TARGET_IP, ET.tostring(XML))
|
2018-05-09 10:12:02 -04:00
|
|
|
for event in xml[0]:
|
|
|
|
ET.dump(event)
|
|
|
|
att = event.attrib
|
|
|
|
eventType = int(att["eventType"])
|
|
|
|
print(att["timestamp"], eventStrings[eventType].format(
|
|
|
|
'ios-' + att.get('ioState', ''),
|
|
|
|
'status-' + att.get('commandStatus', ''),
|
|
|
|
att.get('forename', '') + " " + att.get('surname', ''),
|
|
|
|
att.get('rawCardNumber', ''),
|
|
|
|
att.get('oldTime', ''),
|
|
|
|
att.get('newTime', ''),
|
|
|
|
"IN" if att.get("readerAddress", '') == '0' else "OUT"))
|