lichess-notify/notify.py

56 lines
1.6 KiB
Python
Raw 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
from os import path
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-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:
with open(CACHE_FILE, 'rb') as f:
keys=pickle.load(f)
return(key in keys)
# Save notify key in cache
def add_key(key):
if not(path.exists(CACHE_FILE)):
with open(CACHE_FILE, 'wb') as f:
pickle.dump([key],f)
f.close()
else:
keys=list()
with open(CACHE_FILE, 'rb') as f:
keys=pickle.load(f)
f.close()
if not(key in keys):
keys.append(key)
with open(CACHE_FILE, 'wb') as f:
pickle.dump(keys,f)
f.close()
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