Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F436145
DrydockRepositoryOperationViewController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
DrydockRepositoryOperationViewController.php
View Options
<?php
final
class
DrydockRepositoryOperationViewController
extends
DrydockController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$operation
=
id
(
new
DrydockRepositoryOperationQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$operation
)
{
return
new
Aphront404Response
();
}
$id
=
$operation
->
getID
();
$title
=
pht
(
'Repository Operation %d'
,
$id
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setUser
(
$viewer
)
->
setPolicyObject
(
$operation
);
$state
=
$operation
->
getOperationState
();
$icon
=
DrydockRepositoryOperation
::
getOperationStateIcon
(
$state
);
$name
=
DrydockRepositoryOperation
::
getOperationStateName
(
$state
);
$header
->
setStatus
(
$icon
,
null
,
$name
);
$actions
=
$this
->
buildActionListView
(
$operation
);
$properties
=
$this
->
buildPropertyListView
(
$operation
);
$properties
->
setActionList
(
$actions
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Operations'
),
$this
->
getApplicationURI
(
'operation/'
));
$crumbs
->
addTextCrumb
(
$title
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
$status_view
=
id
(
new
DrydockRepositoryOperationStatusView
())
->
setUser
(
$viewer
)
->
setOperation
(
$operation
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
$status_view
,
),
array
(
'title'
=>
$title
,
));
}
private
function
buildActionListView
(
DrydockRepositoryOperation
$operation
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$operation
->
getID
();
$view
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$viewer
)
->
setObjectURI
(
$this
->
getRequest
()->
getRequestURI
())
->
setObject
(
$operation
);
return
$view
;
}
private
function
buildPropertyListView
(
DrydockRepositoryOperation
$operation
)
{
$viewer
=
$this
->
getViewer
();
$view
=
new
PHUIPropertyListView
();
$view
->
addProperty
(
pht
(
'Repository'
),
$viewer
->
renderHandle
(
$operation
->
getRepositoryPHID
()));
$view
->
addProperty
(
pht
(
'Object'
),
$viewer
->
renderHandle
(
$operation
->
getObjectPHID
()));
$lease_phid
=
$operation
->
getWorkingCopyLeasePHID
();
if
(
$lease_phid
)
{
$lease_display
=
$viewer
->
renderHandle
(
$lease_phid
);
}
else
{
$lease_display
=
phutil_tag
(
'em'
,
array
(),
pht
(
'None'
));
}
$view
->
addProperty
(
pht
(
'Working Copy'
),
$lease_display
);
return
$view
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 10:24 PM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
61514
Default Alt Text
DrydockRepositoryOperationViewController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment