mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-28 04:48:06 +00:00
Add syncer module
This commit is contained in:
parent
e38da08e25
commit
b84628e01d
107
pyrogram/client/syncer.py
Normal file
107
pyrogram/client/syncer.py
Normal file
@ -0,0 +1,107 @@
|
||||
import base64
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import shutil
|
||||
import time
|
||||
from threading import Thread, Event, Lock
|
||||
from . import utils
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Syncer:
|
||||
INTERVAL = 2
|
||||
|
||||
clients = {}
|
||||
thread = None
|
||||
event = Event()
|
||||
lock = Lock()
|
||||
|
||||
@classmethod
|
||||
def add(cls, client):
|
||||
with cls.lock:
|
||||
cls.sync(client)
|
||||
|
||||
cls.clients[id(client)] = client
|
||||
|
||||
if len(cls.clients) == 1:
|
||||
cls.start()
|
||||
|
||||
@classmethod
|
||||
def remove(cls, client):
|
||||
with cls.lock:
|
||||
cls.sync(client)
|
||||
|
||||
del cls.clients[id(client)]
|
||||
|
||||
if len(cls.clients) == 0:
|
||||
cls.stop()
|
||||
|
||||
@classmethod
|
||||
def start(cls):
|
||||
cls.event.clear()
|
||||
cls.thread = Thread(target=cls.worker, name=cls.__name__)
|
||||
cls.thread.start()
|
||||
|
||||
@classmethod
|
||||
def stop(cls):
|
||||
cls.event.set()
|
||||
|
||||
@classmethod
|
||||
def worker(cls):
|
||||
while True:
|
||||
cls.event.wait(cls.INTERVAL)
|
||||
|
||||
if cls.event.is_set():
|
||||
break
|
||||
|
||||
with cls.lock:
|
||||
for client in cls.clients.values():
|
||||
cls.sync(client)
|
||||
|
||||
@classmethod
|
||||
def sync(cls, client):
|
||||
try:
|
||||
auth_key = base64.b64encode(client.auth_key).decode()
|
||||
auth_key = [auth_key[i: i + 43] for i in range(0, len(auth_key), 43)]
|
||||
|
||||
data = dict(
|
||||
dc_id=client.dc_id,
|
||||
test_mode=client.test_mode,
|
||||
auth_key=auth_key,
|
||||
user_id=client.user_id,
|
||||
date=int(time.time()),
|
||||
peers_by_id={
|
||||
k: getattr(v, "access_hash", None)
|
||||
for k, v in client.peers_by_id.items()
|
||||
},
|
||||
peers_by_username={
|
||||
k: utils.get_peer_id(v)
|
||||
for k, v in client.peers_by_username.items()
|
||||
},
|
||||
peers_by_phone={
|
||||
k: utils.get_peer_id(v)
|
||||
for k, v in client.peers_by_phone.items()
|
||||
}
|
||||
)
|
||||
|
||||
with open("{}.sync".format(client.session_name), "w", encoding="utf-8") as f:
|
||||
json.dump(data, f, indent=4)
|
||||
|
||||
f.flush()
|
||||
os.fsync(f.fileno())
|
||||
except Exception as e:
|
||||
log.critical(e, exc_info=True)
|
||||
else:
|
||||
shutil.move(
|
||||
"{}.sync".format(client.session_name),
|
||||
"{}.session".format(client.session_name)
|
||||
)
|
||||
|
||||
log.info("Synced {}".format(client.session_name))
|
||||
finally:
|
||||
try:
|
||||
os.remove("{}.sync".format(client.session_name))
|
||||
except OSError:
|
||||
pass
|
Loading…
x
Reference in New Issue
Block a user