2019-12-28 14:00:11 +01:00
< ? php
require_once 'Utils.php' ;
require_once 'EGGDatabase.php' ;
interface IRemoteSource
{
/** @param $db EGGDatabase */
public function update ( EGGDatabase $db );
/** @return string **/
public function getName ();
/** @return string **/
public function toString ();
}
abstract class StandardGitConnection implements IRemoteSource
{
/** @var ILogger $logger */
protected $logger ;
/** @var string $name */
protected $name ;
/** @var string $filter */
protected $filter ;
/** @var string[] exclusions */
protected $exclusions ;
/**
* @ param ILogger $logger
* @ param string $name
* @ param string $filter
* @ param string [] exclusions
*/
public function __construct ( ILogger $logger , string $name , string $filter , array $exclusions )
{
$this -> logger = $logger ;
$this -> name = $name ;
$this -> filter = $filter ;
$this -> exclusions = $exclusions ;
}
/** @ inheritDoc
* @ throws Exception
*/
public function update ( EGGDatabase $db )
{
$this -> preUpdate ();
$repos = $this -> listAndUpdateRepositories ( $db );
2020-03-05 18:20:27 +01:00
$anyChanged = false ;
2019-12-28 14:00:11 +01:00
foreach ( $repos as $repo )
{
2022-10-16 20:42:12 +02:00
$db -> beginTransaction ();
2019-12-28 14:00:11 +01:00
{
2022-10-16 20:42:12 +02:00
$branches = $this -> listAndUpdateBranches ( $db , $repo );
$db -> setUpdateDateOnRepository ( $repo );
$repo_changed = false ;
foreach ( $branches as $branch )
2019-12-28 14:00:11 +01:00
{
2022-10-16 20:42:12 +02:00
if ( $branch -> HeadFromAPI === $branch -> Head )
{
$db -> setUpdateDateOnBranch ( $branch );
$this -> logger -> proclog ( " Branch: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] is up to date " );
continue ;
}
2022-10-17 19:57:11 +02:00
$newcommits = $this -> listAndUpdateCommits ( $db , $repo , $branch );
2019-12-28 14:00:11 +01:00
$db -> setUpdateDateOnBranch ( $branch );
2022-10-17 19:57:11 +02:00
if ( count ( $newcommits ) === 0 )
2022-10-16 20:42:12 +02:00
{
$this -> logger -> proclog ( " Branch: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] has no new commits " );
continue ;
}
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
$this -> logger -> proclog ( " Found " . count ( $newcommits ) . " new commits in Branch: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] " );
2019-12-28 14:00:11 +01:00
2022-10-16 20:42:12 +02:00
$repo_changed = true ;
$db -> setChangeDateOnBranch ( $branch );
}
2019-12-28 14:00:11 +01:00
2022-10-16 20:42:12 +02:00
if ( $repo_changed ) $db -> setChangeDateOnRepository ( $repo );
if ( $repo_changed ) $anyChanged = true ;
2019-12-28 14:00:11 +01:00
}
2022-10-17 10:30:19 +02:00
2022-10-16 20:42:12 +02:00
$db -> commitTransaction ();
2020-03-05 18:20:27 +01:00
}
if ( $anyChanged )
{
2022-10-17 10:30:19 +02:00
$this -> logger -> proclog ( " Deleting dangling commits... " );
2020-03-05 18:20:27 +01:00
$db -> deleteDanglingCommitdata ( $this -> name );
2019-12-28 14:00:11 +01:00
}
$this -> postUpdate ();
2022-10-17 10:30:19 +02:00
$this -> logger -> proclog ( " Finished [ " . $this -> name . " ] " );
2019-12-28 14:00:11 +01:00
}
/**
* @ throws Exception
*/
protected abstract function preUpdate ();
/**
* @ throws Exception
*/
protected abstract function postUpdate ();
/**
* @ param string $user
* @ param int $page
* @ return array
*/
protected abstract function queryRepositories ( $user , $page );
/**
* @ param string $reponame
2021-06-13 19:26:10 +02:00
* @ param int $page
2019-12-28 14:00:11 +01:00
* @ return array
*/
2021-06-13 19:26:10 +02:00
protected abstract function queryBranches ( $reponame , $page );
2019-12-28 14:00:11 +01:00
/**
* @ param string $reponame
* @ param string $branchname
* @ param string $startsha
* @ return array
*/
protected abstract function queryCommits ( $reponame , $branchname , $startsha );
/**
* @ param mixed $data
* @ return array
* @ throws Exception
*/
protected abstract function readRepository ( $data );
/**
* @ param mixed $data
* @ return array
* @ throws Exception
*/
protected abstract function readBranch ( $data );
/**
* @ param mixed $data
* @ return array
* @ throws Exception
*/
protected abstract function readCommit ( $data );
/**
* @ param EGGDatabase $db
* @ return Repository []
* @ throws Exception
*/
private function listAndUpdateRepositories ( EGGDatabase $db ) {
$f = explode ( '/' , $this -> filter );
$result = [];
$page = 1 ;
$json = $this -> queryRepositories ( $f [ 0 ], $page );
2021-06-13 19:26:10 +02:00
$found = [];
2019-12-28 14:00:11 +01:00
while ( ! empty ( $json ))
{
2021-06-13 19:26:10 +02:00
$count = 0 ;
2019-12-28 14:00:11 +01:00
foreach ( $json as $result_repo )
{
$jdata = $this -> readRepository ( $result_repo );
2021-06-13 19:26:10 +02:00
if ( in_array ( $jdata [ 'full_name' ], $found )) continue ;
$found [] = $jdata [ 'full_name' ];
2019-12-28 14:00:11 +01:00
if ( ! Utils :: isRepoFilterMatch ( $this -> filter , $this -> exclusions , $jdata [ 'full_name' ]))
{
$this -> logger -> proclog ( " Skip Repo: " . $jdata [ 'full_name' ]);
continue ;
}
$this -> logger -> proclog ( " Found Repo in Remote: " . $jdata [ 'full_name' ]);
$result [] = $db -> getOrCreateRepository ( $jdata [ 'html_url' ], $jdata [ 'full_name' ], $this -> name );
}
2021-06-13 19:26:10 +02:00
if ( $count === 0 ) break ;
2019-12-28 14:00:11 +01:00
$page ++ ;
$json = $this -> queryRepositories ( $f [ 0 ], $page );
}
$db -> deleteOtherRepositories ( $this -> name , $result );
return $result ;
}
/**
* @ param EGGDatabase $db
* @ param Repository $repo
* @ return Branch []
* @ throws Exception
*/
private function listAndUpdateBranches ( EGGDatabase $db , Repository $repo ) {
$result = [];
2021-06-13 19:26:10 +02:00
$page = 1 ;
$json = $this -> queryBranches ( $repo -> Name , $page );
2019-12-28 14:00:11 +01:00
2021-06-13 19:26:10 +02:00
$found = [];
while ( ! empty ( $json ))
{
$count = 0 ;
foreach ( $json as $result_branch ) {
$jdata = $this -> readBranch ( $result_branch );
2019-12-28 14:00:11 +01:00
2021-06-13 19:26:10 +02:00
if ( $jdata === null ) continue ;
2019-12-28 14:00:11 +01:00
2021-06-13 19:26:10 +02:00
$bname = $jdata [ 'name' ];
$bhead = $jdata [ 'sha' ];
2019-12-28 14:00:11 +01:00
2021-06-13 19:26:10 +02:00
if ( in_array ( $bname , $found )) continue ;
$found [] = $bname ;
2019-12-28 14:00:11 +01:00
2021-06-13 19:26:10 +02:00
$this -> logger -> proclog ( " Found Branch in Remote: [ " . $repo -> Name . " ] " . $bname );
$b = $db -> getOrCreateBranch ( $this -> name , $repo , $bname );
$b -> HeadFromAPI = $bhead ;
$result [] = $b ;
$count ++ ;
}
if ( $count === 0 ) break ;
$page ++ ;
$json = $this -> queryBranches ( $repo -> Name , $page );
2019-12-28 14:00:11 +01:00
}
$db -> deleteOtherBranches ( $this -> name , $repo , $result );
return $result ;
}
/**
* @ param EGGDatabase $db
* @ param Repository $repo
* @ param Branch $branch
* @ return Commit []
* @ throws Exception
*/
private function listAndUpdateCommits ( EGGDatabase $db , Repository $repo , Branch $branch ) {
$newcommits = [];
if ( $branch -> HeadFromAPI === null ) return [];
$target = $branch -> Head ;
2021-06-13 07:07:29 +02:00
$targetFound = false ;
2019-12-28 14:00:11 +01:00
$next_sha = [ $branch -> HeadFromAPI ];
2022-10-17 19:57:11 +02:00
$visited = array_map ( function ( Commit $m ) : string { return $m -> Hash ;}, $db -> getCommitsForBranch ( $branch ));
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
$query_counter = 0 ;
2022-10-17 10:30:19 +02:00
2022-10-17 19:57:11 +02:00
$existing = [];
$reusedFromExisting = 0 ;
if ( $branch -> Head === null ) {
// new branch, perhaps we can mix'n'match existing commits+metadata
$this -> logger -> proclog ( " Query existing commits for [ " . $this -> name . " | " . $repo -> Name . " ] (potentially reuse for new branch ' " . $branch -> Name . " ') " );
foreach ( $db -> getCommitsForRepo ( $repo , $branch ) as $c ) $existing [ $c -> Hash ] = $c ;
}
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
$query_counter ++ ;
$this -> logger -> proclog ( " Query commits for [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] (initial @ { " . substr ( $next_sha [ 0 ], 0 , 8 ) . " }) (target: { " . substr ( $target ? ? 'NULL' , 0 , 8 ) . " }) " );
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
$unprocessed = array_map ( fn ( $p ) => $this -> createCommit ( $branch , $p ), $this -> queryCommits ( $repo -> Name , $branch -> Name , $next_sha [ 0 ]));
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
for (;;)
{
foreach ( $unprocessed as $commit )
{
while (( $rmshakey = array_search ( $commit -> Hash , $next_sha )) !== false ) unset ( $next_sha [ $rmshakey ]);
if ( in_array ( $commit -> Hash , $visited )) continue ;
$visited [] = $commit -> Hash ;
2019-12-28 14:00:11 +01:00
2022-10-17 19:57:11 +02:00
if ( $commit -> Hash === $target ) $targetFound = true ;
2021-06-13 07:07:29 +02:00
if ( $targetFound && count ( $next_sha ) === 0 )
2019-12-28 14:00:11 +01:00
{
if ( count ( $newcommits ) === 0 )
{
$this -> logger -> proclog ( " Found no new commits for: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] (HEAD at { " . substr ( $branch -> HeadFromAPI , 0 , 8 ) . " }) " );
return [];
}
2021-06-13 07:07:29 +02:00
else
{
$this -> logger -> proclog ( " Added " . count ( $newcommits ) . " new commits for: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] (HEAD moved from { " . substr ( $branch -> Head , 0 , 8 ) . " } to { " . substr ( $branch -> HeadFromAPI , 0 , 8 ) . " }) " );
2019-12-28 14:00:11 +01:00
2021-06-13 07:07:29 +02:00
$db -> insertNewCommits ( $this -> name , $repo , $branch , $newcommits );
$db -> setBranchHead ( $branch , $branch -> HeadFromAPI );
2019-12-28 14:00:11 +01:00
2021-06-13 07:07:29 +02:00
return $newcommits ;
}
2019-12-28 14:00:11 +01:00
}
$newcommits [] = $commit ;
2022-10-17 19:57:11 +02:00
foreach ( $commit -> Parents as $p )
2019-12-28 14:00:11 +01:00
{
$next_sha [] = $p ;
}
}
$next_sha = array_values ( $next_sha ); // fix numeric keys
if ( count ( $next_sha ) === 0 ) break ;
2022-10-17 19:57:11 +02:00
if ( array_key_exists ( $next_sha [ 0 ], $existing )) {
// fast-track for existing Commits
$unprocessed = [ $existing [ $next_sha [ 0 ]] ];
$reusedFromExisting ++ ;
} else {
$query_counter ++ ;
$this -> logger -> proclog ( " Query commits for [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] ( " . $query_counter . " @ { " . substr ( $next_sha [ 0 ], 0 , 8 ) . " }) " );
$unprocessed = array_map ( fn ( $p ) => $this -> createCommit ( $branch , $p ), $this -> queryCommits ( $repo -> Name , $branch -> Name , $next_sha [ 0 ]));
}
2022-10-17 10:30:19 +02:00
2019-12-28 14:00:11 +01:00
}
2022-10-17 19:57:11 +02:00
if ( $branch -> Head === null ) {
2022-10-17 23:03:42 +02:00
$this -> logger -> proclog ( " HEAD pointer in new Branch: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] set to { " . substr ( $branch -> HeadFromAPI ? ? 'NULL' , 0 , 8 ) . " } - Queried " . count ( $newcommits ) . " commits (reused $reusedFromExisting commits from DB) " );
2022-10-17 19:57:11 +02:00
} else {
$this -> logger -> proclog ( " HEAD pointer in Branch: [ " . $this -> name . " | " . $repo -> Name . " | " . $branch -> Name . " ] no longer matches. Re-queried all " . count ( $newcommits ) . " commits (old HEAD := { " . substr ( $branch -> Head ? ? 'NULL' , 0 , 8 ) . " }, missing: [ " . join ( " , " , array_map ( function ( $p ){ return substr ( $p ? ? 'NULL' , 0 , 8 );}, $next_sha )) . " ] ) " );
}
2019-12-28 14:00:11 +01:00
$db -> deleteAllCommits ( $branch );
2020-01-20 16:10:10 +01:00
if ( count ( $newcommits ) === 0 )
{
2020-01-21 20:47:14 +01:00
$db -> setBranchHead ( $branch , null );
2020-01-20 16:10:10 +01:00
return [];
}
2019-12-28 14:00:11 +01:00
$db -> insertNewCommits ( $this -> name , $repo , $branch , $newcommits );
$db -> setBranchHead ( $branch , $branch -> HeadFromAPI );
return $newcommits ;
}
2022-10-17 19:57:11 +02:00
private function createCommit ( Branch $branch , $result_commit ) : Commit
{
$jdata = $this -> readCommit ( $result_commit );
$sha = $jdata [ 'sha' ];
$author_name = $jdata [ 'author_name' ];
$author_email = $jdata [ 'author_email' ];
$committer_name = $jdata [ 'committer_name' ];
$committer_email = $jdata [ 'committer_email' ];
$message = $jdata [ 'message' ];
$date = $jdata [ 'date' ];
$parents = $jdata [ 'parents' ];
$commit = new Commit ();
$commit -> Branch = $branch ;
$commit -> Hash = $sha ;
$commit -> AuthorName = $author_name ;
$commit -> AuthorEmail = $author_email ;
$commit -> CommitterName = $committer_name ;
$commit -> CommitterEmail = $committer_email ;
$commit -> Message = $message ;
$commit -> Date = $date ;
$commit -> Parents = $parents ;
return $commit ;
}
2019-12-28 14:00:11 +01:00
/** @inheritDoc */
public function getName () { return $this -> name ; }
/** @inheritDoc */
public abstract function toString ();
}
class GithubConnection extends StandardGitConnection
{
const API_OAUTH_AUTH = 'https://github.com/login/oauth/authorize?client_id=%s' ;
const URL_OAUTH_TOKEN = 'https://github.com/login/oauth/access_token?client_id={id}&client_secret={secret}&code={code}' ;
const API_RATELIMIT = 'https://api.github.com/rate_limit' ;
const API_REPOSITORIESLIST = 'https://api.github.com/users/{user}/repos?page={page}&per_page=100' ;
const API_COMMITSLIST = 'https://api.github.com/repos/{repo}/commits?per_page=100&sha={sha}' ;
2021-06-13 19:26:10 +02:00
const API_BRANCHLIST = 'https://api.github.com/repos/{repo}/branches?page={page}' ;
2019-12-28 14:00:11 +01:00
/** @var string $url */
private $url ;
/** @var string $oauth_id */
private $oauth_id ;
/** @var string $oauth_secret */
private $oauth_secret ;
/** @var string $apitokenpath */
private $apitokenpath ;
/** @var string $apitoken */
private $apitoken ;
/**
* @ param ILogger $logger
* @ param string $name
* @ param string $url
* @ param string $filter
* @ param string [] exclusions
* @ param string $oauth_id
* @ param string $oauth_secret
* @ param string $apitokenpath
*/
public function __construct ( ILogger $logger , string $name , string $url , string $filter , array $exclusions , string $oauth_id , string $oauth_secret , string $apitokenpath )
{
parent :: __construct ( $logger , $name , $filter , $exclusions );
$this -> url = $url ;
$this -> oauth_id = $oauth_id ;
$this -> oauth_secret = $oauth_secret ;
$this -> apitokenpath = $apitokenpath ;
if ( $this -> apitokenpath !== null && file_exists ( $this -> apitokenpath ))
$this -> apitoken = file_get_contents ( $this -> apitokenpath );
else
$this -> apitoken = null ;
}
/**
* @ throws Exception
*/
public function queryAPIToken () {
$url = Utils :: sharpFormat ( self :: URL_OAUTH_TOKEN , [ 'id' => $this -> oauth_id , 'secret' => $this -> oauth_secret , 'code' => 'egg' ]);
$fullresult = $result = file_get_contents ( $url );
2020-04-22 11:24:48 +02:00
if ( Utils :: startsWith ( $fullresult , 'error=' )) throw new EGGException ( 'GitHub Auth failed: ' . $fullresult );
2019-12-28 14:00:11 +01:00
$result = str_replace ( 'access_token=' , '' , $result );
$result = str_replace ( '&scope=&token_type=bearer' , '' , $result );
$this -> logger -> proclog ( " Updated Github API token " );
if ( $result !== '' && $result !== null && $this -> apitokenpath !== null )
file_put_contents ( $this -> apitokenpath , $result );
$this -> apitoken = $result ;
}
/** @inheritDoc */
protected function preUpdate ()
{
if ( $this -> apitoken === null ) $this -> queryAPIToken ();
}
/** @inheritDoc */
protected function postUpdate ()
{
//
}
/** @inheritDoc */
protected function queryRepositories ( $user , $page )
{
$url = Utils :: sharpFormat ( self :: API_REPOSITORIESLIST , [ 'user' => $user , 'page' => $page ]);
return Utils :: getJSONWithTokenAuth ( $this -> logger , $url , $this -> apitoken );
}
/** @inheritDoc */
2021-06-13 19:26:10 +02:00
protected function queryBranches ( $reponame , $page )
2019-12-28 14:00:11 +01:00
{
2021-06-13 19:26:10 +02:00
$url = Utils :: sharpFormat ( self :: API_BRANCHLIST , [ 'repo' => $reponame , 'page' => $page ]);
2019-12-28 14:00:11 +01:00
return Utils :: getJSONWithTokenAuth ( $this -> logger , $url , $this -> apitoken );
}
/** @inheritDoc */
protected function queryCommits ( $reponame , $branchname , $startsha )
{
$url = Utils :: sharpFormat ( self :: API_COMMITSLIST , [ 'repo' => $reponame , 'sha' => $startsha ]);
return Utils :: getJSONWithTokenAuth ( $this -> logger , $url , $this -> apitoken );
}
/** @inheritDoc */
protected function readRepository ( $data )
{
return
[
'full_name' => $data -> { 'full_name' },
'html_url' => $data -> { 'html_url' },
];
}
/** @inheritDoc */
protected function readBranch ( $data )
{
if ( isset ( $data -> { 'block' })) return null ;
return
[
'name' => $data -> { 'name' },
'sha' => $data -> { 'commit' } -> { 'sha' },
];
}
/** @inheritDoc */
protected function readCommit ( $data )
{
return
[
'sha' => $data -> { 'sha' },
'author_name' => $data -> { 'commit' } -> { 'author' } -> { 'name' },
'author_email' => $data -> { 'commit' } -> { 'author' } -> { 'email' },
'committer_name' => $data -> { 'commit' } -> { 'committer' } -> { 'name' },
'committer_email' => $data -> { 'commit' } -> { 'committer' } -> { 'email' },
'message' => $data -> { 'commit' } -> { 'message' },
'date' => ( new DateTime ( $data -> { 'commit' } -> { 'author' } -> { 'date' })) -> format ( " Y-m-d H:i:s " ),
'parents' => array_map ( function ( $v ){ return $v -> { 'sha' }; }, $data -> { 'parents' }),
];
}
/** @inheritDoc */
public function toString () { return " [Github| " . $this -> filter . " ] " ; }
}
class GiteaConnection extends StandardGitConnection
{
const API_BASE_URL = '/api/v1' ;
2021-06-13 19:26:10 +02:00
const API_USER_REPO_LIST = '/users/{user}/repos?page={page}&limit={limit}' ;
const API_BRANCH_LIST = '/repos/{repo}/branches?page={page}&limit={limit}' ;
const API_COMMIT_LIST = '/repos/{repo}/commits?sha={sha}&limit={limit}' ;
2019-12-28 14:00:11 +01:00
/** @var string $url */
private $url ;
/** @var string $username */
private $username ;
/** @var string $password */
private $password ;
/**
* @ param ILogger $logger
* @ param string $name
* @ param string $url
* @ param string $filter
* @ param string [] $exclusions
* @ param string $username
* @ param string $password
*/
public function __construct ( ILogger $logger , string $name , string $url , string $filter , array $exclusions , string $username , string $password )
{
parent :: __construct ( $logger , $name , $filter , $exclusions );
$this -> url = $url ;
$this -> username = $username ;
$this -> password = $password ;
}
/** @inheritDoc */
protected function preUpdate ()
{
//
}
/** @inheritDoc */
protected function postUpdate ()
{
//
}
/** @inheritDoc */
protected function queryRepositories ( $user , $page )
{
2021-06-13 19:26:10 +02:00
$url = Utils :: sharpFormat ( Utils :: urlCombine ( $this -> url , self :: API_BASE_URL , self :: API_USER_REPO_LIST ), [ 'user' => $user , 'page' => $page , 'limit' => 64 ]);
2019-12-28 14:00:11 +01:00
return Utils :: getJSONWithTokenBasicAuth ( $this -> logger , $url , $this -> username , $this -> password );
}
/** @inheritDoc */
2021-06-13 19:26:10 +02:00
protected function queryBranches ( $reponame , $page )
2019-12-28 14:00:11 +01:00
{
2021-06-13 19:26:10 +02:00
$url = Utils :: sharpFormat ( Utils :: urlCombine ( $this -> url , self :: API_BASE_URL , self :: API_BRANCH_LIST ), [ 'repo' => $reponame , 'page' => $page , 'limit' => 64 ]);
2019-12-28 14:00:11 +01:00
return Utils :: getJSONWithTokenBasicAuth ( $this -> logger , $url , $this -> username , $this -> password );
}
/** @inheritDoc */
protected function queryCommits ( $reponame , $branchname , $startsha )
{
2021-06-13 19:26:10 +02:00
$url = Utils :: sharpFormat ( Utils :: urlCombine ( $this -> url , self :: API_BASE_URL , self :: API_COMMIT_LIST ), [ 'repo' => $reponame , 'sha' => $startsha , 'limit' => 1024 ]);
2019-12-28 14:00:11 +01:00
return Utils :: getJSONWithTokenBasicAuth ( $this -> logger , $url , $this -> username , $this -> password );
}
/** @inheritDoc */
protected function readRepository ( $data )
{
return
[
'full_name' => $data -> { 'full_name' },
'html_url' => $data -> { 'html_url' },
];
}
/** @inheritDoc */
protected function readBranch ( $data )
{
return
[
'name' => $data -> { 'name' },
'sha' => $data -> { 'commit' } -> { 'id' },
];
}
/** @inheritDoc */
protected function readCommit ( $data )
{
return
[
'sha' => $data -> { 'commit' } -> { 'tree' } -> { 'sha' },
'author_name' => $data -> { 'commit' } -> { 'author' } -> { 'name' },
'author_email' => $data -> { 'commit' } -> { 'author' } -> { 'email' },
'committer_name' => $data -> { 'commit' } -> { 'committer' } -> { 'name' },
'committer_email' => $data -> { 'commit' } -> { 'committer' } -> { 'email' },
'message' => $data -> { 'commit' } -> { 'message' },
'date' => ( new DateTime ( $data -> { 'commit' } -> { 'author' } -> { 'date' })) -> format ( " Y-m-d H:i:s " ),
'parents' => array_map ( function ( $v ){ return $v -> { 'sha' }; }, $data -> { 'parents' }),
];
}
/** @inheritDoc */
public function toString () { return " [Gitea| " . $this -> url . " | " . $this -> filter . " ] " ; }
}