sponsors.php 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. /**
  3. * This file is part of the Carbon package.
  4. *
  5. * (c) Brian Nesbitt <brian@nesbot.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. use Carbon\CarbonImmutable;
  11. require_once __DIR__.'/vendor/autoload.php';
  12. function getOpenCollectiveSponsors(): string
  13. {
  14. $members = json_decode(file_get_contents('https://opencollective.com/carbon/members/all.json'), true);
  15. $sixMonthsAgo = CarbonImmutable::parse('now - 6 months')->format('Y-m-d h:i');
  16. $list = array_filter($members, static function ($member) use ($sixMonthsAgo) {
  17. return ($member['lastTransactionAmount'] > 3 || $member['isActive']) &&
  18. $member['role'] === 'BACKER' &&
  19. $member['type'] !== 'USER' &&
  20. ($member['totalAmountDonated'] > 100 || $member['lastTransactionAt'] > $sixMonthsAgo || $member['isActive'] && $member['lastTransactionAmount'] >= 30);
  21. });
  22. $list = array_map(static function (array $member) {
  23. $createdAt = CarbonImmutable::parse($member['createdAt']);
  24. $lastTransactionAt = CarbonImmutable::parse($member['lastTransactionAt']);
  25. if ($createdAt->format('d H:i:s.u') > $lastTransactionAt->format('d H:i:s.u')) {
  26. $createdAt = $createdAt
  27. ->setDay($lastTransactionAt->day)
  28. ->modify($lastTransactionAt->format('H:i:s.u'));
  29. }
  30. $monthlyContribution = (float) ($member['totalAmountDonated'] / ceil($createdAt->floatDiffInMonths()));
  31. if (
  32. $lastTransactionAt->isAfter('last month') &&
  33. $member['lastTransactionAmount'] > $monthlyContribution
  34. ) {
  35. $monthlyContribution = (float) $member['lastTransactionAmount'];
  36. }
  37. $yearlyContribution = (float) ($member['totalAmountDonated'] / max(1, $createdAt->floatDiffInYears()));
  38. $status = null;
  39. if ($monthlyContribution > 29) {
  40. $status = 'sponsor';
  41. } elseif ($monthlyContribution > 3 || $yearlyContribution > 20) {
  42. $status = 'backer';
  43. } elseif ($member['totalAmountDonated'] > 0) {
  44. $status = 'helper';
  45. }
  46. return array_merge($member, [
  47. 'star' => ($monthlyContribution > 98 || $yearlyContribution > 500),
  48. 'status' => $status,
  49. 'monthlyContribution' => $monthlyContribution,
  50. 'yearlyContribution' => $yearlyContribution,
  51. ]);
  52. }, $list);
  53. usort($list, static function (array $a, array $b) {
  54. return ($b['monthlyContribution'] <=> $a['monthlyContribution'])
  55. ?: ($b['totalAmountDonated'] <=> $a['totalAmountDonated']);
  56. });
  57. return implode('', array_map(static function (array $member) {
  58. $href = htmlspecialchars($member['website'] ?? $member['profile']);
  59. $src = $member['image'] ?? (strtr($member['profile'], ['https://opencollective.com/' => 'https://images.opencollective.com/']).'/avatar/256.png');
  60. [$x, $y] = @getimagesize($src) ?: [0, 0];
  61. $validImage = ($x && $y);
  62. $src = $validImage ? htmlspecialchars($src) : 'https://opencollective.com/static/images/default-guest-logo.svg';
  63. $height = 64;
  64. $width = $validImage ? round($x * $height / $y) : $height;
  65. $href .= (strpos($href, '?') === false ? '?' : '&amp;').'utm_source=opencollective&amp;utm_medium=github&amp;utm_campaign=Carbon';
  66. $title = htmlspecialchars(($member['description'] ?? null) ?: $member['name']);
  67. $alt = htmlspecialchars($member['name']);
  68. return "\n".'<a title="'.$title.'" href="'.$href.'" target="_blank" rel="sponsored">'.
  69. '<img alt="'.$alt.'" src="'.$src.'" width="'.$width.'" height="'.$height.'">'.
  70. '</a>';
  71. }, $list))."\n";
  72. }
  73. file_put_contents('readme.md', preg_replace_callback(
  74. '/(<!-- <open-collective-sponsors> -->)[\s\S]+(<!-- <\/open-collective-sponsors> -->)/',
  75. static function (array $match) {
  76. return $match[1].getOpenCollectiveSponsors().$match[2];
  77. },
  78. file_get_contents('readme.md')
  79. ));