#!/bin/bash ################################################################################ # Author: Fred (support@qo-op.com) # Version: 0.2 # License: AGPL-3.0 (https://choosealicense.com/licenses/agpl-3.0/) ################################################################################ MY_PATH="`dirname \"$0\"`" # relative MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized . "$MY_PATH/../tools/my.sh" ################################################################################ ## Publish All PLAYER TW, # Run TAG subprocess: tube, voeu ############################################ echo "## RUNNING PLAYER.refresh _..._ .' '. _ / .-°°-\ _/ \\ .-| /:. | | | | \ |:. /.-'-./ | .-'-;:__.' =/ .'= A=|STRO _.=' / _. | ; ;-.-'| \ | / | \ _\ _\\ " PLAYERONE="$1" # [[ $isLAN ]] && PLAYERONE=$(cat ~/.zen/game/players/.current/.player 2>/dev/null) [[ ! ${PLAYERONE} ]] && PLAYERONE=($(ls -t ~/.zen/game/players/ | grep "@" 2>/dev/null)) echo "FOUND ${#PLAYERONE[@]} : ${PLAYERONE[@]}" CURRENT=$(readlink ~/.zen/game/players/.current | rev | cut -d '/' -f 1 | rev) echo "RENEWING LOCAL UPLANET REPOSITORY (ADMIN=${CURRENT}) ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_*_*/_*.?_*.?/_*.??_*.??" echo "CLEANING IPFSNODEID TW CACHE ~/.zen/tmp/${IPFSNODEID}/TW/" rm -Rf ~/.zen/tmp/${IPFSNODEID}/TW/ ## RUNING FOR ALL LOCAL PLAYERS for PLAYER in ${PLAYERONE[@]}; do [[ ! -d ~/.zen/game/players/${PLAYER:-undefined} ]] && echo "BAD ${PLAYERONE}" && continue [[ ! $(echo "${PLAYER}" | grep '@') ]] && continue start=`date +%s` # CLEAN LOST ACCOUNT [[ ! -s ~/.zen/game/players/${PLAYER}/secret.dunikey ]] \ && rm -Rf ~/.zen/game/players/${PLAYER} \ && echo "WARNING - ERASE ${PLAYER} - BADLY PLUGGED" \ && continue YOUSER=$($MY_PATH/../tools/clyuseryomail.sh "${PLAYER}") ### UPGRADE PLAYER for myos IPFS API ### DOUBLON WITH VISA.new (TO REMOVE) mkdir -p ~/.zen/game/players/${PLAYER}/.ipfs # Prepare PLAYER datastructure echo "/ip4/127.0.0.1/tcp/5001" > ~/.zen/game/players/${PLAYER}/.ipfs/api ######## WORK IN PROGRESS #### myos integration MOATS=$(date -u +"%Y%m%d%H%M%S%4N") mkdir -p ~/.zen/tmp/${MOATS} echo "############################################ ~/.zen/tmp/${MOATS}" echo "##################################################################" echo ">>>>> PLAYER : ${PLAYER} >>>>>>>>>>>>> REFRESHING TW " echo "################################################ $(date)" PSEUDO=$(cat ~/.zen/game/players/${PLAYER}/.pseudo 2>/dev/null) G1PUB=$(cat ~/.zen/game/players/${PLAYER}/.g1pub 2>/dev/null) ASTRONS=$(cat ~/.zen/game/players/${PLAYER}/.playerns 2>/dev/null) # Get PLAYER wallet amount $MY_PATH/../tools/COINScheck.sh ${G1PUB} > ~/.zen/tmp/${MOATS}/${PLAYER}.COINScheck cat ~/.zen/tmp/${MOATS}/${PLAYER}.COINScheck ###DEBUG MODE COINS=$(cat ~/.zen/tmp/${MOATS}/${PLAYER}.COINScheck | tail -n 1) ZEN=$(echo "($COINS - 1) * 10" | bc | cut -d '.' -f 1) echo "+++ WALLET BALANCE _ $COINS (G1) _ / $ZEN ZEN /" #~ ## ZENCARD ARE ACTIVATED WITH 1 G1 + 10 ZEN (= 10 €/OC) ? echo "## >>>>>>>>>>>>>>>> REFRESH ASTRONAUTE TW" ## REFRESH ASTRONAUTE TW ASTRONAUTENS=$(ipfs key list -l | grep -w ${G1PUB} | cut -d ' ' -f1) ############### CANNOT FIND PLAYER KEY ########### if [[ ! ${ASTRONAUTENS} ]]; then echo "${PLAYER} TW IS DISCONNECTED... RECREATING IPNS KEYS" ## TODO : EXTRACT & DECRYPT secret.june FROM TW ipfs key import ${G1PUB} -f pem-pkcs8-cleartext ~/.zen/game/players/${PLAYER}/secret.player ipfs key import ${PLAYER} -f pem-pkcs8-cleartext ~/.zen/game/players/${PLAYER}/secret.player source ~/.zen/game/players/${PLAYER}/secret.june ${MY_PATH}/../tools/keygen -t ipfs -o ~/.zen/tmp/${MOATS}/feed.ipfskey "$SALT" "$G1PUB" FEEDNS=$(ipfs key import "${PLAYER}_feed" -f pem-pkcs8-cleartext ~/.zen/tmp/${MOATS}/feed.ipfskey) ## IF ASTRONS="" KEY WILL BE DELETED AFTER REFRESH ASTRONAUTENS=$ASTRONS && ASTRONS="" fi [[ ! ${ASTRONAUTENS} ]] && echo "ERROR BAD ${PLAYER} - CONTINUE" && continue echo ">>> $myIPFS/ipns/${ASTRONAUTENS}" ## ACTIVATE PLAYER TW IN STATION CACHE mkdir -p ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/ ################### GET LATEST TW echo "GETTING TW..." #################################################################################################### ipfs --timeout 480s get --progress=false -o ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html /ipns/${ASTRONAUTENS} #################################################################################################### ## PLAYER TW IS ONLINE ? if [ ! -s ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html ]; then NOWCHAIN=$(cat ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain) LASTCHAIN=$(cat ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain.* | tail -n 1) try=$(cat ~/.zen/game/players/${PLAYER}/ipfs/moa/.try 2>/dev/null) || try=3 echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" echo "$myIPFS/ipns/${ASTRONAUTENS}'>TW REFRESH FAILED" echo ">> %%% WARNING TRY LEFT : $try %%%" echo "------------------------------------------------" echo " * LAST" echo " * NOW" echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ## SEND AN EMAIL ALERT TO PLAYER echo " TW LOADING TIMEOUT" > ~/.zen/tmp/result echo "
------------------------------------------------" >> ~/.zen/tmp/result echo "
" >> ~/.zen/tmp/result echo "
TW[-1]: /ipfs/${LASTCHAIN}" >> ~/.zen/tmp/result echo "
TW[0]: /ipfs/${NOWCHAIN}" >> ~/.zen/tmp/result echo "
" >> ~/.zen/tmp/result echo "
%%% WARNING %%% $try TRY LEFT %%%" >> ~/.zen/tmp/result echo "
------------------------------------------------" >> ~/.zen/tmp/result echo "
ipfs name publish --key=${PLAYER} /ipfs/${NOWCHAIN}" >> ~/.zen/tmp/result echo "" >> ~/.zen/tmp/result [[ $try == 0 && "${CURRENT}" != "${PLAYER}" ]] \ && echo "PLAYER ${PLAYER} UNPLUG" \ && ${MY_PATH}/PLAYER.unplug.sh ~/.zen/game/players/${PLAYER}/ipfs/moa/index.html ${PLAYER} "ALL" \ && continue try=$((try-1)) echo "$try" > ~/.zen/game/players/${PLAYER}/ipfs/moa/.try $MY_PATH/../tools/mailjet.sh "${PLAYER}" ~/.zen/tmp/result "TW LOADING TIMEOUT" continue fi ############################################################# ## FOUND TW err="" ############################################################# ## CHECK "GPS" Tiddler tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'GPS.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' 'GPS' ## GPS Tiddler [[ ! -s ~/.zen/tmp/${MOATS}/GPS.json || $(cat ~/.zen/tmp/${MOATS}/GPS.json) == "[]" ]] \ && msg="${PLAYER} GPS : BAD TW (☓‿‿☓) " && err="(☓‿‿☓)" ############################################################# ## CHECK MadeInZion tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'MadeInZion.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' 'MadeInZion' ## MadeInZion Tiddler [[ ! -s ~/.zen/tmp/${MOATS}/MadeInZion.json || $(cat ~/.zen/tmp/${MOATS}/MadeInZion.json) == "[]" ]] \ && msg="${PLAYER} MadeInZion : BAD TW (☓‿‿☓) " && err="(☓‿‿☓)" && player="" \ || player=$(cat ~/.zen/tmp/${MOATS}/MadeInZion.json | jq -r .[].player) lang=$(cat ~/.zen/tmp/${MOATS}/MadeInZion.json 2>/dev/null | jq -r .[].dao) [[ ${lang} == "null" ]] && lang="fr" ############################################################# ## CHECK "AstroID" Tiddler tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'AstroID.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' 'AstroID' ## AstroID Tiddler [[ $(cat ~/.zen/tmp/${MOATS}/AstroID.json 2>/dev/null) == "[]" ]] && rm ~/.zen/tmp/${MOATS}/AstroID.json ########################################## used by Astroport :: Lasertag :: TW plugin ## ## CHECK "$:/config/NewTiddler/Tags" tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'TWsign.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '$:/config/NewTiddler/Tags' ## $:/config/NewTiddler/Tags Tiddler signature=$(cat ~/.zen/tmp/${MOATS}/TWsign.json | jq -r .[].text) echo "${player} SIGNATURE = $signature" ############################################################# ## CHECK "Astroport" TIDDLER tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'Astroport.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' 'Astroport' ## Astroport Tiddler [[ ! -s ~/.zen/tmp/${MOATS}/Astroport.json || $(cat ~/.zen/tmp/${MOATS}/Astroport.json) == "[]" ]] \ && msg="${PLAYER} Astroport : BAD TW (☓‿‿☓) " && err="(☓‿‿☓)" ############################################################ BAD TW SIGNATURE [[ ( ${player} != ${PLAYER} || ${PLAYER} != ${signature} || "${err}" == "(☓‿‿☓)" ) && ${PLAYER} != ${CURRENT} ]] \ && echo "> (☓‿‿☓) BAD PLAYER=$player in TW (☓‿‿☓) $msg" \ && ${MY_PATH}/PLAYER.unplug.sh "${HOME}/.zen/game/players/${PLAYER}/ipfs/moa/index.html" "${PLAYER}" "ALL" \ && continue \ || echo "${PLAYER} OFFICIAL TW - (⌐■_■) -" BIRTHDATE=$(cat ~/.zen/tmp/${MOATS}/Astroport.json | jq -r .[].birthdate) ASTROPORT=$(cat ~/.zen/tmp/${MOATS}/Astroport.json | jq -r .[].astroport) ## ZenStation IPNS address CURCHAIN=$(cat ~/.zen/tmp/${MOATS}/Astroport.json | jq -r .[].chain | rev | cut -f 1 -d '/' | rev) # Remove "/ipfs/" part [[ ${CURCHAIN} == "" || ${CURCHAIN} == "null" ]] \ && CURCHAIN="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" # AVOID EMPTY SBIRTH=$(${MY_PATH}/../tools/MOATS2seconds.sh ${BIRTHDATE}) SNOW=$(${MY_PATH}/../tools/MOATS2seconds.sh ${MOATS}) DIFF_SECONDS=$(( SNOW - SBIRTH )) days=$((DIFF_SECONDS / 60 / 60 / 24)) ################################################## ANOTHER ASTROPORT !! IPNSTAIL=$(echo ${ASTROPORT} | rev | cut -f 1 -d '/' | rev) # Remove "/ipns/" part ########### ASTROPORT is not IPFSNODEID => EJECT TW if [[ ${IPNSTAIL} != ${IPFSNODEID} || ${IPNSTAIL} == "_ASTROPORT_" ]]; then echo "> PLAYER MOVED TO ${IPNSTAIL} : UNPLUG " ${MY_PATH}/PLAYER.unplug.sh "${HOME}/.zen/game/players/${PLAYER}/ipfs/moa/index.html" "${PLAYER}" "ONE" "Now TW is plugged to ${ASTROPORT}" echo ">>>> CIAO ${PLAYER}" continue fi ################ VERIFICATIONS DONE ###################### echo "ASTROPORT ZenStation : ${ASTROPORT}" echo "CURCHAIN=${CURCHAIN}" echo "================================== TW $days days old" ############################################## +2 DAYS & AstroID = UNPLUG !! ## REMOVE TW OLDER THAN 2 DAYS WITH AstroID [[ -s ~/.zen/tmp/${MOATS}/AstroID.json && $days -gt 2 && "${CURRENT}" != "${PLAYER}" ]] \ && ${MY_PATH}/PLAYER.unplug.sh "${HOME}/.zen/game/players/${PLAYER}/ipfs/moa/index.html" "${PLAYER}" "ALL" "TW EJECTION. Found an AstroID in your TW." \ && echo "(#__#) AstroID +2 DAYS = SECURITY ERROR (#__#)" && continue ###################################### #### UPLANET GEO COORD EXTRACTION ## GET "GPS" TIDDLER - 0.00 0.00 (if empty: null) ZLAT=$(cat ~/.zen/tmp/${MOATS}/GPS.json | jq -r .[].lat) [[ $ZLAT == "null" || $ZLAT == "" ]] && ZLAT="0.00" ZLON=$(cat ~/.zen/tmp/${MOATS}/GPS.json | jq -r .[].lon) [[ $ZLON == "null" || $ZLON == "" ]] && ZLON="0.00" LAT=$(makecoord ${ZLAT}) LON=$(makecoord ${ZLON}) ### GET UMAP ENV $(${MY_PATH}/../tools/getUMAP_ENV.sh "${LAT}" "${LON}" | tail -n 1) echo "UMAPG1PUB=$UMAPG1PUB UMAPIPNS=$UMAPIPNS SECTORG1PUB=$SECTORG1PUB SECTORIPNS=$SECTORIPNS REGIONG1PUB=$REGIONG1PUB REGIONIPNS=$REGIONIPNS LAT=$LAT LON=$LON SLAT=$SLAT SLON=$SLON RLAT=$RLAT RLON=$RLON" UMAPNS=$(echo $UMAPIPNS | cut -d '/' -f 3) ############################################# # MAKE "GPS" TIDDLER cat ${MY_PATH}/../templates/data/GPS.json \ | sed -e "s~_MOATS_~${MOATS}~g" \ -e "s~_PLAYER_~${PLAYER}~g" \ -e "s~_LAT_~${LAT}~g" \ -e "s~_LON_~${LON}~g" \ -e "s~_UMAPNS_~${UMAPNS}~g" \ -e "s~_SECTORTW_~${SECTORIPNS}/TW~g" \ > ~/.zen/tmp/${MOATS}/GPS.json ## UPDATE PLAYER CACHE echo "_${LAT}_${LON}" > ~/.zen/game/players/${PLAYER}/.umap cp ~/.zen/tmp/${MOATS}/GPS.json ~/.zen/game/players/${PLAYER}/ ################# PERSONAL VDO.NINJA PHONEBOOTH if [[ "${days}" == "3" ]]; then YOUSER=$($MY_PATH/../tools/clyuseryomail.sh "${PLAYER}") _USER=$(echo $YOUSER | sed "s~\.~_~g") # MAKE "VISIO" TIDDLER cat ${MY_PATH}/../templates/data/VISIO.json \ | sed -e "s~_IPFSNINJA_~${VDONINJA}~g" \ -e "s~_MOATS_~${MOATS}~g" \ -e "s~_PLAYER_~${PLAYER}~g" \ -e "s~_PHONEBOOTH_~${_USER}~g" \ > ~/.zen/tmp/${MOATS}/VISIO.json else echo "[]" > ~/.zen/tmp/${MOATS}/VISIO.json fi ##################################################################### # MAKE "CESIUM" TIDDLER if [[ "${days}" == "4" ]]; then echo "Create CESIUM Tiddler" cat ${MY_PATH}/../templates/data/CESIUM.json \ | sed -e "s~_G1PUB_~${G1PUB}~g" \ -e "s~_MOATS_~${MOATS}~g" \ -e "s~_CESIUMIPFS_~${CESIUMIPFS}~g" \ -e "s~_PLAYER_~${PLAYER}~g" \ > ~/.zen/tmp/${MOATS}/CESIUM.json else echo "[]" > ~/.zen/tmp/${MOATS}/CESIUM.json fi ##################################################################### ########## $:/moa picture ## lightbeams replacement ############### ## GET $:/moa Tiddlers ####################################### START echo "GET $:/moa Tiddlers" ###################################################### [tag[$:/moa]] tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'FRIENDS.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[tag[$:/moa]]' ## $:/moa EMAIL Tiddlers ##################################################################### fplayers=($(cat ~/.zen/tmp/${MOATS}/FRIENDS.json | jq -rc .[].title)) echo "${fplayers[@]}" UPLAYERSTIDS=() for fp in ${fplayers[@]}; do [[ ! "${fp}" =~ ^[a-zA-Z0-9.%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$ ]] && echo "BAD ${fp} FORMAT" && continue [[ "${fp}" == "${PLAYER}" ]] && echo "IT'S ME - CONTINUE" && continue FPLAYER=$(cat ~/.zen/tmp/${MOATS}/FRIENDS.json | jq .[] | jq -r 'select(.title=="'${fp}'") | .player') [[ $FPLAYER == 'null' || $FPLAYER == '' ]] \ && echo "FPLAYER null - NOGOOD${fp} -" \ && continue # AUTO CORRECT : sed -i "s~${fp}~NOGOOD${fp}~g" ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ FTW=$(cat ~/.zen/tmp/${MOATS}/FRIENDS.json | jq .[] | jq -r 'select(.title=="'${fp}'") | .tw') [[ ${FTW} == "/ipns/" || ${FTW} == "null" || ${FTW} == "" ]] && echo "WEIRD FTW ${FTW} - CONTINUE" && continue FG1PUB=$(cat ~/.zen/tmp/${MOATS}/FRIENDS.json | jq .[] | jq -r 'select(.title=="'${fp}'") | .g1pub') [[ $FG1PUB == 'null' || $FG1PUB == '' ]] && echo "FG1PUB null - CONTINUE" && continue IHASH=$(cat ~/.zen/tmp/${MOATS}/FRIENDS.json | jq .[] | jq -r 'select(.title=="'${fp}'") | .text' | sha256sum | cut -d ' ' -f 1) echo ":: coucou :: $FPLAYER :: (ᵔ◡◡ᵔ) ::" echo "TW: $FTW" echo "G1: $FG1PUB" echo "IHASH: $IHASH" UPLAYERSTIDS=("${UPLAYERSTIDS[@]}" "[[${FPLAYER^^}|${FPLAYER^^}]]") ## GET ORIGINH FROM LAST KNOWN TW STATE mkdir -p ~/.zen/game/players/${PLAYER}/FRIENDS/${FPLAYER} ## CHECK ALREADY IN ${FPLAYER^^} IHASH rm -f ~/.zen/tmp/${MOATS}/finside.json tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' 'finside.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' "${FPLAYER^^}" ## ${FPLAYER^^} autoload Tiddlers INSIDEH=$(cat ~/.zen/tmp/${MOATS}/finside.json | jq -rc '.[].ihash') echo "INSIDEH: $INSIDEH" if [[ -s ~/.zen/game/players/${PLAYER}/FRIENDS/${FPLAYER}/index.html ]]; then tiddlywiki --load ~/.zen/game/players/${PLAYER}/FRIENDS/${FPLAYER}/index.html \ --output ~/.zen/tmp/${MOATS} \ --render '.' "${FPLAYER}.json" 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' "${FPLAYER}" ## GET ORIGIN ORIGINH=$(cat ~/.zen/tmp/${MOATS}/${FPLAYER}.json | jq -r '.[].text' | sha256sum | cut -d ' ' -f 1) ## USE IPFSH=$(cat ~/.zen/tmp/${MOATS}/${FPLAYER}.json | jq -r '.[].text' | ipfs add -q) ## TODO MICROLEDGER TIDDLER echo "ORIGINH: $ORIGINH" else ORIGINH="$INSIDEH" fi ( ## REFRESH LOCAL PLAYER CACHE with FRIEND ACTUAL TW (&) will be used TOMORROW ipfs --timeout 480s cat --progress="false" ${FTW} > ~/.zen/game/players/${PLAYER}/FRIENDS/${FPLAYER}/index.html ) & ## UPDATE IF IHASH CHANGED -> New drawing => Friend get informed if [[ -z $INSIDEH || $INSIDEH != $IHASH || $ORIGINH != $INSIDEH ]]; then cat ${MY_PATH}/../templates/data/_UPPERFPLAYER_.json \ | sed -e "s~_UPPERFPLAYER_~${FPLAYER^^}~g" \ -e "s~_FPLAYER_~${FPLAYER}~g" \ -e "s~_MOATS_~${MOATS}~g" \ -e "s~_IHASH_~${IHASH}~g" \ -e "s~_FRIENDTW_~${FTW}~g" \ -e "s~_PLAYER_~${PLAYER}~g" \ > ~/.zen/tmp/${MOATS}/${FPLAYER^^}.json echo "Insert New ${FPLAYER^^}.json" #~ cat ~/.zen/tmp/${MOATS}/${FPLAYER^^}.json | jq tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --import ${HOME}/.zen/tmp/${MOATS}/${FPLAYER^^}.json 'application/json' \ --output ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER} \ --render "$:/core/save/all" "newindex.html" "text/plain" [[ -s ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ]] \ && cp ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ && rm ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html \ || echo "ERROR - CANNOT IMPORT ${FPLAYER^^}.json - ERROR" if [[ $ORIGINH != $INSIDEH && $ORIGINH != "" ]]; then echo "ORIGINH Update" rm -f ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --import ${HOME}/.zen/tmp/${MOATS}/${FPLAYER}.json 'application/json' \ --output ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER} \ --render "$:/core/save/all" "newindex.html" "text/plain" [[ -s ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ]] \ && cp ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ && rm ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html \ || echo "ERROR - CANNOT IMPORT ${FPLAYER}.json - ERROR" fi fi done ## GET $:/moa Tiddlers ####################################### END ################## PREPARE LIST TO INSERT IN SECTORTW_NEWS TID echo "${UPLAYERSTIDS[@]}" UPLAYERSTIDS_STR="" for item in "${UPLAYERSTIDS[@]}"; do UPLAYERSTIDS_STR+="\n* $item" done # Trim leading space UPLAYERSTIDS_STR="${UPLAYERSTIDS_STR# }" ###################################### # (RE)MAKE "SECTORTW_NEWS" TIDDLER cat ${MY_PATH}/../templates/data/SECTORTW_NEWS.json \ | sed -e "s~_SECTOR_~${SECTOR}~g" \ -e "s~_MOATS_~${MOATS}~g" \ -e "s~_UPLANET_~https://qo-op.com~g" \ -e "s~_UPLAYERSTIDS_~${UPLAYERSTIDS_STR}~g" \ -e "s~_SECTORTW_~${SECTORIPNS}/TW~g" \ > ~/.zen/tmp/${MOATS}/SECTORTW_NEWS.json echo "SECTOR $SECTOR SECTORTW=${SECTORIPNS}/TW" ############################################################# # Connect_PLAYER_To_Gchange.sh : Sync FRIENDS TW - TODO : REWRITE ######################################### BETTER USE json FILE IN /ipns/$IPFSNODEID/COINS #~ echo "##################################################################" #~ [[ $(echo "$COINS >= 500" | bc -l) -eq 1 ]] \ #~ && echo "## Connect_PLAYER_To_Gchange.sh" \ #~ && ${MY_PATH}/../tools/Connect_PLAYER_To_Gchange.sh "${PLAYER}" \ #~ || echo "$COINS <= 1 G1 + 10 ẑen : bypass Gchange stars exchange (★★★★★)" ############################################################## # G1PalPay - 2 G1 mini -> Check for G1 TX incoming comments # ############################################################## if [[ $(echo "$COINS >= 2" | bc -l) -eq 1 ]]; then ############################################################## # G1PalPay.sh # ############################################################## echo "## RUNNING G1PalPay Wallet Monitoring " ${MY_PATH}/G1PalPay.sh ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html "${PLAYER}" ############################################################## # VOEUX.create.sh # ############################################################## ${MY_PATH}/VOEUX.create.sh ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html "${PLAYER}" "${G1PUB}" ############################################################## # VOEUX.refresh.sh # ############################################################## ${MY_PATH}/VOEUX.refresh.sh "${PLAYER}" "${MOATS}" ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html else echo "> ZenCard not activated ($ZEN ZEN)" fi ################################## ## PATCH : RESTORE PLAYER GPS.json (protect cache erased by WISH treatment) cp -f ~/.zen/game/players/${PLAYER}/GPS.json ~/.zen/tmp/${MOATS}/ ## WRITE TIDDLERS IN TW SECTORTW_NEWS.json tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --import ~/.zen/tmp/${MOATS}/GPS.json "application/json" \ --import ~/.zen/tmp/${MOATS}/VISIO.json "application/json" \ --import ~/.zen/tmp/${MOATS}/CESIUM.json "application/json" \ --import ~/.zen/tmp/${MOATS}/SECTORTW_NEWS.json "application/json" \ --output ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER} --render "$:/core/save/all" "newindex.html" "text/plain" ## CHECK IT IS OK [[ -s ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ]] \ && cp ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ && rm ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/newindex.html \ || echo "ERROR - CANNOT CREATE TW NEWINDEX - ERROR" ########################### #### SEND TODAY UPlanetZINE/day${days} ZINE ZINE2="${MY_PATH}/../templates/UPlanetZINE/day${days}/index.${lang}.html" [[ ! -s ${ZINE2} ]] && ZINE2="${MY_PATH}/../templates/UPlanetZINE/day${days}/index.html" [[ -s ${ZINE2} ]] \ && echo "SENDING ZINE2 DAY ${days} + mailjet TW import " \ && ${MY_PATH}/../tools/mailjet.sh "${PLAYER}" ${ZINE2} "ZINE #${days}" "${HOME}/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html" \ || echo "NO ZINE FOR DAY ${days}" #################### ## TW NEWINDEX .... ##### ############################################################## echo "LOCAL BACKUP + MICROLEDGER TW" cp ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html ~/.zen/game/players/${PLAYER}/ipfs/moa/index.html [[ -s ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain ]] \ && ZCHAIN=$(cat ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain) \ && echo "# CHAIN : ${CURCHAIN} -> ${ZCHAIN}" \ && [[ ${CURCHAIN} != "" && ${ZCHAIN} != "" ]] \ && sed -i "s~${CURCHAIN}~${ZCHAIN}~g" ~/.zen/game/players/${PLAYER}/ipfs/moa/index.html ################################################## ######## UPDATING ${PLAYER}/ipfs/moa/.chain cp ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain \ ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain.$(cat ~/.zen/game/players/${PLAYER}/ipfs/moa/.moats) ########################################## ## TW IPFS ADD & PUBLISH ########################################## TW=$(ipfs add -Hq ~/.zen/game/players/${PLAYER}/ipfs/moa/index.html | tail -n 1) ipfs --timeout 720s name publish --key=${PLAYER} /ipfs/${TW} ## LOCAL PLAYER CACHING echo ${TW} > ~/.zen/game/players/${PLAYER}/ipfs/moa/.chain echo ${MOATS} > ~/.zen/game/players/${PLAYER}/ipfs/moa/.moats echo "================================================" echo " NEW TW ${PLAYER} : = ${myIPFS}/ipfs/${TW}" echo " $myIPFSGW/ipns/${ASTRONAUTENS}" echo "================================================" ipfs pin rm ${CURCHAIN} ######################### REPLACE TW with REDIRECT to latest IPFS or IPNS (reduce 12345 cache size) [[ ! -z ${TW} ]] && TWLNK="/ipfs/${TW}" || TWLNK="/ipns/${ASTRONAUTENS}" echo "${PLAYER}" \ > ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html if [[ ${days} -ge 14 ]]; then ################### # REFRESH PLAYER_feed KEY echo "(☉_☉ ) (☉_☉ ) (☉_☉ ) RSS" ######################################################################################### ## CREATING 30 DAYS JSON RSS STREAM # [days:created[-30]!is[system]!tag[G1Voeu]!externalTiddler[yes]!tag[load-external]] ######################################################################################### tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ --output ~/.zen/game/players/${PLAYER}/ipfs \ --render '.' "${PLAYER}.rss.json" 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[days:created[-30]!is[system]!tag[G1Voeu]!externalTiddler[yes]!tag[load-external]]' [[ ! -s ~/.zen/game/players/${PLAYER}/ipfs/${PLAYER}.rss.json ]] \ && echo "NO ${PLAYER} RSS - BAD " echo "~/.zen/game/players/${PLAYER}/ipfs/${PLAYER}.rss.json" ######################################################## #### PLAYER ACCOUNT HAVE NEW TIDDLER or NOT ######### if [[ $(cat ~/.zen/game/players/${PLAYER}/ipfs/${PLAYER}.rss.json) == "[]" && "${CURRENT}" != "${PLAYER}" ]]; then echo "ALERT -- RSS IS EMPTY -- COINS=$COINS / ZEN=$ZEN --" ## DEAD PLAYER ?? if [[ ${days} -eq 27 ]]; then echo "

🔋WARNING

" > ~/.zen/tmp/alert echo "

${PLAYER} TW 🔌📺

🌥 $ZEN ZEN 🌥 " >> ~/.zen/tmp/alert ${MY_PATH}/../tools/mailjet.sh "${PLAYER}" ~/.zen/tmp/alert "TW ALERT" echo "<<<< PLAYER TW WARNING <<<< ${DIFF_SECONDS} > ${days} days" fi if [[ ${days} -gt 29 ]]; then #################################### UNPLUG ACCOUNT echo ">>>> PLAYER TW UNPLUG >>>>> ${days} days => BYE BYE ${PLAYER} ZEN=$ZEN" ${MY_PATH}/PLAYER.unplug.sh ~/.zen/game/players/${PLAYER}/ipfs/moa/index.html ${PLAYER} "ALL" continue fi ## PAY 1 ZEN TO UMAPG1PUB [[ "${UMAPG1PUB}" != "" ]] \ && ${MY_PATH}/../tools/PAY4SURE.sh "${HOME}/.zen/game/players/${PLAYER}/secret.dunikey" "0.1" "${UMAPG1PUB}" "UPLANET:TW:${YOUSER}:/ipfs/${TW}" else ### PLAYER ALIVE PUBLISH RSS & FEEDNS=$(ipfs key list -l | grep -w "${PLAYER}_feed" | cut -d ' ' -f 1) [[ ${FEEDNS} ]] \ && IRSS=$(ipfs add --pin=false -q ~/.zen/game/players/${PLAYER}/ipfs/${PLAYER}.rss.json | tail -n 1) \ && echo "Publishing ${PLAYER}_feed: /ipns/${FEEDNS} => /ipfs/${IRSS}" \ && ipfs --timeout 300s name publish --key="${PLAYER}_feed" /ipfs/${IRSS} \ || echo ">>>>> WARNING ${PLAYER}_feed IPNS KEY PUBLISHING CUT - WARNING" fi echo "${PLAYER}" \ > ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}.feed.html fi ## TODO CREATING 30 DAYS XML RSS STREAM ??? ## https://talk.tiddlywiki.org/t/has-anyone-generated-an-rss-feed-from-tiddlywiki/966/26 # tiddlywiki.js --load my-wiki.html --render "[[$:/plugins/sq/feeds/templates/rss]]" "feed.xml" "text/plain" "$:/core/templates/wikified-tiddler" ### $:/plugins/sycom/atom-feed/atom.xml #~ tiddlywiki --load ~/.zen/tmp/${IPFSNODEID}/TW/${PLAYER}/index.html \ #~ --output ~/.zen/game/players/${PLAYER}/ipfs --render '.' "${PLAYER}.rss.xml" 'text/plain' "$:/core/templates/wikified-tiddler" 'exportFilter' '[days:created[-30]!is[system]!tag[G1Voeu]]' ################################################# ################### COPY DATA TO UP LEVEL GRIDS ################################################# ## SECTOR BANK COORD SLAT="${LAT::-1}" SLON="${LON::-1}" ## REGION RLAT=$(echo ${LAT} | cut -d '.' -f 1) RLON=$(echo ${LON} | cut -d '.' -f 1) echo "(⌐■_■) /UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}" ## IPFSNODEID 12345 CACHE UPLANET/__/_*_*/_*.?_*.?/_*.??_*.?? mkdir -p ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/RSS/ cp ~/.zen/game/players/${PLAYER}/ipfs/${PLAYER}.rss.json \ ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/RSS/ #### CREATE ALL JSON COMPILATION ${MY_PATH}/../tools/json_dir.all.sh \ ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/RSS/ ## IPFS PLAYER TW # mkdir -p ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/TW/${PLAYER} # /ipfs/${TW} = /TW/${PLAYER}/index.html echo "${TODATE}:${PLAYER}" \ > ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/TW/${PLAYER}/index.html # /ipns/${ASTRONAUTENS} = /TW/${PLAYER}/_index.html echo "${PLAYER}" \ > ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/TW/${PLAYER}/_index.html ## IPNS UMAP _index.html ## echo "${TODATE}:_${LAT}_${LON}" \ > ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON}/_index.html ls -al ~/.zen/tmp/${IPFSNODEID}/UPLANET/__/_${RLAT}_${RLON}/_${SLAT}_${SLON}/_${LAT}_${LON} 2>/dev/null echo "(☉_☉ ) (☉_☉ ) (☉_☉ )" ##################################################################### ## DAY=7 : SEND ${G1LEVEL1} G1 to PLAYER [[ ${days} -eq 7 && "${CURRENT}" != "${PLAYER}" && "${CURRENT}" != "" ]] \ && echo "7 DAY. PLAYER STEP ONE SUCCEED." \ && MIUSER=$(${MY_PATH}/../tools/clyuseryomail.sh "${CURRENT}") \ && ${MY_PATH}/../tools/PAY4SURE.sh "${HOME}/.zen/game/players/.current/secret.dunikey" "${G1LEVEL1}" "${G1PUB}" "UPLANET:WELCOME:${MIUSER}:${YOUSER}" \ && echo "UPLANET:WELCOME:${MIUSER}:${YOUSER}" && echo "(⌐■_■) ~~~ OFFICIAL ~~ _${LAT}_${LON} ~~~ $ASTRONAUTENS" ## MAINTAIN R/RW TW STATE [[ ${ASTRONS} == "" ]] \ && echo "${PLAYER} DISCONNECT" \ && ipfs key rm ${PLAYER} \ && ipfs key rm ${PLAYER}_feed \ && ipfs key rm ${G1PUB} ## CLEANING CACHE rm -Rf ~/.zen/tmp/${MOATS} echo end=`date +%s` dur=`expr $end - $start` echo "${PLAYER} refreshing took $dur seconds (${MOATS})" done echo "============================================ PLAYER.refresh DONE." exit 0