Some refactor

now testing.py looks almost just like i want.
This commit is contained in:
Anton Grigoryev 2015-03-12 03:17:43 +03:00
parent 24a1b9b36b
commit 66a5577ab9
2 changed files with 81 additions and 127 deletions

View File

@ -49,8 +49,8 @@ class TlMethod:
class TL: class TL:
def __init__(self): def __init__(self, filename):
with open("TL_schema.JSON", 'r') as f: with open(filename, 'r') as f:
TL_dict = json.load(f) TL_dict = json.load(f)
# Read constructors # Read constructors
@ -71,79 +71,75 @@ class TL:
self.method_id[z.id] = z self.method_id[z.id] = z
self.method_name[z.method] = z self.method_name[z.method] = z
def method_call(self, method, **kwargs):
z = io.BytesIO()
tl_method = self.method_name[method]
z.write(struct.pack('<i', tl_method.id))
for param in tl_method.params:
self.serialize(bytes_io=z, value=kwargs[param['name']], type_=param['type'])
return z.getvalue()
def serialize(self, bytes_io, type_, value): ## Loading TL_schema
if type_ == "int": tl = TL("TL_schema.JSON")
assert isinstance(value, int)
bytes_io.write(struct.pack('<i', value))
if type_ == "int128":
assert isinstance(value, bytes)
bytes_io.write(struct.pack('<16s', value))
def deserialize(self, bytes_io, type_=None, subtype=None): def serialize(bytes_io, type_, value):
assert isinstance(bytes_io, io.BytesIO) if type_ == "int":
assert isinstance(value, int)
bytes_io.write(struct.pack('<i', value))
if type_ == "int128":
assert isinstance(value, bytes)
bytes_io.write(struct.pack('<16s', value))
# Built-in bare types def deserialize(bytes_io, type_=None, subtype=None):
if type_ == 'int': assert isinstance(bytes_io, io.BytesIO)
x = struct.unpack('<i', bytes_io.read(4))[0]
elif type_ == '#': # Built-in bare types
x = struct.unpack('<I', bytes_io.read(4))[0] if type_ == 'int':
elif type_ == 'long': x = struct.unpack('<i', bytes_io.read(4))[0]
x = struct.unpack('<q', bytes_io.read(8))[0] elif type_ == '#':
elif type_ == 'double': x = struct.unpack('<I', bytes_io.read(4))[0]
x = struct.unpack('<d', bytes_io.read(8))[0] elif type_ == 'long':
elif type_ == 'int128': x = struct.unpack('<q', bytes_io.read(8))[0]
t = struct.unpack('<16s', bytes_io.read(16))[0] elif type_ == 'double':
x = int.from_bytes(t, 'little') x = struct.unpack('<d', bytes_io.read(8))[0]
elif type_ == 'int256': elif type_ == 'int128':
t = struct.unpack('<32s', bytes_io.read(32))[0] t = struct.unpack('<16s', bytes_io.read(16))[0]
x = int.from_bytes(t, 'little') x = int.from_bytes(t, 'little')
elif type_ == 'bytes': elif type_ == 'int256':
l = int.from_bytes(bytes_io.read(1), 'little') t = struct.unpack('<32s', bytes_io.read(32))[0]
x = int.from_bytes(t, 'little')
elif type_ == 'bytes':
l = int.from_bytes(bytes_io.read(1), 'little')
x = bytes_io.read(l)
bytes_io.read(-(l+1) % 4) # skip padding bytes
elif type_ == 'string':
l = int.from_bytes(bytes_io.read(1), 'little')
assert l <=254
if l == 254:
# We have a long string
long_len = int.from_bytes(bytes_io.read(3), 'little')
x = bytes_io.read(long_len)
bytes_io.read(-long_len % 4) # skip padding bytes
else:
# We have a short string
x = bytes_io.read(l) x = bytes_io.read(l)
bytes_io.read(-(l+1) % 4) # skip padding bytes bytes_io.read(-(l+1) % 4) # skip padding bytes
elif type_ == 'string': assert isinstance(x, bytes)
l = int.from_bytes(bytes_io.read(1), 'little') elif type_ == 'vector':
assert l <=254 assert subtype is not None
if l == 254: count = int.from_bytes(bytes_io.read(4), 'little')
# We have a long string x = [deserialize(bytes_io, type_=subtype) for i in range(count)]
long_len = int.from_bytes(bytes_io.read(3), 'little') else:
x = bytes_io.read(long_len) # Boxed types
bytes_io.read(-long_len % 4) # skip padding bytes i = struct.unpack('<i', bytes_io.read(4))[0] # read type ID
else: try:
# We have a short string tl_elem = tl.constructor_id[i]
x = bytes_io.read(l) except:
bytes_io.read(-(l+1) % 4) # skip padding bytes raise Exception("Could not extract type: %s" % type_)
assert isinstance(x, bytes) base_boxed_types = ["Vector t", "Int", "Long", "Double", "String", "Int128", "Int256"]
elif type_ == 'vector': if tl_elem.type in base_boxed_types:
assert subtype is not None x = deserialize(bytes_io, type_=tl_elem.predicate, subtype=subtype)
count = int.from_bytes(bytes_io.read(4), 'little') else: # other types
x = [self.deserialize(bytes_io, type_=subtype) for i in range(count)] x = {}
else: for arg in tl_elem.params:
# Boxed types x[arg['name']] = deserialize(bytes_io, type_=arg['type'], subtype=arg['subtype'])
i = struct.unpack('<i', bytes_io.read(4))[0] # read type ID return x
try:
tl_elem = self.constructor_id[i]
except:
raise Exception("Could not extract type: %s" % type_)
base_boxed_types = ["Vector t", "Int", "Long", "Double", "String", "Int128", "Int256"]
if tl_elem.type in base_boxed_types:
x = self.deserialize(bytes_io, type_=tl_elem.predicate, subtype=subtype)
else: # other types
x = {}
for arg in tl_elem.params:
x[arg['name']] = self.deserialize(bytes_io, type_=arg['type'], subtype=arg['subtype'])
return x
class Session: class Session:
""" Manages TCP Transport. encryption and message frames """
def __init__(self, ip, port): def __init__(self, ip, port):
# creating socket # creating socket
self.sock = socket.socket() self.sock = socket.socket()
@ -211,3 +207,19 @@ class Session:
print('<<') print('<<')
vis(data) # Received message visualisation to console vis(data) # Received message visualisation to console
return data return data
def method_call(self, method, **kwargs):
z = io.BytesIO()
tl_method = tl.method_name[method]
z.write(struct.pack('<i', tl_method.id))
for param in tl_method.params:
serialize(bytes_io=z, value=kwargs[param['name']], type_=param['type'])
self.send_message(z.getvalue())
server_answer = self.recv_message()
return deserialize(io.BytesIO(server_answer))
class Telegram:
global tl
def connect(self, ip, port):
self.session = Session(ip, port)

View File

@ -2,7 +2,6 @@
import mtproto import mtproto
import os import os
import prime import prime
import io
import configparser import configparser
config = configparser.ConfigParser() config = configparser.ConfigParser()
@ -10,67 +9,10 @@ config.read('credentials')
ip = config['App data']['ip_address'] ip = config['App data']['ip_address']
port = config['App data'].getint('port') port = config['App data'].getint('port')
TL=mtproto.TL()
Session = mtproto.Session(ip, port) Session = mtproto.Session(ip, port)
a = TL.method_call('req_pq', nonce=os.urandom(16)) x = Session.method_call('req_pq', nonce=os.urandom(16))
Session.send_message(a)
b = Session.recv_message()
x = TL.deserialize(io.BytesIO(b))
PQ = int.from_bytes(x['pq'], 'big') PQ = int.from_bytes(x['pq'], 'big')
[p, q] = prime.primefactors(PQ) [p, q] = prime.primefactors(PQ)
print("PQ = %d\np = %d, q = %d" % (PQ, p, q)) print("PQ = %d\np = %d, q = %d" % (PQ, p, q))
#sock = socket.socket()
# sock.connect(("149.154.167.40", 443))
# nonce = os.urandom(16)
# tosend = b'\x78\x97\x46\x60' + nonce
# good=(b'\x00\x00\x00\x00\x00\x00\x00\x00'
# #+b'\x00\x00\x00\x00\x0f\x35\xe8\x51
# +int(time.time()*2**32).to_bytes(8, 'little')
# +len(tosend).to_bytes(4, 'little')
# +tosend)
# #+b'\x14\x00\x00\x00'
# #+b'\x78\x97\x46\x60'
# #+b'\x15\x3e\xa9\xbe\xc5\x4f\xfc\x16'
# #+b'\x66\x23\x4a\xd0\x31\xc0\xf1\x3d')
# mtproto.sendpacket(sock, good, 0)
# (number, data) = mtproto.recvpacket(sock)
# auth_key_id = data[0:8]
# message_id = data[8:16]
# message_length = int.from_bytes(data[16:20], 'little')
# resPQ = data[20:24]
# nonce2 = data[24:40]
# server_nonce = data[40:56]
# pq = data[56:68]
# fingerprint_count = int.from_bytes(data[72:76], 'little')
# fingerprints = []
# for i in range(fingerprint_count):
# fingerprints.append(data[76+i*8:76+8*(i+1)])
# PQ = int.from_bytes(pq[1:9],'big')
# server_public_key = fingerprints[0]
# [p, q] = prime.primefactors(PQ)
# #(p, q)=factorize(PQ)
# def num_to_string(number, endianness):
# number_bytes = math.ceil(number.bit_length() / 8)
# return (number_bytes.to_bytes(3, endianness) +
# number.to_bytes(number_bytes, endianness) +
# b'\x00' * ((number_bytes + 3) %4) )
# new_nonce = os.urandom(32)
# data = (b'\x83\xc9\x5a\xec' + #(p_q_inner_data)
# num_to_string(PQ, 'big') +
# num_to_string(p, 'big') +
# num_to_string(q, 'big') +
# nonce +
# server_nonce +
# new_nonce )
# sock.close()
# #34 00 00 00 - len
# #00 00 00 00- num in the session
# #00 00 00 00 00 00 00 00
# #00 00 00 00 0f 35 e8 51 - message id (unixtime << 32)
# #14 00 00 00 - message len
# #78 97 46 60 - function
# #15 3e a9 be c5 4f fc 16 66 23 4a d0 31 c0 f1 3d - nonce (random number 16 bytes)
# #dd fe f0 07 - crc32