mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 09:42:41 +01:00
e6f6a58f93
Summary: Ref T4986. Swap this in. Two minor notes: - I adjusted the SearchEngine to add an additional constraint when the viewer isn't an admin. This mostly stops us from doing a bunch of unnecessary work. - I fixed the settings panel to paginate (currently loads all results, slow in production). Test Plan: Viewed logs; viewed settings panel; created a dashboard panel. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4986 Differential Revision: https://secure.phabricator.com/D9136
69 lines
1.5 KiB
PHP
69 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorSettingsPanelActivity
|
|
extends PhabricatorSettingsPanel {
|
|
|
|
public function isEditableByAdministrators() {
|
|
return true;
|
|
}
|
|
|
|
public function getPanelKey() {
|
|
return 'activity';
|
|
}
|
|
|
|
public function getPanelName() {
|
|
return pht('Activity Logs');
|
|
}
|
|
|
|
public function getPanelGroup() {
|
|
return pht('Sessions and Logs');
|
|
}
|
|
|
|
public function isEnabled() {
|
|
return true;
|
|
}
|
|
|
|
public function processRequest(AphrontRequest $request) {
|
|
$viewer = $request->getUser();
|
|
$user = $this->getUser();
|
|
|
|
$pager = id(new AphrontCursorPagerView())
|
|
->readFromRequest($request);
|
|
|
|
$logs = id(new PhabricatorPeopleLogQuery())
|
|
->setViewer($viewer)
|
|
->withRelatedPHIDs(array($user->getPHID()))
|
|
->executeWithCursorPager($pager);
|
|
|
|
$phids = array();
|
|
foreach ($logs as $log) {
|
|
$phids[] = $log->getUserPHID();
|
|
$phids[] = $log->getActorPHID();
|
|
}
|
|
|
|
if ($phids) {
|
|
$handles = id(new PhabricatorHandleQuery())
|
|
->setViewer($viewer)
|
|
->withPHIDs($phids)
|
|
->execute();
|
|
} else {
|
|
$handles = array();
|
|
}
|
|
|
|
$table = id(new PhabricatorUserLogView())
|
|
->setUser($viewer)
|
|
->setLogs($logs)
|
|
->setHandles($handles);
|
|
|
|
$panel = id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Account Activity Logs'))
|
|
->appendChild($table);
|
|
|
|
$pager_box = id(new PHUIBoxView())
|
|
->addMargin(PHUI::MARGIN_LARGE)
|
|
->appendChild($pager);
|
|
|
|
return array($panel, $pager_box);
|
|
}
|
|
|
|
}
|