mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
9838251515
Summary: Fixes T2691. Now, all PhabricatorActionListViews in the codebase setObjectHref to $request->getRequestURI. This value is passed over to PhabricatorActionItems right before they are rendered. If a PhabricatorActionItem is a workflow and there is no user OR the user is logged out, we used this objectURI to construct a log in URI. Potentially added some undesirable behavior to aggressively setUser (and later setObjectURI) from within the List on Actions... This should be okay-ish unless there was a vision of actions having different user objects associated with them. I think this is a safe assumption. Test Plan: played around with a mock all logged out (Ref T2652) and it worked! Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2691 Differential Revision: https://secure.phabricator.com/D6416
135 lines
3.5 KiB
PHP
135 lines
3.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorPeopleProfileController
|
|
extends PhabricatorPeopleController {
|
|
|
|
private $username;
|
|
|
|
public function shouldRequireAdmin() {
|
|
return false;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->username = idx($data, 'username');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$user = id(new PhabricatorPeopleQuery())
|
|
->setViewer($viewer)
|
|
->withUsernames(array($this->username))
|
|
->executeOne();
|
|
if (!$user) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
require_celerity_resource('phabricator-profile-css');
|
|
|
|
$profile = $user->loadUserProfile();
|
|
$username = phutil_escape_uri($user->getUserName());
|
|
|
|
$picture = $user->loadProfileImageURI();
|
|
|
|
$header = id(new PhabricatorHeaderView())
|
|
->setHeader($user->getUserName().' ('.$user->getRealName().')')
|
|
->setSubheader($profile->getTitle())
|
|
->setImage($picture);
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setObject($user)
|
|
->setObjectURI($this->getRequest()->getRequestURI())
|
|
->setUser($viewer);
|
|
|
|
$can_edit = ($user->getPHID() == $viewer->getPHID());
|
|
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setIcon('edit')
|
|
->setName(pht('Edit Profile'))
|
|
->setHref($this->getApplicationURI('editprofile/'.$user->getID().'/'))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit));
|
|
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setIcon('image')
|
|
->setName(pht('Edit Profile Picture'))
|
|
->setHref($this->getApplicationURI('picture/'.$user->getID().'/'))
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow(!$can_edit));
|
|
|
|
if ($viewer->getIsAdmin()) {
|
|
$actions->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setIcon('blame')
|
|
->setName(pht('Administrate User'))
|
|
->setHref($this->getApplicationURI('edit/'.$user->getID().'/')));
|
|
}
|
|
|
|
$properties = $this->buildPropertyView($user);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addCrumb(
|
|
id(new PhabricatorCrumbView())
|
|
->setName($user->getUsername()));
|
|
$feed = $this->renderUserFeed($user);
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$header,
|
|
$actions,
|
|
$properties,
|
|
$feed,
|
|
),
|
|
array(
|
|
'title' => $user->getUsername(),
|
|
'device' => true,
|
|
'dust' => true,
|
|
));
|
|
}
|
|
|
|
private function buildPropertyView(PhabricatorUser $user) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$view = id(new PhabricatorPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($user);
|
|
|
|
$fields = PhabricatorCustomField::getObjectFields(
|
|
$user,
|
|
PhabricatorCustomField::ROLE_VIEW);
|
|
|
|
foreach ($fields as $field) {
|
|
$field->setViewer($viewer);
|
|
}
|
|
|
|
$view->applyCustomFields($fields);
|
|
|
|
return $view;
|
|
}
|
|
|
|
private function renderUserFeed(PhabricatorUser $user) {
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$query = new PhabricatorFeedQuery();
|
|
$query->setFilterPHIDs(
|
|
array(
|
|
$user->getPHID(),
|
|
));
|
|
$query->setLimit(100);
|
|
$query->setViewer($viewer);
|
|
$stories = $query->execute();
|
|
|
|
$builder = new PhabricatorFeedBuilder($stories);
|
|
$builder->setUser($viewer);
|
|
$view = $builder->buildView();
|
|
|
|
return hsprintf(
|
|
'<div class="profile-feed profile-wrap-responsive">
|
|
%s
|
|
</div>',
|
|
$view->render());
|
|
}
|
|
}
|