Skip to content

Commit 525e007

Browse files
authored
Create DuckDuckGoProvider.php (#14)
1 parent 7713e0c commit 525e007

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/Provider/DuckDuckGoProvider.php

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace StefanBauer\LaravelFaviconExtractor\Provider;
6+
7+
use GrahamCampbell\GuzzleFactory\GuzzleFactory;
8+
9+
class DuckDuckGoProvider implements ProviderInterface
10+
{
11+
public function fetchFromUrl(string $url): string
12+
{
13+
$client = GuzzleFactory::make();
14+
15+
$response = $client->get($this->getUrl($url));
16+
17+
return $response->getBody()->getContents();
18+
}
19+
20+
private function getUrl(string $url): string
21+
{
22+
$domain = preg_replace('/https?:\/\/([\w\-\.]+)\/?.*/i', '$1', $url);
23+
24+
return 'https://icons.duckduckgo.com/ip3/'.$domain;
25+
}
26+
}

0 commit comments

Comments
 (0)