Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98256963
ManiphestSubpriorityController.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
Sat, Jan 11, 12:44
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 12:44 (2 d)
Engine
blob
Format
Raw Data
Handle
23542664
Attached To
rPH Phabricator
ManiphestSubpriorityController.php
View Options
<?php
/**
* @group maniphest
*/
final
class
ManiphestSubpriorityController
extends
ManiphestController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(!
$request
->
validateCSRF
())
{
return
new
Aphront403Response
();
}
$task
=
id
(
new
ManiphestTask
())->
load
(
$request
->
getInt
(
'task'
));
if
(!
$task
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
getInt
(
'after'
))
{
$after_task
=
id
(
new
ManiphestTask
())->
load
(
$request
->
getInt
(
'after'
));
if
(!
$after_task
)
{
return
new
Aphront404Response
();
}
$after_pri
=
$after_task
->
getPriority
();
$after_sub
=
$after_task
->
getSubpriority
();
}
else
{
$after_pri
=
$request
->
getInt
(
'priority'
);
$after_sub
=
null
;
}
$new_sub
=
ManiphestTransactionEditor
::
getNextSubpriority
(
$after_pri
,
$after_sub
);
if
(
$after_pri
!=
$task
->
getPriority
())
{
$xaction
=
new
ManiphestTransaction
();
$xaction
->
setAuthorPHID
(
$request
->
getUser
()->
getPHID
());
// TODO: Content source?
$xaction
->
setTransactionType
(
ManiphestTransactionType
::
TYPE_PRIORITY
);
$xaction
->
setNewValue
(
$after_pri
);
$editor
=
new
ManiphestTransactionEditor
();
$editor
->
setActor
(
$request
->
getUser
());
$editor
->
applyTransactions
(
$task
,
array
(
$xaction
));
}
$task
->
setSubpriority
(
$new_sub
);
$task
->
save
();
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
array
(
'tasks'
=>
$this
->
renderSingleTask
(
$task
),
));
}
}
Event Timeline
Log In to Comment