Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98081783
PhabricatorCalendarEventDragController.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
Thu, Jan 9, 14:36
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 14:36 (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
23509448
Attached To
rPH Phabricator
PhabricatorCalendarEventDragController.php
View Options
<?php
final
class
PhabricatorCalendarEventDragController
extends
PhabricatorCalendarController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$event
=
id
(
new
PhabricatorCalendarEventQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getURIData
(
'id'
)))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$event
)
{
return
new
Aphront404Response
();
}
if
(!
$request
->
validateCSRF
())
{
return
new
Aphront400Response
();
}
if
(
$event
->
getIsAllDay
())
{
return
new
Aphront400Response
();
}
$xactions
=
array
();
$duration
=
$event
->
getDuration
();
$start
=
$request
->
getInt
(
'start'
);
$start_value
=
id
(
AphrontFormDateControlValue
::
newFromEpoch
(
$viewer
,
$start
));
$end
=
$start
+
$duration
;
$end_value
=
id
(
AphrontFormDateControlValue
::
newFromEpoch
(
$viewer
,
$end
));
$xactions
[]
=
id
(
new
PhabricatorCalendarEventTransaction
())
->
setTransactionType
(
PhabricatorCalendarEventStartDateTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$start_value
);
$xactions
[]
=
id
(
new
PhabricatorCalendarEventTransaction
())
->
setTransactionType
(
PhabricatorCalendarEventEndDateTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$end_value
);
$editor
=
id
(
new
PhabricatorCalendarEventEditor
())
->
setActor
(
$viewer
)
->
setContinueOnMissingFields
(
true
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
);
$xactions
=
$editor
->
applyTransactions
(
$event
,
$xactions
);
return
id
(
new
AphrontReloadResponse
());
}
}
Event Timeline
Log In to Comment