Merge branch 'master' of ssh://git.codehal.de:2222/steffen/PatchBot
This commit is contained in:
commit
f1ab18eaa4
1 changed files with 29 additions and 0 deletions
29
README.md
29
README.md
|
|
@ -1,2 +1,31 @@
|
|||
# PatchBot
|
||||
Patch Notification Robot: Providing you the latest update notifications.
|
||||
|
||||
## Installation
|
||||
Run periodically ```php PatchCollector.php``` to collect the latest product versions from vendor websites. Limit requests, so web servers will not overload.
|
||||
For data export to webpage, RSS feed and Twitter use output of ```PatchViewer.php```, ```PatchFeeder.php``` or ```PatchTwitter.php```. Twitter requires a separate [developer registration](https://developer.twitter.com/).
|
||||
|
||||
## Writing web scraper
|
||||
* Inherit from ```PatchBase``` base class:
|
||||
```
|
||||
class MyProgram extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Vendor', 'Product', 'https://www.vendor.com/product/');
|
||||
[$this->patch->setBranch('Branch');]
|
||||
}
|
||||
...
|
||||
}
|
||||
```
|
||||
* Implement ```check()``` method to extract version information from website using this template:
|
||||
```
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.url.com/' [, true]))
|
||||
return $this->parse...
|
||||
return false;
|
||||
}
|
||||
```
|
||||
* Currently available parser functions for JSON and RegEx:
|
||||
* ```parse_json(string)```
|
||||
* ```parse(string)```
|
||||
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WYQZCVJPVSS5L&source=url)
|
||||
Loading…
Add table
Add a link
Reference in a new issue