diff --git a/boorubot_v2.sh b/boorubot_v2.sh new file mode 100755 index 0000000..deca3df --- /dev/null +++ b/boorubot_v2.sh @@ -0,0 +1,104 @@ +#! /usr/bin/env sh + +# FediStatusPoster - Simple CLI tools and scripts to post to the fediverse +# Copyright (C) 2024 <@Anon@yandere.cc> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Requires: +# curl +# jq + +# Get the runtime path of the bot +ABS_PATH="$(readlink -f "$0")" +RUN_DIR="$(dirname "$ABS_PATH")" +ENTRY="${RUN_DIR}/../FediStatusPoster/runconfig.sh" + +# DEFAULT_CREDENTIALS="${RUN_DIR}/credentials/hentaibot.sh.gpg" +# DEFAULT_KEYFILE="/zfs_media/fs1/BotKeys/hentaibot.sh.key" +BOORU_URL="gelbooru.com" +BLACKLIST_HISTORY=50 +POS_ARGS=8 + +[ ! $# -ge $POS_ARGS ] &&\ + echo "Invalid number of arguments..." &&\ + echo "$(basename "$0") [default_credentials] [default_keyfile] [blacklist] [md5_history] [md5_tail_history] [searchtags] [msg_sfw] [msg_nsfw] usage:" &&\ + echo " default_credentials - Path to the credentials file generated by create_app.py" &&\ + echo " default_keyfile - Path to the keyfile if encryption was used for credentials" &&\ + echo " blacklist - A text list of newline deliminated tags to blacklist" &&\ + echo " md5_history - md5 history file to write to in order to avoid excessive duplicates" &&\ + echo " md5_tail_history - the number of history items to blacklist" &&\ + echo " searchtags - The tags to search for" &&\ + echo " msg_sfw - Display message if image is safe for work" &&\ + echo " msg_nsfw - Display message if image is not safe for work" &&\ + exit 1 + +DEFAULT_CREDENTIALS="$1" +DEFAULT_KEYFILE="$2" +TAGS_BLACKLIST="$3" +MD5_HISTORY="$4" +MD5_NUM="$5" +TAGS="$6" +MSG_SFW="$7" +MSG_NSFW="$8" +shift $POS_ARGS + +TMP=$(mktemp) +tail -n "$MD5_NUM" "$MD5_HISTORY" > "$TMP" +trap "rm ${TMP}" EXIT + +TAGS_FMT=`echo "$TAGS" | tr ' ' '\n' | xargs echo | tr ' ' '+'` +TAGS_BLK_FMT=`xargs -a "$TAGS_BLACKLIST" echo | sed 's|\ |+-|g'` +TAGS_SEARCH="${TAGS_FMT}+sort:random+-${TAGS_BLK_FMT}" + +# RESULT=`curl -s --get "https://${BOORU_URL}/index.php" -d "page=dapi&s=post&q=index&json=1&limit=1&tags=${TAGS_SEARCH}"` +RESULT=`curl -s --get "https://${BOORU_URL}/index.php" -d "page=dapi&s=post&q=index&json=1&tags=${TAGS_SEARCH}"` + +LENGTH="$(echo "$RESULT" | jq -r '. | .post | length')" +SELECTION=`seq 0 $LENGTH` + +for i in $SELECTION;do + MD5="$(echo "$RESULT" | jq -r '. | .post['"$SELECTED"'].md5')" + [ -z "$MD5" ] && continue + grep -q "$MD5" "$TMP" && continue + URL_FILE="$(echo "$RESULT" | jq -r '. | .post['"$SELECTED"'].file_url')" + RATING="$(echo "$RESULT" | jq -r '. | .post['"$SELECTED"'].rating')" + + NSFW="--nsfw" + TEXT="$MSG_NSFW" + + PICKED="/tmp/$(basename "$URL_FILE")" + + # Always delete the temporary file + trap "rm ${PICKED} ${TMP}" EXIT + + sleep 1 + curl -L -s "$URL_FILE" -o "$PICKED" + + [ "$RATING" = "general" ] && NSFW="--safe" && TEXT="$MSG_SFW" + [ "$RATING" = "sensitive" ] && NSFW="--safe" && TEXT="$MSG_SFW" + + [ ! -f "$PICKED" ] && echo "Failed to download: ${PICKED}" && exit 1 + + case "$(file --mime-type "$PICKED")" in + *': image/'*) ;; + *': video/'*) ;; + *) + continue + ;; + esac + "$ENTRY" "$DEFAULT_CREDENTIALS" "$DEFAULT_KEYFILE" "$NSFW" "$@" "$TEXT" "$PICKED" + exit 0 +done +exit 1