forked from humor4fun/slack-backup
-
Notifications
You must be signed in to change notification settings - Fork 2
/
slack-backup.sh
510 lines (437 loc) · 14.5 KB
/
slack-backup.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#!/bin/bash
# slack-backup.sh
# by Chris Holt 2016-04-18; mikeybeck 09/10/2016
# Purpose:
# Download slack history then convert it into browsable HTML files
# https://github.com/humor4fun/slack-backup (original)
# https://github.com/mikeybeck/slack-backup (this version)
##################################
# environment variables
START=$(date +%s)
version="1.98"
author="Chris Holt, @humor4fun; minor edits by @mikeybeck"
date="2016-10-09"
usage="Slack Backup by $author
Version: $version
Last updated date: $date
Usage:
slack-backup.sh -t token [options]
TOKEN is the only required variable, if no Group, Channel or User options are specified, only USERS will be queried and this list will be force-fetched. Use \"slack-backup.sh --setup\" first before attempting to use the main body of this script.
Options:
-a | --all
Implies --fetch --bypass-warnings. Use the web APIs to force a download of ALL Public Channels, Private Groups (the user has access to) and Direct Message conversations.
Note: This WILL take quite a while! Use with caution.
-A | --all-users
Fetch all users to put into the Direct Messages list.
Note: This WILL take quite a while! Use with caution if downloading conversations for this list.
-c | --public-channels FILE
FILE to read list of channel names for pulling Public Channel conversations.
-d | --debug-on
Keep the Debug folder after the script executes. Defaults to OFF so this folder will be deleted, saving disk space.
-f | --fetch
Fetches the user lists for public, private and DM messages. Stores them in local files for later use.
-F | --fetch-only
Like --fetch, but quits the remaining script execution afterwards. This will still perform all of the setup but will not execute the conversation download or cleaning.
-g | --private-groups FILE
FILE to read list of group names for pulling Private Group conversations.
-h | --help
Display this help message.
-m | --direct-messages FILE
FILE to read list of usernames for pulling Direct Message conversations.
-r | --reverse
Chronologically reverse message output.
-s | --setup
Run the software setup and check steps. This can take 1 - 5 minutes to execute.
-t | --slack-token-file FILE
Text FILE containing the Slack API token.
-T | --slack-token TOKEN
Slack token embedded into the command parameters.
NOTE: Token can be generated here: https://api.slack.com/web
-w | --bypass-warnings
Automatically continue even if warnings occur during setup. \n"
printf "Slack-Backup v%s by %s\n" "$version" "$author"
##################################
##################################
# read input from command line
# Use > 0 to consume one or more arguments per pass in the loop (e.g. some arguments don't have a corresponding value to go with it such as in the --default example).
slack_token="x"
dm_file="x"
dm_do=true
public_file="x"
public_do=false
private_file="x"
private_do=false
cont=false
setup=false
help=false
fetch=false
fetch_only=false
all=false
debug_off=true
fetch_all_users=false
fetch_users=false
fetch_public=false
fetch_private=false
reverse=false
while [[ $# > 0 ]]
do
key="$1"
case $key in
-t|--slack-token-file)
slack_token="`cat $2`"
shift # past argument
;;
-T|--slack-token)
slack_token="$2"
shift # past argument
;;
-m|--direct-messages)
dm_file="$2"
dm_do=true
shift # past argument
;;
-c|--public-channels)
public_file="$2"
public_do=true
shift # past argument
;;
-g|--private-groups)
private_file="$2"
private_do=true
shift # past argument
;;
-a|--all) # parse all userIDs
all=true
fetch=true
cont=true
;;
-A|--all-users) # fetch entire users list
fetch_all_users=true
dm_do=true
;;
-f|--fetch)
fetch=true
;;
-F|--fetch-only)
fetch=true
fetch_only=true
;;
-h|--help)
help=true
;;
-w|--bypass-warnings)
cont=true
;;
-s|--setup)
setup=true
;;
-d|--debug-on)
debug_off=false;
;;
-r|--reverse)
reverse=true;
;;
*) # unknown option
;;
esac
shift # past argument or value
done
##################################
##################################
# check for input errors and fail
if ( $help )
then
printf "%s" "$usage"
exit 200
else #prep the folders
directory="slack-backup_`date +%Y-%m-%d-%H.%M.%S`"
debug="$directory/_debug"
logs="$debug/logs"
mkdir $directory $debug $logs
mkdir $logs/she_pg $logs/she_dm $logs/she_pc $logs/users
mkdir $debug/users
fi
if ( $setup )
then
printf "Performing software updates/installs to make sure you have everything we need, then we'll get started.\n"
apt-get -y install php5-common php5-cli wget 1>$logs/setup1.log 2>&1
wget -qO- https://deb.nodesource.com/setup_4.x | bash - 1>$logs/setup2.log 2>&1
apt-get -y install nodejs 1>$logs/setup3.log 2>&1
wget -qO- https://deb.nodesource.com/setup_6.x | bash - 1>$logs/setup4.log 2>&1
apt-get -y install nodejs 1>$logs/setup5.log 2>&1
npm install npm -g 1>$logs/setup6.log 2>&1
npm install slack-history-export -g 1>$logs/setup7.log 2>&1
printf "\n"
exit 200
fi
if [[ $slack_token == "x" ]]
then
printf "ERROR: cannot proceed with (%s) as the Slack API token. Please supply your Slack API token as a parameter." "$slack_token"
printf "Use --help for more information."
exit 404
fi
#check Slack token for auth
printf "Checking Slack Token for valid auth..."
wget https://slack.com/api/auth.test?token=$slack_token -O $debug/auth.test 1>$logs/wget_auth.log 2>&1
auth=`cat $debug/auth.test | grep -m 1 "\"ok\": true,"`
if ! ( $auth )
then
printf "API Token not authorized. Quitting."
exit 401
fi
printf "done.\n"
# check for input warnings and notify
warn=false
if [[ $private_file == "x" ]]
then
printf "\tWARNING: proceeding without the list of Private Groups. If required, this list will be fetched.\n"
warn=true
fetch_private=true
fetch=true
private_file="private.list"
fi
if [[ $public_file == "x" ]]
then
printf "\tWARNING: proceeding without the list of Public Channels. If required, this list will be fetched.\n"
warn=true
fetch_public=true
fetch=true
public_file="public.list"
fi
if [[ $dm_file == "x" ]]
then
printf "\tWARNING: proceeding without the list of Direct Message personnel. If required, this list will be fetched.\n"
warn=true
fetch_users=true
dm_file="dm.list"
fetch=true
if ( $fetch_all_users )
then
fetch_users=false
fi
fi
if ( $warn && ! $cont ) #check for suppression
then #ask if the user wants to contninue with warnings
printf "Warnings were generated, continue? (y/N) "
read cont
if ! [[ $cont == "y" || $cont == "Y" ]]
then
exit 301
fi
fi
#check that files are set
if ( $fetch || $fetch_only || $all ) #unneccessary checks, but still, good writing form
then
dm_file="dm.list"
private_file="groups.list"
public_file="channels.list"
fi
##################################
##################################
# software prep
printf "Setting up working environment..."
#wget "https://gist.githubusercontent.com/dharmastyle/5d1e8239c5684938db0b/raw/cf1afe32967c6b497ed1ed97ca4a8ab5ee3df953/slack2html.php" -O $directory/slack2html.php 1>$logs/wget_tools1.log 2>&1
#wget "https://gist.githubusercontent.com/mikeybeck/63ada751da761e5c4036e5b454fcdf0d/raw/aa67a96970539f337859a7cd019fda2d232b1d3d/slack2html.php" -O $directory/slack2html.php 1>$logs/wget_tools1.log 2>&1
wget "http://home.mikeybeck.com/teststuff/slack2html.txt" -O $directory/slack2html.php 1>$logs/wget_tools1.log 2>&1
chmod 777 $directory/slack2html.php
printf "done.\n"
##################################
##################################
# fetch metadata
#Get a json response from the slack API then clean it up; remove the first X lines of the responses that show:
#{
# "ok": true,
# "channels":
## and the last line that shows:
#}
# from all files created as a result of the wget api calls.
printf "Getting Channel meta data..."
wget https://slack.com/api/channels.list?token=$slack_token -O "channels.list.json" 1>$logs/wget_meta01.log 2>&1
cat channels.list.json | sed 's/{\"ok\":true,\"channels\"://1' | sed '$ s/.$//' > channels.json
mv channels.list.json $debug
mv channels.json $directory
printf "done.\n"
printf "Getting Users meta data..."
wget https://slack.com/api/users.list?token=$slack_token -O "users.list.json" 1>$logs/wget_meta02.log 2>&1
cat users.list.json | sed 's/{\"ok\":true,\"members\"://1' | sed '$ s/.$//' > users.json
mv users.list.json $debug
mv users.json $directory
printf "done.\n"
printf "Getting IntegrationLogs data..."
wget https://slack.com/api/team.integrationLogs.list?token=$slack_token -O "team.integrationLogs.json" 1>$logs/wget_meta03.log 2>&1
#if you are an admin then use this
#cat team.integrationLogs.json | sed 's/{\"ok\":true,\"members\"://1' |sed '$ s/.$//' > integration_logs.json
#else use this default to create the blank file
#most users won't have slack-admin rights for this, check for an error and if it occured then just write a blank file "[\n]"
printf "[\n\n]" >> integration_logs.json
mv team.integrationLogs.json $debug
mv integration_logs.json $directory
printf "done.\n"
printf "Getting additional meta data..."
wget https://slack.com/api/team.info?token=$slack_token -O "$debug/team.info.json" 1>$logs/wget_meta04.log 2>&1
wget https://slack.com/api/reminders.list?token=$slack_token -O "$debug/reminders.list.json" 1>$logs/wget_meta05.log 2>&1
wget https://slack.com/api/emoji.list?token=$slack_token -O "$debug/emoji.list.json" 1>$logs/wget_meta06.log 2>&1
wget https://slack.com/api/im.list?token=$slack_token -O "$debug/im.list.json" 1>$logs/wget_meta07.log 2>&1
wget https://slack.com/api/groups.list?token=$slack_token -O "$debug/groups.list.json" 1>$logs/wget_meta08.log 2>&1
wget https://slack.com/api/channels.list?token=$slack_token -O "$debug/channels.list.json" 1>$logs/wget_meta09.log 2>&1
wget https://slack.com/api/mpim.list?token=$slack_token -O "$debug/mpim.list.json" 1>$logs/wget_meta10.log 2>&1 #slack-history-export can't handle these yet
printf "done.\n"
##################################
##################################
# get message data and parse it through the first pass of cleansing
if ( $fetch )
then
printf "Parsing chat thread lists for names..."
if ( $fetch_all_users )
then
cat $debug/users.list.json | tr , '\n' | grep -Po '"name":".*"' | sed 's/.*\":\"//g' | sed 's/"//g' > $dm_file
fi
if ( $fetch_users )
then
cat $debug/im.list.json | tr , '\n' | grep -Po '"user":".*"' | sed 's/.*\":\"//g' | sed 's/"//g' > $debug/im.list
usr_file=()
mapfile -t user_list < $debug/im.list
for user in "${user_list[@]}"
do
wget "https://slack.com/api/users.info?token=$slack_token&user=$user" -O "$debug/users/$user.json" 1>$logs/users/$user.log 2>&1
usr_file+=(`cat $debug/users/$user.json | tr , '\n' | grep -Po '"name":".*"' | sed 's/.*\":\"//g' | sed 's/"//g'`)
done
printf "%s\n" "${usr_file[@]}" > $dm_file
fi
if ( $fetch_private )
then
cat $debug/groups.list.json | tr , '\n' | grep -Po '"name":".*"' | sed 's/.*\":\"//g' | sed 's/"//g' > $private_file
fi
if ( $fetch_public )
then
cat $debug/channels.list.json | tr , '\n' | grep -Po '"name":".*"' | sed 's/.*\":\"//g' | sed 's/"//g' > $public_file
fi
printf "done.\n"
if ( $fetch_only )
then
exit 200
fi
fi
if ( $dm_do || $all )
then
printf "Getting Direct Messages..."
touch $dm_file.act $dm_file.drop
rDIR=0
rADIR=0
mapfile -t dm_list < $dm_file
for dm in "${dm_list[@]}"
do
rADIR=$(($rADIR + 1))
printf "%s, " "$dm"
dir="$directory/$dm"
mkdir $dir
slack-history-export --token $slack_token --username $dm --directory $dir 1>$logs/she_dm/$dm.log 2>&1
#printf "\nslack-history-export --token %s --username %s --directory %s 1>%s/she_dm/%s.log 2>&1\n" $slack_token $dm $dir $logs $dm
if [[ `ls -1 $dir | wc -l` -eq 0 ]]
then
rm -r $dir
sed -i '$ a $dm' $dm_file.drop
else
rDIR=$(($rDIR + 1))
sed -i '$ a $dm' $dm_file.act
fi
done
mv $dm_file.act $dm_file.drop $directory
printf "done!\n"
fi
if ( $private_do || $all )
then
printf "Getting Private Groups..."
touch $private_file.act $private_file.drop
rPRIV=0
rAPRIV=0
mapfile -t private_list < $private_file
for pg in "${private_list[@]}"
do
rAPRIV=$(($rAPRIV + 1))
printf "%s, " "$pg"
dir="$directory/$pg"
mkdir $dir
slack-history-export --token $slack_token --group $pg --directory $dir 1>$logs/she_pg/$pg.log 2>&1
if [[ `ls -1 $dir | wc -l` -eq 0 ]]
then
rm -r $dir
sed -i '$ a $dm' $private_file.drop
else
rPRIV=$(($rPRIV + 1))
sed -i '$ a $dm' $private_file.act
fi
done
mv $private_file.act $private_file.drop $directory
printf "done!\n"
fi
if ( $public_do || $all )
then
printf "Getting Public Channels..."
touch $public_file.act $public_file.drop
rPUB=0
rAPPUB=0
mapfile -t public_list < $public_file
for pc in "${public_list[@]}"
do
rAPUB=$(($rAPUB + 1))
printf "%s, " "$pc"
dir="$directory/$pc"
mkdir $dir
slack-history-export --token $slack_token --channel $pc --directory $dir 1>$logs/she_pc/$pc.log 2>&1
if [[ `ls -1 $dir | wc -l` -eq 0 ]]
then
rm -r $dir
sed -i '$ a $dm' $public_file.drop
else
rPUB=$(($rPUB + 1))
sed -i '$ a $dm' $public_file.act
fi
done
mv $public_file.act $public_file.drop $directory
printf "done!\n"
fi
printf "Finished downloading history.\n"
# clean up the data
printf "Making things pretty..."
cd $directory
if ( $reverse ) then
php slack2html.php reverse # 1>$logs/sj2h.log 2>&1
else
php slack2html.php # 1>$logs/sj2h.log 2>&1
fi
cd ..
printf "done.\n"
##################################
##################################
# clean up the environment
printf "\nCleaning up..."
mv $directory/slack2html.php $debug/ 1>$logs/cleanup01.log 2>&1
cp $dm_file $private_file $public_file $debug/ 1>$logs/cleanup02.log 2>&1
mv $directory/* $debug 1>$logs/cleanup03.log 2>&1
mv $directory/../slack2html/ $directory/ 1>$logs/cleanup04.log 2>&1
mv $dm_file $public_file $private_file $directory
if ( $debug_off )
then
rm -r $debug 1>$logs/cleanup05.log 2>&1
fi
printf "done.\n"
printf "\nCompleted Task.\n"
END=$(date +%s)
##################################
##################################
# print a report
SEC=$(( $END - $START ))
HOUR=$(( $SEC / 3600 ))
MIN=$(( ( $SEC % 3600 ) / 60 ))
SEC=$(( $SEC % 60 ))
REPORT="Execution Report:\n
Channels Counts\t\t\tChecked Downloaded
\tPrivate Groups:\t\t$rAPRIV\t$rPRIV
\tPublic Channels:\t$rAPUB\t$rPUB
\tDirect Messages:\t$rADIR\t$rDIR
Time to Complete: $HOUR:$MIN:$SEC\n"
printf "%s" "$REPORT"
printf "%s" "$REPORT" > $directory/benchmark.log
##################################
exit 200