ajout de emptybot

This commit is contained in:
2019-01-27 07:28:31 +01:00
parent ab2d7de654
commit f597fc4995
9 changed files with 242 additions and 10 deletions

38
twitter/emptybot/robot.sh Executable file
View File

@@ -0,0 +1,38 @@
#!/bin/bash
flag=$TMP_PATH/emptybot_bot.flag
if [ -f $flag ];
then
echo "empty_bot is already running !"
exit 0
fi
touch $flag
cd $APPS_PATH/twitter/emptybot
#
# Se lancer pour un tweet sur un block unique
#
BLOCK_LINE=`grep LAST $DATA_PATH/block_list.txt`
BLOCK_HASH=`echo ${BLOCK_LINE} | awk '{print $2}'`
BLOCK_NAME=`echo ${BLOCK_LINE} | awk '{print $1}'`
BLOCK_HEIGHT=`echo ${BLOCK_LINE} | awk '{print $3}'`
BLOCK_SIZE=`echo ${BLOCK_LINE} | awk '{print $4}'`
if [ $BLOCK_SIZE -eq 1 ]
then
if [ -f $DATA_PATH/hasard/$BLOCK_HASH.png ]
then
if [ ! -f $DATA_PATH/emptybot/$BLOCK_HASH.png ]
then
echo Tweet EmptyBlock for $BLOCK_HASH
echo $BLOCK_LINE >> $DATA_PATH/emptybot/list.txt
php robot.php $BLOCK_HASH $BLOCK_NAME hasard $BLOCK_HEIGHT
# Don't TWEET it again ...
touch $DATA_PATH/twitterbot/$BLOCK_HASH
fi
fi
fi
rm -f $flag