From 1d84e029409c5443b664829d5f7cb26556fe90b9 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 2 May 2020 17:31:12 +0200 Subject: [PATCH] Change lookup intervals, protonmail logins --- dotfiles/i3/blocks | 8 +++---- dotfiles/i3/scripts/protonmail | 44 +++++++++++++++++++++++++--------- install.py | 2 +- 3 files changed, 38 insertions(+), 16 deletions(-) diff --git a/dotfiles/i3/blocks b/dotfiles/i3/blocks index 4de12c7..9ded3ea 100644 --- a/dotfiles/i3/blocks +++ b/dotfiles/i3/blocks @@ -60,19 +60,19 @@ DISK=/run/media/flyingscorpio/Backup [ccurrency] command=scripts/ccurrency -f USD -interval=10 +interval=1800 [crypto] command=scripts/crypto BTC -interval=10 +interval=1800 [crypto] command=scripts/crypto UCA -b EUR -r 5 -interval=10 +interval=1800 [crypto] command=scripts/crypto BAT -r 5 -interval=10 +interval=1800 [protonvpn] interval=5 diff --git a/dotfiles/i3/scripts/protonmail b/dotfiles/i3/scripts/protonmail index b61d6d3..cf0eb6e 100755 --- a/dotfiles/i3/scripts/protonmail +++ b/dotfiles/i3/scripts/protonmail @@ -12,15 +12,37 @@ import requests def parse_cli() -> argparse.Namespace: """Parse credentials from the command line.""" + parser = argparse.ArgumentParser() + parser.add_argument("username") + parser.add_argument("password") -with requests.Session() as session: - req = session.post( - "https://mail.protonmail.com/api/auth", - data={ - "Username": "tfranken@protonmail.com", - }, - headers={ - "x-pm-appversion": "Web_3.16.23", - }, - ) - print(req.text) + return parser.parse_args() + + +def main(args: argparse.Namespace) -> None: + """Connect to ProtonMail.""" + + with requests.Session() as session: + main_url = "https://mail.protonmail.com" + + req = session.get(main_url) + + print(req.cookies) + + req = session.post( + "https://mail.protonmail.com/api/auth", + data={ + "Username": "tfranken@protonmail.com", + "ClientEphemeral": "123", + "ClientProof": "123", + "SRPSession": "123", + }, + headers={ + "x-pm-appversion": "Web_3.16.23", + }, + ) + print(req.text) + + +if __name__ == "__main__": + main(parse_cli()) diff --git a/install.py b/install.py index 2733578..a1a9c43 100755 --- a/install.py +++ b/install.py @@ -2,7 +2,7 @@ """Main installer file. -Shamelessly copied from https://github.com/dmerejkowsky/dotfiles. +Shamelessly copied from https://github.com/dmerejkowsky/dotfiles, and modified. """ import argparse