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 pathRepository.php
More file actions
809 lines (738 loc) · 15.5 KB
/
Repository.php
File metadata and controls
809 lines (738 loc) · 15.5 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
<?php
namespace LoveOSS\Github\Entity;
class Repository
{
private $id;
private $name;
private $fullName;
private \LoveOSS\Github\Entity\User $owner;
private $isPrivate;
private $htmlUrl;
private $description;
private $isFork;
private $url;
private $forksUrl;
private $keysUrl;
private $collaboratorsUrl;
private $teamsUrl;
private $hooksUrl;
private $issueEventsUrl;
private $eventsUrl;
private $assigneesUrl;
private $branchesUrl;
private $tagsUrl;
private $blobsUrl;
private $gitTagsUrl;
private $gitRefsUrl;
private $treesUrl;
private $statusesUrl;
private $languagesUrl;
private $stargazersUrl;
private $contributorsUrl;
private $subscribersUrl;
private $subscriptionUrl;
private $commitsUrl;
private $gitCommitsUrl;
private $commentsUrl;
private $issueCommentUrl;
private $contentsUrl;
private $compareUrl;
private $mergesUrl;
private $archiveUrl;
private $downloadsUrl;
private $issuesUrl;
private $pullsUrl;
private $milestonesUrl;
private $notificationsUrl;
private $labelsUrl;
private $releasesUrl;
private $createdAt;
private $updatedAt;
private $pushedAt;
private $gitUrl;
private $sshUrl;
private $cloneUrl;
private $svnUrl;
private $homepage;
private $size;
private $stargazersCount;
private $watchersCount;
private $language;
private $hasIssues;
private $hasDownloads;
private $hasWiki;
private $hasPages;
private $forksCount;
private $mirrorUrl;
private $openIssues;
private $watchers;
private $defaultBranch;
private ?bool $isPublic = null;
public static function createFromData(array $data)
{
return new static($data);
}
final public function __construct($data)
{
$this->id = $data['id'];
$this->name = $data['name'];
$this->fullName = $data['full_name'];
$this->owner = User::createFromData($data['owner']);
$this->isPrivate = $data['private'];
$this->htmlUrl = $data['html_url'];
$this->description = $data['description'];
$this->isFork = $data['fork'];
$this->url = $data['url'];
$this->forksUrl = $data['forks_url'];
$this->keysUrl = $data['keys_url'];
$this->collaboratorsUrl = $data['collaborators_url'];
$this->teamsUrl = $data['teams_url'];
$this->hooksUrl = $data['hooks_url'];
$this->issueEventsUrl = $data['issue_events_url'];
$this->eventsUrl = $data['events_url'];
$this->assigneesUrl = $data['assignees_url'];
$this->branchesUrl = $data['branches_url'];
$this->tagsUrl = $data['tags_url'];
$this->blobsUrl = $data['blobs_url'];
$this->gitTagsUrl = $data['git_tags_url'];
$this->gitRefsUrl = $data['git_refs_url'];
$this->treesUrl = $data['trees_url'];
$this->statusesUrl = $data['statuses_url'];
$this->languagesUrl = $data['languages_url'];
$this->stargazersUrl = $data['stargazers_url'];
$this->contributorsUrl = $data['contributors_url'];
$this->subscribersUrl = $data['subscribers_url'];
$this->subscriptionUrl = $data['subscription_url'];
$this->commitsUrl = $data['commits_url'];
$this->gitCommitsUrl = $data['git_commits_url'];
$this->commentsUrl = $data['comments_url'];
$this->issueCommentUrl = $data['issue_comment_url'];
$this->contentsUrl = $data['contents_url'];
$this->compareUrl = $data['compare_url'];
$this->mergesUrl = $data['merges_url'];
$this->archiveUrl = $data['archive_url'];
$this->downloadsUrl = $data['downloads_url'];
$this->issuesUrl = $data['issues_url'];
$this->pullsUrl = $data['pulls_url'];
$this->milestonesUrl = $data['milestones_url'];
$this->notificationsUrl = $data['notifications_url'];
$this->labelsUrl = $data['labels_url'];
$this->releasesUrl = $data['releases_url'];
$this->createdAt = $data['created_at'];
$this->updatedAt = $data['updated_at'];
$this->pushedAt = $data['pushed_at'];
$this->gitUrl = $data['git_url'];
$this->sshUrl = $data['ssh_url'];
$this->cloneUrl = $data['clone_url'];
$this->svnUrl = $data['svn_url'];
$this->homepage = $data['homepage'];
$this->size = $data['size'];
$this->stargazersCount = $data['stargazers_count'];
$this->watchersCount = $data['watchers_count'];
$this->language = $data['language'];
$this->hasIssues = $data['has_issues'];
$this->hasDownloads = $data['has_downloads'];
$this->hasWiki = $data['has_wiki'];
$this->hasPages = $data['has_pages'];
$this->forksCount = $data['forks_count'];
$this->mirrorUrl = $data['mirror_url'];
$this->openIssues = $data['open_issues'];
$this->watchers = $data['watchers'];
$this->defaultBranch = $data['default_branch'];
$this->isPublic = isset($data['public']) ?: null;
}
/**
* Gets the value of id.
*
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* Gets the value of name.
*
* @return mixed
*/
public function getName()
{
return $this->name;
}
/**
* Gets the value of fullName.
*
* @return mixed
*/
public function getFullName()
{
return $this->fullName;
}
/**
* Gets the value of owner.
*
* @return User
*/
public function getOwner()
{
return $this->owner;
}
/**
* Gets the value of isPrivate.
*
* @return mixed
*/
public function isPrivate()
{
return $this->isPrivate;
}
/**
* Gets the value of htmlUrl.
*
* @return mixed
*/
public function getHtmlUrl()
{
return $this->htmlUrl;
}
/**
* Gets the value of description.
*
* @return mixed
*/
public function getDescription()
{
return $this->description;
}
/**
* Gets the value of isFork.
*
* @return mixed
*/
public function isFork()
{
return $this->isFork;
}
/**
* Gets the value of url.
*
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* Gets the value of forksUrl.
*
* @return mixed
*/
public function getForksUrl()
{
return $this->forksUrl;
}
/**
* Gets the value of keysUrl.
*
* @return mixed
*/
public function getKeysUrl()
{
return $this->keysUrl;
}
/**
* Gets the value of collaboratorsUrl.
*
* @return mixed
*/
public function getCollaboratorsUrl()
{
return $this->collaboratorsUrl;
}
/**
* Gets the value of teamsUrl.
*
* @return mixed
*/
public function getTeamsUrl()
{
return $this->teamsUrl;
}
/**
* Gets the value of hooksUrl.
*
* @return mixed
*/
public function getHooksUrl()
{
return $this->hooksUrl;
}
/**
* Gets the value of issueEventsUrl.
*
* @return mixed
*/
public function getIssueEventsUrl()
{
return $this->issueEventsUrl;
}
/**
* Gets the value of eventsUrl.
*
* @return mixed
*/
public function getEventsUrl()
{
return $this->eventsUrl;
}
/**
* Gets the value of assigneesUrl.
*
* @return mixed
*/
public function getAssigneesUrl()
{
return $this->assigneesUrl;
}
/**
* Gets the value of branchesUrl.
*
* @return mixed
*/
public function getBranchesUrl()
{
return $this->branchesUrl;
}
/**
* Gets the value of tagsUrl.
*
* @return mixed
*/
public function getTagsUrl()
{
return $this->tagsUrl;
}
/**
* Gets the value of blobsUrl.
*
* @return mixed
*/
public function getBlobsUrl()
{
return $this->blobsUrl;
}
/**
* Gets the value of gitTagsUrl.
*
* @return mixed
*/
public function getGitTagsUrl()
{
return $this->gitTagsUrl;
}
/**
* Gets the value of gitRefsUrl.
*
* @return mixed
*/
public function getGitRefsUrl()
{
return $this->gitRefsUrl;
}
/**
* Gets the value of treesUrl.
*
* @return mixed
*/
public function getTreesUrl()
{
return $this->treesUrl;
}
/**
* Gets the value of statusesUrl.
*
* @return mixed
*/
public function getStatusesUrl()
{
return $this->statusesUrl;
}
/**
* Gets the value of languagesUrl.
*
* @return mixed
*/
public function getLanguagesUrl()
{
return $this->languagesUrl;
}
/**
* Gets the value of stargazersUrl.
*
* @return mixed
*/
public function getStargazersUrl()
{
return $this->stargazersUrl;
}
/**
* Gets the value of contributorsUrl.
*
* @return mixed
*/
public function getContributorsUrl()
{
return $this->contributorsUrl;
}
/**
* Gets the value of subscribersUrl.
*
* @return mixed
*/
public function getSubscribersUrl()
{
return $this->subscribersUrl;
}
/**
* Gets the value of subscriptionUrl.
*
* @return mixed
*/
public function getSubscriptionUrl()
{
return $this->subscriptionUrl;
}
/**
* Gets the value of commitsUrl.
*
* @return mixed
*/
public function getCommitsUrl()
{
return $this->commitsUrl;
}
/**
* Gets the value of gitCommitsUrl.
*
* @return mixed
*/
public function getGitCommitsUrl()
{
return $this->gitCommitsUrl;
}
/**
* Gets the value of commentsUrl.
*
* @return mixed
*/
public function getCommentsUrl()
{
return $this->commentsUrl;
}
/**
* Gets the value of issueCommentUrl.
*
* @return mixed
*/
public function getIssueCommentUrl()
{
return $this->issueCommentUrl;
}
/**
* Gets the value of contentsUrl.
*
* @return mixed
*/
public function getContentsUrl()
{
return $this->contentsUrl;
}
/**
* Gets the value of compareUrl.
*
* @return mixed
*/
public function getCompareUrl()
{
return $this->compareUrl;
}
/**
* Gets the value of mergesUrl.
*
* @return mixed
*/
public function getMergesUrl()
{
return $this->mergesUrl;
}
/**
* Gets the value of archiveUrl.
*
* @return mixed
*/
public function getArchiveUrl()
{
return $this->archiveUrl;
}
/**
* Gets the value of downloadsUrl.
*
* @return mixed
*/
public function getDownloadsUrl()
{
return $this->downloadsUrl;
}
/**
* Gets the value of issuesUrl.
*
* @return mixed
*/
public function getIssuesUrl()
{
return $this->issuesUrl;
}
/**
* Gets the value of pullsUrl.
*
* @return mixed
*/
public function getPullsUrl()
{
return $this->pullsUrl;
}
/**
* Gets the value of milestonesUrl.
*
* @return mixed
*/
public function getMilestonesUrl()
{
return $this->milestonesUrl;
}
/**
* Gets the value of notificationsUrl.
*
* @return mixed
*/
public function getNotificationsUrl()
{
return $this->notificationsUrl;
}
/**
* Gets the value of labelsUrl.
*
* @return mixed
*/
public function getLabelsUrl()
{
return $this->labelsUrl;
}
/**
* Gets the value of releasesUrl.
*
* @return mixed
*/
public function getReleasesUrl()
{
return $this->releasesUrl;
}
/**
* Gets the value of createdAt.
*
* @return mixed
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* Gets the value of updatedAt.
*
* @return mixed
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* Gets the value of pushedAt.
*
* @return mixed
*/
public function getPushedAt()
{
return $this->pushedAt;
}
/**
* Gets the value of gitUrl.
*
* @return mixed
*/
public function getGitUrl()
{
return $this->gitUrl;
}
/**
* Gets the value of sshUrl.
*
* @return mixed
*/
public function getSshUrl()
{
return $this->sshUrl;
}
/**
* Gets the value of cloneUrl.
*
* @return mixed
*/
public function getCloneUrl()
{
return $this->cloneUrl;
}
/**
* Gets the value of svnUrl.
*
* @return mixed
*/
public function getSvnUrl()
{
return $this->svnUrl;
}
/**
* Gets the value of homepage.
*
* @return mixed
*/
public function getHomepage()
{
return $this->homepage;
}
/**
* Gets the value of size.
*
* @return mixed
*/
public function getSize()
{
return $this->size;
}
/**
* Gets the value of stargazersCount.
*
* @return mixed
*/
public function getStargazersCount()
{
return $this->stargazersCount;
}
/**
* Gets the value of watchersCount.
*
* @return mixed
*/
public function getWatchersCount()
{
return $this->watchersCount;
}
/**
* Gets the value of language.
*
* @return mixed
*/
public function getLanguage()
{
return $this->language;
}
/**
* Gets the value of hasIssues.
*
* @return mixed
*/
public function getHasIssues()
{
return $this->hasIssues;
}
/**
* Gets the value of hasDownloads.
*
* @return mixed
*/
public function getHasDownloads()
{
return $this->hasDownloads;
}
/**
* Gets the value of hasWiki.
*
* @return mixed
*/
public function getHasWiki()
{
return $this->hasWiki;
}
/**
* Gets the value of hasPages.
*
* @return mixed
*/
public function getHasPages()
{
return $this->hasPages;
}
/**
* Gets the value of forksCount.
*
* @return mixed
*/
public function getForksCount()
{
return $this->forksCount;
}
/**
* Gets the value of mirrorUrl.
*
* @return mixed
*/
public function getMirrorUrl()
{
return $this->mirrorUrl;
}
/**
* Gets the value of openIssues.
*
* @return mixed
*/
public function getOpenIssues()
{
return $this->openIssues;
}
/**
* Gets the value of watchers.
*
* @return mixed
*/
public function getWatchers()
{
return $this->watchers;
}
/**
* Gets the value of defaultBranch.
*
* @return mixed
*/
public function getDefaultBranch()
{
return $this->defaultBranch;
}
/**
* Gets the value of isPublic.
*
* @return mixed
*/
public function isPublic()
{
return $this->isPublic;
}
}