Skip to content

Commit

Permalink
tweak fscore_pb to use new pastebin API
Browse files Browse the repository at this point in the history
  • Loading branch information
briankwest committed May 3, 2016
1 parent d9af043 commit ff5be59
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions support-d/fscore_pb
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,23 @@ if [ -z $user ] ; then
fi

post_cmd=""
command -v wget >/dev/null 2>&1
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"
echo -n "paste=Send&remember=0&poster=$user&format=none&expiry=f&code2=" > $post_file
fi
#command -v wget >/dev/null 2>&1
#if [ $? -eq 0 ]; then
# post_cmd="curl -d name=fscore_pb --data-urlencode text@$post_file https://newpastebin.freeswitch.org/api/create"
# 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"
# echo -n "paste=Send&remember=0&poster=$user&format=none&expiry=f&code2=" > $post_file
#fi

if [ -z "$post_cmd" ]; then
command -v curl >/dev/null 2>&1
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

if [ -z "$post_cmd" ]; then
echo "Unable to locate wget or curl."
echo "Unable to locate curl."
exit 255
fi

Expand Down Expand Up @@ -174,8 +176,8 @@ mv $post_file $tmpdir

echo "Finished."
if [ -e /tmp/fscore_pb.tmp/pb_out ]; then
pb=`cat /tmp/fscore_pb.tmp/pb_out | grep parent_pid | awk -F \" '{print $6}'`
echo "Please report http://pastebin.freeswitch.org/$pb to the developers."
pb=`cat /tmp/fscore_pb.tmp/pb_out`
echo "Please report $pb to the developers."
else
echo "Please check recent posts on http://pastebin.freeswitch.org/ and find your issue to report to the developers."
fi

0 comments on commit ff5be59

Please sign in to comment.