We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7713e0c commit 525e007Copy full SHA for 525e007
src/Provider/DuckDuckGoProvider.php
@@ -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