nelson / puppeteer
There is no license information available for the latest version (5.0.5) of this package.
5.0.5
2024-06-05 13:40 UTC
Requires
- php: ^8.3.0
- nette/di: ^3.0
- nette/http: ^3.1
- nette/utils: ^3.2 || ^4.0
- symfony/process: ^7.0
Requires (Dev)
- nette/tester: ^2.0
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^1.00
- phpstan/phpstan-nette: ^1.0.0
- phpstan/phpstan-strict-rules: ^1.5
README
Install
composer require nelson/puppeteer
.- Navigate to
%vendorDir%/nelson/puppeteer
and runnpm install
- be sure to do this on the target machine!
Configuration
-
Enable the extension:
extensions: puppeteer: Nelson\Puppeteer\DI\Extension
-
Configuration:
puppeteer: tempDir: '%tempDir%/puppeteer/' timeout: 120 # seconds sandbox: null # or path to the chrome-devel-sandbox binary nodeCommand: 'node' # in case multiple versions are installed
These are the default values.
Sandbox
Using sandbox is highly encouraged (by Puppeteer team).
Usage
Most basic usage:
$html = '<body style="color: #fff; background: rebeccapurple"><h1>Puppeteer test</h1><p>Some text paragraph</p>'; $html .= '<p>' . date(DateTime::ISO8601) . '</p>'; $html .= '</body>'; /** @var Generator $generator */ $generator = $this->generatorFactory->create(); $output = $generator->generateFromHtml($html, Generator::GENERATE_BOTH);
Note: The HTML is not directly passed to the node process. Instead, it is first saved to a temp file and then read by node. This is done intentionally for the generator to deal with large HTML payloads. nesk/puphpeteer
suffers from this problem, as the data is sent via JSON (AFAIK) and crashes on large HTML, otherwise it works just fine and is a great tool.
There are currently three output modes:
Generator::GENERATE_PDF
Generator::GENERATE_IMAGE
Generator::GENERATE_BOTH
These are self-explanatory.
The generator also supports generating from URL:
$output = $generator->generateFromUrl(new UrlScript('https://www.google.com'), Generator::GENERATE_BOTH);
Variable $output
contains:
array(4) { ["pdf"]=> string(150) "/xyz/puppeteer/app/../temp/puppeteer/1562653154_-_58f8da81a3c0c3399838891fe88d0db7.pdf" ["image"]=> string(150) "/xyz/puppeteer/app/../temp/puppeteer/1562653154_-_58f8da81a3c0c3399838891fe88d0db7.png" ["command"]=> array(7) { [0]=> string(4) "node" [1]=> string(91) "/xyz/puppeteer/src/assets/generator.js" [2]=> string(16) "--inputMode=file" [3]=> string(159) "--input=/xyz/puppeteer/app/../temp/puppeteer/1562653154_-_58f8da81a3c0c3399838891fe88d0db7.html" [4]=> string(5) "--pdf" [5]=> string(7) "--image" [6]=> string(155) "--output=/xyz/puppeteer/app/../temp/puppeteer/1562653154_-_58f8da81a3c0c3399838891fe88d0db7" } ["console"]=> string(0) "" }
Legend:
pdf
/image
are dependant on the mode used.command
- raw command passed from PHP to NODE.js via Symfony/Process.console
- raw output from NODE (viaconsole.log
). Should be empty in most cases.