Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F439376
PhabricatorDashboardManageController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
PhabricatorDashboardManageController.php
View Options
<?php
final
class
PhabricatorDashboardManageController
extends
PhabricatorDashboardController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$id
=
$this
->
id
;
$dashboard_uri
=
$this
->
getApplicationURI
(
'view/'
.
$id
.
'/'
);
// TODO: This UI should drop a lot of capabilities if the user can't
// edit the dashboard, but we should still let them in for "Install" and
// "View History".
$dashboard
=
id
(
new
PhabricatorDashboardQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
needPanels
(
true
)
->
executeOne
();
if
(!
$dashboard
)
{
return
new
Aphront404Response
();
}
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$dashboard
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$title
=
$dashboard
->
getName
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Dashboard %d'
,
$dashboard
->
getID
()),
$dashboard_uri
);
$crumbs
->
addTextCrumb
(
pht
(
'Manage'
));
$header
=
$this
->
buildHeaderView
(
$dashboard
);
$actions
=
$this
->
buildActionView
(
$dashboard
);
$properties
=
$this
->
buildPropertyView
(
$dashboard
);
$properties
->
setActionList
(
$actions
);
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
if
(!
$can_edit
)
{
$no_edit
=
pht
(
'You do not have permission to edit this dashboard. If you want to '
.
'make changes, make a copy first.'
);
$box
->
setErrorView
(
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setErrors
(
array
(
$no_edit
)));
}
$rendered_dashboard
=
id
(
new
PhabricatorDashboardRenderingEngine
())
->
setViewer
(
$viewer
)
->
setDashboard
(
$dashboard
)
->
setArrangeMode
(
$can_edit
)
->
renderDashboard
();
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$box
,
$rendered_dashboard
,
),
array
(
'title'
=>
$title
,
));
}
private
function
buildHeaderView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
return
id
(
new
PHUIHeaderView
())
->
setUser
(
$viewer
)
->
setHeader
(
$dashboard
->
getName
())
->
setPolicyObject
(
$dashboard
);
}
private
function
buildActionView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$id
=
$dashboard
->
getID
();
$actions
=
id
(
new
PhabricatorActionListView
())
->
setObjectURI
(
$this
->
getApplicationURI
(
'view/'
.
$dashboard
->
getID
().
'/'
))
->
setUser
(
$viewer
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$dashboard
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View Dashboard'
))
->
setIcon
(
'fa-columns'
)
->
setHref
(
$this
->
getApplicationURI
(
"view/{$id}/"
)));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Dashboard'
))
->
setIcon
(
'fa-pencil'
)
->
setHref
(
$this
->
getApplicationURI
(
"edit/{$id}/"
))
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Copy Dashboard'
))
->
setIcon
(
'fa-files-o'
)
->
setHref
(
$this
->
getApplicationURI
(
"copy/{$id}/"
))
->
setWorkflow
(
true
));
$installed_dashboard
=
id
(
new
PhabricatorDashboardInstall
())
->
loadOneWhere
(
'objectPHID = %s AND applicationClass = %s'
,
$viewer
->
getPHID
(),
'PhabricatorHomeApplication'
);
if
(
$installed_dashboard
&&
$installed_dashboard
->
getDashboardPHID
()
==
$dashboard
->
getPHID
())
{
$title_install
=
pht
(
'Uninstall Dashboard'
);
$href_install
=
"uninstall/{$id}/"
;
}
else
{
$title_install
=
pht
(
'Install Dashboard'
);
$href_install
=
"install/{$id}/"
;
}
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
$title_install
)
->
setIcon
(
'fa-wrench'
)
->
setHref
(
$this
->
getApplicationURI
(
$href_install
))
->
setWorkflow
(
true
));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View History'
))
->
setIcon
(
'fa-history'
)
->
setHref
(
$this
->
getApplicationURI
(
"history/{$id}/"
)));
return
$actions
;
}
private
function
buildPropertyView
(
PhabricatorDashboard
$dashboard
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
)
->
setObject
(
$dashboard
);
$descriptions
=
PhabricatorPolicyQuery
::
renderPolicyDescriptions
(
$viewer
,
$dashboard
);
$properties
->
addProperty
(
pht
(
'Editable By'
),
$descriptions
[
PhabricatorPolicyCapability
::
CAN_EDIT
]);
$panel_phids
=
$dashboard
->
getPanelPHIDs
();
$this
->
loadHandles
(
$panel_phids
);
$properties
->
addProperty
(
pht
(
'Panels'
),
$this
->
renderHandlesForPHIDs
(
$panel_phids
));
return
$properties
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 3:57 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
66252
Default Alt Text
PhabricatorDashboardManageController.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment