Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97205328
PhabricatorSettingsMainController.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
Fri, Jan 3, 10:27
Size
3 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 10:27 (2 d)
Engine
blob
Format
Raw Data
Handle
23354002
Attached To
rPH Phabricator
PhabricatorSettingsMainController.php
View Options
<?php
final
class
PhabricatorSettingsMainController
extends
PhabricatorController
{
private
$id
;
private
$key
;
private
$user
;
private
function
getUser
()
{
return
$this
->
user
;
}
private
function
isSelf
()
{
$viewer_phid
=
$this
->
getRequest
()->
getUser
()->
getPHID
();
$user_phid
=
$this
->
getUser
()->
getPHID
();
return
(
$viewer_phid
==
$user_phid
);
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
idx
(
$data
,
'id'
);
$this
->
key
=
idx
(
$data
,
'key'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
if
(
$this
->
id
)
{
$user
=
id
(
new
PhabricatorPeopleQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$user
)
{
return
new
Aphront404Response
();
}
$this
->
user
=
$user
;
}
else
{
$this
->
user
=
$viewer
;
}
$panels
=
$this
->
buildPanels
();
$nav
=
$this
->
renderSideNav
(
$panels
);
$key
=
$nav
->
selectFilter
(
$this
->
key
,
head
(
$panels
)->
getPanelKey
());
$panel
=
$panels
[
$key
];
$panel
->
setUser
(
$this
->
getUser
());
$panel
->
setViewer
(
$viewer
);
$response
=
$panel
->
processRequest
(
$request
);
if
(
$response
instanceof
AphrontResponse
)
{
return
$response
;
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
if
(!
$this
->
isSelf
())
{
$crumbs
->
addTextCrumb
(
$this
->
getUser
()->
getUsername
(),
'/p/'
.
$this
->
getUser
()->
getUsername
().
'/'
);
}
$crumbs
->
addTextCrumb
(
$panel
->
getPanelName
());
$nav
->
appendChild
(
array
(
$crumbs
,
$response
,
));
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
$panel
->
getPanelName
(),
));
}
private
function
buildPanels
()
{
$panel_specs
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
'PhabricatorSettingsPanel'
)
->
setConcreteOnly
(
true
)
->
selectAndLoadSymbols
();
$panels
=
array
();
foreach
(
$panel_specs
as
$spec
)
{
$class
=
newv
(
$spec
[
'name'
],
array
());
$panels
[]
=
$class
->
buildPanels
();
}
$panels
=
array_mergev
(
$panels
);
$panels
=
mpull
(
$panels
,
null
,
'getPanelKey'
);
$result
=
array
();
foreach
(
$panels
as
$key
=>
$panel
)
{
if
(!
$panel
->
isEnabled
())
{
continue
;
}
if
(!
$this
->
isSelf
())
{
if
(!
$panel
->
isEditableByAdministrators
())
{
continue
;
}
}
if
(!
empty
(
$result
[
$key
]))
{
throw
new
Exception
(
pht
(
"Two settings panels share the same panel key ('%s'): %s, %s."
,
$key
,
get_class
(
$panel
),
get_class
(
$result
[
$key
])));
}
$result
[
$key
]
=
$panel
;
}
$result
=
msort
(
$result
,
'getPanelSortKey'
);
if
(!
$result
)
{
throw
new
Exception
(
pht
(
'No settings panels are available.'
));
}
return
$result
;
}
private
function
renderSideNav
(
array
$panels
)
{
$nav
=
new
AphrontSideNavFilterView
();
if
(
$this
->
isSelf
())
{
$base_uri
=
'panel/'
;
}
else
{
$base_uri
=
$this
->
getUser
()->
getID
().
'/panel/'
;
}
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
(
$base_uri
)));
$group
=
null
;
foreach
(
$panels
as
$panel
)
{
if
(
$panel
->
getPanelGroup
()
!=
$group
)
{
$group
=
$panel
->
getPanelGroup
();
$nav
->
addLabel
(
$group
);
}
$nav
->
addFilter
(
$panel
->
getPanelKey
(),
$panel
->
getPanelName
());
}
return
$nav
;
}
public
function
buildApplicationMenu
()
{
$panels
=
$this
->
buildPanels
();
return
$this
->
renderSideNav
(
$panels
)->
getMenu
();
}
}
Event Timeline
Log In to Comment