-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
242 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Command; | ||
|
||
use App\Job\FlowExamples\ScrapUrlJob; | ||
use App\Job\FlowExamples\ScrapUrlsJob; | ||
use Flow\Driver\FiberDriver; | ||
use Flow\Flow\Flow; | ||
use Flow\Ip; | ||
use Flow\IpStrategy\FlattenIpStrategy; | ||
use Symfony\Component\Console\Attribute\AsCommand; | ||
use Symfony\Component\Console\Command\Command; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
use Symfony\Component\Console\Style\SymfonyStyle; | ||
|
||
use function sprintf; | ||
|
||
#[AsCommand( | ||
name: 'app:scrap', | ||
description: 'This allows scrap pages with flow', | ||
)] | ||
class ScrapCommand extends Command | ||
{ | ||
protected function execute(InputInterface $input, OutputInterface $output): int | ||
{ | ||
$io = new SymfonyStyle($input, $output); | ||
|
||
$driver = new FiberDriver(); | ||
|
||
$flow = Flow::do(static function () { | ||
// yield new ScrapUrlsJob(); | ||
// yield static function ($responses) use ($io) { | ||
// //printf('%s' . "\n", $responses['content']); | ||
// $io->writeln(sprintf('Finished scrapping %d urls', count($responses))); | ||
// }; | ||
yield [new ScrapUrlJob(), null, new FlattenIpStrategy()]; | ||
yield static function ($data) { | ||
dump($data); | ||
// $io->writeln(sprintf('Finished scrapping %d urls', count($responses))); | ||
}; | ||
}, ['driver' => $driver]); | ||
|
||
$urls = [ | ||
'https://www.google.fr', | ||
'https://www.apple.com', | ||
'https://www.microsoft.com', | ||
'https://www.amazon.com', | ||
'https://www.facebook.com', | ||
'https://www.netflix.com', | ||
'https://www.spotify.com', | ||
'https://www.wikipedia.org', | ||
'https://www.x.com', | ||
'https://www.instagram.com', | ||
'https://www.linkedin.com', | ||
'https://www.reddit.com', | ||
'https://www.ebay.com', | ||
'https://www.cnn.com', | ||
'https://www.bbc.co.uk', | ||
'https://www.yahoo.com', | ||
'https://www.bing.com', | ||
'https://www.pinterest.com', | ||
'https://www.tumblr.com', | ||
'https://www.paypal.com', | ||
'https://www.dropbox.com', | ||
'https://www.adobe.com', | ||
'https://www.salesforce.com', | ||
]; | ||
|
||
$flow(new Ip($urls)); | ||
|
||
$flow->await(); | ||
|
||
$io->success('Scraping is done.'); | ||
|
||
return Command::SUCCESS; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Flow\IpStrategy; | ||
|
||
use Flow\Event; | ||
use Flow\Event\PoolEvent; | ||
use Flow\Event\PullEvent; | ||
use Flow\Event\PushEvent; | ||
use Flow\Ip; | ||
use Flow\IpStrategyInterface; | ||
|
||
use function count; | ||
|
||
/** | ||
* @template T | ||
* | ||
* @implements IpStrategyInterface<T> | ||
*/ | ||
class FlattenIpStrategy implements IpStrategyInterface | ||
{ | ||
/** | ||
* @var array<Ip<T>> | ||
*/ | ||
private array $ips = []; | ||
|
||
public static function getSubscribedEvents(): array | ||
{ | ||
return [ | ||
Event::PUSH => 'push', | ||
Event::PULL => 'pull', | ||
Event::POOL => 'pool', | ||
]; | ||
} | ||
|
||
/** | ||
* @param PushEvent<T> $event | ||
*/ | ||
public function push(PushEvent $event): void | ||
{ | ||
$ip = $event->getIp(); | ||
foreach ($ip->data as $data) { | ||
$this->ips[] = new Ip($data); | ||
} | ||
} | ||
|
||
/** | ||
* @param PullEvent<T> $event | ||
*/ | ||
public function pull(PullEvent $event): void | ||
{ | ||
$event->setIp(array_shift($this->ips)); | ||
} | ||
|
||
public function pool(PoolEvent $event): void | ||
{ | ||
$event->addIps($this->ips); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Job\FlowExamples; | ||
|
||
use CurlMultiHandle; | ||
use Flow\JobInterface; | ||
|
||
/** | ||
* @implements JobInterface<string, array> | ||
*/ | ||
class ScrapUrlJob implements JobInterface | ||
{ | ||
private CurlMultiHandle $mh; | ||
|
||
public function __construct() | ||
{ | ||
// Initialize a cURL multi handle | ||
$this->mh = curl_multi_init(); | ||
} | ||
|
||
public function __destruct() | ||
{ | ||
curl_multi_close($this->mh); | ||
} | ||
|
||
/** | ||
* @param string $url The URL to scrape | ||
* | ||
* @return array<string, mixed> Associative array with URL and its content | ||
*/ | ||
public function __invoke($url): array | ||
{ | ||
$ch = curl_init(); | ||
curl_setopt($ch, CURLOPT_URL, $url); | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | ||
curl_multi_add_handle($this->mh, $ch); | ||
|
||
return [ | ||
'url' => $url, | ||
'content' => '', | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Job\FlowExamples; | ||
|
||
use Fiber; | ||
use Flow\JobInterface; | ||
|
||
/** | ||
* @implements JobInterface<array<string>, array<mixed>> | ||
*/ | ||
class ScrapUrlsJob implements JobInterface | ||
{ | ||
public function __invoke($urls): array | ||
{ | ||
// Initialize a cURL multi handle | ||
$mh = curl_multi_init(); | ||
|
||
// Array to hold individual cURL handles | ||
$curl_handles = []; | ||
|
||
// Initialize individual cURL handles and add them to the multi handle | ||
foreach ($urls as $url) { | ||
$ch = curl_init(); | ||
curl_setopt($ch, CURLOPT_URL, $url); | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | ||
curl_multi_add_handle($mh, $ch); | ||
$curl_handles[] = [$ch, $url]; | ||
} | ||
|
||
// Execute the multi handle | ||
$running = null; | ||
do { | ||
curl_multi_exec($mh, $running); | ||
|
||
Fiber::suspend(); | ||
} while ($running > 0); | ||
|
||
// Collect the content from each handle | ||
$responses = []; | ||
foreach ($curl_handles as $curl_handle) { | ||
[$ch, $url] = $curl_handle; | ||
$responses[] = [ | ||
'url' => $url, | ||
'content' => curl_multi_getcontent($ch), | ||
]; | ||
curl_multi_remove_handle($mh, $ch); | ||
curl_close($ch); | ||
} | ||
|
||
// Close the multi handle | ||
curl_multi_close($mh); | ||
|
||
return $responses; | ||
} | ||
} |