2016-06-25 09:55:00 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GitlabCommitsBridge
|
|
|
|
*
|
|
|
|
* @name GitlabCommits Bridge
|
|
|
|
* @description Returns the commits of a project hosted on a gitlab instance
|
|
|
|
*/
|
|
|
|
class GitlabCommitsBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = 'Pierre Mazière';
|
|
|
|
$this->name = 'Gitlab Commits';
|
|
|
|
$this->uri = '';
|
|
|
|
$this->description = 'Returns the commits of a project hosted on a gitlab instance';
|
2016-08-09 14:54:44 +02:00
|
|
|
$this->update = '2016-08-09';
|
2016-06-25 09:55:00 +02:00
|
|
|
|
2016-08-02 13:45:12 +02:00
|
|
|
$this->parameters[] =
|
2016-06-25 09:55:00 +02:00
|
|
|
'[
|
|
|
|
{
|
|
|
|
"name" : "Base URI",
|
|
|
|
"identifier" : "uri"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "User name",
|
|
|
|
"identifier" : "u"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "Project name",
|
|
|
|
"identifier" : "p"
|
2016-08-02 13:45:12 +02:00
|
|
|
},
|
2016-06-25 09:55:00 +02:00
|
|
|
{
|
|
|
|
"name" : "Project branch",
|
|
|
|
"identifier" : "b"
|
|
|
|
}
|
|
|
|
|
|
|
|
]';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$uri = $param['uri'].'/'.$param['u'].'/'.$param['p'].'/commits/';
|
|
|
|
if(isset($param['b'])){
|
|
|
|
$uri.=$param['b'];
|
|
|
|
}else{
|
|
|
|
$uri.='master';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html = file_get_html($uri)
|
2016-06-26 00:47:33 +02:00
|
|
|
or $this->returnError('No results for Gitlab Commits of project '.$param['uri'].'/'.$param['u'].'/'.$param['p'], 404);
|
2016-06-25 09:55:00 +02:00
|
|
|
|
|
|
|
|
2016-06-26 00:46:41 +02:00
|
|
|
foreach($html->find('li.commit') as $commit){
|
2016-06-25 09:55:00 +02:00
|
|
|
|
|
|
|
$item = new \Item();
|
2016-06-26 00:39:56 +02:00
|
|
|
$item->uri=$param['uri'];
|
2016-06-25 09:55:00 +02:00
|
|
|
|
2016-06-26 00:39:56 +02:00
|
|
|
foreach($commit->getElementsByTagName('a') as $a){
|
2016-06-25 09:55:00 +02:00
|
|
|
$classes=explode(' ',$a->getAttribute("class"));
|
|
|
|
if(in_array('commit-short-id',$classes) ||
|
|
|
|
in_array('commit_short_id',$classes)){
|
2016-06-26 00:39:56 +02:00
|
|
|
$href=$a->getAttribute('href');
|
|
|
|
$item->uri.=substr($href,strpos($href,'/'.$param['u'].'/'.$param['p']));
|
2016-06-25 09:55:00 +02:00
|
|
|
}
|
|
|
|
if(in_array('commit-row-message',$classes)){
|
|
|
|
$item->title=$a->plaintext;
|
|
|
|
}
|
|
|
|
if(in_array('commit-author-link',$classes)){
|
2016-08-09 14:54:44 +02:00
|
|
|
$item->author=trim($a->plaintext);
|
2016-06-25 09:55:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$pre=$commit->find('pre',0);
|
|
|
|
if($pre){
|
|
|
|
$item->content=$pre->outertext;
|
|
|
|
}else{
|
|
|
|
$item->content='';
|
|
|
|
}
|
2016-06-26 00:39:56 +02:00
|
|
|
$item->timestamp=strtotime($commit->find('time',0)->getAttribute('datetime'));
|
2016-06-25 09:55:00 +02:00
|
|
|
|
|
|
|
$this->items[]=$item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'Gitlab Commits';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|