2018-01-23 05:09:52 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionPullLogSearchEngine
|
|
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
|
|
|
|
public function getResultTypeDescription() {
|
|
|
|
return pht('Pull Logs');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationClassName() {
|
|
|
|
return 'PhabricatorDiffusionApplication';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newQuery() {
|
|
|
|
return new PhabricatorRepositoryPullEventQuery();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function buildQueryFromParameters(array $map) {
|
|
|
|
$query = $this->newQuery();
|
|
|
|
|
|
|
|
if ($map['repositoryPHIDs']) {
|
|
|
|
$query->withRepositoryPHIDs($map['repositoryPHIDs']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($map['pullerPHIDs']) {
|
|
|
|
$query->withPullerPHIDs($map['pullerPHIDs']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function buildCustomSearchFields() {
|
|
|
|
return array(
|
|
|
|
id(new PhabricatorSearchDatasourceField())
|
|
|
|
->setDatasource(new DiffusionRepositoryDatasource())
|
|
|
|
->setKey('repositoryPHIDs')
|
|
|
|
->setAliases(array('repository', 'repositories', 'repositoryPHID'))
|
|
|
|
->setLabel(pht('Repositories'))
|
|
|
|
->setDescription(
|
|
|
|
pht('Search for pull logs for specific repositories.')),
|
|
|
|
id(new PhabricatorUsersSearchField())
|
|
|
|
->setKey('pullerPHIDs')
|
|
|
|
->setAliases(array('puller', 'pullers', 'pullerPHID'))
|
|
|
|
->setLabel(pht('Pullers'))
|
|
|
|
->setDescription(
|
|
|
|
pht('Search for pull logs by specific users.')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
Add a basic, general-purpose export workflow for all objects with SearchEngine support
Summary:
Depends on D18918. Ref T13046. Ref T5954. Pull logs can currently be browsed in the web UI, but this isn't very powerful, especially if you have thousands of them.
Allow SearchEngine implementations to define exportable fields so that users can "Use Results > Export Data" on any query. In particular, they can use this workflow to download a file with pull logs.
In the future, this can replace the existing "Export to Excel" feature in Maniphest.
For now, we hard-code JSON as the only supported datatype and don't actually make any effort to format the data properly, but this leaves room to add more exporters (CSV, Excel) and data type awareness (integer casting, date formatting, etc) in the future.
For sufficiently large result sets, this will probably time out. At some point, I'll make this use the job queue (like bulk editing) when the export is "large" (affects more than 1K rows?).
Test Plan: Downloaded pull logs in JSON format.
Reviewers: amckinley
Reviewed By: amckinley
Maniphest Tasks: T13046, T5954
Differential Revision: https://secure.phabricator.com/D18919
2018-01-23 18:57:41 +01:00
|
|
|
protected function newExportFields() {
|
|
|
|
return array(
|
|
|
|
id(new PhabricatorPHIDExportField())
|
|
|
|
->setKey('repositoryPHID')
|
|
|
|
->setLabel(pht('Repository PHID')),
|
|
|
|
id(new PhabricatorStringExportField())
|
|
|
|
->setKey('repository')
|
|
|
|
->setLabel(pht('Repository')),
|
|
|
|
id(new PhabricatorPHIDExportField())
|
|
|
|
->setKey('pullerPHID')
|
|
|
|
->setLabel(pht('Puller PHID')),
|
|
|
|
id(new PhabricatorStringExportField())
|
|
|
|
->setKey('puller')
|
|
|
|
->setLabel(pht('Puller')),
|
|
|
|
id(new PhabricatorStringExportField())
|
|
|
|
->setKey('protocol')
|
|
|
|
->setLabel(pht('Protocol')),
|
|
|
|
id(new PhabricatorStringExportField())
|
|
|
|
->setKey('result')
|
|
|
|
->setLabel(pht('Result')),
|
2018-01-26 02:15:49 +01:00
|
|
|
id(new PhabricatorIntExportField())
|
Add a basic, general-purpose export workflow for all objects with SearchEngine support
Summary:
Depends on D18918. Ref T13046. Ref T5954. Pull logs can currently be browsed in the web UI, but this isn't very powerful, especially if you have thousands of them.
Allow SearchEngine implementations to define exportable fields so that users can "Use Results > Export Data" on any query. In particular, they can use this workflow to download a file with pull logs.
In the future, this can replace the existing "Export to Excel" feature in Maniphest.
For now, we hard-code JSON as the only supported datatype and don't actually make any effort to format the data properly, but this leaves room to add more exporters (CSV, Excel) and data type awareness (integer casting, date formatting, etc) in the future.
For sufficiently large result sets, this will probably time out. At some point, I'll make this use the job queue (like bulk editing) when the export is "large" (affects more than 1K rows?).
Test Plan: Downloaded pull logs in JSON format.
Reviewers: amckinley
Reviewed By: amckinley
Maniphest Tasks: T13046, T5954
Differential Revision: https://secure.phabricator.com/D18919
2018-01-23 18:57:41 +01:00
|
|
|
->setKey('code')
|
|
|
|
->setLabel(pht('Code')),
|
|
|
|
id(new PhabricatorEpochExportField())
|
|
|
|
->setKey('date')
|
|
|
|
->setLabel(pht('Date')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-29 03:24:42 +01:00
|
|
|
protected function newExportData(array $events) {
|
Add a basic, general-purpose export workflow for all objects with SearchEngine support
Summary:
Depends on D18918. Ref T13046. Ref T5954. Pull logs can currently be browsed in the web UI, but this isn't very powerful, especially if you have thousands of them.
Allow SearchEngine implementations to define exportable fields so that users can "Use Results > Export Data" on any query. In particular, they can use this workflow to download a file with pull logs.
In the future, this can replace the existing "Export to Excel" feature in Maniphest.
For now, we hard-code JSON as the only supported datatype and don't actually make any effort to format the data properly, but this leaves room to add more exporters (CSV, Excel) and data type awareness (integer casting, date formatting, etc) in the future.
For sufficiently large result sets, this will probably time out. At some point, I'll make this use the job queue (like bulk editing) when the export is "large" (affects more than 1K rows?).
Test Plan: Downloaded pull logs in JSON format.
Reviewers: amckinley
Reviewed By: amckinley
Maniphest Tasks: T13046, T5954
Differential Revision: https://secure.phabricator.com/D18919
2018-01-23 18:57:41 +01:00
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
|
|
|
|
$phids = array();
|
|
|
|
foreach ($events as $event) {
|
|
|
|
if ($event->getPullerPHID()) {
|
|
|
|
$phids[] = $event->getPullerPHID();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$handles = $viewer->loadHandles($phids);
|
|
|
|
|
|
|
|
$export = array();
|
|
|
|
foreach ($events as $event) {
|
|
|
|
$repository = $event->getRepository();
|
|
|
|
if ($repository) {
|
|
|
|
$repository_phid = $repository->getPHID();
|
|
|
|
$repository_name = $repository->getDisplayName();
|
|
|
|
} else {
|
|
|
|
$repository_phid = null;
|
|
|
|
$repository_name = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$puller_phid = $event->getPullerPHID();
|
|
|
|
if ($puller_phid) {
|
|
|
|
$puller_name = $handles[$puller_phid]->getName();
|
|
|
|
} else {
|
|
|
|
$puller_name = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$export[] = array(
|
|
|
|
'repositoryPHID' => $repository_phid,
|
|
|
|
'repository' => $repository_name,
|
|
|
|
'pullerPHID' => $puller_phid,
|
|
|
|
'puller' => $puller_name,
|
|
|
|
'protocol' => $event->getRemoteProtocol(),
|
|
|
|
'result' => $event->getResultType(),
|
|
|
|
'code' => $event->getResultCode(),
|
|
|
|
'date' => $event->getEpoch(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $export;
|
|
|
|
}
|
|
|
|
|
2018-01-23 05:09:52 +01:00
|
|
|
protected function getURI($path) {
|
|
|
|
return '/diffusion/pulllog/'.$path;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getBuiltinQueryNames() {
|
|
|
|
return array(
|
|
|
|
'all' => pht('All Pull Logs'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
|
|
$query->setQueryKey($query_key);
|
|
|
|
|
|
|
|
switch ($query_key) {
|
|
|
|
case 'all':
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function renderResultList(
|
|
|
|
array $logs,
|
|
|
|
PhabricatorSavedQuery $query,
|
|
|
|
array $handles) {
|
|
|
|
|
|
|
|
$table = id(new DiffusionPullLogListView())
|
|
|
|
->setViewer($this->requireViewer())
|
|
|
|
->setLogs($logs);
|
|
|
|
|
|
|
|
return id(new PhabricatorApplicationSearchResultView())
|
|
|
|
->setTable($table);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|