Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99039396
UserRemoveStatusConduitAPIMethod.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 18, 15:58
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 15:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23695645
Attached To
rPH Phabricator
UserRemoveStatusConduitAPIMethod.php
View Options
<?php
final
class
UserRemoveStatusConduitAPIMethod
extends
UserConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'user.removestatus'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Delete status information of the logged-in user.'
);
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'Statuses are becoming full-fledged events as part of the '
.
'Calendar application.'
);
}
public
function
defineParamTypes
()
{
return
array
(
'fromEpoch'
=>
'required int'
,
'toEpoch'
=>
'required int'
,
);
}
public
function
defineReturnType
()
{
return
'int'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-EPOCH'
=>
"'toEpoch' must be bigger than 'fromEpoch'."
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$user_phid
=
$request
->
getUser
()->
getPHID
();
$from
=
$request
->
getValue
(
'fromEpoch'
);
$to
=
$request
->
getValue
(
'toEpoch'
);
if
(
$to
<=
$from
)
{
throw
new
ConduitException
(
'ERR-BAD-EPOCH'
);
}
$table
=
new
PhabricatorCalendarEvent
();
$table
->
openTransaction
();
$table
->
beginReadLocking
();
$overlap
=
$table
->
loadAllWhere
(
'userPHID = %s AND dateFrom < %d AND dateTo > %d'
,
$user_phid
,
$to
,
$from
);
foreach
(
$overlap
as
$status
)
{
if
(
$status
->
getDateFrom
()
<
$from
)
{
if
(
$status
->
getDateTo
()
>
$to
)
{
// Split the interval.
id
(
new
PhabricatorCalendarEvent
())
->
setUserPHID
(
$user_phid
)
->
setDateFrom
(
$to
)
->
setDateTo
(
$status
->
getDateTo
())
->
setStatus
(
$status
->
getStatus
())
->
setDescription
(
$status
->
getDescription
())
->
save
();
}
$status
->
setDateTo
(
$from
);
$status
->
save
();
}
else
if
(
$status
->
getDateTo
()
>
$to
)
{
$status
->
setDateFrom
(
$to
);
$status
->
save
();
}
else
{
$status
->
delete
();
}
}
$table
->
endReadLocking
();
$table
->
saveTransaction
();
return
count
(
$overlap
);
}
}
Event Timeline
Log In to Comment