This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Add RT Summary Feature to IRCBot #226
Open
saurabhnarain
wants to merge
3
commits into
master
Choose a base branch
from
add-rt-summary
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.
Open
Changes from all commits
Commits
Show all changes
3 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
"""Announce new RT list every day""" | ||
from datetime import datetime | ||
|
||
from ocflib.infra.rt import rt_connection | ||
from ocflib.infra.rt import RtTicket | ||
|
||
CHANNEL = '#service-comm' | ||
DAYS_OLD = 7 | ||
NUM_LIST = 10 | ||
# Starting point for recent most tickets to be searched | ||
NUM_START = 10500 | ||
|
||
|
||
def show_tickets(bot): | ||
"""Show RT tickets that need responses.""" | ||
rt = rt_connection(user='create', password=bot.rt_password) | ||
bot.say(CHANNEL, 'Top 10 new tickets in the help queue that are older than a week:') | ||
|
||
counter = 0 | ||
counter_success = 0 | ||
num_newest_rt = newest_rt_number(rt, NUM_START) | ||
while counter_success < NUM_LIST: | ||
ticket_number = num_newest_rt - counter | ||
ticket = RtTicket.from_number(rt, ticket_number) | ||
if out_of_range(ticket): | ||
break | ||
|
||
# Finds the date of a specific ticket | ||
lines = rt.get(f'https://rt.ocf.berkeley.edu/REST/1.0/ticket/{ticket_number}/view').text.splitlines() | ||
for line in lines: | ||
if line.startswith('Created: '): | ||
ticket_date = line.split(': ', 1)[1] | ||
ticket_date = datetime.strptime(ticket_date, '%a %b %d %H:%M:%S %Y') | ||
|
||
if ticket.queue == 'help' and ticket.status == 'new' and (datetime.today() - ticket_date).days >= DAYS_OLD: | ||
bot.say(CHANNEL, str(ticket)) | ||
counter_success += 1 | ||
counter += 1 | ||
bot.say(CHANNEL, 'Completed.') | ||
|
||
|
||
def out_of_range(ticket): | ||
if ticket.owner is None and ticket.subject is None and ticket.queue is None and ticket.status is None: | ||
return True | ||
return False | ||
|
||
|
||
def newest_rt_number(rt, start): | ||
ticket_number = start | ||
ticket = RtTicket.from_number(rt, ticket_number) | ||
while not out_of_range(ticket): | ||
ticket_number += 1 | ||
ticket = RtTicket.from_number(rt, ticket_number) | ||
return ticket_number - 1 |
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
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.
I thought about this a bit, and I think the heuristic for "needs responses most" are the oldest tickets in a queue.
If someone submits a ticket today, its usually ok if we take a day to respond, but if its been a week we really should respond ASAP.
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.
that is a much better idea!