adds online status download
This commit is contained in:
parent
a143f9feb5
commit
06865bf6e4
2 changed files with 21 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "Krautspace space status",
|
"name": "Krautspace space status",
|
||||||
"path": "",
|
"path": "",
|
||||||
|
"status_url" : "https://raw.githubusercontent.com/HackspaceJena/space_status/master/raspberry_pi/status.json",
|
||||||
"status_api": {
|
"status_api": {
|
||||||
"url": "https://status.kraut.space/api",
|
"url": "https://status.kraut.space/api",
|
||||||
"standard": "space.api",
|
"standard": "space.api",
|
||||||
|
|
|
@ -5,7 +5,7 @@ import datetime
|
||||||
import tweepy
|
import tweepy
|
||||||
from mastodon import Mastodon
|
from mastodon import Mastodon
|
||||||
import random
|
import random
|
||||||
import time
|
import urllib.request
|
||||||
testmode = False
|
testmode = False
|
||||||
if testmode != True:
|
if testmode != True:
|
||||||
import RPi.GPIO as GPIO
|
import RPi.GPIO as GPIO
|
||||||
|
@ -46,6 +46,12 @@ def send_toot(MASTODON_ACCESS_TOKEN, MASTODON_API_BASE_URL, text, time_now, stat
|
||||||
print(time_now, "did not toot", status," status")
|
print(time_now, "did not toot", status," status")
|
||||||
|
|
||||||
|
|
||||||
|
def download_json(json_url):
|
||||||
|
with urllib.request.urlopen(json_url) as url:
|
||||||
|
data = json.loads(url.read().decode())
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
path = os.path.abspath(__file__)
|
path = os.path.abspath(__file__)
|
||||||
dir_path = os.path.dirname(path)
|
dir_path = os.path.dirname(path)
|
||||||
print("dir path is", dir_path)
|
print("dir path is", dir_path)
|
||||||
|
@ -56,6 +62,7 @@ with open(file_configure_path, 'r') as f:
|
||||||
data_config = json.load(f)
|
data_config = json.load(f)
|
||||||
|
|
||||||
path = data_config["path"]
|
path = data_config["path"]
|
||||||
|
STATUS_URL = data_config["status_url"]
|
||||||
|
|
||||||
|
|
||||||
TWITTER_CONSUMER_KEY = data_config["twitter_api"]["consumer_key"]
|
TWITTER_CONSUMER_KEY = data_config["twitter_api"]["consumer_key"]
|
||||||
|
@ -102,11 +109,19 @@ while True:
|
||||||
|
|
||||||
|
|
||||||
if state != state_b4:
|
if state != state_b4:
|
||||||
file_status_path = dir_path + os.sep + "status.json"
|
|
||||||
|
|
||||||
if os.path.exists(file_status_path) == True:
|
try:
|
||||||
with open(file_status_path, 'r') as f:
|
data_status = download_json(STATUS_URL)
|
||||||
data_status = json.load(f)
|
print("status fetched online")
|
||||||
|
|
||||||
|
except:
|
||||||
|
file_status_path = dir_path + os.sep + "status.json"
|
||||||
|
|
||||||
|
if os.path.exists(file_status_path) == True:
|
||||||
|
with open(file_status_path, 'r') as f:
|
||||||
|
data_status = json.load(f)
|
||||||
|
|
||||||
|
print("status fetched locally")
|
||||||
|
|
||||||
if state == 1 and state_b4 == 0:
|
if state == 1 and state_b4 == 0:
|
||||||
time_opening = datetime.datetime.fromtimestamp(int(time_now)).strftime('%Y-%m-%d %H:%M:%S')
|
time_opening = datetime.datetime.fromtimestamp(int(time_now)).strftime('%Y-%m-%d %H:%M:%S')
|
||||||
|
|
Reference in a new issue