Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106892297
PholioMockCommentController.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 2, 04:01
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Apr 4, 04:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25299511
Attached To
rPH Phabricator
PholioMockCommentController.php
View Options
<?php
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'
);
$xactions
=
array
();
$inline_comments
=
id
(
new
PholioTransactionComment
())->
loadAllWhere
(
'authorphid = %s AND transactionphid IS NULL AND imageid IN (%Ld)'
,
$user
->
getPHID
(),
mpull
(
$mock
->
getImages
(),
'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
(
PholioTransactionType
::
TYPE_INLINE
)
->
attachComment
(
$inline_comment
);
}
$editor
=
id
(
new
PholioMockEditor
())
->
setActor
(
$user
)
->
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
)
{
$xaction_view
=
id
(
new
PholioTransactionView
())
->
setMock
(
$mock
);
return
id
(
new
PhabricatorApplicationTransactionResponse
())
->
setViewer
(
$user
)
->
setTransactions
(
$xactions
)
->
setTransactionView
(
$xaction_view
)
->
setIsPreview
(
$is_preview
);
}
else
{
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$mock_uri
);
}
}
}
Event Timeline
Log In to Comment