pypush-plus-plus/demo.py

120 lines
3.5 KiB
Python
Raw Normal View History

2023-05-02 12:39:11 +00:00
import json
2023-07-26 11:50:48 +00:00
import logging
from base64 import b64decode, b64encode
2023-08-15 13:05:08 +00:00
from subprocess import PIPE, Popen
2023-05-02 12:39:11 +00:00
2023-07-23 22:55:13 +00:00
from rich.logging import RichHandler
2023-07-26 11:50:48 +00:00
import apns
import ids
2023-07-28 15:53:13 +00:00
import imessage
2023-07-26 11:50:48 +00:00
2023-08-19 15:27:44 +00:00
import trio
2023-07-23 22:55:13 +00:00
logging.basicConfig(
2023-07-26 22:49:41 +00:00
level=logging.NOTSET, format="%(message)s", datefmt="[%X]", handlers=[RichHandler()]
2023-07-23 22:55:13 +00:00
)
# Set sane log levels
logging.getLogger("urllib3").setLevel(logging.WARNING)
2023-08-15 13:05:08 +00:00
logging.getLogger("py.warnings").setLevel(logging.ERROR) # Ignore warnings from urllib3
2023-07-31 17:25:19 +00:00
logging.getLogger("asyncio").setLevel(logging.WARNING)
2023-07-23 22:55:13 +00:00
logging.getLogger("jelly").setLevel(logging.INFO)
logging.getLogger("nac").setLevel(logging.INFO)
2023-08-18 02:05:18 +00:00
logging.getLogger("apns").setLevel(logging.INFO)
2023-07-24 13:18:21 +00:00
logging.getLogger("albert").setLevel(logging.INFO)
logging.getLogger("ids").setLevel(logging.DEBUG)
2023-07-31 17:08:57 +00:00
logging.getLogger("bags").setLevel(logging.INFO)
2023-08-18 02:05:18 +00:00
logging.getLogger("imessage").setLevel(logging.INFO)
2023-05-03 00:53:18 +00:00
logging.captureWarnings(True)
2023-08-18 02:05:18 +00:00
process = Popen(["git", "rev-parse", "HEAD"], stdout=PIPE) # type: ignore
2023-08-15 13:05:08 +00:00
(commit_hash, err) = process.communicate()
exit_code = process.wait()
commit_hash = commit_hash.decode().strip()
2023-05-09 21:03:27 +00:00
# Try and load config.json
try:
with open("config.json", "r") as f:
CONFIG = json.load(f)
except FileNotFoundError:
CONFIG = {}
2023-05-02 12:39:11 +00:00
2023-08-15 13:05:08 +00:00
# Re-register if the commit hash has changed
if CONFIG.get("commit_hash") != commit_hash:
logging.warning("pypush commit is different, forcing re-registration...")
CONFIG["commit_hash"] = commit_hash
if "id" in CONFIG:
del CONFIG["id"]
2023-07-26 11:50:48 +00:00
2023-05-09 22:48:44 +00:00
def safe_b64decode(s):
try:
return b64decode(s)
except:
return None
2023-07-26 11:50:48 +00:00
2023-08-18 00:23:56 +00:00
async def main():
token = CONFIG.get("push", {}).get("token")
if token is not None:
token = b64decode(token)
else:
token = b""
2023-08-18 00:23:56 +00:00
push_creds = apns.PushCredentials(
CONFIG.get("push", {}).get("key", ""), CONFIG.get("push", {}).get("cert", ""), token)
2023-08-18 00:23:56 +00:00
async with apns.APNSConnection.start(push_creds) as conn:
await conn.set_state(1)
await conn.filter(["com.apple.madrid"])
2023-08-18 00:23:56 +00:00
user = ids.IDSUser(conn)
user.auth_and_set_encryption_from_config(CONFIG)
2023-08-18 00:23:56 +00:00
# Write config.json
CONFIG["encryption"] = {
"rsa_key": user.encryption_identity.encryption_key,
"ec_key": user.encryption_identity.signing_key,
}
CONFIG["id"] = {
"key": user._id_keypair.key,
"cert": user._id_keypair.cert,
}
CONFIG["auth"] = {
"key": user._auth_keypair.key,
"cert": user._auth_keypair.cert,
"user_id": user.user_id,
"handles": user.handles,
}
CONFIG["push"] = {
"token": b64encode(user.push_connection.credentials.token).decode(),
"key": user.push_connection.credentials.private_key,
"cert": user.push_connection.credentials.cert,
}
with open("config.json", "w") as f:
json.dump(CONFIG, f, indent=4)
im = imessage.iMessageUser(conn, user)
# Send a message to myself
2023-08-19 15:27:44 +00:00
async with trio.open_nursery() as nursery:
nursery.start_soon(input_task, im)
nursery.start_soon(output_task, im)
async def input_task(im: imessage.iMessageUser):
while True:
cmd = await trio.to_thread.run_sync(input, "> ", cancellable=True)
if cmd != "":
await im.send(imessage.iMessage.create(im, cmd, [im.user.current_handle]))
async def output_task(im: imessage.iMessageUser):
while True:
msg = await im.receive()
print(str(msg))
if __name__ == "__main__":
trio.run(main)