-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathexport_browser_history.sh
executable file
·163 lines (144 loc) · 5.14 KB
/
export_browser_history.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/usr/bin/env bash
#
# Helper script to export browser history and bookmarks to a format ArchiveBox can ingest.
# Usage:
# curl -O 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/dev/bin/export_browser_history.sh'
# bash export_browser_history.sh --chrome
# bash export_browser_history.sh --firefox
# bash export_browser_history.sh --safari
# ls
# chrome_history.json
# chrome_bookmarks.json
# firefox_history.json
# firefox_bookmarks.json
# safari_history.json
#
# Assumptions:
#
# * you're running this on macOS or Linux
# * you're running a reasonably modern version of Bash
# * macOS users: `brew install bash`
#
# Dependencies:
#
# * sqlite
# * jq (for chrome bookmarks)
#
set -eo pipefail
BROWSER_TO_EXPORT="${1?Please specify --chrome, --firefox, or --safari}"
OUTPUT_DIR="$(pwd)"
is_linux() {
[[ "$(uname -s)" == "Linux" ]]
}
find_firefox_places_db() {
# shellcheck disable=SC2012 # `ls` with path expansion is good enough, don't need `find`
if is_linux; then
ls ~/.mozilla/firefox/*.default*/places.sqlite | head -n 1
else
ls ~/Library/Application\ Support/Firefox/Profiles/*.default*/places.sqlite | head -n 1
fi
}
find_chrome_history_db() {
if is_linux; then
local config_home="${XDG_CONFIG_HOME:-${HOME}/.config}"
for path in \
"${config_home}/chromium/Default/History" \
"${config_home}/google-chrome/Default/History";
do
if [ -f "${path}" ]; then
echo "${path}"
return
fi
done
echo "Unable to find Chrome history database. You can supply it manually as a second parameter." >&2
exit 1
else
echo ~/Library/Application\ Support/Google/Chrome/Default/History
fi
}
export_chrome() {
if [[ -e "$2" ]]; then
cp "$2" "$OUTPUT_DIR/chrome_history.db.tmp"
else
default="$(find_chrome_history_db)"
echo "Defaulting to history db: $default"
echo "Optionally specify the path to a different sqlite history database as the 2nd argument."
cp "$default" "$OUTPUT_DIR/chrome_history.db.tmp"
fi
sqlite3 "$OUTPUT_DIR/chrome_history.db.tmp" "
SELECT '[' || group_concat(
json_object('timestamp', last_visit_time, 'description', title, 'href', url)
) || ']'
FROM urls;" > "$OUTPUT_DIR/chrome_history.json"
jq '.roots.other.children[] | {href: .url, description: .name, timestamp: .date_added}' \
< "$(dirname "${2:-$default}")"/Bookmarks \
> "$OUTPUT_DIR/chrome_bookmarks.json"
rm "$OUTPUT_DIR"/chrome_history.db.*
echo "Chrome history exported to:"
echo " $OUTPUT_DIR/chrome_history.json"
echo " $OUTPUT_DIR/chrome_bookmarks.json"
}
export_firefox() {
if [[ -e "$2" ]]; then
cp "$2" "$OUTPUT_DIR/firefox_history.db.tmp"
else
default="$(find_firefox_places_db)"
echo "Defaulting to history db: $default"
echo "Optionally specify the path to a different sqlite history database as the 2nd argument."
cp "$default" "$OUTPUT_DIR/firefox_history.db.tmp"
fi
sqlite3 "$OUTPUT_DIR/firefox_history.db.tmp" "
SELECT
'[' || group_concat(
json_object(
'timestamp', last_visit_date,
'description', title,
'href', url
)
) || ']'
FROM moz_places;" > "$OUTPUT_DIR/firefox_history.json"
sqlite3 "$OUTPUT_DIR/firefox_history.db.tmp" "
with recursive tags AS (
select id, title, '' AS tags
FROM moz_bookmarks
where parent == 0
UNION ALL
select c.id, p.title, c.title || ',' || tags AS tags
from moz_bookmarks AS c
JOIN tags AS p
ON c.parent = p.id
)
SELECT '[' || group_concat(json_object('timestamp', b.dateAdded, 'description', b.title, 'href', f.url, 'tags', tags.tags)) || ']'
FROM moz_bookmarks AS b
JOIN moz_places AS f ON f.id = b.fk
JOIN tags ON tags.id = b.parent
WHERE f.url LIKE '%://%';" > "$OUTPUT_DIR/firefox_bookmarks.json"
rm "$OUTPUT_DIR"/firefox_history.db.*
echo "Firefox history exported to:"
echo " $OUTPUT_DIR/firefox_history.json"
echo " $OUTPUT_DIR/firefox_bookmarks.json"
}
export_safari() {
if [[ -e "$2" ]]; then
cp "$2" "$OUTPUT_DIR/safari_history.db.tmp"
else
default=~"/Library/Safari/History.db"
echo "Defaulting to history db: $default"
echo "Optionally specify the path to a different sqlite history database as the 2nd argument."
cp "$default" "$OUTPUT_DIR/safari_history.db.tmp"
fi
sqlite3 "$OUTPUT_DIR/safari_history.db.tmp" "select url from history_items" > "$OUTPUT_DIR/safari_history.json"
rm "$OUTPUT_DIR"/safari_history.db.*
echo "Safari history exported to:"
echo " $OUTPUT_DIR/safari_history.json"
}
if [[ "$BROWSER_TO_EXPORT" == "--chrome" ]]; then
export_chrome "$@"
elif [[ "$BROWSER_TO_EXPORT" == "--firefox" ]]; then
export_firefox "$@"
elif [[ "$BROWSER_TO_EXPORT" == "--safari" ]]; then
export_safari "$@"
else
echo "Unrecognized argument: $1" >&2
exit 1
fi