|
|
@ -31,7 +31,7 @@ postdetails=yes |
|
|
|
# to post to pastebin, or |
|
|
|
# rustserver@gamerig:~$ posttarget= ./rustserver pd |
|
|
|
# to leave the output on the filesystem. |
|
|
|
posttarget=${posttarget="http://hastebin.com"} |
|
|
|
posttarget=${posttarget="http://pastebin.com"} |
|
|
|
|
|
|
|
# For pastebin, you can set the expiration period. |
|
|
|
# use 1 week as the default, other options are '24h' for a day, etc. |
|
|
@ -45,7 +45,12 @@ postexpire="${postexpire="1W"}" |
|
|
|
# for the variable "postdetails" to be defined. -CedarLUG |
|
|
|
|
|
|
|
# source all of the functions defined in the details command |
|
|
|
. "${functionsdir}"/command_details.sh |
|
|
|
command_details.sh |
|
|
|
|
|
|
|
# redefine as command_details.sh changes them |
|
|
|
local commandname="postdetails" |
|
|
|
local commandaction="Postdetails" |
|
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|
|
|
|
|
|
|
fn_bad_tmpfile() { |
|
|
|
echo "There was a problem creating a temporary file ${tmpfile}." |
|
|
@ -53,11 +58,6 @@ fn_bad_tmpfile() { |
|
|
|
} |
|
|
|
|
|
|
|
# Rather than a one-pass sed parser, default to using a temporary directory |
|
|
|
|
|
|
|
# Not all game servers possess a tmp directory. So create it if |
|
|
|
# it doesn't already exist |
|
|
|
mkdir -p "${tmpdir}" 2>&1 >/dev/null |
|
|
|
|
|
|
|
tmpfile="${tmpdir}/postdetails-$(date +"%Y-%d-%m_%H-%M-%S").tmp" |
|
|
|
|
|
|
|
touch "${tmpfile}" || fn_bad_tmpfile |
|
|
@ -107,7 +107,10 @@ if ! grep -q "^steamuser[= ]\"anonymous\"" "${tmpfile}" ; then |
|
|
|
sed -i -e 's/steamuser[= ]"[^"]*/steamuser "--stripped--/' "${tmpfile}" |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
if [ "${posttarget}" == "http://pastebin.com" ] ; then |
|
|
|
fn_print_dots "Posting details to pastbin.com for ${postexpire}" |
|
|
|
sleep 1 |
|
|
|
# grab the return from 'value' from an initial visit to pastebin. |
|
|
|
csrftoken=$(curl -s "${posttarget}" | |
|
|
|
sed -n 's/^.*input type="hidden" name="csrf_token_post" value="\(.*\)".*$/\1/p') |
|
|
@ -122,13 +125,17 @@ if [ "${posttarget}" == "http://pastebin.com" ] ; then |
|
|
|
awk '/^location: / { print $2 }' | sed "s/\n//g") |
|
|
|
|
|
|
|
# Output the resulting link. |
|
|
|
fn_print_warn_nl "Visit (and verify) the content posted at ${posttarget}${link}" |
|
|
|
fn_print_ok_nl "Posting details to pastbin.com for ${postexpire}" |
|
|
|
echo " * url: ${posttarget}/${link}" |
|
|
|
elif [ "${posttarget}" == "http://hastebin.com" ] ; then |
|
|
|
fn_print_dots "Posting details to hastbin.com for ${postexpire}" |
|
|
|
sleep 1 |
|
|
|
# hastebin is a bit simpler. If successful, the returned result |
|
|
|
# should look like: {"something":"key"}, putting the reference that |
|
|
|
# we need in "key". TODO - error handling. -CedarLUG |
|
|
|
link=$(curl -s -d "$(<${tmpfile})" "${posttarget}/documents" | cut -d\" -f4) |
|
|
|
fn_print_warn_nl "Visit (and verify) the content posted at ${posttarget}/${link}" |
|
|
|
fn_print_ok_nl "Posting details to hastbin.com for ${postexpire}" |
|
|
|
echo " * url: ${posttarget}/${link}" |
|
|
|
else |
|
|
|
fn_print_warn_nl Review the output in "${tmpfile}" |
|
|
|
core_exit.sh |
|
|
|