tweak fscore_pb to use new pastebin API

This commit is contained in:
Brian West 2016-05-03 16:40:31 -05:00
parent d9af043dde
commit ff5be590b4
1 changed files with 11 additions and 9 deletions

View File

@ -85,21 +85,23 @@ if [ -z $user ] ; then
fi fi
post_cmd="" post_cmd=""
command -v wget >/dev/null 2>&1 #command -v wget >/dev/null 2>&1
if [ $? -eq 0 ]; then #if [ $? -eq 0 ]; then
post_cmd="wget --output-file=/dev/null --output-document=/tmp/fscore_pb.tmp/pb_out --http-user=pastebin --http-password=freeswitch https://pastebin.freeswitch.org --post-file=$post_file" # post_cmd="curl -d name=fscore_pb --data-urlencode text@$post_file https://newpastebin.freeswitch.org/api/create"
echo -n "paste=Send&remember=0&poster=$user&format=none&expiry=f&code2=" > $post_file # post_cmd="wget --output-file=/dev/null --output-document=/tmp/fscore_pb.tmp/pb_out --http-user=pastebin --http-password=freeswitch https://pastebin.freeswitch.org --post-file=$post_file"
fi # echo -n "paste=Send&remember=0&poster=$user&format=none&expiry=f&code2=" > $post_file
#fi
if [ -z "$post_cmd" ]; then if [ -z "$post_cmd" ]; then
command -v curl >/dev/null 2>&1 command -v curl >/dev/null 2>&1
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
post_cmd="curl -o /tmp/fscore_pb.tmp/pb_out --user pastebin:freeswitch http://pastebin.freeswitch.org -d paste=Send -d remember=0 -d poster=$user -d format=none -d expiry=f --data-urlencode code2@$post_file" post_cmd="curl -o /tmp/fscore_pb.tmp/pb_out -d name=fscore_pb --data-urlencode text@$post_file https://pastebin.freeswitch.org/api/create"
# post_cmd="curl -o /tmp/fscore_pb.tmp/pb_out --user pastebin:freeswitch http://pastebin.freeswitch.org -d paste=Send -d remember=0 -d poster=$user -d format=none -d expiry=f --data-urlencode code2@$post_file"
fi fi
fi fi
if [ -z "$post_cmd" ]; then if [ -z "$post_cmd" ]; then
echo "Unable to locate wget or curl." echo "Unable to locate curl."
exit 255 exit 255
fi fi
@ -174,8 +176,8 @@ mv $post_file $tmpdir
echo "Finished." echo "Finished."
if [ -e /tmp/fscore_pb.tmp/pb_out ]; then if [ -e /tmp/fscore_pb.tmp/pb_out ]; then
pb=`cat /tmp/fscore_pb.tmp/pb_out | grep parent_pid | awk -F \" '{print $6}'` pb=`cat /tmp/fscore_pb.tmp/pb_out`
echo "Please report http://pastebin.freeswitch.org/$pb to the developers." echo "Please report $pb to the developers."
else else
echo "Please check recent posts on http://pastebin.freeswitch.org/ and find your issue to report to the developers." echo "Please check recent posts on http://pastebin.freeswitch.org/ and find your issue to report to the developers."
fi fi