-
Notifications
You must be signed in to change notification settings - Fork 23
/
results.php
1149 lines (1018 loc) · 25.5 KB
/
results.php
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
<?php
/**
* Various functions to filter and process
* results array.
*
* @package Automattic/vip-go-ci
*/
declare(strict_types=1);
/**
* Remove comments that exist on a GitHub pull request from
* the results array. Will loop through each pull request
* affected by the current commit, and remove any comment
* from the results array if it already exists.
*
* @param array $options Options array for the program.
* @param array $prs_implicated Array of PRs implicated.
* @param array $results Results array.
* @param bool $repost_comments_from_dismissed_reviews If to repost comments from dismissed reviews.
* @param array $prs_events_dismissed_by_team Teams considered for parameter above.
*
* @return void
*/
function vipgoci_results_remove_existing_github_comments(
array $options,
array $prs_implicated,
array &$results,
bool $repost_comments_from_dismissed_reviews = false,
array $prs_events_dismissed_by_team = array()
) :void {
vipgoci_log(
'Removing existing GitHub comments from results' .
' to be posted to GitHub API',
array(
'repo_owner' => $options['repo-owner'],
'repo_name' => $options['repo-name'],
'prs_implicated' => array_keys( $prs_implicated ),
'repost_comments_from_dismissed_reviews' => $repost_comments_from_dismissed_reviews,
'prs_events_dismissed_by_team' => $prs_events_dismissed_by_team,
)
);
$comments_removed = array();
foreach ( $prs_implicated as $pr_item ) {
$prs_comments = array();
if ( ! isset(
$comments_removed[ $pr_item->number ]
) ) {
$comments_removed[ $pr_item->number ] = array();
}
/*
* Get all commits related to the current
* pull request.
*/
$pr_item_commits = vipgoci_github_prs_commits_list(
$options['repo-owner'],
$options['repo-name'],
$pr_item->number,
$options['token']
);
/*
* Loop through each commit, fetching all comments
* made in relation to that commit
*/
foreach ( $pr_item_commits as $pr_item_commit_id ) {
vipgoci_github_pr_reviews_comments_get(
$options,
$pr_item_commit_id,
$pr_item->created_at,
$prs_comments // Pointer used.
);
unset( $pr_item_commit_id );
}
/*
* Ignore dismissed reviews, if requested.
*/
if ( true === $repost_comments_from_dismissed_reviews ) {
vipgoci_log(
'Later on, will make sure comments ' .
'that are part of dismissed reviews ' .
'will be submitted again, if the ' .
'underlying issue was detected ' .
'during the run. In case of such a setting' .
'and such reviews existing, excluding ' .
'reviews (and thus comments) that are submitted ' .
'by members of a particular team ' .
'from this process',
array(
'teams' =>
$options['dismissed-reviews-exclude-reviews-from-team'],
'pr_number' =>
$pr_item->number,
)
);
/*
* Get dismissed reviews submitted by us
* and extract ID of each.
*/
$pr_reviews = vipgoci_github_pr_reviews_get(
$options['repo-owner'],
$options['repo-name'],
$pr_item->number,
$options['token'],
array(
'login' => 'myself',
'state' => array( 'DISMISSED' ),
)
);
$dismissed_reviews = array_column(
$pr_reviews,
'id'
);
unset( $pr_reviews );
/*
* Some reviews (and comments) should not be posted,
* again, as per setting determined by our caller;
* honor this here.
*/
if ( ! empty(
$prs_events_dismissed_by_team[ $pr_item->number ]
) ) {
$all_review_ids = $dismissed_reviews;
$dismissed_reviews = array_diff(
$all_review_ids,
$prs_events_dismissed_by_team[ $pr_item->number ]
);
vipgoci_log(
'Excluding certain reviews from ' .
'list of previously gathered dismissed reviews; ' .
'will only keep reviews that were not dismissed by ' .
'members of a particular team. The comments of ' .
'the outstanding, kept, reviews might be posted again ' .
'if the underlying issue was detected',
array(
'prs_events_dismissed_by_team_and_pr' =>
$prs_events_dismissed_by_team[ $pr_item->number ],
'all_review_ids' =>
$all_review_ids,
'dismissed_reviews' =>
$dismissed_reviews,
)
);
unset( $all_review_ids );
}
/*
* Loop through each file to have comments
* submitted against, then look through each
* comment, looking for any comment associated
* with dismissed reviews.
*
* If we find a dismissed review, we will act
* as if the comment was never there by removing
* it from $prs_comments. This will ensure
* that our to-be posted review will contain
* such comments, even though they could be
* considered duplictes. The aim is to make
* them more visible and part of a blocking review.
*
* Note that some comments might be excluded
* from this, as per above.
*/
$removed_comments = array();
foreach (
$prs_comments as
$pr_comment_key => $pr_comments_items
) {
foreach (
$pr_comments_items as
$pr_review_key => $pr_review_comment
) {
if ( false === in_array(
$pr_review_comment->pull_request_review_id,
$dismissed_reviews,
true
) ) {
continue;
}
$removed_comments[] = array(
'pr_number' => $pr_item->number,
'pull_request_review_id' => $pr_review_comment->pull_request_review_id,
'comment_id' => $pr_review_comment->id,
'message_body' => $pr_review_comment->body,
'message_created_at' => $pr_review_comment->created_at,
'message_updated_at' => $pr_review_comment->updated_at,
);
/*
* Comment is a part of a dismissed review
* (that was not excluded), now get
* rid of the comment -- act as if was
* never there.
*/
unset(
$prs_comments[ $pr_comment_key ][ $pr_review_key ]
);
}
}
vipgoci_log(
'Removed following comments from list of previously submitted ' .
'comments to older PR reviews, as they are ' .
'part of dismissed reviews. Note that some ' .
'dismissed reviews might have been excluded previously',
array(
'removed_comments' =>
$removed_comments,
)
);
unset( $removed_comments );
unset( $dismissed_reviews );
}
foreach (
$results['issues'][ $pr_item->number ] as
$tobe_submitted_cmt_key => $tobe_submitted_cmt
) {
/*
* Filter out issues that have already been
* reported to GitHub.
*/
if (
// Only do check if everything above is looking good.
vipgoci_results_comment_match(
$tobe_submitted_cmt['file_name'],
$tobe_submitted_cmt['file_line'],
$tobe_submitted_cmt['issue']['message'],
$prs_comments
)
) {
/*
* Keep a record of what we remove.
*/
$comments_removed[ $pr_item->number ][] =
$tobe_submitted_cmt;
// Remove it.
unset(
$results['issues'][ $pr_item->number ][ $tobe_submitted_cmt_key ]
);
/*
* Update statistics
*/
$results['stats'][ $tobe_submitted_cmt['type'] ][ $pr_item->number ][ strtolower(
$tobe_submitted_cmt['issue']['level']
) ]--;
}
}
/*
* Re-create the issues
* array, so that no array
* keys are missing.
*/
$results['issues'][ $pr_item->number ] = array_values(
$results['issues'][ $pr_item->number ]
);
}
/*
* Report what we removed.
*/
vipgoci_log(
'Removed following comments from array of ' .
'to be submitted comments to PRs, as they ' .
'have been submitted already',
array(
'comments_removed' => $comments_removed,
)
);
}
/**
* For each approved file, remove any issues
* to be submitted against them. However,
* do not do this for VIPGOCI_ISSUE_TYPE_INFO messages
* as they are informational, and not problems.
*
* We do this, because sometimes pull requests
* will be opened that contain approved code,
* and we do not want to clutter them with
* non-relevant comments.
*
* Make sure to update statistics to
* reflect this.
*
* @param array $options Options array for the program.
* @param array $results Results array.
* @param array $auto_approved_files_arr Array of auto-approved files.
*
* @return void
*/
function vipgoci_results_approved_files_comments_remove(
array $options,
array &$results,
array $auto_approved_files_arr
) :void {
$issues_removed = array();
vipgoci_log(
'Removing any potential issues (errors, warnings) ' .
'found for approved files from internal results',
array(
'auto_approved_files_arr' => $auto_approved_files_arr,
)
);
/*
* Loop through each pull request
*/
foreach ( $results['issues'] as
$pr_number => $pr_issues
) {
/*
* Loop through each issue affecting each
* pull request.
*/
foreach ( $pr_issues as
$issue_number => $issue_item
) {
/*
* If the file affected is
* not found in the auto-approved files,
* do not to anything.
*/
if ( ! isset(
$auto_approved_files_arr[ $issue_item['file_name'] ]
) ) {
continue;
}
/*
* Skip VIPGOCI_ISSUE_TYPE_INFO as that
* does not report any errors.
*/
if ( strtolower(
$issue_item['issue']['level']
) === VIPGOCI_ISSUE_TYPE_INFO ) {
continue;
}
/*
* Skip VIPGOCI_STATS_WPSCAN_API items as they
* should always be displayed.
*/
if (
VIPGOCI_STATS_WPSCAN_API ===
$issue_item['type']
) {
continue;
}
/*
* We have found an item that is approved,
* and has non-info issues -- remove it
* from the array of submittable issues.
*/
unset(
$results['issues'][ $pr_number ][ $issue_number ]
);
/*
* Update statistics accordingly.
*/
$results['stats'][ $issue_item['type'] ][ $pr_number ][ strtolower(
$issue_item['issue']['level']
) ]--;
/*
* Update our own information array on
* what we did.
*/
$issues_removed[ $pr_number ][] = $issue_item;
}
/*
* Re-order the array as
* some keys might be missing
*/
$results['issues'][ $pr_number ] = array_values(
$results['issues'][ $pr_number ]
);
}
vipgoci_log(
'Completed cleaning out issues for pre-approved files',
array(
'issues_removed' => $issues_removed,
)
);
}
/**
* Limit the number of to-be-submitted comments to
* the pull requests. We take into account the number
* to be submitted for each pull request, the number of
* comments already submitted, and the limit specified
* on start-up. Comments are removed as needed, and
* what comments are removed is reported.
*
* @param array $options Options array for the program.
* @param array $results Results array.
* @param array $prs_comments_maxed Array of PRs with maximum number of
* comments reached.
*
* @return void
*/
function vipgoci_results_filter_comments_to_max(
array $options,
array &$results,
array &$prs_comments_maxed
) :void {
vipgoci_log(
'Preparing to remove any excessive number comments from array of ' .
'issues to be submitted to PRs',
array(
'review_comments_total_max'
=> $options['review-comments-total-max'],
)
);
/*
* We might need to remove comments.
*
* We will begin with lower priority comments
* first, remove them, and then progressively
* continue removing comments as priority increases
* and there is still a need for removal.
*/
/*
* Keep track of what we remove.
*/
$comments_removed = array();
foreach (
$results['issues'] as
$pr_number => $pr_issues_comments
) {
/*
* Take into account previously submitted comments
* by us for the current pull request.
*/
$pr_previous_comments_cnt = count(
vipgoci_github_pr_reviews_comments_get_by_pr(
$options,
$pr_number,
array(
'login' => 'myself',
'comments_active' => true,
)
)
);
/*
* How many comments need
* to be removed? Count in
* comments in the PR in addition
* to possible new ones, substract
* from the maximum specified.
*/
$comments_to_remove =
(
count( $pr_issues_comments )
+
$pr_previous_comments_cnt
)
-
$options['review-comments-total-max'];
/*
* If there are no comments to remove,
* skip and continue.
*/
if ( $comments_to_remove <= 0 ) {
continue;
} elseif (
$comments_to_remove >
count( $pr_issues_comments )
) {
/*
* More are to be removed than are to be
* submitted, limit to the number of available ones.
*/
$comments_to_remove = count( $pr_issues_comments );
}
/*
* Figure out severity, minimum and maximum.
*/
$severity_min = 0;
$severity_max = 0;
foreach ( $pr_issues_comments as $pr_issue ) {
$severity_min = min(
$pr_issue['issue']['severity'],
$severity_min
);
$severity_max = max(
$pr_issue['issue']['severity'],
$severity_max
);
}
/*
* Loop through severity-levels from low to high
* and remove comments as needed.
*/
for (
$severity_current = $severity_min;
$severity_current <= $severity_max &&
$comments_to_remove > 0;
$severity_current++
) {
foreach (
$pr_issues_comments as
$pr_issue_key => $pr_issue
) {
/*
* If we have removed enough, stop here.
*/
if ( $comments_to_remove <= 0 ) {
break;
}
/*
* Not correct severity level? Ignore.
*/
if (
$pr_issue['issue']['severity'] !==
$severity_current
) {
continue;
}
/*
* Actually remove and
* keep statistics up to date.
*/
unset(
$results['issues'][ $pr_number ][ $pr_issue_key ]
);
$results['stats'][ $pr_issue['type'] ][ $pr_number ][ strtolower(
$pr_issue['issue']['level']
) ]--;
/*
* Keep track of what we remove
*/
if ( ! isset(
$comments_removed[ $pr_number ]
) ) {
$comments_removed[ $pr_number ] = array();
}
$comments_removed[ $pr_number ][] = $pr_issue;
$comments_to_remove--;
}
}
/*
* Re-create array so to
* keep continuous ordering
* of index.
*/
$results['issues'][ $pr_number ] = array_values(
$results['issues'][ $pr_number ]
);
}
/*
* Populate '$prs_comments_maxed' which
* indicates which pull requests have
* had number of comments posted limited.
*/
$prs_comments_maxed = array_map(
'is_array',
$comments_removed
);
vipgoci_log(
'Removed issue comments from array of to be submitted ' .
'comments to PRs due to limit constraints',
array(
'review_comments_total_max' => $options['review-comments-total-max'],
'comments_removed' => $comments_removed,
)
);
}
/**
* Standardize message string so that filtering of
* ignorable messages becomes more reliable.
*
* @param string $message Message to standardize.
*
* @return string Standardized message.
*/
function vipgoci_results_standardize_ignorable_message(
string $message
) :string {
$message = strtolower( $message );
$message = trim( $message );
$message = rtrim( $message, "\n\r\t\v\x00 .," );
return $message;
}
/**
* Filter away issues that we should ignore from the set
* of results, according to --review-comments-ignore argument.
* The issues to be ignored are specified as an array of
* string-messages, all in lower-case.
*
* @param array $options Options needed.
* @param array $results Results array.
*
* @return void
*/
function vipgoci_results_filter_ignorable(
array $options,
array &$results
) :void {
$comments_removed = array();
vipgoci_log(
'Removing comments to be ignored from results before submission',
array(
'messages-ignore' =>
$options['review-comments-ignore'],
)
);
foreach (
$results['issues'] as
$pr_number => $pr_issues_comments
) {
foreach (
$pr_issues_comments as
$pr_issue_key =>
$pr_issue
) {
if ( in_array(
vipgoci_results_standardize_ignorable_message(
$pr_issue['issue']['message']
),
$options['review-comments-ignore'],
true
) ) {
/*
* Found a message to ignore,
* remove it from the results-array.
*/
unset(
$results['issues'][ $pr_number ][ $pr_issue_key ]
);
/*
* Keep track of what we remove
*/
if ( ! isset(
$comments_removed[ $pr_number ]
) ) {
$comments_removed[ $pr_number ] = array();
}
$comments_removed[ $pr_number ][] = $pr_issue;
/*
* Keep statistics up-to-date
*/
$results['stats'][ $pr_issue['type'] ][ $pr_number ][ strtolower(
$pr_issue['issue']['level']
) ]--;
}
}
/*
* Re-create the array in
* case of changes to keys,
*/
$results['issues'][ $pr_number ] = array_values(
$results['issues'][ $pr_number ]
);
}
vipgoci_log(
'Removed ignorable comments',
array(
'comments-removed' => $comments_removed,
)
);
}
/**
* Sort results to be submitted to GitHub according to
* severity of issues -- if configured to do so.
*
* @param array $options Options needed.
* @param array $results Results of scanning.
*
* return @void
*/
function vipgoci_results_sort_by_severity(
array $options,
array &$results
) :void {
if ( true !== $options['review-comments-sort'] ) {
return;
}
vipgoci_log(
'Sorting issues in results according to severity before submission',
);
foreach (
array_keys(
$results['issues']
) as $pr_number
) {
$current_pr_results = &$results['issues'][ $pr_number ];
/*
* Temporarily add severity
* column so we can sort using that.
*/
foreach (
array_keys( $current_pr_results ) as
$current_pr_result_item_key
) {
$current_pr_results[ $current_pr_result_item_key ]['severity'] =
$current_pr_results[ $current_pr_result_item_key ]['issue']['severity'];
}
/*
* Do the actual sorting.
*/
$severity_column = array_column(
$current_pr_results,
'severity'
);
array_multisort(
$severity_column,
SORT_DESC,
$current_pr_results
);
/*
* Remove severity column
* afterwards.
*/
foreach (
array_keys( $current_pr_results ) as
$current_pr_result_item_key
) {
unset(
$current_pr_results[ $current_pr_result_item_key ]['severity']
);
}
}
}
/**
* Check if the specified comment exists
* within an array of other comments --
* this is used to understand if the specific
* comment has already been submitted earlier.
*
* Handles special case as well.
*
* @param string $file_issue_path Path to file.
* @param int $file_issue_line Line number in file.
* @param string $file_issue_comment Comment to look for.
* @param array $comments_made Array of comments to search in.
*
* @return bool True if comment exists, false if not.
*/
function vipgoci_results_comment_match(
string $file_issue_path,
int $file_issue_line,
string $file_issue_comment,
array $comments_made
) {
/*
* Construct an index-key made of file:line.
*/
$comment_index_key =
$file_issue_path .
':' .
$file_issue_line;
if ( ! isset(
$comments_made[ $comment_index_key ]
) ) {
/*
* No match on index-key within the
* associative array -- the comment has
* not been made, so return false.
*/
return false;
}
/*
* Some comment matching the file and line-number
* was found -- figure out if it is definately the
* same comment.
*/
foreach (
$comments_made[ $comment_index_key ] as
$comment_made
) {
/*
* The comment might contain formatting, such
* as "Warning: ..." -- remove all of that.
*
* Handle special case when "/**" is included in comments.
* Ensure to preserve comments with this pattern, as otherwise
* strings that include them will be re-posted during re-runs.
*/
$comment_made_body = str_replace(
array( '/**', '**', 'Warning', 'Error', 'Info', ':no_entry_sign:', ':warning:', ':information_source:', '/\*\*' ),
array( '/\*\*', '', '', '', '', '', '', '', '/**' ),
$comment_made->body
);
/*
* The comment might include severity level
* -- remove that.
*/
$comment_made_body = preg_replace(
'/\( severity \d{1,2} \)/',
'',
$comment_made_body
);
/*
* The comment might be prefixed with ': ',
* remove that as well.
*/
$comment_made_body = ltrim(
$comment_made_body,
': '
);
/*
* The comment might include PHPCS source
* of the error at the end (e.g.
* "... (*WordPress.WP.AlternativeFunctions.json_encode_json_encode*)."
* -- remove the source, the brackets and the ending dot.
*/
$comment_made_body = preg_replace(
'/ \([\*_\.a-zA-Z0-9]+\)\.$/',
'',
$comment_made_body
);
/*
* Transform string to lowercase,
* remove ending '.' just in case if
* not removed earlier.
*/
$comment_made_body = strtolower(
$comment_made_body
);
$comment_made_body = rtrim(
$comment_made_body,
'.'
);
/*
* Transform the string to lowercase,
* and remove potential '.' at the end
* of it.
*/
$file_issue_comment = strtolower(
$file_issue_comment
);
$file_issue_comment = rtrim(
$file_issue_comment,
'.'
);
/*
* Check if comments match, including
* if we need to HTML-encode our new comment
* (GitHub encodes their comments when
* returning them.
*/
if (
(
$comment_made_body ===
$file_issue_comment
)
||
(
htmlentities(
$file_issue_comment,
ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 // PHP 8.1 default.
) === $comment_made_body
)
) {
/* Comment found, return true. */
return true;
}
}
return false;
}
/**
* Filter out any issues in the code that were not
* touched up on by the changed lines -- i.e., any issues
* that existed prior to the change.
*
* @param string $file_name Name of file being processed.
* @param array $file_issues_arr List of issues in file.
* @param array $file_blame_log Git blame log for file.
* @param array $pr_item_commits List of commits.
* @param array $file_relative_lines Relative line numbers for file and commit.
*
* @return array Only lines altered in the file.
*/
function vipgoci_results_filter_irrellevant(
string $file_name,
array $file_issues_arr,
array $file_blame_log,
array $pr_item_commits,
array $file_relative_lines
) :array {
/*
* Filter out any issues
* that are due to commits outside
* of the pull request
*/
$file_blame_log_filtered =
vipgoci_blame_filter_commits(
$file_blame_log,
$pr_item_commits
);
$file_issues_ret = array();
/*
* Loop through all the issues affecting
* this particular file
*/
foreach (
$file_issues_arr[ $file_name ] as
$file_issue_key =>
$file_issue_val
) {
$keep_issue = false;
/*
* Filter out issues outside of the blame log
*/
foreach ( $file_blame_log_filtered as $blame_log_item ) {
if (