forked from osuripple/pep.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.BANCHO. Add redis notifications pubsub handler
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from common.redis import generalPubSubHandler | ||
from objects import glob | ||
from constants import serverPackets | ||
|
||
class handler(generalPubSubHandler.generalPubSubHandler): | ||
def __init__(self): | ||
super().__init__() | ||
self.structure = { | ||
"userID": 0, | ||
"message": "" | ||
} | ||
|
||
def handle(self, data): | ||
data = super().parseData(data) | ||
if data is None: | ||
return | ||
targetToken = glob.tokens.getTokenFromUserID(data["userID"]) | ||
if targetToken is not None: | ||
targetToken.enqueue(serverPackets.notification(data["message"])) |