mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
- fix and test peerstate::from_fingerprint - add and test python API for secure-join QR + setup-contact
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
from .capi import lib
|
|
from .capi import ffi
|
|
from datetime import datetime
|
|
|
|
|
|
def as_dc_charpointer(obj):
|
|
if obj == ffi.NULL or obj is None:
|
|
return ffi.NULL
|
|
if not isinstance(obj, bytes):
|
|
return obj.encode("utf8")
|
|
return obj
|
|
|
|
|
|
def iter_array(dc_array_t, constructor):
|
|
for i in range(0, lib.dc_array_get_cnt(dc_array_t)):
|
|
yield constructor(lib.dc_array_get_id(dc_array_t, i))
|
|
|
|
|
|
def from_dc_charpointer(obj):
|
|
return ffi.string(ffi.gc(obj, lib.dc_str_unref)).decode("utf8")
|
|
|
|
|
|
class DCLot:
|
|
def __init__(self, dc_lot):
|
|
self._dc_lot = dc_lot
|
|
|
|
def id(self):
|
|
return lib.dc_lot_get_id(self._dc_lot)
|
|
|
|
def state(self):
|
|
return lib.dc_lot_get_state(self._dc_lot)
|
|
|
|
def text1(self):
|
|
return from_dc_charpointer(lib.dc_lot_get_text1(self._dc_lot))
|
|
|
|
def text1_meaning(self):
|
|
return lib.dc_lot_get_text1_meaning(self._dc_lot)
|
|
|
|
def text2(self):
|
|
return from_dc_charpointer(lib.dc_lot_get_text2(self._dc_lot))
|
|
|
|
def timestamp(self):
|
|
ts = lib.dc_lot_get_timestamp(self._dc_lot)
|
|
if ts == 0:
|
|
return None
|
|
return datetime.utcfromtimestamp(ts)
|