2011-01-24 03:09:16 +01:00
|
|
|
<?php
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhabricatorPeopleProfileController
|
|
|
|
extends PhabricatorPeopleController {
|
2011-01-24 03:09:16 +01:00
|
|
|
|
|
|
|
private $username;
|
2011-06-18 10:13:56 +02:00
|
|
|
private $page;
|
2012-08-10 21:11:24 +02:00
|
|
|
private $profileUser;
|
2011-01-24 03:09:16 +01:00
|
|
|
|
2013-03-19 21:48:50 +01:00
|
|
|
public function shouldRequireAdmin() {
|
|
|
|
// Default for people app is true
|
|
|
|
// We desire public access here
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-24 03:09:16 +01:00
|
|
|
public function willProcessRequest(array $data) {
|
2011-06-18 10:13:56 +02:00
|
|
|
$this->username = idx($data, 'username');
|
|
|
|
$this->page = idx($data, 'page');
|
2011-01-24 03:09:16 +01:00
|
|
|
}
|
|
|
|
|
2012-08-10 21:11:24 +02:00
|
|
|
public function getProfileUser() {
|
|
|
|
return $this->profileUser;
|
|
|
|
}
|
|
|
|
|
2013-02-05 22:46:02 +01:00
|
|
|
private function getMainFilters($username) {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'key' => 'feed',
|
|
|
|
'name' => pht('Feed'),
|
|
|
|
'href' => '/p/'.$username.'/feed/'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'key' => 'about',
|
|
|
|
'name' => pht('About'),
|
|
|
|
'href' => '/p/'.$username.'/about/'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-01-24 03:09:16 +01:00
|
|
|
public function processRequest() {
|
|
|
|
|
2011-02-20 02:33:53 +01:00
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
2011-01-24 03:09:16 +01:00
|
|
|
$user = id(new PhabricatorUser())->loadOneWhere(
|
|
|
|
'userName = %s',
|
|
|
|
$this->username);
|
|
|
|
if (!$user) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2012-08-10 21:11:24 +02:00
|
|
|
$this->profileUser = $user;
|
|
|
|
|
2011-12-24 03:17:40 +01:00
|
|
|
require_celerity_resource('phabricator-profile-css');
|
|
|
|
|
2013-03-24 14:42:31 +01:00
|
|
|
$profile = $user->loadUserProfile();
|
2012-03-06 22:57:31 +01:00
|
|
|
$username = phutil_escape_uri($user->getUserName());
|
2011-02-20 03:28:41 +01:00
|
|
|
|
2013-06-05 17:41:43 +02:00
|
|
|
$menu = new PHUIListView();
|
2013-02-05 22:46:02 +01:00
|
|
|
foreach ($this->getMainFilters($username) as $filter) {
|
|
|
|
$menu->newLink($filter['name'], $filter['href'], $filter['key']);
|
|
|
|
}
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2013-02-05 22:46:02 +01:00
|
|
|
$menu->newLabel(pht('Activity'), 'activity');
|
|
|
|
// NOTE: applications install the various links through PhabricatorEvent
|
|
|
|
// listeners
|
2012-12-03 23:13:38 +01:00
|
|
|
|
2013-02-05 22:46:02 +01:00
|
|
|
$event = new PhabricatorEvent(
|
|
|
|
PhabricatorEventType::TYPE_PEOPLE_DIDRENDERMENU,
|
|
|
|
array(
|
|
|
|
'menu' => $menu,
|
|
|
|
'person' => $user,
|
|
|
|
));
|
|
|
|
$event->setUser($viewer);
|
|
|
|
PhutilEventEngine::dispatchEvent($event);
|
|
|
|
$nav = AphrontSideNavFilterView::newFromMenu($event->getValue('menu'));
|
|
|
|
|
2011-12-24 03:17:40 +01:00
|
|
|
$this->page = $nav->selectFilter($this->page, 'feed');
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2011-06-18 10:13:56 +02:00
|
|
|
switch ($this->page) {
|
2011-12-24 03:17:40 +01:00
|
|
|
case 'feed':
|
|
|
|
$content = $this->renderUserFeed($user);
|
|
|
|
break;
|
|
|
|
case 'about':
|
2011-06-18 10:13:56 +02:00
|
|
|
$content = $this->renderBasicInformation($user, $profile);
|
|
|
|
break;
|
2011-12-24 03:17:40 +01:00
|
|
|
default:
|
|
|
|
throw new Exception("Unknown page '{$this->page}'!");
|
2011-06-18 10:13:56 +02:00
|
|
|
}
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2012-04-28 02:44:10 +02:00
|
|
|
$picture = $user->loadProfileImageURI();
|
2011-12-24 03:17:40 +01:00
|
|
|
|
2013-07-10 01:23:22 +02:00
|
|
|
$header = id(new PhabricatorHeaderView())
|
|
|
|
->setHeader($user->getUserName().' ('.$user->getRealName().')')
|
|
|
|
->setSubheader($profile->getTitle())
|
|
|
|
->setImage($picture);
|
2011-12-24 03:17:40 +01:00
|
|
|
|
2012-05-18 00:13:33 +02:00
|
|
|
if ($user->getIsDisabled()) {
|
2013-03-26 20:47:25 +01:00
|
|
|
$header->setStatus(pht('Disabled'));
|
2012-05-18 00:13:33 +02:00
|
|
|
} else {
|
2012-05-17 03:42:06 +02:00
|
|
|
$statuses = id(new PhabricatorUserStatus())->loadCurrentStatuses(
|
|
|
|
array($user->getPHID()));
|
|
|
|
if ($statuses) {
|
2012-10-24 22:22:24 +02:00
|
|
|
$header->setStatus(reset($statuses)->getTerseSummary($viewer));
|
2012-05-18 00:13:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 01:23:45 +02:00
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
|
|
->setUser($viewer);
|
2011-12-24 03:17:40 +01:00
|
|
|
|
2013-07-10 01:23:45 +02:00
|
|
|
$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));
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2012-01-17 01:54:05 +01:00
|
|
|
if ($viewer->getIsAdmin()) {
|
2013-07-10 01:23:45 +02:00
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setIcon('blame')
|
|
|
|
->setName(pht('Administrate User'))
|
|
|
|
->setHref($this->getApplicationURI('edit/'.$user->getID().'/')));
|
2012-01-17 01:54:05 +01:00
|
|
|
}
|
|
|
|
|
2013-07-10 01:23:45 +02:00
|
|
|
$nav->appendChild($header);
|
|
|
|
$nav->appendChild($actions);
|
|
|
|
$nav->appendChild($content);
|
|
|
|
|
2012-08-14 00:27:21 +02:00
|
|
|
return $this->buildApplicationPage(
|
2013-01-09 22:57:31 +01:00
|
|
|
$nav,
|
2011-02-20 02:33:53 +01:00
|
|
|
array(
|
2011-06-18 10:13:56 +02:00
|
|
|
'title' => $user->getUsername(),
|
2013-04-15 04:32:26 +02:00
|
|
|
'device' => true,
|
|
|
|
'dust' => true,
|
2011-02-20 02:33:53 +01:00
|
|
|
));
|
2011-06-18 10:13:56 +02:00
|
|
|
}
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2011-06-18 10:13:56 +02:00
|
|
|
private function renderBasicInformation($user, $profile) {
|
2011-12-24 03:17:40 +01:00
|
|
|
|
2011-02-20 03:28:41 +01:00
|
|
|
$blurb = nonempty(
|
|
|
|
$profile->getBlurb(),
|
2013-02-19 22:33:10 +01:00
|
|
|
'//'.pht('Nothing is known about this rare specimen.').'//');
|
2011-02-20 03:28:41 +01:00
|
|
|
|
2013-03-04 21:33:05 +01:00
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
Generalize the markup engine factory
Summary:
This thing services every app but it lives inside Differential right now. Pull
it out, and separate the factory interfaces per-application.
This will let us accommodate changes we need to make for Phriction to support
wiki linking.
Test Plan: Tested remarkup in differential, diffusion, maniphest, people,
slowvote.
Reviewed By: hsb
Reviewers: hsb, codeblock, jungejason, tuomaspelkonen, aran
CC: aran, hsb
Differential Revision: 646
2011-07-12 00:58:32 +02:00
|
|
|
$engine = PhabricatorMarkupEngine::newProfileMarkupEngine();
|
2013-03-04 21:33:05 +01:00
|
|
|
$engine->setConfig('viewer', $viewer);
|
2013-02-13 23:50:15 +01:00
|
|
|
$blurb = $engine->markupText($blurb);
|
2011-02-20 02:33:53 +01:00
|
|
|
|
2013-02-08 21:07:44 +01:00
|
|
|
$content = hsprintf(
|
2013-04-15 22:07:54 +02:00
|
|
|
'<div class="phabricator-profile-info-group profile-wrap-responsive">
|
2013-03-26 20:47:25 +01:00
|
|
|
<h1 class="phabricator-profile-info-header">%s</h1>
|
2011-02-20 02:33:53 +01:00
|
|
|
<div class="phabricator-profile-info-pane">
|
|
|
|
<table class="phabricator-profile-info-table">
|
|
|
|
<tr>
|
2013-03-26 20:47:25 +01:00
|
|
|
<th>%s</th>
|
2013-02-08 21:07:44 +01:00
|
|
|
<td>%s</td>
|
2011-02-20 02:33:53 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2013-03-26 20:47:25 +01:00
|
|
|
<th>%s</th>
|
2013-02-08 21:07:44 +01:00
|
|
|
<td>%s</td>
|
2011-02-20 02:33:53 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-02-08 21:07:44 +01:00
|
|
|
</div>'.
|
2013-04-15 22:07:54 +02:00
|
|
|
'<div class="phabricator-profile-info-group profile-wrap-responsive">
|
2013-03-26 20:47:25 +01:00
|
|
|
<h1 class="phabricator-profile-info-header">%s</h1>
|
2011-02-20 02:33:53 +01:00
|
|
|
<div class="phabricator-profile-info-pane">
|
|
|
|
<table class="phabricator-profile-info-table">
|
|
|
|
<tr>
|
2013-03-26 20:47:25 +01:00
|
|
|
<th>%s</th>
|
2013-02-08 21:07:44 +01:00
|
|
|
<td>%s</td>
|
2011-02-20 02:33:53 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-02-08 21:07:44 +01:00
|
|
|
</div>',
|
2013-03-26 20:47:25 +01:00
|
|
|
pht('Basic Information'),
|
|
|
|
pht('PHID'),
|
2013-02-08 21:07:44 +01:00
|
|
|
$user->getPHID(),
|
2013-03-26 20:47:25 +01:00
|
|
|
pht('User Since'),
|
2013-02-08 21:07:44 +01:00
|
|
|
phabricator_datetime($user->getDateCreated(), $viewer),
|
2013-03-26 20:47:25 +01:00
|
|
|
pht('Flavor Text'),
|
|
|
|
pht('Blurb'),
|
2013-02-08 21:07:44 +01:00
|
|
|
$blurb);
|
2011-12-24 03:17:40 +01:00
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function renderUserFeed(PhabricatorUser $user) {
|
2012-07-03 00:41:19 +02:00
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
|
2011-12-24 03:17:40 +01:00
|
|
|
$query = new PhabricatorFeedQuery();
|
|
|
|
$query->setFilterPHIDs(
|
|
|
|
array(
|
|
|
|
$user->getPHID(),
|
|
|
|
));
|
2012-07-03 15:25:03 +02:00
|
|
|
$query->setLimit(100);
|
2012-07-03 00:41:19 +02:00
|
|
|
$query->setViewer($viewer);
|
2011-12-24 03:17:40 +01:00
|
|
|
$stories = $query->execute();
|
|
|
|
|
|
|
|
$builder = new PhabricatorFeedBuilder($stories);
|
2012-07-03 00:41:19 +02:00
|
|
|
$builder->setUser($viewer);
|
2011-12-24 03:17:40 +01:00
|
|
|
$view = $builder->buildView();
|
|
|
|
|
2013-02-13 23:50:15 +01:00
|
|
|
return hsprintf(
|
2013-04-15 22:07:54 +02:00
|
|
|
'<div class="profile-feed profile-wrap-responsive">
|
2013-04-15 04:32:26 +02:00
|
|
|
%s
|
2013-02-13 23:50:15 +01:00
|
|
|
</div>',
|
|
|
|
$view->render());
|
2011-01-24 03:09:16 +01:00
|
|
|
}
|
|
|
|
}
|