-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathassign.rs
1001 lines (928 loc) · 38.5 KB
/
assign.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Handles PR and issue assignment.
//!
//! This supports several ways for setting issue/PR assignment:
//!
//! * `@rustbot assign @gh-user`: Assigns to the given user.
//! * `@rustbot claim`: Assigns to the comment author.
//! * `@rustbot release-assignment`: Removes the commenter's assignment.
//! * `r? @user`: Assigns to the given user (PRs only).
//!
//! Note: this module does not handle review assignments issued from the
//! GitHub "Assignees" dropdown menu
//!
//! This is capable of assigning to any user, even if they do not have write
//! access to the repo. It does this by fake-assigning the bot and adding a
//! "claimed by" section to the top-level comment.
//!
//! Configuration is done with the `[assign]` table.
//!
//! This also supports auto-assignment of new PRs. Based on rules in the
//! `assign.owners` config, it will auto-select an assignee based on the files
//! the PR modifies.
use crate::{
config::{AssignConfig, WarnNonDefaultBranchException},
github::{self, Event, FileDiff, Issue, IssuesAction, Selection},
handlers::{Context, GithubClient, IssuesEvent},
interactions::EditIssueBody,
};
use anyhow::{bail, Context as _};
use parser::command::assign::AssignCommand;
use parser::command::{Command, Input};
use rand::seq::IteratorRandom;
use rust_team_data::v1::Teams;
use std::collections::{HashMap, HashSet};
use std::fmt;
use tokio_postgres::Client as DbClient;
use tracing as log;
#[cfg(test)]
mod tests {
mod tests_candidates;
mod tests_from_diff;
}
const NEW_USER_WELCOME_MESSAGE: &str = "Thanks for the pull request, and welcome! \
The Rust team is excited to review your changes, and you should hear from {who} \
some time within the next two weeks.";
const CONTRIBUTION_MESSAGE: &str = "Please see [the contribution \
instructions]({contributing_url}) for more information. Namely, in order to ensure the \
minimum review times lag, PR authors and assigned reviewers should ensure that the review \
label (`S-waiting-on-review` and `S-waiting-on-author`) stays updated, invoking these commands \
when appropriate:
- `@{bot} author`: the review is finished, PR author should check the comments and take action accordingly
- `@{bot} review`: the author is ready for a review, this PR will be queued again in the reviewer's queue";
const WELCOME_WITH_REVIEWER: &str = "@{assignee} (or someone else)";
const WELCOME_WITHOUT_REVIEWER: &str = "@Mark-Simulacrum (NB. this repo may be misconfigured)";
const RETURNING_USER_WELCOME_MESSAGE: &str = "r? @{assignee}
{bot} has assigned @{assignee}.
They will have a look at your PR within the next two weeks and either review your PR or \
reassign to another reviewer.
Use `r?` to explicitly pick a reviewer";
const RETURNING_USER_WELCOME_MESSAGE_NO_REVIEWER: &str =
"@{author}: no appropriate reviewer found, use `r?` to override";
const ON_VACATION_WARNING: &str = "{username} is on vacation.
Please choose another assignee.";
const NON_DEFAULT_BRANCH: &str =
"Pull requests are usually filed against the {default} branch for this repo, \
but this one is against {target}. \
Please double check that you specified the right target!";
const NON_DEFAULT_BRANCH_EXCEPTION: &str =
"Pull requests targetting the {default} branch are usually filed against the {default} \
branch, but this one is against {target}. \
Please double check that you specified the right target!";
const SUBMODULE_WARNING_MSG: &str = "These commits modify **submodules**.";
pub const SELF_ASSIGN_HAS_NO_CAPACITY: &str = "
You have insufficient capacity to be assigned the pull request at this time. PR assignment has been reverted.
Please choose another assignee or increase your assignment limit.
(see [documentation](https://forge.rust-lang.org/triagebot/pr-assignment-tracking.html))";
pub const REVIEWER_HAS_NO_CAPACITY: &str = "
`{username}` has insufficient capacity to be assigned the pull request at this time. PR assignment has been reverted.
Please choose another assignee.
(see [documentation](https://forge.rust-lang.org/triagebot/pr-assignment-tracking.html))";
const NO_REVIEWER_HAS_CAPACITY: &str = "
Could not find a reviewer with enough capacity to be assigned at this time. This is a problem.
Please contact us on [#t-infra](https://rust-lang.zulipchat.com/#narrow/stream/242791-t-infra) on Zulip.
cc: @jackh726 @apiraino";
const REVIEWER_IS_PR_AUTHOR: &str = "Pull request author cannot be assigned as reviewer.
Please choose another assignee.";
const REVIEWER_ALREADY_ASSIGNED: &str =
"Requested reviewer is already assigned to this pull request.
Please choose another assignee.";
#[derive(Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
struct AssignData {
user: Option<String>,
}
/// Input for auto-assignment when a PR is created.
pub(super) struct AssignInput {}
/// Prepares the input when a new PR is opened.
pub(super) async fn parse_input(
_ctx: &Context,
event: &IssuesEvent,
config: Option<&AssignConfig>,
) -> Result<Option<AssignInput>, String> {
let config = match config {
Some(config) => config,
None => return Ok(None),
};
if config.owners.is_empty()
|| !matches!(event.action, IssuesAction::Opened)
|| !event.issue.is_pr()
{
return Ok(None);
}
Ok(Some(AssignInput {}))
}
/// Handles the work of setting an assignment for a new PR and posting a
/// welcome message.
pub(super) async fn handle_input(
ctx: &Context,
config: &AssignConfig,
event: &IssuesEvent,
_input: AssignInput,
) -> anyhow::Result<()> {
let Some(diff) = event.issue.diff(&ctx.github).await? else {
bail!(
"expected issue {} to be a PR, but the diff could not be determined",
event.issue.number
)
};
// Don't auto-assign or welcome if the user manually set the assignee when opening.
if event.issue.assignees.is_empty() {
let (assignee, from_comment) = determine_assignee(ctx, event, config, &diff).await?;
if assignee.as_deref() == Some("ghost") {
// "ghost" is GitHub's placeholder account for deleted accounts.
// It is used here as a convenient way to prevent assignment. This
// is typically used for rollups or experiments where you don't
// want any assignments or noise.
return Ok(());
}
// This is temporarily disabled until we come up with a better
// solution, or decide to remove this. The `is_new_contributor` query
// is too expensive and takes too long to process.
let welcome = if false
&& ctx
.github
.is_new_contributor(&event.repository, &event.issue.user.login)
.await
{
let who_text = match &assignee {
Some(assignee) => WELCOME_WITH_REVIEWER.replace("{assignee}", assignee),
None => WELCOME_WITHOUT_REVIEWER.to_string(),
};
let mut welcome = NEW_USER_WELCOME_MESSAGE.replace("{who}", &who_text);
if let Some(contrib) = &config.contributing_url {
welcome.push_str("\n\n");
welcome.push_str(
&CONTRIBUTION_MESSAGE
.replace("{contributing_url}", contrib)
.replace("{bot}", &ctx.username),
);
}
Some(welcome)
} else if !from_comment {
let welcome = match &assignee {
Some(assignee) => RETURNING_USER_WELCOME_MESSAGE
.replace("{assignee}", assignee)
.replace("{bot}", &ctx.username),
None => RETURNING_USER_WELCOME_MESSAGE_NO_REVIEWER
.replace("{author}", &event.issue.user.login),
};
Some(welcome)
} else {
// No welcome is posted if they are not new and they used `r?` in the opening body.
None
};
if let Some(assignee) = assignee {
set_assignee(&event.issue, &ctx.github, &assignee).await;
}
if let Some(welcome) = welcome {
if let Err(e) = event.issue.post_comment(&ctx.github, &welcome).await {
log::warn!(
"failed to post welcome comment to {}: {e}",
event.issue.global_id()
);
}
}
}
// Compute some warning messages to post to new PRs.
let mut warnings = Vec::new();
if let Some(exceptions) = config.warn_non_default_branch.enabled_and_exceptions() {
warnings.extend(non_default_branch(exceptions, event));
}
warnings.extend(modifies_submodule(diff));
if !warnings.is_empty() {
let warnings: Vec<_> = warnings
.iter()
.map(|warning| format!("* {warning}"))
.collect();
let warning = format!(":warning: **Warning** :warning:\n\n{}", warnings.join("\n"));
event.issue.post_comment(&ctx.github, &warning).await?;
};
Ok(())
}
/// Finds the `r?` command in the PR body.
///
/// Returns the name after the `r?` command, or None if not found.
fn find_assign_command(ctx: &Context, event: &IssuesEvent) -> Option<String> {
let mut input = Input::new(&event.issue.body, vec![&ctx.username]);
input.find_map(|command| match command {
Command::Assign(Ok(AssignCommand::ReviewName { name })) => Some(name),
_ => None,
})
}
fn is_self_assign(assignee: &str, pr_author: &str) -> bool {
assignee.to_lowercase() == pr_author.to_lowercase()
}
/// Returns a message if the PR is opened against the non-default branch (or the exception branch
/// if it's an exception).
fn non_default_branch(
exceptions: &[WarnNonDefaultBranchException],
event: &IssuesEvent,
) -> Option<String> {
let target_branch = &event.issue.base.as_ref().unwrap().git_ref;
let (default_branch, warn_msg) = exceptions
.iter()
.find(|e| event.issue.title.contains(&e.title))
.map_or_else(
|| (&event.repository.default_branch, NON_DEFAULT_BRANCH),
|e| (&e.branch, NON_DEFAULT_BRANCH_EXCEPTION),
);
if target_branch == default_branch {
return None;
}
Some(
warn_msg
.replace("{default}", default_branch)
.replace("{target}", target_branch),
)
}
/// Returns a message if the PR modifies a git submodule.
fn modifies_submodule(diff: &[FileDiff]) -> Option<String> {
let re = regex::Regex::new(r"\+Subproject\scommit\s").unwrap();
if diff.iter().any(|fd| re.is_match(&fd.diff)) {
Some(SUBMODULE_WARNING_MSG.to_string())
} else {
None
}
}
/// Sets the assignee of a PR, alerting any errors.
async fn set_assignee(issue: &Issue, github: &GithubClient, username: &str) {
// Don't re-assign if already assigned, e.g. on comment edit
if issue.contain_assignee(&username) {
log::trace!(
"ignoring assign PR {} to {}, already assigned",
issue.global_id(),
username,
);
return;
}
if let Err(err) = issue.set_assignee(github, &username).await {
log::warn!(
"failed to set assignee of PR {} to {}: {:?}",
issue.global_id(),
username,
err
);
if let Err(e) = issue
.post_comment(
github,
&format!(
"Failed to set assignee to `{username}`: {err}\n\
\n\
> **Note**: Only org members with at least the repository \"read\" role, \
users with write permissions, or people who have commented on the PR may \
be assigned."
),
)
.await
{
log::warn!("failed to post error comment: {e}");
}
}
}
/// Determines who to assign the PR to based on either an `r?` command, or
/// based on which files were modified.
///
/// Will also check if candidates have capacity in their work queue.
///
/// Returns `(assignee, from_comment)` where `assignee` is who to assign to
/// (or None if no assignee could be found). `from_comment` is a boolean
/// indicating if the assignee came from an `r?` command (it is false if
/// determined from the diff).
async fn determine_assignee(
ctx: &Context,
event: &IssuesEvent,
config: &AssignConfig,
diff: &[FileDiff],
) -> anyhow::Result<(Option<String>, bool)> {
let db_client = ctx.db.get().await;
let teams = crate::team_data::teams(&ctx.github).await?;
if let Some(name) = find_assign_command(ctx, event) {
if is_self_assign(&name, &event.issue.user.login) {
return Ok((Some(name.to_string()), true));
}
// User included `r?` in the opening PR body.
match find_reviewer_from_names(&db_client, &teams, config, &event.issue, &[name]).await {
Ok(assignee) => return Ok((Some(assignee), true)),
Err(e) => {
event
.issue
.post_comment(&ctx.github, &e.to_string())
.await?;
// Fall through below for normal diff detection.
}
}
}
// Errors fall-through to try fallback group.
match find_reviewers_from_diff(config, diff) {
Ok(candidates) if !candidates.is_empty() => {
match find_reviewer_from_names(&db_client, &teams, config, &event.issue, &candidates)
.await
{
Ok(assignee) => return Ok((Some(assignee), false)),
Err(FindReviewerError::TeamNotFound(team)) => log::warn!(
"team {team} not found via diff from PR {}, \
is there maybe a misconfigured group?",
event.issue.global_id()
),
Err(
e @ FindReviewerError::NoReviewer { .. }
| e @ FindReviewerError::AllReviewersFiltered { .. }
| e @ FindReviewerError::NoReviewerHasCapacity
| e @ FindReviewerError::ReviewerHasNoCapacity { .. }
| e @ FindReviewerError::ReviewerIsPrAuthor { .. }
| e @ FindReviewerError::ReviewerAlreadyAssigned { .. },
) => log::trace!(
"no reviewer could be determined for PR {}: {e}",
event.issue.global_id()
),
Err(e @ FindReviewerError::ReviewerOnVacation { .. }) => {
// TODO: post a comment on the PR if the reviewer(s) were filtered due to being on vacation
log::trace!(
"no reviewer could be determined for PR {}: {e}",
event.issue.global_id()
)
}
}
}
// If no owners matched the diff, fall-through.
Ok(_) => {}
Err(e) => {
log::warn!(
"failed to find candidate reviewer from diff due to error: {e}\n\
Is the triagebot.toml misconfigured?"
);
}
}
if let Some(fallback) = config.adhoc_groups.get("fallback") {
match find_reviewer_from_names(&db_client, &teams, config, &event.issue, fallback).await {
Ok(assignee) => return Ok((Some(assignee), false)),
Err(e) => {
log::trace!(
"failed to select from fallback group for PR {}: {e}",
event.issue.global_id()
);
}
}
}
Ok((None, false))
}
/// Returns a list of candidate reviewers to use based on which files were changed.
///
/// May return an error if the owners map is misconfigured.
///
/// Beware this may return an empty list if nothing matches.
fn find_reviewers_from_diff(
config: &AssignConfig,
diff: &[FileDiff],
) -> anyhow::Result<Vec<String>> {
// Map of `owners` path to the number of changes found in that path.
// This weights the reviewer choice towards places where the most edits are done.
let mut counts: HashMap<&str, u32> = HashMap::new();
// Iterate over the diff, counting the number of modified lines in each
// file, and tracks those in the `counts` map.
for file_diff in diff {
// List of the longest `owners` patterns that match the current path. This
// prefers choosing reviewers from deeply nested paths over those defined
// for top-level paths, under the assumption that they are more
// specialized.
//
// This is a list to handle the situation if multiple paths of the same
// length match.
let mut longest_owner_patterns = Vec::new();
// Find the longest `owners` entries that match this path.
let mut longest = HashMap::new();
for owner_pattern in config.owners.keys() {
let ignore = ignore::gitignore::GitignoreBuilder::new("/")
.add_line(None, owner_pattern)
.with_context(|| format!("owner file pattern `{owner_pattern}` is not valid"))?
.build()?;
if ignore
.matched_path_or_any_parents(&file_diff.path, false)
.is_ignore()
{
let owner_len = owner_pattern.split('/').count();
longest.insert(owner_pattern, owner_len);
}
}
let max_count = longest.values().copied().max().unwrap_or(0);
longest_owner_patterns.extend(
longest
.iter()
.filter(|(_, count)| **count == max_count)
.map(|x| *x.0),
);
// Give some weight to these patterns to start. This helps with
// files modified without any lines changed.
for owner_pattern in &longest_owner_patterns {
*counts.entry(owner_pattern).or_default() += 1;
}
// Count the modified lines.
for line in file_diff.diff.lines() {
if (!line.starts_with("+++") && line.starts_with('+'))
|| (!line.starts_with("---") && line.starts_with('-'))
{
for owner_path in &longest_owner_patterns {
*counts.entry(owner_path).or_default() += 1;
}
}
}
}
// Use the `owners` entry with the most number of modifications.
let max_count = counts.values().copied().max().unwrap_or(0);
let max_paths = counts
.iter()
.filter(|(_, count)| **count == max_count)
.map(|(path, _)| path);
let mut potential: Vec<_> = max_paths
.flat_map(|owner_path| &config.owners[*owner_path])
.map(|owner| owner.to_string())
.collect();
// Dedupe. This isn't strictly necessary, as `find_reviewer_from_names` will deduplicate.
// However, this helps with testing.
potential.sort();
potential.dedup();
Ok(potential)
}
/// Handles a command posted in a comment.
pub(super) async fn handle_command(
ctx: &Context,
config: &AssignConfig,
event: &Event,
cmd: AssignCommand,
) -> anyhow::Result<()> {
let is_team_member = if let Err(_) | Ok(false) = event.user().is_team_member(&ctx.github).await
{
false
} else {
true
};
// Don't handle commands in comments from the bot. Some of the comments it
// posts contain commands to instruct the user, not things that the bot
// should respond to.
if event.user().login == ctx.username.as_str() {
return Ok(());
}
let issue = event.issue().unwrap();
if issue.is_pr() {
if !issue.is_open() {
issue
.post_comment(&ctx.github, "Assignment is not allowed on a closed PR.")
.await?;
return Ok(());
}
let username = match cmd {
AssignCommand::Own => event.user().login.clone(),
AssignCommand::User { username } => {
// Allow users on vacation to assign themselves to a PR, but not anyone else.
if config.is_on_vacation(&username)
&& event.user().login.to_lowercase() != username.to_lowercase()
{
// This is a comment, so there must already be a reviewer assigned. No need to assign anyone else.
issue
.post_comment(
&ctx.github,
&ON_VACATION_WARNING.replace("{username}", &username),
)
.await?;
return Ok(());
}
username
}
AssignCommand::Release => {
log::trace!(
"ignoring release on PR {:?}, must always have assignee",
issue.global_id()
);
return Ok(());
}
AssignCommand::ReviewName { name } => {
if config.owners.is_empty() {
// To avoid conflicts with the highfive bot while transitioning,
// r? is ignored if `owners` is not configured in triagebot.toml.
return Ok(());
}
if matches!(
event,
Event::Issue(IssuesEvent {
action: IssuesAction::Opened,
..
})
) {
// Don't handle r? comments on new PRs. Those will be
// handled by the new PR trigger (which also handles the
// welcome message).
return Ok(());
}
let db_client = ctx.db.get().await;
if is_self_assign(&name, &event.user().login) {
// let work_queue = has_user_capacity(&db_client, &name).await;
// if work_queue.is_err() {
// // NOTE: disabled for now, just log
// log::warn!(
// "[#{}] PR self-assign failed, DB reported that user {} has no review capacity. Ignoring.",
// issue.number,
// name
// );
// // issue
// // .post_comment(
// // &ctx.github,
// // &REVIEWER_HAS_NO_CAPACITY.replace("{username}", &name),
// // )
// // .await?;
// // return Ok(());
// }
name.to_string()
} else {
let teams = crate::team_data::teams(&ctx.github).await?;
// remove "t-" or "T-" prefixes before checking if it's a team name
let team_name = name.trim_start_matches("t-").trim_start_matches("T-");
// Determine if assignee is a team. If yes, add the corresponding GH label.
if teams.teams.get(team_name).is_some() {
let t_label = format!("T-{}", &team_name);
if let Err(err) = issue
.add_labels(&ctx.github, vec![github::Label { name: t_label }])
.await
{
if let Some(github::UnknownLabels { .. }) = err.downcast_ref() {
log::warn!("Error assigning label: {}", err);
} else {
return Err(err);
}
}
}
match find_reviewer_from_names(
&db_client,
&teams,
config,
issue,
&[team_name.to_string()],
)
.await
{
Ok(assignee) => assignee,
Err(e) => {
issue.post_comment(&ctx.github, &e.to_string()).await?;
return Ok(());
}
}
}
}
};
// This user is validated and can accept the PR
set_assignee(issue, &ctx.github, &username).await;
// This PR will now be registered in the reviewer's work queue
// by the `pr_tracking` handler
return Ok(());
}
let e = EditIssueBody::new(&issue, "ASSIGN");
let to_assign = match cmd {
AssignCommand::Own => event.user().login.clone(),
AssignCommand::User { username } => {
if !is_team_member && username != event.user().login {
bail!("Only Rust team members can assign other users");
}
username.clone()
}
AssignCommand::Release => {
if let Some(AssignData {
user: Some(current),
}) = e.current_data()
{
if current == event.user().login || is_team_member {
issue.remove_assignees(&ctx.github, Selection::All).await?;
e.apply(&ctx.github, String::new(), AssignData { user: None })
.await?;
return Ok(());
} else {
bail!("Cannot release another user's assignment");
}
} else {
let current = &event.user().login;
if issue.contain_assignee(current) {
issue
.remove_assignees(&ctx.github, Selection::One(¤t))
.await?;
e.apply(&ctx.github, String::new(), AssignData { user: None })
.await?;
return Ok(());
} else {
bail!("Cannot release unassigned issue");
}
};
}
AssignCommand::ReviewName { .. } => bail!("r? is only allowed on PRs."),
};
// Don't re-assign if aleady assigned, e.g. on comment edit
if issue.contain_assignee(&to_assign) {
log::trace!(
"ignoring assign issue {} to {}, already assigned",
issue.global_id(),
to_assign,
);
return Ok(());
}
let data = AssignData {
user: Some(to_assign.clone()),
};
e.apply(&ctx.github, String::new(), &data).await?;
// Assign the PR: user's work queue has been checked and can accept this PR
match issue.set_assignee(&ctx.github, &to_assign).await {
Ok(()) => return Ok(()), // we are done
Err(github::AssignmentError::InvalidAssignee) => {
issue
.set_assignee(&ctx.github, &ctx.username)
.await
.context("self-assignment failed")?;
let cmt_body = format!(
"This issue has been assigned to @{} via [this comment]({}).",
to_assign,
event.html_url().unwrap()
);
e.apply(&ctx.github, cmt_body, &data).await?;
}
Err(e) => return Err(e.into()),
}
Ok(())
}
#[derive(PartialEq, Debug)]
pub enum FindReviewerError {
/// User specified something like `r? foo/bar` where that team name could
/// not be found.
TeamNotFound(String),
/// No reviewer could be found.
///
/// This could happen if there is a cyclical group or other misconfiguration.
/// `initial` is the initial list of candidate names.
NoReviewer { initial: Vec<String> },
/// All potential candidates were excluded. `initial` is the list of
/// candidate names that were used to seed the selection. `filtered` is
/// the users who were prevented from being assigned. One example where
/// this happens is if the given name was for a team where the PR author
/// is the only member.
AllReviewersFiltered {
initial: Vec<String>,
filtered: Vec<String>,
},
/// No reviewer has capacity to accept a pull request assignment at this time
NoReviewerHasCapacity,
/// The requested reviewer has no capacity to accept a pull request
/// assignment at this time
ReviewerHasNoCapacity { username: String },
/// Requested reviewer is on vacation
/// (i.e. username is in [users_on_vacation] in the triagebot.toml)
ReviewerOnVacation { username: String },
/// Requested reviewer is PR author
ReviewerIsPrAuthor { username: String },
/// Requested reviewer is already assigned to that PR
ReviewerAlreadyAssigned { username: String },
}
impl std::error::Error for FindReviewerError {}
impl fmt::Display for FindReviewerError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match self {
FindReviewerError::TeamNotFound(team) => {
write!(
f,
"Team or group `{team}` not found.\n\
\n\
rust-lang team names can be found at https://github.com/rust-lang/team/tree/master/teams.\n\
Reviewer group names can be found in `triagebot.toml` in this repo."
)
}
FindReviewerError::NoReviewer { initial } => {
write!(
f,
"No reviewers could be found from initial request `{}`\n\
This repo may be misconfigured.\n\
Use `r?` to specify someone else to assign.",
initial.join(",")
)
}
FindReviewerError::AllReviewersFiltered { initial, filtered } => {
write!(
f,
"Could not assign reviewer from: `{}`.\n\
User(s) `{}` are either the PR author, already assigned, or on vacation. \
Please use `r?` to specify someone else to assign.",
initial.join(","),
filtered.join(","),
)
}
FindReviewerError::ReviewerHasNoCapacity { username } => {
write!(
f,
"{}",
REVIEWER_HAS_NO_CAPACITY.replace("{username}", username)
)
}
FindReviewerError::NoReviewerHasCapacity => {
write!(f, "{}", NO_REVIEWER_HAS_CAPACITY)
}
FindReviewerError::ReviewerOnVacation { username } => {
write!(f, "{}", ON_VACATION_WARNING.replace("{username}", username))
}
FindReviewerError::ReviewerIsPrAuthor { username } => {
write!(
f,
"{}",
REVIEWER_IS_PR_AUTHOR.replace("{username}", username)
)
}
FindReviewerError::ReviewerAlreadyAssigned { username } => {
write!(
f,
"{}",
REVIEWER_ALREADY_ASSIGNED.replace("{username}", username)
)
}
}
}
}
/// Finds a reviewer to assign to a PR.
///
/// The `names` is a list of candidate reviewers `r?`, such as `compiler` or
/// `@octocat`, or names from the owners map. It can contain GitHub usernames,
/// auto-assign groups, or rust-lang team names. It must have at least one
/// entry.
async fn find_reviewer_from_names(
_db: &DbClient,
teams: &Teams,
config: &AssignConfig,
issue: &Issue,
names: &[String],
) -> Result<String, FindReviewerError> {
let candidates = candidate_reviewers_from_names(teams, config, issue, names)?;
// This uses a relatively primitive random choice algorithm.
// GitHub's CODEOWNERS supports much more sophisticated options, such as:
//
// - Round robin: Chooses reviewers based on who's received the least
// recent review request, focusing on alternating between all members of
// the team regardless of the number of outstanding reviews they
// currently have.
// - Load balance: Chooses reviewers based on each member's total number
// of recent review requests and considers the number of outstanding
// reviews for each member. The load balance algorithm tries to ensure
// that each team member reviews an equal number of pull requests in any
// 30 day period.
//
// Additionally, with CODEOWNERS, users marked as "Busy" in the GitHub UI
// will not be selected for reviewer. There are several other options for
// configuring CODEOWNERS as well.
//
// These are all ideas for improving the selection here. However, I'm not
// sure they are really worth the effort.
log::info!(
"[#{}] Initial unfiltered list of candidates: {:?}",
issue.number,
candidates
);
// Special case user "ghost", we always skip filtering
if candidates.contains("ghost") {
return Ok("ghost".to_string());
}
// filter out team members without capacity
// let filtered_candidates = filter_by_capacity(db, &candidates)
// .await
// .expect("Error while filtering out team members");
//
// if filtered_candidates.is_empty() {
// // NOTE: disabled for now, just log
// log::info!("[#{}] Filtered list of PR assignee is empty", issue.number);
// // return Err(FindReviewerError::AllReviewersFiltered {
// // initial: names.to_vec(),
// // filtered: names.to_vec(),
// // });
// }
//
// log::info!(
// "[#{}] Filtered list of candidates: {:?}",
// issue.number,
// filtered_candidates
// );
// Return unfiltered list of candidates
Ok(candidates
.into_iter()
.choose(&mut rand::thread_rng())
.expect("candidate_reviewers_from_names should return at least one entry")
.to_string())
}
/// Returns a list of candidate usernames (from relevant teams) to choose as a reviewer.
fn candidate_reviewers_from_names<'a>(
teams: &'a Teams,
config: &'a AssignConfig,
issue: &Issue,
names: &'a [String],
) -> Result<HashSet<&'a str>, FindReviewerError> {
// Set of candidate usernames to choose from. This uses a set to
// deduplicate entries so that someone in multiple teams isn't
// over-weighted.
let mut candidates: HashSet<&str> = HashSet::new();
// Keep track of groups seen to avoid cycles and avoid expanding the same
// team multiple times.
let mut seen = HashSet::new();
// This is a queue of potential groups or usernames to expand. The loop
// below will pop from this and then append the expanded results of teams.
// Usernames will be added to `candidates`.
let mut group_expansion: Vec<&str> = names.iter().map(|n| n.as_str()).collect();
// Keep track of which users get filtered out for a better error message.
let mut filtered = Vec::new();
// For debugging purposes, keep track about /why/ candidates were filtered out
let mut filtered_debug: HashMap<String, Option<FindReviewerError>> = HashMap::new();
let repo = issue.repository();
let org_prefix = format!("{}/", repo.organization);
// Don't allow groups or teams to include the current author or assignee.
let mut filter = |name: &&str| -> bool {
let name_lower = name.to_lowercase();
let is_pr_author = name_lower == issue.user.login.to_lowercase();
let is_on_vacation = config.is_on_vacation(name);
let is_already_assigned = issue
.assignees
.iter()
.any(|assignee| name_lower == assignee.login.to_lowercase());
// Record the reason why the candidate was filtered out
let reason = {
if is_pr_author {
Some(FindReviewerError::ReviewerIsPrAuthor {
username: name.to_string(),
})
} else if is_on_vacation {
Some(FindReviewerError::ReviewerOnVacation {
username: name.to_string(),
})
} else if is_already_assigned {
Some(FindReviewerError::ReviewerAlreadyAssigned {
username: name.to_string(),
})
} else {
None
}
};
let can_be_assigned = !is_pr_author && !is_on_vacation && !is_already_assigned;
if !can_be_assigned {
filtered.push(name.to_string());
filtered_debug.insert(name.to_string(), reason);
}
can_be_assigned
};
// Loop over groups to recursively expand them.
while let Some(group_or_user) = group_expansion.pop() {
let group_or_user = group_or_user.strip_prefix('@').unwrap_or(group_or_user);
// Try ad-hoc groups first.
// Allow `rust-lang/compiler` to match `compiler`.
let maybe_group = group_or_user
.strip_prefix(&org_prefix)
.unwrap_or(group_or_user);
if let Some(group_members) = config.adhoc_groups.get(maybe_group) {
// If a group has already been expanded, don't expand it again.
if seen.insert(maybe_group) {
group_expansion.extend(
group_members
.iter()
.map(|member| member.as_str())
.filter(&mut filter),
);
}
continue;
}
// Check for a team name.
// Allow either a direct team name like `rustdoc` or a GitHub-style
// team name of `rust-lang/rustdoc` (though this does not check if
// that is a real GitHub team name).
//
// This ignores subteam relationships (it only uses direct members).
let maybe_team = group_or_user
.strip_prefix("rust-lang/")
.unwrap_or(group_or_user);
if let Some(team) = teams.teams.get(maybe_team) {
candidates.extend(
team.members
.iter()
.map(|member| member.github.as_str())
.filter(&mut filter),
);
continue;
}
if group_or_user.contains('/') {
return Err(FindReviewerError::TeamNotFound(group_or_user.to_string()));
}
// Assume it is a user.
if filter(&group_or_user) {
candidates.insert(group_or_user);
}
}
if candidates.is_empty() {
let initial = names.iter().cloned().collect();
if filtered.is_empty() {
Err(FindReviewerError::NoReviewer { initial })
} else {
log::warn!(
"[#{}] Initial list of candidates {:?}, filtered-out with reasons: {:?}",
issue.number,
initial,
filtered_debug
);
Err(FindReviewerError::AllReviewersFiltered { initial, filtered })
}
} else {
Ok(candidates)
}