Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96397874
PhabricatorPeopleProfileController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Dec 26, 09:47
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 09:47 (2 d)
Engine
blob
Format
Raw Data
Handle
23178590
Attached To
rPH Phabricator
PhabricatorPeopleProfileController.php
View Options
<?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
());
}
}
Event Timeline
Log In to Comment