new zap notification working

This commit is contained in:
Chris kerr 2024-03-03 10:51:22 -05:00
parent 103926ba25
commit 55dd9d4956
2 changed files with 51 additions and 14 deletions

View File

@ -26,20 +26,12 @@ async def handle_event(event_json):
async def handle_follow_list(follow_list_event):
if "tags" in follow_list_event:
# Check if your pubkey is in the list of "p" tags
your_pubkey_in_list = any(tag[0] == "p" and tag[1] == your_pubkey for tag in follow_list_event["tags"])
if your_pubkey_in_list:
# If your pubkey is in the list, print the author as a follower
author_pubkey = follow_list_event.get("pubkey", "")
if author_pubkey:
print(f"{author_pubkey} is a new follower!")
# Extract the list of "p" tags from the follow list event
p_tags = [tag for tag in follow_list_event["tags"] if tag[0] == "p"]
# Check if your pubkey is the last entry in the "p" tags
if p_tags and p_tags[-1][1] == your_pubkey:
print(f"You have a new follower: {follow_list_event.get('pubkey', '')}")
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(listen_to_relay())
#TODO Fix for intended effect
## Right now, this prints when someone that has you in thier follow list, follows someone.
# It was intended to show when someone follows you, and that works but it's looking for
# kind 3 events and If I'm in it, I get a print out. So this also print if someone follows me
# already follows anyone else.

45
new_zap_notification.py Normal file
View File

@ -0,0 +1,45 @@
import json
import asyncio
import websockets
# Replace these values with your own Nostr account details
your_pubkey = "16f1a0100d4cfffbcc4230e8e0e4290cc5849c1adc64d6653fda07c031b1074b"
your_relay_url = "wss://nos.lol"
async def listen_to_relay():
uri = f"{your_relay_url}/ws"
async with websockets.connect(uri) as websocket:
print("WebSocket connection established.")
# Subscribe to "zap receipt" events
subscription_id = "zap_receipts" # Replace with a unique identifier
subscription_payload = json.dumps(["REQ", subscription_id, {"kinds": [9735]}])
print(f"Subscribing with payload: {subscription_payload}")
await websocket.send(subscription_payload)
while True:
response = await websocket.recv()
# print(f"Received response: {response}")
await handle_event(response)
async def handle_event(event_json):
event = json.loads(event_json)
# print(f"Received event: {event}")
if event[0] == "EVENT" and event[2]["kind"] == 9735: # Zap receipt event
await handle_zap_receipt(event)
async def handle_zap_receipt(zap_receipt_event):
recipient_pubkey = None
for tag in zap_receipt_event[2]["tags"]:
if tag[0] == "p":
recipient_pubkey = tag[1]
# print(f"{recipient_pubkey}")
if recipient_pubkey == your_pubkey:
#sender_pubkey = next((value for key, value in zap_receipt_event[2]["tags"] if key == "P"), None)
print(f"Received a zap") # from {sender_pubkey} to {recipient_pubkey}")
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(listen_to_relay())