diff --git a/scripts/spotify-current-track-id b/scripts/spotify-current-track-id index ac022d5..5591bcb 100755 --- a/scripts/spotify-current-track-id +++ b/scripts/spotify-current-track-id @@ -36,7 +36,7 @@ def main() -> int: print(f"Failed to connect to 1Password: {e}", file=sys.stderr) return 1 - # # Read API credentials + # Read API credentials spotify_creds = op.item_get("rio7e6skp6bhkkcdo5w3kmabgq", vault="ewconfig") # Connect to Spotify diff --git a/scripts/trello-dump-card b/scripts/trello-dump-card index f5f8cf7..305bf2f 100755 --- a/scripts/trello-dump-card +++ b/scripts/trello-dump-card @@ -2,16 +2,13 @@ import argparse import sys import logging -import subprocess +import pyonepassword import requests import json -from pathlib import Path logger = logging.getLogger(__name__) -TRELLO_KEY = "fba640a85f15c91e93e6b3f88e59489c" - def main() -> int: # Handle program arguments ap = argparse.ArgumentParser( @@ -30,47 +27,37 @@ def main() -> int: format="%(levelname)s: %(message)s", ) - # Call `ewp-secrets` to obtain the Trello API token - secrets_proc = subprocess.run( - [ - (Path(__file__).parent / "ewp-secrets").as_posix(), - "load", - "-n", - "ewpratten", - "-k", - "trello-api-token", - ], - capture_output=True, - ) - - # If the secret manager failed, exit - if secrets_proc.returncode != 0: - print("Failed to load Trello API token", file=sys.stderr) - print( - "Please run `ewp-secrets store -n ewpratten -k trello-api-token` to set a token", - file=sys.stderr, - ) + # Connect to 1Password + try: + op = pyonepassword.OP() + except Exception as e: + print(f"Failed to connect to 1Password: {e}", file=sys.stderr) return 1 - # Extract the Trello API token - trello_api_token = secrets_proc.stdout.decode().strip() - + # Read API credentials + trello_creds = op.item_get("cbnd5vv3germmc4korkxx3nsim", vault="ewconfig") + # Get all cards response = requests.get( f"https://api.trello.com/1/boards/{args.board}/cards", - params=dict(key=TRELLO_KEY, token=trello_api_token), + params={ + "key": trello_creds.first_field_by_label("api key").value, + "token": trello_creds.first_field_by_label("credential").value, + }, ) response.raise_for_status() cards = response.json() - + # Find the card - card = next((card for card in cards if card["shortLink"] == args.card_short_link), None) - + card = next( + (card for card in cards if card["shortLink"] == args.card_short_link), None + ) + # If no card was found, fail if not card: logger.error(f"Card {args.card_short_link} not found") return 1 - + # Dump the card print(json.dumps(card, indent=4))