Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295374
PhabricatorMacroViewController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
5 KB
Referenced Files
None
Subscribers
None
PhabricatorMacroViewController.php
View Options
<?php
final
class
PhabricatorMacroViewController
extends
PhabricatorMacroController
{
public
function
shouldAllowPublic
(
)
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
(
)
;
$id
=
$request
->
getURIData
(
'id'
)
;
$macro
=
id
(
new
PhabricatorMacroQuery
(
)
)
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
)
)
->
needFiles
(
true
)
->
executeOne
(
)
;
if
(
!
$macro
)
{
return
new
Aphront404Response
(
)
;
}
$title_short
=
pht
(
'Macro "%s"'
,
$macro
->
getName
(
)
)
;
$title_long
=
pht
(
'Image Macro "%s"'
,
$macro
->
getName
(
)
)
;
$curtain
=
$this
->
buildCurtain
(
$macro
)
;
$subheader
=
$this
->
buildSubheaderView
(
$macro
)
;
$file
=
$this
->
buildFileView
(
$macro
)
;
$details
=
$this
->
buildPropertySectionView
(
$macro
)
;
$crumbs
=
$this
->
buildApplicationCrumbs
(
)
;
$crumbs
->
addTextCrumb
(
$macro
->
getName
(
)
)
;
$crumbs
->
setBorder
(
true
)
;
$timeline
=
$this
->
buildTransactionTimeline
(
$macro
,
new
PhabricatorMacroTransactionQuery
(
)
)
;
$comment_form
=
$this
->
buildCommentForm
(
$macro
,
$timeline
)
;
$header
=
id
(
new
PHUIHeaderView
(
)
)
->
setUser
(
$viewer
)
->
setPolicyObject
(
$macro
)
->
setHeader
(
$macro
->
getName
(
)
)
->
setHeaderIcon
(
'fa-file-image-o'
)
;
if
(
!
$macro
->
getIsDisabled
(
)
)
{
$header
->
setStatus
(
'fa-check'
,
'bluegrey'
,
pht
(
'Active'
)
)
;
}
else
{
$header
->
setStatus
(
'fa-ban'
,
'indigo'
,
pht
(
'Archived'
)
)
;
}
$view
=
id
(
new
PHUITwoColumnView
(
)
)
->
setHeader
(
$header
)
->
setSubheader
(
$subheader
)
->
setCurtain
(
$curtain
)
->
setMainColumn
(
array
(
$timeline
,
$comment_form
,
)
)
->
addPropertySection
(
pht
(
'Macro'
)
,
$file
)
->
addPropertySection
(
pht
(
'Details'
)
,
$details
)
;
return
$this
->
newPage
(
)
->
setTitle
(
$title_short
)
->
setCrumbs
(
$crumbs
)
->
setPageObjectPHIDs
(
array
(
$macro
->
getPHID
(
)
)
)
->
appendChild
(
$view
)
;
}
private
function
buildCommentForm
(
PhabricatorFileImageMacro
$macro
,
$timeline
)
{
$viewer
=
$this
->
getViewer
(
)
;
return
id
(
new
PhabricatorMacroEditEngine
(
)
)
->
setViewer
(
$viewer
)
->
buildEditEngineCommentView
(
$macro
)
->
setTransactionTimeline
(
$timeline
)
;
}
private
function
buildCurtain
(
PhabricatorFileImageMacro
$macro
)
{
$can_manage
=
$this
->
hasApplicationCapability
(
PhabricatorMacroManageCapability
::
CAPABILITY
)
;
$curtain
=
$this
->
newCurtainView
(
$macro
)
;
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
(
)
)
->
setName
(
pht
(
'Edit Macro'
)
)
->
setHref
(
$this
->
getApplicationURI
(
'/edit/'
.
$macro
->
getID
(
)
.
'/'
)
)
->
setDisabled
(
!
$can_manage
)
->
setWorkflow
(
!
$can_manage
)
->
setIcon
(
'fa-pencil'
)
)
;
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
(
)
)
->
setName
(
pht
(
'Edit Audio'
)
)
->
setHref
(
$this
->
getApplicationURI
(
'/audio/'
.
$macro
->
getID
(
)
.
'/'
)
)
->
setDisabled
(
!
$can_manage
)
->
setWorkflow
(
!
$can_manage
)
->
setIcon
(
'fa-music'
)
)
;
if
(
$macro
->
getIsDisabled
(
)
)
{
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
(
)
)
->
setName
(
pht
(
'Activate Macro'
)
)
->
setHref
(
$this
->
getApplicationURI
(
'/disable/'
.
$macro
->
getID
(
)
.
'/'
)
)
->
setWorkflow
(
true
)
->
setDisabled
(
!
$can_manage
)
->
setIcon
(
'fa-check'
)
)
;
}
else
{
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
(
)
)
->
setName
(
pht
(
'Archive Macro'
)
)
->
setHref
(
$this
->
getApplicationURI
(
'/disable/'
.
$macro
->
getID
(
)
.
'/'
)
)
->
setWorkflow
(
true
)
->
setDisabled
(
!
$can_manage
)
->
setIcon
(
'fa-ban'
)
)
;
}
return
$curtain
;
}
private
function
buildSubheaderView
(
PhabricatorFileImageMacro
$macro
)
{
$viewer
=
$this
->
getViewer
(
)
;
$author_phid
=
$macro
->
getAuthorPHID
(
)
;
$author
=
$viewer
->
renderHandle
(
$author_phid
)
->
render
(
)
;
$date
=
phabricator_datetime
(
$macro
->
getDateCreated
(
)
,
$viewer
)
;
$author
=
phutil_tag
(
'strong'
,
array
(
)
,
$author
)
;
$handles
=
$viewer
->
loadHandles
(
array
(
$author_phid
)
)
;
$image_uri
=
$handles
[
$author_phid
]
->
getImageURI
(
)
;
$image_href
=
$handles
[
$author_phid
]
->
getURI
(
)
;
if
(
!
$date
)
{
$content
=
pht
(
'Masterfully imagined by %s in ages long past.'
,
$author
)
;
}
else
{
$content
=
pht
(
'Masterfully imagined by %s on %s.'
,
$author
,
$date
)
;
}
return
id
(
new
PHUIHeadThingView
(
)
)
->
setImage
(
$image_uri
)
->
setImageHref
(
$image_href
)
->
setContent
(
$content
)
;
}
private
function
buildPropertySectionView
(
PhabricatorFileImageMacro
$macro
)
{
$viewer
=
$this
->
getViewer
(
)
;
$view
=
id
(
new
PHUIPropertyListView
(
)
)
->
setUser
(
$viewer
)
;
switch
(
$macro
->
getAudioBehavior
(
)
)
{
case
PhabricatorFileImageMacro
::
AUDIO_BEHAVIOR_ONCE
:
$view
->
addProperty
(
pht
(
'Audio Behavior'
)
,
pht
(
'Play Once'
)
)
;
break
;
case
PhabricatorFileImageMacro
::
AUDIO_BEHAVIOR_LOOP
:
$view
->
addProperty
(
pht
(
'Audio Behavior'
)
,
pht
(
'Loop'
)
)
;
break
;
}
$audio_phid
=
$macro
->
getAudioPHID
(
)
;
if
(
$audio_phid
)
{
$view
->
addProperty
(
pht
(
'Audio'
)
,
$viewer
->
renderHandle
(
$audio_phid
)
)
;
}
if
(
$view
->
hasAnyProperties
(
)
)
{
return
$view
;
}
return
null
;
}
private
function
buildFileView
(
PhabricatorFileImageMacro
$macro
)
{
$viewer
=
$this
->
getViewer
(
)
;
$view
=
id
(
new
PHUIPropertyListView
(
)
)
->
setUser
(
$viewer
)
;
$file
=
$macro
->
getFile
(
)
;
if
(
$file
)
{
$view
->
addImageContent
(
phutil_tag
(
'img'
,
array
(
'src'
=>
$file
->
getViewURI
(
)
,
'class'
=>
'phabricator-image-macro-hero'
,
)
)
)
;
return
$view
;
}
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:55 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1196037
Default Alt Text
PhabricatorMacroViewController.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment