2016-06-26 00:33:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GithubIssueBridge
|
|
|
|
*
|
|
|
|
* @name GithubIssue Bridge
|
|
|
|
* @description Returns the comments of a github project issue
|
|
|
|
*/
|
|
|
|
class GithubIssueBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = 'Pierre Mazière';
|
|
|
|
$this->name = 'Github Issue';
|
|
|
|
$this->uri = '';
|
|
|
|
$this->description = 'Returns the comments of a github project issue';
|
|
|
|
$this->update = '2016-06-25';
|
|
|
|
|
2016-07-03 19:04:32 +02:00
|
|
|
$this->parameters[]=
|
2016-06-26 00:33:27 +02:00
|
|
|
'[
|
|
|
|
{
|
|
|
|
"name" : "User name",
|
|
|
|
"identifier" : "u"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "Project name",
|
|
|
|
"identifier" : "p"
|
2016-06-26 11:28:41 +02:00
|
|
|
},
|
2016-06-26 00:33:27 +02:00
|
|
|
{
|
|
|
|
"name" : "Issue number",
|
|
|
|
"identifier" : "i"
|
|
|
|
}
|
|
|
|
|
|
|
|
]';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$uri = 'https://github.com/'.$param['u'].'/'.$param['p'].'/issues/'.$param['i'];
|
|
|
|
$html = file_get_html($uri)
|
2016-06-26 11:53:44 +02:00
|
|
|
or $this->returnError('No results for Github Issue '.$param['i'].' in project '.$param['u'].'/'.$param['p'], 404);
|
2016-06-26 00:33:27 +02:00
|
|
|
|
|
|
|
foreach($html->find('.js-comment-container') as $comment){
|
|
|
|
|
|
|
|
$item = new \Item();
|
|
|
|
$item->name=$comment->find('img',0)->getAttribute('alt');
|
|
|
|
|
|
|
|
$comment=$comment->firstChild()->nextSibling();
|
|
|
|
|
|
|
|
$item->uri=$uri.'#'.$comment->getAttribute('id');
|
|
|
|
$item->title=trim($comment->firstChild()->plaintext);
|
|
|
|
$item->timestamp=strtotime($comment->find('relative-time',0)->getAttribute('datetime'));
|
|
|
|
$item->content=$comment->find('.comment-body',0)->innertext;
|
|
|
|
|
|
|
|
$this->items[]=$item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'Github Issue';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 600; // ten minutes
|
|
|
|
}
|
|
|
|
}
|