generated from anoadragon453/nio-template
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check sender and bot PL before accepting room reminder #157
Draft
HarHarLinks
wants to merge
2
commits into
master
Choose a base branch
from
HarHarLinks/check-room-ping-pl
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -338,8 +338,25 @@ async def _remind_me(self): | |||||||||
"""Set a reminder that will remind only the user who created it""" | ||||||||||
await self._remind(target=self.event.sender) | ||||||||||
|
||||||||||
async def _insufficient_room_ping_pl(self): | ||||||||||
room_ping_pl = self.room.power_levels.defaults.notifications.get('room') | ||||||||||
sender_pl = self.room.power_levels.users.get(self.event.sender, 0) | ||||||||||
bot_pl = self.room.power_levels.users.get(self.client.user_id, 0) | ||||||||||
if sender_pl < room_ping_pl: | ||||||||||
insufficient = f"You (<code>{sender_pl}</code>) do" | ||||||||||
elif bot_pl < room_ping_pl: | ||||||||||
insufficient = f"The bot (<code>{bot_pl}</code>) does" | ||||||||||
|
||||||||||
if insufficient is not None: | ||||||||||
text = f"Insufficient rights: {insufficient} not have the required power level to ping the whole room (<code>{room_ping_pl}</code>)." | ||||||||||
await send_text_to_room(self.client, self.room.room_id, text) | ||||||||||
return True | ||||||||||
Comment on lines
+351
to
+353
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
@command_syntax("[every <recurring time>;] <start time>; <reminder text>") | ||||||||||
async def _remind_room(self): | ||||||||||
if await self._insufficient_room_ping_pl(): | ||||||||||
return | ||||||||||
Comment on lines
+357
to
+358
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
"""Set a reminder that will mention the room that the reminder was created in""" | ||||||||||
await self._remind() | ||||||||||
|
||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the use case of #80 is not possible to partially work around with PLs anymore, so it now needs to get addressed more than ever.