mirror of
https://gitlab.wikimedia.org/ladsgroup/Phabricator-maintenance-bot
synced 2024-11-08 13:12:38 +01:00
107 lines
4 KiB
Python
Executable file
107 lines
4 KiB
Python
Executable file
from lib import Client
|
|
|
|
|
|
class Checker():
|
|
def __init__(self, work, client):
|
|
self.work = work
|
|
self.client = client
|
|
|
|
def phid_check(self, phid):
|
|
if self.work.get('projects'):
|
|
return self.phid_check_project(
|
|
phid, [
|
|
self.client.lookupPhid(
|
|
'#' + i) for i in self.work['projects']])
|
|
if self.work.get('status'):
|
|
return self.phid_check_status(phid, self.work['status'])
|
|
return False
|
|
|
|
def phid_check_project(self, phid, project_phids):
|
|
taskDetails = self.client.taskDetails(phid)
|
|
for project_phid in project_phids:
|
|
if project_phid in taskDetails['projectPHIDs']:
|
|
return True
|
|
return False
|
|
|
|
def phid_check_status(self, phid, statuses):
|
|
taskDetails = self.client.taskDetails(phid)
|
|
return taskDetails['statusName'] in statuses
|
|
|
|
|
|
client = Client.newFromCreds()
|
|
|
|
work = [{'from': ['incoming'],
|
|
'project': 'Wikidata',
|
|
'to': 'in progress',
|
|
'projects': ['wikidata-campsite-iteration-∞',
|
|
'Wikibase_Extension_Decoupling_and_Registration',
|
|
'wikidata-bridge-sprint-8']},
|
|
{'from': ['Test (Verification)'],
|
|
'project': 'wikidata-campsite-iteration-∞',
|
|
'to': 'Done',
|
|
'status': ['Resolved']},
|
|
{'from': ['Inbox','Investigate & Discuss','Blocked','Goals','To Prioritize','Triaged Low (0-50)', 'Triaged Medium (50+)','Triaged Big','Active','Subtasks'],
|
|
'project': 'wdwb-tech',
|
|
'to': 'Sorted Team A',
|
|
'projects': ['wmde-team-a-tech']},
|
|
{'from': ['Inbox','Investigate & Discuss','Blocked','Goals','To Prioritize','Triaged Low (0-50)', 'Triaged Medium (50+)','Triaged Big','Active','Subtasks'],
|
|
'project': 'wdwb-tech',
|
|
'to': 'Sorted Team B',
|
|
'projects': ['wmde-team-b-tech']},
|
|
{'from': ['In progress'],
|
|
'project': 'DBA',
|
|
'to': 'Done',
|
|
'status': ['Resolved']},
|
|
{'from': ['Radar',
|
|
'Extensions & Core',
|
|
'Configuration'],
|
|
'project': 'User-RhinosF1',
|
|
'to': 'Done',
|
|
'status': ['Resolved']},
|
|
{'from': ['Backlog',
|
|
'Language conversion',
|
|
'Site configuration'],
|
|
'project': 'Bengali-Sites',
|
|
'to': 'Done',
|
|
'status': ['Resolved']},
|
|
{'from': ['New Tasks',
|
|
'Backlog',
|
|
'Prioritized'],
|
|
'project': 'growthexperiments-mentorship',
|
|
'to': 'In Progress',
|
|
'projects': ['growth-team-current-sprint']},
|
|
{'from': ['Incoming',
|
|
'Radar',
|
|
'Other Projects',
|
|
'[DOT] By Project',
|
|
'[DOT] Prioritized',
|
|
'[DOT] Epics + Stalled'
|
|
'[QT] By Project',
|
|
'[QT] Prioritized',
|
|
'[QT] Epics + Stalled'],
|
|
'project': 'wmde-wikidata-tech',
|
|
'to': 'Ongoing',
|
|
'projects': [
|
|
'wikidata_dev_team_wikidata.org',
|
|
'wikidata_dev_team_quality_tools',
|
|
'wikidata_dev_team_sprint']}
|
|
]
|
|
for case in work:
|
|
gen = client.getTasksWithProject(client.lookupPhid('#' + case['project']))
|
|
checker = Checker(case, client)
|
|
columns = client.getColumns(client.lookupPhid('#' + case['project']))
|
|
mapping = {}
|
|
for column in columns['data']:
|
|
mapping[column['fields']['name']] = column['phid']
|
|
for phid in gen:
|
|
if checker.phid_check(phid):
|
|
project_phid = client.lookupPhid('#' + case['project'])
|
|
currentColumnName = client.getTaskColumns(
|
|
phid)['boards'][project_phid]['columns'][0]['name']
|
|
if currentColumnName not in case['from']:
|
|
continue
|
|
try:
|
|
print(phid)
|
|
client.moveColumns(phid, mapping[case['to']])
|
|
except KeyboardInterrupt:
|
|
continue
|