Last active
September 25, 2024 01:41
-
-
Save yakatz/61e951c2144a733b376767cddc067310 to your computer and use it in GitHub Desktop.
Slack Auto-Backup Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
cd "$(dirname "$0")" | |
logger="logger --stderr --id=$$ --tag slack-archive" | |
metadata_filename="metadata.json" | |
$logger "Start Backup: $(pwd)" | |
if [[ ! -s $metadata_filename ]]; then | |
$logger --priority user.err "${metadata_filename} missing $(pwd)" | |
exit 1 | |
fi | |
if [[ ! -s slack-archive/.token ]] && [[ -z "${SLACK_TOKEN}" ]]; then | |
$logger --priority user.err "Slack OAuth Token missing $(pwd)" | |
exit 2 | |
fi | |
archive_args=$( jq .arguements $metadata_filename ) | |
$logger "CMD: $(pwd): /usr/bin/npx slack-archive ${archive_args//\"/""}" | |
/usr/bin/npx slack-archive ${archive_args//\"/""} | |
$logger "Archive Done, Committing to Git: $(pwd)" | |
git add -A | |
GIT_AUTHOR_NAME="slack-archive autocommit" GIT_AUTHOR_EMAIL="[email protected]" git commit -m "autocommit by slack-archive on $(hostname)" | |
git push | |
$logger "Git Commit Done: $(pwd)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules/ | |
slack-archive/.token | |
slack-archive/data_backup_* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"arguements": "--channel-types public_channel --automatic" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"slack-archive": "^1.6.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment