|
9 | 9 | import stat
|
10 | 10 | import sys
|
11 | 11 | import traceback
|
| 12 | +import subprocess |
12 | 13 | from enum import Enum
|
13 |
| -from os import path, remove |
| 14 | +import re |
| 15 | +from os import path , remove |
14 | 16 | from typing import Dict, List, NamedTuple, Optional, Tuple
|
| 17 | +import path as pt |
| 18 | + |
15 | 19 |
|
16 | 20 | import requests
|
17 | 21 | from urwid import display_common, set_encoding
|
@@ -226,6 +230,11 @@ def parse_args(argv: List[str]) -> argparse.Namespace:
|
226 | 230 | help="profile runtime",
|
227 | 231 | )
|
228 | 232 |
|
| 233 | + parser.add_argument( |
| 234 | + "--encrypt", |
| 235 | + help="encrypt the hash using SHA256 algorithm", |
| 236 | + ) |
| 237 | + |
229 | 238 | return parser.parse_args(argv)
|
230 | 239 |
|
231 | 240 |
|
@@ -312,10 +321,15 @@ def fetch_zuliprc(zuliprc_path: str) -> None:
|
312 | 321 | login_data = get_api_key(realm_url)
|
313 | 322 |
|
314 | 323 | preferred_realm_url, login_id, api_key = login_data
|
| 324 | + |
| 325 | + |
| 326 | + command = ['python3', os.path.join(os.path.dirname(__file__), '../../tools/encrypt.py'), '--encrypt', api_key] |
| 327 | + encrypted_key = subprocess.run(command, stdout=subprocess.PIPE, text=True) |
| 328 | + |
315 | 329 | save_zuliprc_failure = _write_zuliprc(
|
316 | 330 | zuliprc_path,
|
317 | 331 | login_id=login_id,
|
318 |
| - api_key=api_key, |
| 332 | + api_key=encrypted_key.stdout.strip(), |
319 | 333 | server_url=preferred_realm_url,
|
320 | 334 | )
|
321 | 335 | if not save_zuliprc_failure:
|
@@ -377,7 +391,6 @@ def parse_zuliprc(zuliprc_str: str) -> Dict[str, SettingData]:
|
377 | 391 | sys.exit(1)
|
378 | 392 |
|
379 | 393 | zuliprc = configparser.ConfigParser()
|
380 |
| - |
381 | 394 | try:
|
382 | 395 | res = zuliprc.read(zuliprc_path)
|
383 | 396 | if len(res) == 0:
|
@@ -532,7 +545,42 @@ def main(options: Optional[List[str]] = None) -> None:
|
532 | 545 |
|
533 | 546 | if args.notify:
|
534 | 547 | zterm["notify"] = SettingData(args.notify, ConfigSource.COMMANDLINE)
|
| 548 | + |
| 549 | + if args.encrypt: |
| 550 | + config_file = os.path.expanduser(args.encrypt) |
| 551 | + config_file = os.path.abspath(config_file) |
| 552 | + print(config_file) |
| 553 | + api_key,email,site='','','' |
| 554 | + if os.path.exists(config_file): |
| 555 | + config = configparser.ConfigParser() |
| 556 | + config.read(config_file) |
| 557 | + api_config = dict(config.items('api')) |
| 558 | + api_key = api_config['key'] |
| 559 | + email = api_config['email'] |
| 560 | + site = api_config['site'] |
| 561 | + else: |
| 562 | + exit_with_error(f"Could not access zuliprc file at {config_file}") |
| 563 | + sys.exit(1) |
| 564 | + if len(api_key) >= 64 : |
| 565 | + exit_with_error(f"API key is already encrypted") |
| 566 | + sys.exit(1) |
| 567 | + |
| 568 | + command = ['python3', os.path.join(os.path.dirname(__file__), '../../tools/encrypt.py'), '--encrypt', api_key] |
| 569 | + encrypted_key = subprocess.run(command, stdout=subprocess.PIPE, text=True) |
| 570 | + os.remove(config_file) |
| 571 | + save_zuliprc_failure = _write_zuliprc( |
| 572 | + config_file, |
| 573 | + login_id=email, |
| 574 | + api_key=encrypted_key.stdout.strip(), |
| 575 | + server_url=site, |
| 576 | + ) |
| 577 | + if not save_zuliprc_failure: |
| 578 | + print(f"Generated API key saved at {zuliprc_path}") |
| 579 | + else: |
| 580 | + exit_with_error(save_zuliprc_failure) |
| 581 | + sys.exit(0) |
535 | 582 |
|
| 583 | + |
536 | 584 | valid_remaining_settings = dict(
|
537 | 585 | VALID_BOOLEAN_SETTINGS,
|
538 | 586 | **{"color-depth": COLOR_DEPTH_ARGS_TO_DEPTHS},
|
|
0 commit comments