lichess-notify/notify.py

60 lines
1.8 KiB
Python
Raw Permalink Normal View History

2020-04-24 17:20:43 +02:00
#!/usr/bin/env python
2020-05-22 20:55:03 +02:00
import berserk, subprocess, pickle
2020-05-22 21:21:14 +02:00
from datetime import datetime
from os import path,remove
2020-04-24 17:20:43 +02:00
# Change ACCESS TOKEN according to your need
2020-04-24 18:35:25 +02:00
ACCESS_TOKEN=""
2020-05-22 20:55:03 +02:00
NOTIFY_DURATION=15*60 # Notification duration in seconds
CACHE_FILE="/tmp/lichess_notify_cache" # Change this according to your needs
2020-05-22 21:21:14 +02:00
CACHE_EXPIRE=300 # Change cache expiration in minutes
2020-04-24 17:20:43 +02:00
# Notify using notify-send
def notify_send(summary, message):
2020-05-16 11:08:47 +02:00
subprocess.Popen(['notify-send', '-u', 'critical','-t', str(NOTIFY_DURATION*1000), summary, message])
2020-04-24 17:20:43 +02:00
return
2020-05-22 20:55:03 +02:00
# Check if notify already done
def notify_done(key):
if not(path.exists(CACHE_FILE)):
return(False)
else:
2020-05-22 21:21:14 +02:00
data=dict()
2020-05-22 20:55:03 +02:00
with open(CACHE_FILE, 'rb') as f:
2020-05-22 21:21:14 +02:00
data=pickle.load(f)
2020-10-09 14:35:08 +02:00
if datetime.timestamp(datetime.now()) - data[key] >= CACHE_EXPIRE*60:
2020-05-22 21:21:14 +02:00
remove(CACHE_FILE)
return(False)
else:
2020-10-09 14:35:08 +02:00
return(key in data)
2020-05-22 20:55:03 +02:00
# Save notify key in cache
def add_key(key):
if not(path.exists(CACHE_FILE)):
with open(CACHE_FILE, 'wb') as f:
2020-10-09 14:35:08 +02:00
pickle.dump({key:datetime.timestamp(datetime.now())},f)
2020-05-22 20:55:03 +02:00
else:
2020-05-22 21:21:14 +02:00
data=list()
2020-05-22 20:55:03 +02:00
with open(CACHE_FILE, 'rb') as f:
2020-05-22 21:21:14 +02:00
data=pickle.load(f)
if not(key in data["keys"]):
2020-10-09 14:35:08 +02:00
data[key]=datetime.timestamp(datetime.now())
2020-05-22 20:55:03 +02:00
with open(CACHE_FILE, 'wb') as f:
2020-05-22 21:21:14 +02:00
pickle.dump(data,f)
2020-05-22 20:55:03 +02:00
2020-04-24 17:20:43 +02:00
# Fetch data and notify
session = berserk.TokenSession(ACCESS_TOKEN)
client = berserk.Client(session=session)
data=client.games.get_ongoing()
for game in data:
opponent=game["opponent"]["username"]
lastMove=game["lastMove"]
2020-05-22 20:55:03 +02:00
key=opponent+lastMove
2020-04-24 17:24:57 +02:00
if game["isMyTurn"]:
2020-05-22 20:55:03 +02:00
if not(notify_done(key)):
notify_send("Lichess.org ("+opponent+")","It is your turn !\n Your opponent played "+lastMove)
add_key(key)
2020-04-24 17:20:43 +02:00