2016-06-26 00:33:27 +02:00
|
|
|
<?php
|
|
|
|
class GithubIssueBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = 'Pierre Mazière';
|
|
|
|
public $name = 'Github Issue';
|
|
|
|
public $uri = '';
|
|
|
|
public $description = 'Returns the issues or comments of an issue of a github project';
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $parameters=array(
|
|
|
|
'global'=>array (
|
2016-08-22 01:25:56 +02:00
|
|
|
'u'=>array(
|
|
|
|
'name'=>'User name',
|
|
|
|
'required'=>true
|
|
|
|
),
|
|
|
|
'p'=>array(
|
|
|
|
'name'=>'Project name',
|
|
|
|
'required'=>true
|
2016-08-23 20:29:29 +02:00
|
|
|
)
|
2016-08-27 21:03:26 +02:00
|
|
|
),
|
2016-08-23 20:29:29 +02:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
'Project Issues'=>array(),
|
|
|
|
'Issue comments'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'i'=>array(
|
|
|
|
'name'=>'Issue number',
|
|
|
|
'type'=>'number',
|
2016-08-23 20:29:29 +02:00
|
|
|
'required'=>'true'
|
2016-08-22 01:25:56 +02:00
|
|
|
)
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
);
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-27 21:03:26 +02:00
|
|
|
$param=$this->parameters[$this->queriedContext];
|
2016-08-25 01:24:53 +02:00
|
|
|
$uri = 'https://github.com/'.$param['u']['value'].'/'.$param['p']['value'].'/issues/'.(isset($param['i']['value'])?$param['i']['value']:'');
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($uri)
|
2016-08-25 01:24:53 +02:00
|
|
|
or $this->returnServerError('No results for Github Issue '.$param['i']['value'].' in project '.$param['u']['value'].'/'.$param['p']['value']);
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
if(isset($param['i']['value'])){
|
2016-08-23 20:29:29 +02:00
|
|
|
foreach($html->find('.js-comment-container') as $comment){
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-23 20:29:29 +02:00
|
|
|
$item = array();
|
|
|
|
$item['author']=$comment->find('img',0)->getAttribute('alt');
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-23 20:29:29 +02:00
|
|
|
$comment=$comment->firstChild()->nextSibling();
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-23 20:29:29 +02:00
|
|
|
$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;
|
2016-06-26 00:33:27 +02:00
|
|
|
|
2016-08-23 20:29:29 +02:00
|
|
|
$this->items[]=$item;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
foreach($html->find('.js-active-navigation-container .js-navigation-item') as $issue){
|
|
|
|
$item=array();
|
|
|
|
$info=$issue->find('.opened-by',0);
|
|
|
|
$item['author']=$info->find('a',0)->plaintext;
|
|
|
|
$item['timestamp']=strtotime($info->find('relative-time',0)->getAttribute('datetime'));
|
|
|
|
$item['title']=$issue->find('.js-navigation-open',0)->plaintext;
|
|
|
|
$comments=$issue->firstChild()->firstChild()
|
|
|
|
->nextSibling()->nextSibling()->nextSibling()->plaintext;
|
2016-08-23 21:20:21 +02:00
|
|
|
$item['content']='Comments: '.($comments?$comments:'0');
|
2016-08-23 20:29:29 +02:00
|
|
|
$item['uri']='https://github.com'.$issue->find('.js-navigation-open',0)->getAttribute('href');
|
|
|
|
$this->items[]=$item;
|
|
|
|
}
|
2016-06-26 00:33:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 600; // ten minutes
|
|
|
|
}
|
|
|
|
}
|