This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPullRequest.php
More file actions
955 lines (838 loc) · 18.2 KB
/
PullRequest.php
File metadata and controls
955 lines (838 loc) · 18.2 KB
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
<?php
namespace LoveOSS\Github\Entity;
use LoveOSS\Github\Exception\AllowUrlFileOpenException;
use LoveOSS\Github\Exception\UserAgentNotFoundException;
class PullRequest
{
private $url;
private $id;
private $htmlUrl;
private $diffUrl;
private $issueUrl;
private $number;
private $state;
private $isLocked;
private $title;
/**
* @var User
*/
private $user;
private $body;
private $createdAt;
private $updatedAt;
private $closedAt;
private $mergedAt;
private $mergeCommitSha;
/**
* @var User|null
*/
private $assignee;
private $milestone;
private $commitsUrl;
private $reviewCommentUrl;
private $reviewCommentsUrl;
private $statusesUrl;
private $isMerged;
private $isMergeable;
private $mergeableState;
/**
* @var User|null
*/
private $mergedBy;
private $commentsCount;
private $reviewCommentsCount;
private $commitsCount;
private $additions;
private $deletions;
private $changedFiles;
private $commitSha;
private $base;
private $head;
public static function createFromData(array $data)
{
return new static($data);
}
final public function __construct($data)
{
$this->url = $data['url'];
$this->id = $data['id'];
$this->htmlUrl = $data['html_url'];
$diffUrl = isset($data['diff_url']) ? $data['diff_url'] : null;
$diffUrlFromPR = isset($data['pull_request']['diff_url']) ? $data['pull_request']['diff_url'] : null;
$this->diffUrl = is_null($diffUrl) ? $diffUrlFromPR : $diffUrl;
$this->issueUrl = isset($data['issue_url']) ? $data['issue_url'] : null;
$this->number = $data['number'];
$this->state = $data['state'];
$this->isLocked = $data['locked'];
$this->title = $data['title'];
$this->user = User::createFromData($data['user']);
$this->body = $data['body'];
$this->createdAt = $data['created_at'];
$this->updatedAt = isset($data['updated_at']) ? $data['updated_at'] : null;
$this->closedAt = $data['closed_at'];
$this->mergedAt = isset($data['merged_at']) ? $data['merged_at'] : null;
$this->mergeCommitSha = isset($data['merge_commit_sha']) ? $data['merge_commit_sha'] : null;
$this->assignee = isset($data['assignee']) ? User::createFromData($data['assignee']) : null;
$this->milestone = $data['milestone'];
$this->commitsUrl = isset($data['commits_url']) ? $data['commits_url'] : null;
$this->reviewCommentUrl = isset($data['review_comment_url']) ? $data['review_comment_url'] : null;
$this->reviewCommentsUrl = isset($data['review_comments_url']) ? $data['review_comments_url'] : null;
$this->statusesUrl = isset($data['statuses_url']) ? $data['statuses_url'] : null;
$this->isLocked = isset($data['locked']) ? $data['locked'] : null;
$this->isMerged = isset($data['merged']) ? $data['merged'] : null;
$this->isMergeable = isset($data['mergeable']) ? $data['mergeable'] : null;
$this->mergeableState = isset($data['mergeable_state']) ? $data['mergeable_state'] : false;
$this->mergedBy = isset($data['merged_by']) ? User::createFromData($data['merged_by']) : null;
$this->commentsCount = isset($data['comments']) ? $data['comments'] : null;
$this->reviewCommentsCount = isset($data['review_comments']) ? $data['review_comments'] : null;
$this->commitSha = isset($data['head']['sha']) ? $data['head']['sha'] : null;
$this->base = isset($data['base']) ? $data['base'] : null;
$this->head = isset($data['head']) ? $data['head'] : null;
}
/**
* Gets the value of url.
*
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* Sets the value of url.
*
* @param mixed $url the url
*
* @return self
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Gets the value of id.
*
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* Sets the value of id.
*
* @param mixed $id the id
*
* @return self
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Gets the value of htmlUrl.
*
* @return mixed
*/
public function getHtmlUrl()
{
return $this->htmlUrl;
}
/**
* Sets the value of htmlUrl.
*
* @param mixed $htmlUrl the html url
*
* @return self
*/
public function setHtmlUrl($htmlUrl)
{
$this->htmlUrl = $htmlUrl;
return $this;
}
/**
* Gets the value of diffUrl.
*
* @return mixed
*/
public function getDiffUrl()
{
return $this->diffUrl;
}
/**
* Sets the value of diffUrl.
*
* @param mixed $diffUrl the diff url
*
* @return self
*/
public function setDiffUrl($diffUrl)
{
$this->diffUrl = $diffUrl;
return $this;
}
/**
* Gets the value of issueUrl.
*
* @return mixed
*/
public function getIssueUrl()
{
return $this->issueUrl;
}
/**
* Sets the value of issueUrl.
*
* @param mixed $issueUrl the issue url
*
* @return self
*/
public function setIssueUrl($issueUrl)
{
$this->issueUrl = $issueUrl;
return $this;
}
/**
* Gets the value of number.
*
* @return mixed
*/
public function getNumber()
{
return $this->number;
}
/**
* Sets the value of number.
*
* @param mixed $number the number
*
* @return self
*/
public function setNumber($number)
{
$this->number = $number;
return $this;
}
/**
* Gets the value of state.
*
* @return mixed
*/
public function getState()
{
return $this->state;
}
/**
* Sets the value of state.
*
* @param mixed $state the state
*
* @return self
*/
public function setState($state)
{
$this->state = $state;
return $this;
}
/**
* Gets the value of locked.
*
* @return bool
*/
public function isLocked()
{
return (bool) $this->isLocked;
}
/**
* Sets the value of locked.
*
* @param mixed $locked the locked
*
* @return self
*/
public function setLocked($locked)
{
$this->isLocked = $locked;
return $this;
}
/**
* Gets the value of title.
*
* @return mixed
*/
public function getTitle()
{
return $this->title;
}
/**
* Sets the value of title.
*
* @param mixed $title the title
*
* @return self
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Gets the value of user.
*
* @return mixed
*/
public function getUser()
{
return $this->user;
}
/**
* Sets the value of user.
*
* @param mixed $user the user
*
* @return self
*/
public function setUser($user)
{
$this->user = $user;
return $this;
}
/**
* Gets the value of body.
*
* @return mixed
*/
public function getBody()
{
return $this->body;
}
/**
* Sets the value of body.
*
* @param mixed $body the body
*
* @return self
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
/**
* Gets the value of createdAt.
*
* @return mixed
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* Sets the value of createdAt.
*
* @param mixed $createdAt the created at
*
* @return self
*/
public function setCreatedAt($createdAt)
{
$this->createdAt = $createdAt;
return $this;
}
/**
* Gets the value of updatedAt.
*
* @return mixed
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* Sets the value of updatedAt.
*
* @param mixed $updatedAt the updated at
*
* @return self
*/
public function setUpdatedAt($updatedAt)
{
$this->updatedAt = $updatedAt;
return $this;
}
/**
* Gets the value of closedAt.
*
* @return mixed
*/
public function getClosedAt()
{
return $this->closedAt;
}
/**
* Sets the value of closedAt.
*
* @param mixed $closedAt the closed at
*
* @return self
*/
public function setClosedAt($closedAt)
{
$this->closedAt = $closedAt;
return $this;
}
/**
* Gets the value of mergedAt.
*
* @return mixed
*/
public function getMergedAt()
{
return $this->mergedAt;
}
/**
* Sets the value of mergedAt.
*
* @param mixed $mergedAt the merged at
*
* @return self
*/
public function setMergedAt($mergedAt)
{
$this->mergedAt = $mergedAt;
return $this;
}
/**
* Gets the value of mergeCommitSha.
*
* @return mixed
*/
public function getMergeCommitSha()
{
return $this->mergeCommitSha;
}
/**
* Sets the value of mergeCommitSha.
*
* @param mixed $mergeCommitSha the merge commit sha
*
* @return self
*/
public function setMergeCommitSha($mergeCommitSha)
{
$this->mergeCommitSha = $mergeCommitSha;
return $this;
}
/**
* Gets the value of assignee.
*
* @return mixed
*/
public function getAssignee()
{
return $this->assignee;
}
/**
* Sets the value of assignee.
*
* @param mixed $assignee the assignee
*
* @return self
*/
public function setAssignee($assignee)
{
$this->assignee = $assignee;
return $this;
}
/**
* Gets the value of milestone.
*
* @return mixed
*/
public function getMilestone()
{
return $this->milestone;
}
/**
* Sets the value of milestone.
*
* @param mixed $milestone the milestone
*
* @return self
*/
public function setMilestone($milestone)
{
$this->milestone = $milestone;
return $this;
}
/**
* Gets the value of commitsUrl.
*
* @return mixed
*/
public function getCommitsUrl()
{
return $this->commitsUrl;
}
/**
* Sets the value of commitsUrl.
*
* @param mixed $commitsUrl the commits url
*
* @return self
*/
public function setCommitsUrl($commitsUrl)
{
$this->commitsUrl = $commitsUrl;
return $this;
}
/**
* Gets the value of reviewCommentUrl.
*
* @return mixed
*/
public function getReviewCommentUrl()
{
return $this->reviewCommentUrl;
}
/**
* Sets the value of reviewCommentUrl.
*
* @param mixed $reviewCommentUrl the review comment url
*
* @return self
*/
public function setReviewCommentUrl($reviewCommentUrl)
{
$this->reviewCommentUrl = $reviewCommentUrl;
return $this;
}
/**
* Gets the value of reviewCommentsUrl.
*
* @return mixed
*/
public function getReviewCommentsUrl()
{
return $this->reviewCommentsUrl;
}
/**
* Sets the value of reviewCommentsUrl.
*
* @param mixed $reviewCommentsUrl the review comments url
*
* @return self
*/
public function setReviewCommentsUrl($reviewCommentsUrl)
{
$this->reviewCommentsUrl = $reviewCommentsUrl;
return $this;
}
/**
* Gets the value of statusesUrl.
*
* @return mixed
*/
public function getStatusesUrl()
{
return $this->statusesUrl;
}
/**
* Sets the value of statusesUrl.
*
* @param mixed $statusesUrl the statuses url
*
* @return self
*/
public function setStatusesUrl($statusesUrl)
{
$this->statusesUrl = $statusesUrl;
return $this;
}
/**
* Gets the value of merged.
*
* @return bool
*/
public function isMerged()
{
return (bool) $this->isMerged;
}
/**
* Sets the value of merged.
*
* @param mixed $merged the merged
*
* @return self
*/
public function setMerged($merged)
{
$this->isMerged = $merged;
return $this;
}
/**
* Gets the value of mergeable.
*
* @return bool
*/
public function isMergeable()
{
return (bool) $this->isMergeable;
}
/**
* Sets the value of mergeable.
*
* @param mixed $mergeable the mergeable
*
* @return self
*/
public function setMergeable($mergeable)
{
$this->isMergeable = $mergeable;
return $this;
}
/**
* Gets the value of mergeableState.
*
* @return mixed
*/
public function getMergeableState()
{
return $this->mergeableState;
}
/**
* Sets the value of mergeableState.
*
* @param mixed $mergeableState the mergeable state
*
* @return self
*/
public function setMergeableState($mergeableState)
{
$this->mergeableState = $mergeableState;
return $this;
}
/**
* Gets the value of mergedBy.
*
* @return mixed
*/
public function getMergedBy()
{
return $this->mergedBy;
}
/**
* Sets the value of mergedBy.
*
* @param mixed $mergedBy the merged by
*
* @return self
*/
public function setMergedBy($mergedBy)
{
$this->mergedBy = $mergedBy;
return $this;
}
/**
* Gets the count of comments.
*
* @return mixed
*/
public function getCommentsCount()
{
return $this->commentsCount;
}
/**
* Sets the count of comments.
*
* @param mixed $comments the comments
*
* @return self
*/
public function setCommentsCount($comments)
{
$this->commentsCount = $comments;
return $this;
}
/**
* Gets the count of reviewComments.
*
* @return mixed
*/
public function getReviewCommentsCount()
{
return $this->reviewCommentsCount;
}
/**
* Sets the count of reviewComments.
*
* @param mixed $reviewComments the review comments
*
* @return self
*/
public function setReviewCommentsCount($reviewComments)
{
$this->reviewCommentsCount = $reviewComments;
return $this;
}
/**
* Gets the count of commits.
*
* @return mixed
*/
public function getCommitsCount()
{
return $this->commitsCount;
}
/**
* Sets the value of commits.
*
* @param mixed $commits the commits
*
* @return self
*/
public function setCommitsCount($commits)
{
$this->commitsCount = $commits;
return $this;
}
/**
* Gets the value of additions.
*
* @return mixed
*/
public function getAdditions()
{
return $this->additions;
}
/**
* Sets the value of additions.
*
* @param mixed $additions the additions
*
* @return self
*/
public function setAdditions($additions)
{
$this->additions = $additions;
return $this;
}
/**
* Gets the value of deletions.
*
* @return mixed
*/
public function getDeletions()
{
return $this->deletions;
}
/**
* Sets the value of deletions.
*
* @param mixed $deletions the deletions
*
* @return self
*/
public function setDeletions($deletions)
{
$this->deletions = $deletions;
return $this;
}
/**
* Gets the value of changedFiles.
*
* @return mixed
*/
public function getChangedFiles()
{
return $this->changedFiles;
}
/**
* Sets the value of changedFiles.
*
* @param mixed $changedFiles the changed files
*
* @return self
*/
public function setChangedFiles($changedFiles)
{
$this->changedFiles = $changedFiles;
return $this;
}
/**
* Gets the value of commit.
*
* @return mixed
*/
public function getCommitSha()
{
return $this->commitSha;
}
/**
* Get the commits.
*
* @return Commit[]
*/
public function getCommits()
{
$commits = [];
if ('' === ini_get('user_agent')) {
throw new UserAgentNotFoundException();
}
if (!ini_get('allow_url_fopen')) {
throw new AllowUrlFileOpenException();
}
$jsonResponse = $this->getFileContent($this->getCommitsUrl(), ini_get('user_agent'));
$response = json_decode($jsonResponse, true);
foreach ($response as $commitArray) {
$commit = Commit::createFromData($commitArray['commit'])
->setSha($commitArray['sha'])
;
$commits[] = $commit;
}
return $commits;
}
/**
* Some helpers.
*/
public function isClosed()
{
return 'closed' === $this->state;
}
/*
* Get the HEAD information.
*
* @return array
*/
public function getHead()
{
return $this->head;
}
/**
* Get the BASE information.
*
* @return array
*/
public function getBase()
{
return $this->base;
}
/**
* A better file_get_contents
*/
private function getFileContent($url, $userAgent)
{
$opts = [
'http' => [
'method' => 'GET',
'header' => [
'User-Agent: ' . $userAgent,
],
],
];
$context = stream_context_create($opts);
return file_get_contents($url, false, $context);
}
}