malahierba-lab/web-harvester
最新稳定版本:1.2.2
Composer 安装命令:
composer require malahierba-lab/web-harvester
包简介
Laravel HTTP Client with Javascript capabilites
README 文档
README
A tool for get information from external websites. Powered by PhantomJS and malahierba.cl dev team
Installation
Add in your composer.json:
{
"require": {
"malahierba-lab/web-harvester": "1.*"
}
}
Then you need run the composer update command.
After install you must configure Service Provider. Simply add the service provider in the config/app.php providers section:
Malahierba\WebHarvester\WebHarvesterServiceProvider::class
Now you need publish the config file. Simply execute php artisan vendor:publish
Configuration
Laravel Web Harvester run using PhantomJS headless Webkit browser. This tool is included as binary, so before you can use this package you need to specify your OS. This can be done in config file config\webharvester.php.
You need set option environment with once of the options supported:
- linux-i686-32
- linux-i686-64
- macosx
- windows
example: 'environment' => 'macosx'
Use
Important: For documentation purposes, in the examples below, always we assume than you import the library into your namespace using use Malahierba\WebHarvester;
Get WebPage Components
$url = 'http://someurl';
$webharvester = new WebHarvester;
//Check if we can process the URL and Load it
if ($webharvester->load($url)) {
//Page Title
$title = $webharvester->getTitle();
//Page Description
$description = $webharvester->getDescription();
//Get Status Code (If the url redirect to another webpage, then return the status code for the final webpage)
$status_code = $webharvester->getStatusCode();
//Page Featured Image as URL
$featured_image_url = $webharvester->getFeaturedImage();
//Page Featured Image as Base64
$featured_image_base_64 = $webharvester->getFeaturedImage('base64');
//Page real URL (if the $url redirect to another, return the final)
$real_url = $webharvester->getRealURL();
//Site Name
$sitename = $webharvester->getSiteName();
}
Get expected behavior of the Robot (based on meta name="robots")
$url = 'http://someurl';
$webharvester = new WebHarvester;
//Check if we can process the URL and Load it
if ($webharvester->load($url)) {
//check for index
if ($webharvester->isIndexable()) {
//...some code
}
//check for follow
if ($webharvester->isFollowable()) {
//...some code
}
}
Get found links in WebPage (useful for web crawlers, web spiders, etc.)
$url = 'http://someurl';
$webharvester = new WebHarvester;
//Check if we can process the URL and Load it
if ($webharvester->load($url)) {
//all full links as array
$links = $webharvester->getLinks(); //retrieve an array with found links
//all links as array, but query component removed (from the character "?" onwards)
$links = $webharvester->getLinks([
'remove' => ['query']
]);
//retrieve links as array of objects (properties: url, follow)
//if follow is false indicate than that links is marked to no follow (rel='nofollow') by the source website
$links = $webharvester->getLinks(['only_urls' => false]); //default true
}
Important: For security reasons all links with embeded javascript are not included in output array
Get WebPage Raw Content
$url = 'http://someurl';
$webharvester = new WebHarvester;
//Check if we can process the URL and Load it
if ($webharvester->load($url)) {
$raw = $webharvester->content();
}
Take ScreenShoot of a WebPage
$url = 'http://someurl';
$webharvester = new WebHarvester;
//Check if we can process the URL and Load it
if ($webharvester->takeScreenshot($url)) {
$image_base_64 = $webharvester->content(); //return a base64 string
}
Setup Options
You can customize the webharvester with some functions:
$webharvester = new WebHarvester;
//Custom User Agent
$webharvester->setUserAgent('your user agent');
//Ignore SSL Errors
$webharvester->setIgnoreSSLErrors(true);
//Resource Timeout (in milliseconds)
$webharvester->setResourceTimeout(3000);
//Wait after load (in milliseconds)
$webharvester->setWaitAfterLoad(3000); // <- useful for get async content
Licence
This project has MIT licence. For more information please read LICENCE file.
malahierba-lab/web-harvester 适用场景与选型建议
malahierba-lab/web-harvester 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 155 次下载、GitHub Stars 达 5, 最近一次更新时间为 2015 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「curl」 「http」 「javascript」 「laravel」 「scraping」 「phantomjs」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 malahierba-lab/web-harvester 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 malahierba-lab/web-harvester 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 malahierba-lab/web-harvester 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.
cURL and cURL based Soap-Client for PHP
repository php library
Simple cURL wrapper
Caching and compression for Twig assets (JavaScript and CSS).
A pretty nice way to expose your translation messages to your JavaScript.
统计信息
- 总下载量: 155
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-12