This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/scripts/blocklist-skylink.sh

57 lines
1.9 KiB
Bash
Raw Normal View History

2020-06-01 09:17:44 +00:00
#! /usr/bin/env bash
2021-10-25 14:51:27 +00:00
# This script adds a skylink to the sia blocklist and removes the skylink from
# nginx cache. The script should be run locally on each skynet webportal
# server. The automatic script that is used to continuously sync an Airtable
# sheet list with the blocklist on the web portals is
# /setup-scripts/blocklist-airtable.py
2020-06-01 09:17:44 +00:00
set -e # exit on first error
if [ -z "$1" ]; then
2020-11-24 13:51:20 +00:00
echo "Please provide either a skylink or file with skylinks separated by new lines" && exit 1
2020-06-01 09:17:44 +00:00
fi
#########################################################
# read either a file containing skylinks separated by new
# lines or a single skylink and put them in an array
#########################################################
skylinks=()
if test -f "$1"; then
line_number=1
2021-10-25 14:51:27 +00:00
# Read file including the last line even when it doesn't end with newline
while IFS="" read -r line || [ -n "$line" ];
do
2021-10-25 14:51:27 +00:00
if [[ $line =~ (^[a-zA-Z0-9_-]{46}$) ]]; then
skylinks+=("$line")
else
echo "Incorrect skylink at line ${line_number}: $line" && exit 1
fi
let line_number+=1
done < $1;
else
skylinks=("$1") # just single skylink passed as input argument
fi
2021-10-25 14:51:27 +00:00
for skylink in "${skylinks[@]}";
2020-06-01 09:17:44 +00:00
do
2021-10-25 14:51:27 +00:00
echo ".. ⌁ Blocking skylink ${skylink}"
# Add to Sia blocklist
docker exec sia siac skynet blocklist add "${skylink}"
# Remove from NGINX cache
# NOTE:
# If there are changes to how the NGINX cache is being cleared, the same
# changes need to be applied to the /setup-scripts/blocklist-airtable.py
# script.
2021-10-25 14:51:27 +00:00
cached_files_command="find /data/nginx/cache/ -type f | xargs -r grep -Els '^Skynet-Skylink: ${skylink}'"
2021-10-27 08:55:09 +00:00
docker exec -it nginx bash -c "${cached_files_command} | xargs -r rm"
2021-10-25 14:51:27 +00:00
echo ".. ⌁ Skylink ${skylink} Blocked"
echo "--------------------------------------------"
2020-06-01 09:17:44 +00:00
done
echo "✓ All done !"