-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaoc-badges.py
82 lines (72 loc) · 2.27 KB
/
aoc-badges.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import requests
import json
import os
import re
import io
from datetime import date, timedelta, datetime
import pytz
# environment variables
year = os.getenv('INPUT_YEAR')
leaderboard = os.getenv('INPUT_LEADERBOARD')
session = os.getenv('INPUT_SESSION')
readme = os.getenv('INPUT_FILE')
userid = os.getenv('INPUT_USERID')
day_regex = os.getenv('INPUT_DAYREGEX')
stars_regex = os.getenv('INPUT_STARSREGEX')
days_completed_regex = os.getenv('INPUT_DAYSCOMPLETEDREGEX')
if year is None or not year:
year = date.today().year
else:
try:
year = int(year)
except ValueError:
print('year input is not an integer')
exit(1)
if leaderboard is None or not leaderboard:
leaderboard = f'https://adventofcode.com/{year}/leaderboard/private/view/{userid}.json'
# fetch stars
cookie = {'session': session}
print('Fetching leaderboard data from : ' + leaderboard)
r = requests.get(leaderboard, cookies=cookie)
if r.status_code != 200:
print(f'Leaderboard API returned status code {r.status_code}: {r.text}')
exit(1)
try:
data = json.loads(r.text)
except json.JSONDecodeError as err:
print('Could not parse leaderboard json. Is the leaderboard url correct & your session code valid?')
print(err)
exit(1)
# noinspection PyUnboundLocalVariable
stars = data['members'][userid]['stars']
# completed days
days_completed = 0
for day in data['members'][userid]['completion_day_level']:
if '2' in data['members'][userid]['completion_day_level'][day]:
days_completed += 1
# Set the timezone to New York
new_york_tz = pytz.timezone('America/New_York')
# Get the current time in New York
today = datetime.now(new_york_tz).date()
# Your existing logic to determine the day
if today < datetime(year, 12, 1, tzinfo=new_york_tz).date():
day = 0
elif today > datetime(year, 12, 31, tzinfo=new_york_tz).date():
day = 24
else:
day = today.day
print(f'Day: {day}')
print(f'Stars: {stars}')
print(f'Days completed: {days_completed}')
# read file
f = io.open(readme, mode='r', encoding='utf-8')
txt = f.read()
f.close()
# replace values
txt = re.sub(day_regex, str(day), txt)
txt = re.sub(stars_regex, str(stars), txt)
txt = re.sub(days_completed_regex, str(days_completed), txt)
# write back file
f = io.open(readme, mode='w', encoding='utf-8')
f.write(txt)
f.close()