Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91967483
PhrequentTrackingEditor.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, Nov 16, 05:42
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 18, 05:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22355870
Attached To
rPH Phabricator
PhrequentTrackingEditor.php
View Options
<?php
final
class
PhrequentTrackingEditor
extends
PhabricatorEditor
{
public
function
startTracking
(
PhabricatorUser
$user
,
$phid
,
$timestamp
)
{
$usertime
=
new
PhrequentUserTime
();
$usertime
->
setDateStarted
(
$timestamp
);
$usertime
->
setUserPHID
(
$user
->
getPHID
());
$usertime
->
setObjectPHID
(
$phid
);
$usertime
->
save
();
return
$phid
;
}
public
function
stopTracking
(
PhabricatorUser
$user
,
$phid
,
$timestamp
,
$note
)
{
if
(!
PhrequentUserTimeQuery
::
isUserTrackingObject
(
$user
,
$phid
))
{
// Don't do anything, it's not being tracked.
return
null
;
}
$usertime_dao
=
new
PhrequentUserTime
();
$conn
=
$usertime_dao
->
establishConnection
(
'r'
);
queryfx
(
$conn
,
'UPDATE %T usertime '
.
'SET usertime.dateEnded = %d, '
.
'usertime.note = %s '
.
'WHERE usertime.userPHID = %s '
.
'AND usertime.objectPHID = %s '
.
'AND usertime.dateEnded IS NULL '
.
'ORDER BY usertime.dateStarted, usertime.id DESC '
.
'LIMIT 1'
,
$usertime_dao
->
getTableName
(),
$timestamp
,
$note
,
$user
->
getPHID
(),
$phid
);
return
$phid
;
}
public
function
stopTrackingTop
(
PhabricatorUser
$user
,
$timestamp
,
$note
)
{
$times
=
id
(
new
PhrequentUserTimeQuery
())
->
setViewer
(
$user
)
->
withUserPHIDs
(
array
(
$user
->
getPHID
()))
->
withEnded
(
PhrequentUserTimeQuery
::
ENDED_NO
)
->
setOrder
(
PhrequentUserTimeQuery
::
ORDER_STARTED_DESC
)
->
execute
();
if
(
count
(
$times
)
===
0
)
{
// Nothing to stop tracking.
return
null
;
}
$current
=
head
(
$times
);
return
$this
->
stopTracking
(
$user
,
$current
->
getObjectPHID
(),
$timestamp
,
$note
);
}
}
Event Timeline
Log In to Comment