diff --git a/tools/VISA.new.sh b/tools/VISA.new.sh index 24cb0d45..cb469294 100755 --- a/tools/VISA.new.sh +++ b/tools/VISA.new.sh @@ -228,8 +228,8 @@ rm -f ~/.zen/game/players/.current ln -s ~/.zen/game/players/$PLAYER ~/.zen/game/players/.current ## INIT FRIENDSHIP CAPTAIN/ASTRONAUTS -${MY_PATH}/FRIENDS.init.sh - +## ${MY_PATH}/FRIENDS.init.sh +## NO. GCHANGE+ IS THE MAIN INTERFACE, astrXbian manage [[ $1 != "quiet" ]] && echo "Bienvenue 'Astronaute' $PSEUDO ($PLAYER)" [[ $1 != "quiet" ]] && echo "Souvenez-vous bien de votre PASS : $PASS"; sleep 2 diff --git a/tools/qrscan_login.sh b/tools/qrscan_login.sh new file mode 100644 index 00000000..ce90cef6 --- /dev/null +++ b/tools/qrscan_login.sh @@ -0,0 +1,44 @@ +#!/bin/bash +################################################################################ +MY_PATH="`dirname \"$0\"`" # relative +MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized +ME="${0##*/}" + +MOATS=$(date -u +"%Y%m%d%H%M%S%4N") +IPFSNODEID=$(cat ~/.ipfs/config | jq -r .Identity.PeerID) + +instascan=$(ps auxf --sort=+utime | grep -w nc | grep -v -E 'color=auto|grep' | tail -n 1 | cut -d " " -f 1) +[[ $instascan ]] && echo "already running" && exit 1 + +# Check who is .current PLAYER +PLAYER=$(cat ~/.zen/game/players/.current/.player 2>/dev/null) || ( echo "noplayer" && exit 1 ) +PSEUDO=$(cat ~/.zen/game/players/.current/.pseudo 2>/dev/null) || ( echo "nopseudo" && exit 1 ) +G1PUB=$(cat ~/.zen/game/players/.current/.g1pub 2>/dev/null) || ( echo "nog1pub" && exit 1 ) +IPFSNODEID=$(cat ~/.zen/game/players/.current/.ipfsnodeid 2>/dev/null) || ( echo "noipfsnodeid" && exit 1 ) +PLAYERNS=$(cat ~/.zen/game/players/.current/.playerns 2>/dev/null) || ( echo "noplayerns" && exit 1 ) +MOANS=$(cat ~/.zen/game/players/.current/.moans 2>/dev/null) || ( echo "noplayermoans" && exit 1 ) +QOOPNS=$(cat ~/.zen/game/players/.current/.qoopns 2>/dev/null) || ( echo "noplayerqoopns" && exit 1 ) + +# Check if Astroport Station already has a "captain" +source ~/.zen/ipfs.sync; echo "Le capitaine de cet Astroport est actuellement $CAPTAIN" +echo "Astronaute $PLAYER ($PSEUDO) " + +function urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; } + +cat /dev/ttyACM0 | while read line; do + echo $line; + QRCODE=$line + g1pubpath=$(grep $QRCODE ~/.zen/game/players/*/.g1pub | cut -d ':' -f 1 2>/dev/null) + PLAYER=$(echo "$g1pubpath" | rev | cut -d '/' -f 2 | rev 2>/dev/null) + + ## FORCE LOCAL USE ONLY. Remove to open 1234 API + [[ ! -d ~/.zen/game/players/$PLAYER || $PLAYER == "" ]] && echo "AUCUN PLAYER !!" && exit 1 + + ## LOGIN + rm -f ~/.zen/game/players/.current + ln -s ~/.zen/game/players/$PLAYER ~/.zen/game/players/.current + + ~/.zen/Astroport.ONE/tools/PLAYER.entrance.sh ## Switch IPFS Layer with Astronaut ID & astrXbian data index structure + +done +