-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetch-input
executable file
·76 lines (61 loc) · 1.8 KB
/
fetch-input
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
#! /usr/bin/env bash
# Copyright 2022 Ole Walkenhorst
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.
set -eu
function usage() {
echo "Usage: $0 [-h] [-o OUTDIR] [-f FILENAME] [-y YEAR] [-d DAY]"
}
OUTDIR=inputs
FILENAME=''
CURRENTYEAR="$( date +%Y )"
YEAR="$CURRENTYEAR"
TODAY="$( date +%-d )"
DAY="$TODAY"
shopt -s extglob
while getopts ":ho:f:y:d:" opt; do
case "$opt" in
h) usage && exit 0;;
o) OUTDIR="$OPTARG";;
f) FILENAME="$OPTARG";;
y) YEAR="$OPTARG";;
d) DAY="${OPTARG##+(0)}";;
:) echo "Option '$OPTARG' missing a required argument." && exit 1;;
\?) echo "Invalid option $OPTARG" && exit 1;;
esac
done
shift $(( OPTIND - 1 ))
if [[ "$#" -gt 0 ]]; then
echo "Invalid positional argument $1" >&2
exit 1
fi
if [[ "$YEAR" -lt 2015 || "$YEAR" -gt "$CURRENTYEAR" ]]; then
echo "YEAR must be between 2015 and $CURRENTYEAR inclusive." >&2
exit 1
fi
if [[ "$DAY" -lt 1 || "$DAY" -gt 25 ]]; then
echo "DAY must be between 1 and 25 inclusive." >&2
exit 1
fi
[[ -f '.env' ]] && source '.env'
cookie=${SESSION_COOKIE?SESSION_COOKIE must be set.}
response=$(curl -s "https://adventofcode.com/$YEAR/day/$DAY/input" \
-H "Cookie: session=$cookie")
if [[ "$response" == *"Please don't repeatedly request this endpoint before it unlocks!"* ]]; then
echo "Day $DAY is not unlocked, yet" >&2
exit 2
fi
if [[ ! -d "$OUTDIR" ]]; then
mkdir -p "$OUTDIR"
fi
filepath="$OUTDIR/${FILENAME:-"input.$DAY"}"
if [[ -f "$filepath" ]]; then
echo "File already exists '$filepath'" >&2
exit 2
fi
echo "$response" > "$filepath"
echo "Wrote '$filepath'"
exit 0