Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110612916
ConduitAPI_user_removestatus_Method.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
Sun, Apr 27, 03:57
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Apr 29, 03:57 (2 d)
Engine
blob
Format
Raw Data
Handle
25833735
Attached To
rPH Phabricator
ConduitAPI_user_removestatus_Method.php
View Options
<?php
final
class
ConduitAPI_user_removestatus_Method
extends
ConduitAPI_user_Method
{
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