Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99202475
DrydockBlueprintViewController.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 22, 08:07
Size
3 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 08:07 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
23737220
Attached To
rPH Phabricator
DrydockBlueprintViewController.php
View Options
<?php
final
class
DrydockBlueprintViewController
extends
DrydockBlueprintController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$blueprint
=
id
(
new
DrydockBlueprintQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$blueprint
)
{
return
new
Aphront404Response
();
}
$title
=
$blueprint
->
getBlueprintName
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setUser
(
$viewer
)
->
setPolicyObject
(
$blueprint
);
$actions
=
$this
->
buildActionListView
(
$blueprint
);
$properties
=
$this
->
buildPropertyListView
(
$blueprint
,
$actions
);
$blueprint_uri
=
'blueprint/'
.
$blueprint
->
getID
().
'/'
;
$blueprint_uri
=
$this
->
getApplicationURI
(
$blueprint_uri
);
$resources
=
id
(
new
DrydockResourceQuery
())
->
withBlueprintPHIDs
(
array
(
$blueprint
->
getPHID
()))
->
setViewer
(
$viewer
)
->
execute
();
$resource_list
=
id
(
new
DrydockResourceListView
())
->
setUser
(
$viewer
)
->
setResources
(
$resources
)
->
render
();
$resource_list
->
setNoDataString
(
pht
(
'This blueprint has no resources.'
));
$pager
=
new
AphrontPagerView
();
$pager
->
setURI
(
new
PhutilURI
(
$blueprint_uri
),
'offset'
);
$pager
->
setOffset
(
$request
->
getInt
(
'offset'
));
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
setActionList
(
$actions
);
$crumbs
->
addTextCrumb
(
pht
(
'Blueprint %d'
,
$blueprint
->
getID
()));
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
$xactions
=
id
(
new
DrydockBlueprintTransactionQuery
())
->
setViewer
(
$viewer
)
->
withObjectPHIDs
(
array
(
$blueprint
->
getPHID
()))
->
execute
();
$engine
=
id
(
new
PhabricatorMarkupEngine
())
->
setViewer
(
$viewer
);
$timeline
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$viewer
)
->
setObjectPHID
(
$blueprint
->
getPHID
())
->
setTransactions
(
$xactions
)
->
setMarkupEngine
(
$engine
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
$resource_list
,
$timeline
,
),
array
(
'title'
=>
$title
,
));
}
private
function
buildActionListView
(
DrydockBlueprint
$blueprint
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$view
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$viewer
)
->
setObjectURI
(
$this
->
getRequest
()->
getRequestURI
())
->
setObject
(
$blueprint
);
$uri
=
'/blueprint/edit/'
.
$blueprint
->
getID
().
'/'
;
$uri
=
$this
->
getApplicationURI
(
$uri
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$blueprint
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$view
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setHref
(
$uri
)
->
setName
(
pht
(
'Edit Blueprint'
))
->
setIcon
(
'fa-pencil'
)
->
setWorkflow
(!
$can_edit
)
->
setDisabled
(!
$can_edit
));
return
$view
;
}
private
function
buildPropertyListView
(
DrydockBlueprint
$blueprint
,
PhabricatorActionListView
$actions
)
{
$view
=
new
PHUIPropertyListView
();
$view
->
setActionList
(
$actions
);
$view
->
addProperty
(
pht
(
'Type'
),
$blueprint
->
getImplementation
()->
getBlueprintName
());
return
$view
;
}
}
Event Timeline
Log In to Comment