minor fixes, and name encoding default UTF-8
This commit is contained in:
parent
cd2ae44b92
commit
005d1a7221
54
zk/base.py
54
zk/base.py
@ -94,7 +94,7 @@ class ZK_helper(object):
|
|||||||
|
|
||||||
class ZK(object):
|
class ZK(object):
|
||||||
""" Clase ZK """
|
""" Clase ZK """
|
||||||
def __init__(self, ip, port=4370, timeout=60, password=0, force_udp=False, ommit_ping=False, verbose=False):
|
def __init__(self, ip, port=4370, timeout=60, password=0, force_udp=False, ommit_ping=False, verbose=False, encoding='UTF-8'):
|
||||||
""" initialize instance """
|
""" initialize instance """
|
||||||
self.is_connect = False
|
self.is_connect = False
|
||||||
self.is_enabled = True #let's asume
|
self.is_enabled = True #let's asume
|
||||||
@ -108,6 +108,7 @@ class ZK(object):
|
|||||||
self.force_udp = force_udp
|
self.force_udp = force_udp
|
||||||
self.ommit_ping = ommit_ping
|
self.ommit_ping = ommit_ping
|
||||||
self.verbose = verbose
|
self.verbose = verbose
|
||||||
|
self.encoding = encoding
|
||||||
self.tcp = False
|
self.tcp = False
|
||||||
self.users = 0
|
self.users = 0
|
||||||
self.fingers = 0
|
self.fingers = 0
|
||||||
@ -398,13 +399,14 @@ class ZK(object):
|
|||||||
cmd_response = self.__send_command(command, command_string, response_size)
|
cmd_response = self.__send_command(command, command_string, response_size)
|
||||||
if cmd_response.get('status'):
|
if cmd_response.get('status'):
|
||||||
serialnumber = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
serialnumber = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
||||||
|
serialnumber = serialnumber.replace(b'=', b'')
|
||||||
return serialnumber.decode() # string?
|
return serialnumber.decode() # string?
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("can't read serial number")
|
raise ZKErrorResponse("Can't read serial number")
|
||||||
|
|
||||||
def get_platform(self):
|
def get_platform(self):
|
||||||
'''
|
'''
|
||||||
return the serial number
|
return the platform name
|
||||||
'''
|
'''
|
||||||
command = const.CMD_OPTIONS_RRQ
|
command = const.CMD_OPTIONS_RRQ
|
||||||
command_string = b'~Platform'
|
command_string = b'~Platform'
|
||||||
@ -413,13 +415,14 @@ class ZK(object):
|
|||||||
cmd_response = self.__send_command(command, command_string, response_size)
|
cmd_response = self.__send_command(command, command_string, response_size)
|
||||||
if cmd_response.get('status'):
|
if cmd_response.get('status'):
|
||||||
platform = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
platform = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
||||||
|
platform = platform.replace(b'=', b'')
|
||||||
return platform.decode()
|
return platform.decode()
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("can't get platform")
|
raise ZKErrorResponse("Can't get platform")
|
||||||
|
|
||||||
def get_mac(self):
|
def get_mac(self):
|
||||||
'''
|
'''
|
||||||
return the serial number
|
return the mac
|
||||||
'''
|
'''
|
||||||
command = const.CMD_OPTIONS_RRQ
|
command = const.CMD_OPTIONS_RRQ
|
||||||
command_string = b'MAC'
|
command_string = b'MAC'
|
||||||
@ -434,7 +437,7 @@ class ZK(object):
|
|||||||
|
|
||||||
def get_device_name(self):
|
def get_device_name(self):
|
||||||
'''
|
'''
|
||||||
return the serial number
|
return the device name
|
||||||
'''
|
'''
|
||||||
command = const.CMD_OPTIONS_RRQ
|
command = const.CMD_OPTIONS_RRQ
|
||||||
command_string = b'~DeviceName'
|
command_string = b'~DeviceName'
|
||||||
@ -474,6 +477,7 @@ class ZK(object):
|
|||||||
cmd_response = self.__send_command(command, command_string, response_size)
|
cmd_response = self.__send_command(command, command_string, response_size)
|
||||||
if cmd_response.get('status'):
|
if cmd_response.get('status'):
|
||||||
response = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
response = self.__data.split(b'=', 1)[-1].split(b'\x00')[0]
|
||||||
|
response = response.replace(b'=', b'')
|
||||||
return safe_cast(response, int, 0) if response else 0
|
return safe_cast(response, int, 0) if response else 0
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
@ -492,7 +496,7 @@ class ZK(object):
|
|||||||
#definitivo? seleccionar firmware aqui?
|
#definitivo? seleccionar firmware aqui?
|
||||||
return safe_cast(fmt, int, 0) if fmt else 0
|
return safe_cast(fmt, int, 0) if fmt else 0
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("can't read extend fmt")
|
raise ZKErrorResponse("Can't read extend fmt")
|
||||||
|
|
||||||
def get_user_extend_fmt(self):
|
def get_user_extend_fmt(self):
|
||||||
'''
|
'''
|
||||||
@ -622,7 +626,7 @@ class ZK(object):
|
|||||||
if cmd_response.get('status'):
|
if cmd_response.get('status'):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("can't open door")
|
raise ZKErrorResponse("Can't open door")
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
""" for debug"""
|
""" for debug"""
|
||||||
@ -784,19 +788,19 @@ class ZK(object):
|
|||||||
if not group_id:
|
if not group_id:
|
||||||
group_id = 0
|
group_id = 0
|
||||||
try:
|
try:
|
||||||
command_string = pack('HB5s8sIxBHI', uid, privilege, password.encode(), name.encode(), card, int(group_id), 0, int(user_id))
|
command_string = pack('HB5s8sIxBHI', uid, privilege, password.encode(self.encoding, errors='ignore'), name.encode(self.encoding, errors='ignore'), card, int(group_id), 0, int(user_id))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
if self.verbose: print("s_h Error pack: %s" % e)
|
if self.verbose: print("s_h Error pack: %s" % e)
|
||||||
if self.verbose: print("Error pack: %s" % sys.exc_info()[0])
|
if self.verbose: print("Error pack: %s" % sys.exc_info()[0])
|
||||||
raise ZKErrorResponse("Cant pack user")
|
raise ZKErrorResponse("Can't pack user")
|
||||||
else:
|
else:
|
||||||
name_pad = name.encode().ljust(24, b'\x00')[:24]
|
name_pad = name.encode(self.encoding, errors='ignore').ljust(24, b'\x00')[:24]
|
||||||
card_str = pack('i', int(card))[:4]
|
card_str = pack('i', int(card))[:4]
|
||||||
command_string = pack('HB8s24s4sx7sx24s', uid, privilege, password.encode(), name_pad, card_str, group_id.encode(), user_id.encode())
|
command_string = pack('HB8s24s4sx7sx24s', uid, privilege, password.encode(self.encoding, errors='ignore'), name_pad, card_str, group_id.encode(), user_id.encode())
|
||||||
response_size = 1024 #TODO check response?
|
response_size = 1024 #TODO check response?
|
||||||
cmd_response = self.__send_command(command, command_string, response_size)
|
cmd_response = self.__send_command(command, command_string, response_size)
|
||||||
if not cmd_response.get('status'):
|
if not cmd_response.get('status'):
|
||||||
raise ZKErrorResponse("Cant set user")
|
raise ZKErrorResponse("Can't set user")
|
||||||
self.refresh_data()
|
self.refresh_data()
|
||||||
if self.next_uid == uid:
|
if self.next_uid == uid:
|
||||||
self.next_uid += 1 # better recalculate again
|
self.next_uid += 1 # better recalculate again
|
||||||
@ -818,7 +822,7 @@ class ZK(object):
|
|||||||
if len(tusers) == 1:
|
if len(tusers) == 1:
|
||||||
user = tusers[0]
|
user = tusers[0]
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("Cant find user")
|
raise ZKErrorResponse("Can't find user")
|
||||||
if isinstance(fingers, Finger):
|
if isinstance(fingers, Finger):
|
||||||
fingers = [fingers]
|
fingers = [fingers]
|
||||||
fpack = ""
|
fpack = ""
|
||||||
@ -841,7 +845,7 @@ class ZK(object):
|
|||||||
command_string = pack('<IHH', 12,0,8) # ??? write? WRQ user data?
|
command_string = pack('<IHH', 12,0,8) # ??? write? WRQ user data?
|
||||||
cmd_response = self.__send_command(command, command_string)
|
cmd_response = self.__send_command(command, command_string)
|
||||||
if not cmd_response.get('status'):
|
if not cmd_response.get('status'):
|
||||||
raise ZKErrorResponse("Cant save utemp")
|
raise ZKErrorResponse("Can't save utemp")
|
||||||
self.refresh_data()
|
self.refresh_data()
|
||||||
|
|
||||||
def _send_with_buffer(self, buffer):
|
def _send_with_buffer(self, buffer):
|
||||||
@ -854,7 +858,7 @@ class ZK(object):
|
|||||||
command_string = pack('I', size)
|
command_string = pack('I', size)
|
||||||
cmd_response = self.__send_command(command, command_string)
|
cmd_response = self.__send_command(command, command_string)
|
||||||
if not cmd_response.get('status'):
|
if not cmd_response.get('status'):
|
||||||
raise ZKErrorResponse("Cant prepare data")
|
raise ZKErrorResponse("Can't prepare data")
|
||||||
remain = size % MAX_CHUNK
|
remain = size % MAX_CHUNK
|
||||||
packets = (size - remain) // MAX_CHUNK
|
packets = (size - remain) // MAX_CHUNK
|
||||||
start = 0
|
start = 0
|
||||||
@ -870,7 +874,7 @@ class ZK(object):
|
|||||||
if cmd_response.get('status'):
|
if cmd_response.get('status'):
|
||||||
return True #refres_data (1013)?
|
return True #refres_data (1013)?
|
||||||
else:
|
else:
|
||||||
raise ZKErrorResponse("Cant send chunk")
|
raise ZKErrorResponse("Can't send chunk")
|
||||||
|
|
||||||
def delete_user_template(self, uid=0, temp_id=0, user_id=''):
|
def delete_user_template(self, uid=0, temp_id=0, user_id=''):
|
||||||
"""
|
"""
|
||||||
@ -926,7 +930,7 @@ class ZK(object):
|
|||||||
command_string = pack('h', uid)
|
command_string = pack('h', uid)
|
||||||
cmd_response = self.__send_command(command, command_string)
|
cmd_response = self.__send_command(command, command_string)
|
||||||
if not cmd_response.get('status'):
|
if not cmd_response.get('status'):
|
||||||
raise ZKErrorResponse("can't delete user")
|
raise ZKErrorResponse("Can't delete user")
|
||||||
self.refresh_data()
|
self.refresh_data()
|
||||||
if uid == (self.next_uid - 1):
|
if uid == (self.next_uid - 1):
|
||||||
self.next_uid = uid # quick undo
|
self.next_uid = uid # quick undo
|
||||||
@ -956,7 +960,7 @@ class ZK(object):
|
|||||||
return Finger(uid, temp_id, 1, resp)
|
return Finger(uid, temp_id, 1, resp)
|
||||||
if self.verbose: print ("retry get_user_template")
|
if self.verbose: print ("retry get_user_template")
|
||||||
else:
|
else:
|
||||||
if self.verbose: print ("can't read/find finger")
|
if self.verbose: print ("Can't read/find finger")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def get_templates(self):
|
def get_templates(self):
|
||||||
@ -1004,8 +1008,8 @@ class ZK(object):
|
|||||||
while len(userdata) >= 28:
|
while len(userdata) >= 28:
|
||||||
uid, privilege, password, name, card, group_id, timezone, user_id = unpack('<HB5s8sIxBhI',userdata.ljust(28, b'\x00')[:28])
|
uid, privilege, password, name, card, group_id, timezone, user_id = unpack('<HB5s8sIxBhI',userdata.ljust(28, b'\x00')[:28])
|
||||||
if uid > max_uid: max_uid = uid
|
if uid > max_uid: max_uid = uid
|
||||||
password = (password.split(b'\x00')[0]).decode(errors='ignore')
|
password = (password.split(b'\x00')[0]).decode(self.encoding, errors='ignore')
|
||||||
name = (name.split(b'\x00')[0]).decode(errors='ignore').strip()
|
name = (name.split(b'\x00')[0]).decode(self.encoding, errors='ignore').strip()
|
||||||
#card = unpack('I', card)[0] #or hex value?
|
#card = unpack('I', card)[0] #or hex value?
|
||||||
group_id = str(group_id)
|
group_id = str(group_id)
|
||||||
user_id = str(user_id)
|
user_id = str(user_id)
|
||||||
@ -1023,10 +1027,10 @@ class ZK(object):
|
|||||||
#u2 = int(uid[1].encode("hex"), 16)
|
#u2 = int(uid[1].encode("hex"), 16)
|
||||||
#uid = u1 + (u2 * 256)
|
#uid = u1 + (u2 * 256)
|
||||||
#privilege = int(privilege.encode("hex"), 16)
|
#privilege = int(privilege.encode("hex"), 16)
|
||||||
password = (password.split(b'\x00')[0]).decode(errors='ignore')
|
password = (password.split(b'\x00')[0]).decode(self.encoding, errors='ignore')
|
||||||
name = (name.split(b'\x00')[0]).decode(errors='ignore').strip()
|
name = (name.split(b'\x00')[0]).decode(self.encoding, errors='ignore').strip()
|
||||||
group_id = (group_id.split(b'\x00')[0]).decode(errors='ignore').strip()
|
group_id = (group_id.split(b'\x00')[0]).decode(self.encoding, errors='ignore').strip()
|
||||||
user_id = (user_id.split(b'\x00')[0]).decode(errors='ignore')
|
user_id = (user_id.split(b'\x00')[0]).decode(self.encoding, errors='ignore')
|
||||||
if uid > max_uid: max_uid = uid
|
if uid > max_uid: max_uid = uid
|
||||||
#card = int(unpack('I', separator)[0])
|
#card = int(unpack('I', separator)[0])
|
||||||
if not name:
|
if not name:
|
||||||
|
Loading…
Reference in New Issue
Block a user