Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539418
PholioMockCommentController.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
PholioMockCommentController.php
View Options
<?php
final
class
PholioMockCommentController
extends
PholioController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
if
(!
$request
->
isFormPost
())
{
return
new
Aphront400Response
();
}
$mock
=
id
(
new
PholioMockQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
needImages
(
true
)
->
executeOne
();
if
(!
$mock
)
{
return
new
Aphront404Response
();
}
$is_preview
=
$request
->
isPreviewRequest
();
$draft
=
PhabricatorDraft
::
buildFromRequest
(
$request
);
$mock_uri
=
$mock
->
getURI
();
$comment
=
$request
->
getStr
(
'comment'
);
$xactions
=
array
();
$inline_comments
=
id
(
new
PholioTransactionComment
())->
loadAllWhere
(
'authorphid = %s AND transactionphid IS NULL AND imageid IN (%Ld)'
,
$viewer
->
getPHID
(),
mpull
(
$mock
->
getActiveImages
(),
'getID'
));
if
(!
$inline_comments
||
strlen
(
$comment
))
{
$xactions
[]
=
id
(
new
PholioTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
PholioTransactionComment
())
->
setContent
(
$comment
));
}
foreach
(
$inline_comments
as
$inline_comment
)
{
$xactions
[]
=
id
(
new
PholioTransaction
())
->
setTransactionType
(
PholioMockInlineTransaction
::
TRANSACTIONTYPE
)
->
attachComment
(
$inline_comment
);
}
$editor
=
id
(
new
PholioMockEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
$request
->
isContinueRequest
())
->
setIsPreview
(
$is_preview
);
try
{
$xactions
=
$editor
->
applyTransactions
(
$mock
,
$xactions
);
}
catch
(
PhabricatorApplicationTransactionNoEffectException
$ex
)
{
return
id
(
new
PhabricatorApplicationTransactionNoEffectResponse
())
->
setCancelURI
(
$mock_uri
)
->
setException
(
$ex
);
}
if
(
$draft
)
{
$draft
->
replaceOrDelete
();
}
if
(
$request
->
isAjax
()
&&
$is_preview
)
{
return
id
(
new
PhabricatorApplicationTransactionResponse
())
->
setObject
(
$mock
)
->
setViewer
(
$viewer
)
->
setTransactions
(
$xactions
)
->
setIsPreview
(
$is_preview
);
}
else
{
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$mock_uri
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:10 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
108076
Default Alt Text
PholioMockCommentController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment