Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107703994
ReleephProductViewController.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, Apr 9, 20:19
Size
4 KB
Mime Type
text/x-php
Expires
Fri, Apr 11, 20:19 (2 d)
Engine
blob
Format
Raw Data
Handle
25460775
Attached To
rPH Phabricator
ReleephProductViewController.php
View Options
<?php
final
class
ReleephProductViewController
extends
ReleephProductController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$id
=
$request
->
getURIData
(
'projectID'
);
$query_key
=
$request
->
getURIData
(
'queryKey'
);
$viewer
=
$request
->
getViewer
();
$product
=
id
(
new
ReleephProductQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$product
)
{
return
new
Aphront404Response
();
}
$this
->
setProduct
(
$product
);
$controller
=
id
(
new
PhabricatorApplicationSearchController
())
->
setQueryKey
(
$query_key
)
->
setPreface
(
$this
->
renderPreface
())
->
setSearchEngine
(
id
(
new
ReleephBranchSearchEngine
())
->
setProduct
(
$product
))
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
public
function
buildSideNavView
(
$for_app
=
false
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$product
=
$this
->
getProduct
();
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
if
(
$for_app
)
{
$nav
->
addFilter
(
'product/create/'
,
pht
(
'Create Product'
));
}
id
(
new
ReleephBranchSearchEngine
())
->
setProduct
(
$product
)
->
setViewer
(
$viewer
)
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$product
=
$this
->
getProduct
();
if
(
$product
)
{
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setHref
(
$product
->
getURI
(
'cutbranch/'
))
->
setName
(
pht
(
'Cut New Branch'
))
->
setIcon
(
'fa-plus'
));
}
return
$crumbs
;
}
private
function
renderPreface
()
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$product
=
$this
->
getProduct
();
$id
=
$product
->
getID
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$product
->
getName
())
->
setUser
(
$viewer
)
->
setPolicyObject
(
$product
);
if
(
$product
->
getIsActive
())
{
$header
->
setStatus
(
'fa-check'
,
'bluegrey'
,
pht
(
'Active'
));
}
else
{
$header
->
setStatus
(
'fa-ban'
,
'dark'
,
pht
(
'Inactive'
));
}
$actions
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$viewer
)
->
setObject
(
$product
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$product
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$edit_uri
=
$this
->
getApplicationURI
(
"product/{$id}/edit/"
);
$history_uri
=
$this
->
getApplicationURI
(
"product/{$id}/history/"
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Product'
))
->
setHref
(
$edit_uri
)
->
setIcon
(
'fa-pencil'
)
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
if
(
$product
->
getIsActive
())
{
$status_name
=
pht
(
'Deactivate Product'
);
$status_href
=
"product/{$id}/action/deactivate/"
;
$status_icon
=
'fa-times'
;
}
else
{
$status_name
=
pht
(
'Reactivate Product'
);
$status_href
=
"product/{$id}/action/activate/"
;
$status_icon
=
'fa-plus-circle-o'
;
}
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
$status_name
)
->
setHref
(
$this
->
getApplicationURI
(
$status_href
))
->
setIcon
(
$status_icon
)
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(
true
));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View History'
))
->
setHref
(
$history_uri
)
->
setIcon
(
'fa-list'
));
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
)
->
setObject
(
$product
);
$properties
->
addProperty
(
pht
(
'Repository'
),
$product
->
getRepository
()->
getName
());
$properties
->
setActionList
(
$actions
);
$pushers
=
$product
->
getPushers
();
if
(
$pushers
)
{
$properties
->
addProperty
(
pht
(
'Pushers'
),
$viewer
->
renderHandleList
(
$pushers
));
}
return
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
}
}
Event Timeline
Log In to Comment