-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen-script.sh
executable file
·66 lines (51 loc) · 1.48 KB
/
gen-script.sh
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
#!/usr/bin/env bash
set -eou pipefail
day=$1
year=$2
if [ -z "$day" ]; then
echo "enter day"
exit 0
fi
if (("$day" > 25 || "$day" < 1)); then
echo "invalid day $1"
exit 0
fi
if (("$year" < 2015 || "$year" > $(date +"%Y"))); then
echo "no AOC for year: $2"
exit 0
fi
if [[ -f ".aoc_session" ]]; then
aoc_session=$(<".aoc_session")
fi
if [ -z "$aoc_session" ]; then
echo "session missing, cannot continue."
exit 0
fi
valid_session=$(curl -s "https://adventofcode.com/${year}/day/1/input" --cookie "session=${aoc_session}")
if [[ $valid_session =~ "Puzzle inputs differ by user." ]] || [[ $valid_session =~ "500 Internal Server" ]]; then
echo "invalid SESSION, cannot continue."
exit 0
fi
dir="clojure/src/clj/aoc/${year}"
file="day${day}.clj"
if [[ ! -d "$dir" ]]; then
mkdir -p $dir
fi
if [[ ! -f "${dir}/${file}" ]]; then
touch "${dir}/${file}"
echo -n "(ns aoc.${year}.day${day}
(:require
[clojure.string :as string]
[clojure.java.io :as io]))
(def input (-> \"../input/${year}/day${day}.txt\" slurp))
(def sample-input (-> \"../input/${year}/day${day}-ex.txt\" slurp))" > "${dir}/${file}"
fi
if [[ -f "input/${year}/day${day}.txt" ]]; then
echo "Script already ran for ${year} - ${day}"
exit 0
fi
if [[ ! -d "input/${year}" ]]; then
mkdir -p "input/${year}"
fi
touch "input/${year}/day${day}-ex.txt"
curl -s "https://adventofcode.com/${year}/day/${day}/input" --cookie "session=${aoc_session}" -o "input/${year}/day${day}.txt"