Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100224711
AlmanacBindingViewController.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
Wed, Jan 29, 04:05
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Jan 31, 04:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23887468
Attached To
rPH Phabricator
AlmanacBindingViewController.php
View Options
<?php
final
class
AlmanacBindingViewController
extends
AlmanacServiceController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$binding
=
id
(
new
AlmanacBindingQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$binding
)
{
return
new
Aphront404Response
();
}
$service
=
$binding
->
getService
();
$service_uri
=
$service
->
getURI
();
$title
=
pht
(
'Binding %s'
,
$binding
->
getID
());
$property_list
=
$this
->
buildPropertyList
(
$binding
);
$action_list
=
$this
->
buildActionList
(
$binding
);
$property_list
->
setActionList
(
$action_list
);
$header
=
id
(
new
PHUIHeaderView
())
->
setUser
(
$viewer
)
->
setHeader
(
$title
)
->
setPolicyObject
(
$binding
);
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$property_list
);
if
(
$binding
->
getService
()->
getIsLocked
())
{
$this
->
addLockMessage
(
$box
,
pht
(
'This service for this binding is locked, so the binding can '
.
'not be edited.'
));
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
$service
->
getName
(),
$service_uri
);
$crumbs
->
addTextCrumb
(
$title
);
$timeline
=
$this
->
buildTransactionTimeline
(
$binding
,
new
AlmanacBindingTransactionQuery
());
$timeline
->
setShouldTerminate
(
true
);
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
array
(
$box
,
$this
->
buildAlmanacPropertiesTable
(
$binding
),
$timeline
,
));
}
private
function
buildPropertyList
(
AlmanacBinding
$binding
)
{
$viewer
=
$this
->
getViewer
();
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
);
$properties
->
addProperty
(
pht
(
'Service'
),
$viewer
->
renderHandle
(
$binding
->
getServicePHID
()));
$properties
->
addProperty
(
pht
(
'Device'
),
$viewer
->
renderHandle
(
$binding
->
getDevicePHID
()));
$properties
->
addProperty
(
pht
(
'Network'
),
$viewer
->
renderHandle
(
$binding
->
getInterface
()->
getNetworkPHID
()));
$properties
->
addProperty
(
pht
(
'Interface'
),
$binding
->
getInterface
()->
renderDisplayAddress
());
return
$properties
;
}
private
function
buildActionList
(
AlmanacBinding
$binding
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$binding
->
getID
();
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$binding
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$actions
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$viewer
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setIcon
(
'fa-pencil'
)
->
setName
(
pht
(
'Edit Binding'
))
->
setHref
(
$this
->
getApplicationURI
(
"binding/edit/{$id}/"
))
->
setWorkflow
(!
$can_edit
)
->
setDisabled
(!
$can_edit
));
return
$actions
;
}
}
Event Timeline
Log In to Comment