mynode/rootfs/standard/usr/bin/mynode_check_in.py
2021-11-19 21:34:53 -06:00

174 lines
7.0 KiB
Python
Executable File

#!/usr/local/bin/python3
import os
import requests
import time
import subprocess
import random
CHECKIN_URL = "https://www.mynodebtc.com/device_api/check_in.php"
latest_version_check_count = 0
# Helper functions
def unset_skipped_product_key():
os.system("rm -rf /home/bitcoin/.mynode/.product_key_skipped")
os.system("rm -rf /mnt/hdd/mynode/settings/.product_key_skipped")
def delete_product_key_error():
os.system("rm -rf /home/bitcoin/.mynode/.product_key_error")
os.system("rm -rf /mnt/hdd/mynode/settings/.product_key_error")
def get_current_version():
current_version = "0.0"
try:
with open("/usr/share/mynode/version", "r") as f:
current_version = f.read().strip()
except:
current_version = "error"
return current_version
def get_device_type():
device = subprocess.check_output("mynode-get-device-type", shell=True).decode("utf-8").strip()
return device
def get_device_arch():
arch = subprocess.check_output("uname -m", shell=True).decode("utf-8").strip()
return arch
def get_device_serial():
serial = subprocess.check_output("mynode-get-device-serial", shell=True).decode("utf-8").strip()
return serial
def skipped_product_key():
return os.path.isfile("/home/bitcoin/.mynode/.product_key_skipped") or \
os.path.isfile("/mnt/hdd/mynode/settings/.product_key_skipped")
def has_product_key():
return os.path.isfile("/home/bitcoin/.mynode/.product_key")
def get_product_key():
product_key = "no_product_key"
if skipped_product_key():
return "community_edition"
if not has_product_key():
return "product_key_missing"
try:
with open("/home/bitcoin/.mynode/.product_key", "r") as f:
product_key = f.read().strip()
except:
product_key = "product_key_error"
return product_key
def is_drive_mounted():
mounted = True
try:
# Command fails and throws exception if not mounted
output = subprocess.check_output(f"grep -qs '/mnt/hdd ext4' /proc/mounts", shell=True).decode("utf-8")
except:
mounted = False
return mounted
def get_drive_size():
size = -1
if not is_drive_mounted():
return -3
try:
size = subprocess.check_output("df /mnt/hdd | grep /dev | awk '{print $2}'", shell=True).strip()
size = int(size) / 1000 / 1000
except Exception as e:
size = -2
return size
def get_quicksync_enabled():
enabled = 1
if not is_drive_mounted():
return -3
if os.path.isfile("/mnt/hdd/mynode/settings/quicksync_disabled"):
enabled = 0
return enabled
def check_for_new_mynode_version():
global latest_version_check_count
# Chances of refreshing version
# Note: Hard limit forces day 5 to 100%
#
# A 30% chance per day is: A 35% chance per day is: A 40% chance per day is: A 45% chance per day is:
# 1 day(s): 30% 1 day(s): 35% 1 day(s): 40% 1 day(s): 45%
# 2 day(s): 51% 2 day(s): 57% 2 day(s): 64% 2 day(s): 69%
# 3 day(s): 65% 3 day(s): 72% 3 day(s): 78% 3 day(s): 83%
# 5 day(s): 83% 5 day(s): 88% 5 day(s): 92% 5 day(s): 94%
# 7 day(s): 91% 7 day(s): 95% 7 day(s): 97% 7 day(s): 98%
# A 50% chance per day is: A 55% chance per day is: A 60% chance per day is: A 65% chance per day is:
# 1 day(s): 50% 1 day(s): 55% 1 day(s): 60% 1 day(s): 65%
# 2 day(s): 75% 2 day(s): 79% 2 day(s): 84% 2 day(s): 87%
# 3 day(s): 87% 3 day(s): 90% 3 day(s): 93% 3 day(s): 95%
# 5 day(s): 96% 5 day(s): 98% 5 day(s): 99% 5 day(s): 99%
# 7 day(s): 99.2% 7 day(s): 99.6% 7 day(s): 99.8% 7 day(s): 99.9%
if latest_version_check_count % 5 == 0 or random.randint(1, 100) <= 40:
os.system("printf \"%s | Version Check Count ({}) - Checking for new version! \\n\" \"$(date)\" >> /tmp/check_in_status".format(latest_version_check_count))
os.system("/usr/bin/mynode_get_latest_version.sh")
else:
os.system("printf \"%s | Version Check Count ({}) - Skipping version check \\n\" \"$(date)\" >> /tmp/check_in_status".format(latest_version_check_count))
latest_version_check_count = latest_version_check_count + 1
# Checkin every 24 hours
def check_in():
# Check in
product_key = get_product_key()
data = {
"serial": get_device_serial(),
"device_type": get_device_type(),
"device_arch": get_device_arch(),
"version": get_current_version(),
"product_key": product_key,
"drive_size": get_drive_size(),
"quicksync_enabled": get_quicksync_enabled(),
}
# Check for new version (not every time to spread out upgrades)
check_for_new_mynode_version()
# Setup tor proxy
session = requests.session()
session.proxies = {}
session.proxies['http'] = 'socks5h://localhost:9050'
session.proxies['https'] = 'socks5h://localhost:9050'
# Check In
fail_count = 0
check_in_success = False
while not check_in_success:
try:
# Use tor for check in unless there have been tor 5 failures in a row
r = None
if (fail_count+1) % 5 == 0:
r = requests.post(CHECKIN_URL, data=data, timeout=15)
else:
r = session.post(CHECKIN_URL, data=data, timeout=15)
if r.status_code == 200:
if r.text == "OK":
os.system("printf \"%s | Check In Success: {} \\n\" \"$(date)\" >> /tmp/check_in_status".format(r.text))
if product_key != "community_edition":
unset_skipped_product_key()
delete_product_key_error()
else:
os.system("echo '{}' > /home/bitcoin/.mynode/.product_key_error".format(r.text))
os.system("printf \"%s | Check In Returned Error: {} \\n\" \"$(date)\" >> /tmp/check_in_status".format(r.text))
os.system("rm -f /tmp/check_in_error")
check_in_success = True
else:
os.system("printf \"%s | Check In Failed. Retrying... Code {} \\n\" \"$(date)\" >> /tmp/check_in_status".format(r.status_code))
except Exception as e:
os.system("printf \"%s | Check In Failed. Retrying... Exception {} \\n\" \"$(date)\" >> /tmp/check_in_status".format(e))
if not check_in_success:
# Check in failed, try again in 3 minutes
os.system("touch /tmp/check_in_error")
time.sleep(120)
fail_count = fail_count + 1
return True
# Run check in every 24 hours
if __name__ == "__main__":
delay = 180
while True:
time.sleep(delay) # Delay before first checkin so drive is likely mounted
check_in()
time.sleep(60*60*24 - delay)