Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F975990
PhabricatorMacroCommentController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorMacroCommentController.php
View Options
<?php
final
class
PhabricatorMacroCommentController
extends
PhabricatorMacroController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
idx
(
$data
,
'id'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(!
$request
->
isFormPost
())
{
return
new
Aphront400Response
();
}
$macro
=
id
(
new
PhabricatorMacroQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$macro
)
{
return
new
Aphront404Response
();
}
$is_preview
=
$request
->
isPreviewRequest
();
$draft
=
PhabricatorDraft
::
buildFromRequest
(
$request
);
$view_uri
=
$this
->
getApplicationURI
(
'/view/'
.
$macro
->
getID
().
'/'
);
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorMacroTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
PhabricatorMacroTransactionComment
())
->
setContent
(
$request
->
getStr
(
'comment'
)));
$editor
=
id
(
new
PhabricatorMacroEditor
())
->
setActor
(
$user
)
->
setContinueOnNoEffect
(
$request
->
isContinueRequest
())
->
setContentSourceFromRequest
(
$request
)
->
setIsPreview
(
$is_preview
);
try
{
$xactions
=
$editor
->
applyTransactions
(
$macro
,
$xactions
);
}
catch
(
PhabricatorApplicationTransactionNoEffectException
$ex
)
{
return
id
(
new
PhabricatorApplicationTransactionNoEffectResponse
())
->
setCancelURI
(
$view_uri
)
->
setException
(
$ex
);
}
if
(
$draft
)
{
$draft
->
replaceOrDelete
();
}
if
(
$request
->
isAjax
())
{
return
id
(
new
PhabricatorApplicationTransactionResponse
())
->
setViewer
(
$user
)
->
setTransactions
(
$xactions
)
->
setIsPreview
(
$is_preview
)
->
setAnchorOffset
(
$request
->
getStr
(
'anchor'
));
}
else
{
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$view_uri
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 9:21 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
228183
Default Alt Text
PhabricatorMacroCommentController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment