mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
8f1e0c0262
Summary: Revamps Profile to be like Projects, a mini portal and side nav with icons. Test Plan: Viewed my own profile, as well as others. Test seeing my commits, tasks, diffs, and upcoming events. Checked mobile navigation. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11547
93 lines
2.3 KiB
PHP
93 lines
2.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorPeopleProfileEditController
|
|
extends PhabricatorPeopleController {
|
|
|
|
private $id;
|
|
|
|
public function shouldRequireAdmin() {
|
|
return false;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$viewer = $request->getUser();
|
|
|
|
$user = id(new PhabricatorPeopleQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($this->id))
|
|
->needProfileImage(true)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$user) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$profile_uri = '/p/'.$user->getUsername().'/';
|
|
|
|
$field_list = PhabricatorCustomField::getObjectFields(
|
|
$user,
|
|
PhabricatorCustomField::ROLE_EDIT);
|
|
$field_list
|
|
->setViewer($viewer)
|
|
->readFieldsFromStorage($user);
|
|
|
|
$validation_exception = null;
|
|
if ($request->isFormPost()) {
|
|
$xactions = $field_list->buildFieldTransactionsFromRequest(
|
|
new PhabricatorUserTransaction(),
|
|
$request);
|
|
|
|
$editor = id(new PhabricatorUserProfileEditor())
|
|
->setActor($viewer)
|
|
->setContentSource(
|
|
PhabricatorContentSource::newFromRequest($request))
|
|
->setContinueOnNoEffect(true);
|
|
|
|
try {
|
|
$editor->applyTransactions($user, $xactions);
|
|
return id(new AphrontRedirectResponse())->setURI($profile_uri);
|
|
} catch (PhabricatorApplicationTransactionValidationException $ex) {
|
|
$validation_exception = $ex;
|
|
}
|
|
}
|
|
|
|
$title = pht('Edit Profile');
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($viewer);
|
|
|
|
$field_list->appendFieldsToForm($form);
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->addCancelButton($profile_uri)
|
|
->setValue(pht('Save Profile')));
|
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Edit Profile'))
|
|
->setValidationException($validation_exception)
|
|
->setForm($form);
|
|
|
|
$nav = $this->buildIconNavView($user);
|
|
$nav->selectFilter('/');
|
|
$nav->appendChild($form_box);
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$nav,
|
|
),
|
|
array(
|
|
'title' => $title,
|
|
));
|
|
}
|
|
}
|