GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( fc6845...7741ae )
by Christian
03:01
created

src/Crawler/EventListCrawler.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * (c) Christian Gripp <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Core23\LastFm\Crawler;
11
12
use Core23\LastFm\Model\Event;
13
use Core23\LastFm\Model\GeoLocation;
14
use DateTime;
15
use Symfony\Component\DomCrawler\Crawler;
16
17
final class EventListCrawler extends AbstractCrawler implements EventListCrawlerInterface
18
{
19
    private const BASE_URL = 'https://www.last.fm/events';
20
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function getEvents(GeoLocation $location, $radius = 100, int $page = 1): array
25
    {
26
        $node = $this->crawlUrl($location, $radius, $page);
27
28
        if (null === $node) {
29
            return [];
30
        }
31
32
        $resultList = [];
33
34
        $node->filter('.page-content section')->each(function (Crawler $node) use (&$resultList) {
35
            $headingNode = $node->filter('.group-heading');
36
37
            $datetime = new DateTime(trim($headingNode->text()));
38
39
            $resultList = array_merge($resultList, $this->crawlEventListGroup($node, $datetime));
40
        });
41
42
        return $resultList;
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48
    public function getPages(GeoLocation $location, $radius = 100): int
49
    {
50
        $node = $this->crawlUrl($location, $radius);
51
52
        if (null === $node) {
53
            return 0;
54
        }
55
56
        $lastNode = $node->filter('.pagination .pagination-page')->last();
57
58
        if (0 === $lastNode->count()) {
59
            return 0;
60
        }
61
62
        return (int) $lastNode->text();
63
    }
64
65
    /**
66
     * @param Crawler  $node
67
     * @param DateTime $datetime
68
     *
69
     * @return array
70
     */
71
    private function crawlEventListGroup(Crawler $node, DateTime $datetime): array
72
    {
73
        return $node->filter('.events-list-item')->each(
74
            function (Crawler $node) use ($datetime): Event {
0 ignored issues
show
Expected 1 space after closing parenthesis; found 0
Loading history...
75
                return $this->parseEvent($node, $datetime);
76
            }
77
        );
78
    }
79
80
    /**
81
     * @param GeoLocation $location
82
     * @param int         $radius
83
     * @param int         $page
84
     *
85
     * @return Crawler|null
86
     */
87
    private function crawlUrl(GeoLocation $location, int $radius, int $page = 1): ?Crawler
88
    {
89
        $url = static::BASE_URL;
90
91
        return $this->crawl($url, [
92
            'location_0' => 'Germany',
93
            'location_1' => $location->getLatitude(),
94
            'location_2' => $location->getLongitude(),
95
            'radius'     => $radius*1000,
96
            'page'       => $page,
97
        ]);
98
    }
99
}
100