Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2332713
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
/**
* @group pholio
*/
final
class
PholioMockCommentController
extends
PholioController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(!
$request
->
isFormPost
())
{
return
new
Aphront400Response
();
}
$mock
=
id
(
new
PholioMockQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
needImages
(
true
)
->
executeOne
();
if
(!
$mock
)
{
return
new
Aphront404Response
();
}
$is_preview
=
$request
->
isPreviewRequest
();
$draft
=
PhabricatorDraft
::
buildFromRequest
(
$request
);
$mock_uri
=
'/M'
.
$mock
->
getID
();
$comment
=
$request
->
getStr
(
'comment'
);
$content_source
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
(),
));
$xactions
=
array
();
$xactions
[]
=
id
(
new
PholioTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
PholioTransactionComment
())
->
setContent
(
$comment
));
$inlineComments
=
id
(
new
PholioTransactionComment
())->
loadAllWhere
(
'authorphid = %s AND transactionphid IS NULL AND imageid IN (%Ld)'
,
$user
->
getPHID
(),
mpull
(
$mock
->
getImages
(),
'getID'
));
foreach
(
$inlineComments
as
$inlineComment
)
{
$xactions
[]
=
id
(
new
PholioTransaction
())
->
setTransactionType
(
PholioTransactionType
::
TYPE_INLINE
)
->
attachComment
(
$inlineComment
);
}
$editor
=
id
(
new
PholioMockEditor
())
->
setActor
(
$user
)
->
setContentSource
(
$content_source
)
->
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
())
{
return
id
(
new
PhabricatorApplicationTransactionResponse
())
->
setViewer
(
$user
)
->
setTransactions
(
$xactions
)
->
setIsPreview
(
$is_preview
)
->
setAnchorOffset
(
$request
->
getStr
(
'anchor'
));
}
else
{
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$mock_uri
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 7:50 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
441475
Default Alt Text
PholioMockCommentController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment