6
6
import functools
7
7
from . import comments
8
8
from . import utils
9
+ from .parse_issue_comment import parse_issue_comment
9
10
from .auth import verify as verify_auth
10
11
from .utils import lazy_debug
11
12
import logging
15
16
import sqlite3
16
17
import requests
17
18
from contextlib import contextmanager
18
- from itertools import chain
19
19
from queue import Queue
20
20
import os
21
21
import sys
@@ -476,28 +476,20 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
476
476
my_username ,
477
477
)
478
478
479
- words = list ( chain . from_iterable ( re . findall ( r'\S+' , x ) for x in body . splitlines () if '@' + my_username in x )) # noqa
480
- if words [ 1 :] == [ "are" , "you" , "still" , "there?" ] and realtime :
481
- state . add_comment (
482
- ":cake: {} \n \n " . format (
483
- random . choice ( PORTAL_TURRET_DIALOG ), PORTAL_TURRET_IMAGE )
484
- )
485
- for i , word in reversed ( list ( enumerate ( words ))) :
479
+ hooks = []
480
+ if 'hooks' in global_cfg :
481
+ hooks = list ( global_cfg [ 'hooks' ]. keys ())
482
+
483
+ commands = parse_issue_comment ( username , body , sha , my_username , hooks )
484
+
485
+ for command in commands :
486
486
found = True
487
- if word == 'r+' or word . startswith ( 'r=' ) :
487
+ if command . action == 'approve' :
488
488
if not _reviewer_auth_verified ():
489
489
continue
490
490
491
- if not sha and i + 1 < len (words ):
492
- cur_sha = sha_or_blank (words [i + 1 ])
493
- else :
494
- cur_sha = sha
495
-
496
- approver = word [len ('r=' ):] if word .startswith ('r=' ) else username
497
-
498
- # Ignore "r=me"
499
- if approver == 'me' :
500
- continue
491
+ approver = command .actor
492
+ cur_sha = command .commit
501
493
502
494
# Ignore WIP PRs
503
495
is_wip = False
@@ -582,7 +574,7 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
582
574
)
583
575
state .change_labels (LabelEvent .APPROVED )
584
576
585
- elif word == 'r- ' :
577
+ elif command . action == 'unapprove ' :
586
578
# Allow the author of a pull request to unapprove their own PR. The
587
579
# author can already perform other actions that effectively
588
580
# unapprove the PR (change the target branch, push more commits,
@@ -601,14 +593,12 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
601
593
if realtime :
602
594
state .change_labels (LabelEvent .REJECTED )
603
595
604
- elif word . startswith ( 'p=' ) :
596
+ elif command . action == 'prioritize' :
605
597
if not verify_auth (username , repo_label , repo_cfg , state ,
606
598
AuthState .TRY , realtime , my_username ):
607
599
continue
608
- try :
609
- pvalue = int (word [len ('p=' ):])
610
- except ValueError :
611
- continue
600
+
601
+ pvalue = command .priority
612
602
613
603
if pvalue > global_cfg ['max_priority' ]:
614
604
if realtime :
@@ -620,12 +610,12 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
620
610
state .priority = pvalue
621
611
state .save ()
622
612
623
- elif word . startswith ( 'delegate=' ) :
613
+ elif command . action == 'delegate' :
624
614
if not verify_auth (username , repo_label , repo_cfg , state ,
625
615
AuthState .REVIEWER , realtime , my_username ):
626
616
continue
627
617
628
- state .delegate = word [ len ( 'delegate=' ):]
618
+ state .delegate = command . delegate_to
629
619
state .save ()
630
620
631
621
if realtime :
@@ -634,14 +624,14 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
634
624
delegate = state .delegate
635
625
))
636
626
637
- elif word == 'delegate- ' :
627
+ elif command . action == 'undelegate ' :
638
628
# TODO: why is this a TRY?
639
629
if not _try_auth_verified ():
640
630
continue
641
631
state .delegate = ''
642
632
state .save ()
643
633
644
- elif word == 'delegate+ ' :
634
+ elif command . action == 'delegate-author ' :
645
635
if not _reviewer_auth_verified ():
646
636
continue
647
637
@@ -654,7 +644,7 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
654
644
delegate = state .delegate
655
645
))
656
646
657
- elif word == 'retry' and realtime :
647
+ elif command . action == 'retry' and realtime :
658
648
if not _try_auth_verified ():
659
649
continue
660
650
state .set_status ('' )
@@ -663,7 +653,7 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
663
653
state .record_retry_log (command_src , body )
664
654
state .change_labels (event )
665
655
666
- elif word in ['try' , 'try- ' ] and realtime :
656
+ elif command . action in ['try' , 'untry ' ] and realtime :
667
657
if not _try_auth_verified ():
668
658
continue
669
659
if state .status == '' and state .approved_by :
@@ -674,7 +664,7 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
674
664
)
675
665
continue
676
666
677
- state .try_ = word == 'try'
667
+ state .try_ = command . action == 'try'
678
668
679
669
state .merge_sha = ''
680
670
state .init_build_res ([])
@@ -689,14 +679,14 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
689
679
# any meaningful labeling events.
690
680
state .change_labels (LabelEvent .TRY )
691
681
692
- elif word in WORDS_TO_ROLLUP :
682
+ elif command . action == 'rollup' :
693
683
if not _try_auth_verified ():
694
684
continue
695
- state .rollup = WORDS_TO_ROLLUP [ word ]
685
+ state .rollup = command . rollup_value
696
686
697
687
state .save ()
698
688
699
- elif word == 'force' and realtime :
689
+ elif command . action == 'force' and realtime :
700
690
if not _try_auth_verified ():
701
691
continue
702
692
if 'buildbot' in repo_cfg :
@@ -725,61 +715,58 @@ def parse_commands(body, username, repo_label, repo_cfg, state, my_username,
725
715
':bomb: Buildbot returned an error: `{}`' .format (err )
726
716
)
727
717
728
- elif word == 'clean' and realtime :
718
+ elif command . action == 'clean' and realtime :
729
719
if not _try_auth_verified ():
730
720
continue
731
721
state .merge_sha = ''
732
722
state .init_build_res ([])
733
723
734
724
state .save ()
735
- elif (word == 'hello?' or word == 'ping' ) and realtime :
736
- state .add_comment (":sleepy: I'm awake I'm awake" )
737
- elif word .startswith ('treeclosed=' ):
725
+
726
+ elif command .action == 'ping' and realtime :
727
+ if command .ping_type == 'portal' :
728
+ state .add_comment (
729
+ ":cake: {}\n \n " .format (
730
+ random .choice (PORTAL_TURRET_DIALOG ),
731
+ PORTAL_TURRET_IMAGE )
732
+ )
733
+ else :
734
+ state .add_comment (":sleepy: I'm awake I'm awake" )
735
+
736
+ elif command .action == 'treeclosed' :
738
737
if not _reviewer_auth_verified ():
739
738
continue
740
- try :
741
- treeclosed = int (word [len ('treeclosed=' ):])
742
- state .change_treeclosed (treeclosed , command_src )
743
- except ValueError :
744
- pass
739
+ state .change_treeclosed (command .treeclosed_value , command_src )
745
740
state .save ()
746
- elif word == 'treeclosed-' :
741
+
742
+ elif command .action == 'untreeclosed' :
747
743
if not _reviewer_auth_verified ():
748
744
continue
749
745
state .change_treeclosed (- 1 , None )
750
746
state .save ()
751
- elif 'hooks' in global_cfg :
752
- hook_found = False
753
- for hook in global_cfg ['hooks' ]:
754
- hook_cfg = global_cfg ['hooks' ][hook ]
755
- if hook_cfg ['realtime' ] and not realtime :
747
+
748
+ elif command .action == 'hook' :
749
+ hook = command .hook_name
750
+ hook_cfg = global_cfg ['hooks' ][hook ]
751
+ if hook_cfg ['realtime' ] and not realtime :
752
+ continue
753
+ if hook_cfg ['access' ] == "reviewer" :
754
+ if not _reviewer_auth_verified ():
756
755
continue
757
- if word == hook or word .startswith ('%s=' % hook ):
758
- if hook_cfg ['access' ] == "reviewer" :
759
- if not _reviewer_auth_verified ():
760
- continue
761
- else :
762
- if not _try_auth_verified ():
763
- continue
764
- hook_found = True
765
- extra_data = ""
766
- if word .startswith ('%s=' % hook ):
767
- extra_data = word .split ("=" )[1 ]
768
- Thread (
769
- target = handle_hook_response ,
770
- args = [state , hook_cfg , body , extra_data ]
771
- ).start ()
772
- if not hook_found :
773
- found = False
756
+ else :
757
+ if not _try_auth_verified ():
758
+ continue
759
+ Thread (
760
+ target = handle_hook_response ,
761
+ args = [state , hook_cfg , body , command .hook_extra ]
762
+ ).start ()
774
763
775
764
else :
776
765
found = False
777
766
778
767
if found :
779
768
state_changed = True
780
769
781
- words [i ] = ''
782
-
783
770
return state_changed
784
771
785
772
0 commit comments