siteorigin/laravel-kernel-crawler
Composer 安装命令:
composer require siteorigin/laravel-kernel-crawler
包简介
Crawls a Laravel site using internal Kernel.
README 文档
README
This package gives you a local site crawler based on a Laravel LazyCollection. Each request goes directly through the local HTTPKernel, so it doesn't generate web server requests.
2 examples of you might need this is for warming your site's cache, and generating a sitemap. This package offers commands for both of these.
It's currently compatible with Laravel 8.0+
Installation
Installation instructions coming once this package is on Packagist.
To publish the configuration files, use:
php artisan vendor:publish --provider="SiteOrigin\KernelCrawler\CrawlerServiceProvider" --tag="config"
Usage
Here's a very basic use example:
use SiteOrigin\KernelCrawler\Crawler; use SiteOrigin\KernelCrawler\Exchange; $crawler = new Crawler(); $crawler->each(function(Exchange $ex){ // $ex->request is an Illuminate\Http\Request object $ex->request->url(); // $ex->response is an Illuminate\Http\Response object $ex->response->getContent() });
After creating a Crawler, you can use all of the Laravel LazyCollection functions. This offers a collection of Exchange objects.
Warming Cache
If all you need to do is generate dummy requests to each public URL on your site, then you can use php arisan crawler:start. This is useful if you want to warm the cache for all public URLs on your site.
Generating a Sitemap
This package offers the command php artisan crawler:sitemap to generate the sitemap. You can configure your sitemap using the crawler.php configuration file. See the Installation section for instructions on publishing this config file.
统计信息
- 总下载量: 133
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-26