Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92697629
PhabricatorUserLogView.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
Fri, Nov 22, 21:26
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 21:26 (2 d)
Engine
blob
Format
Raw Data
Handle
22490035
Attached To
rPH Phabricator
PhabricatorUserLogView.php
View Options
<?php
final
class
PhabricatorUserLogView
extends
AphrontView
{
private
$logs
;
private
$handles
;
private
$searchBaseURI
;
public
function
setSearchBaseURI
(
$search_base_uri
)
{
$this
->
searchBaseURI
=
$search_base_uri
;
return
$this
;
}
public
function
setLogs
(
array
$logs
)
{
assert_instances_of
(
$logs
,
'PhabricatorUserLog'
);
$this
->
logs
=
$logs
;
return
$this
;
}
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
render
()
{
$logs
=
$this
->
logs
;
$handles
=
$this
->
handles
;
$viewer
=
$this
->
getUser
();
$action_map
=
PhabricatorUserLog
::
getActionTypeMap
();
$base_uri
=
$this
->
searchBaseURI
;
$rows
=
array
();
foreach
(
$logs
as
$log
)
{
$ip
=
$log
->
getRemoteAddr
();
$session
=
substr
(
$log
->
getSession
(),
0
,
6
);
if
(
$base_uri
)
{
$ip
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$base_uri
.
'?ip='
.
$ip
.
'#R'
,
),
$ip
);
}
$action
=
$log
->
getAction
();
$action_name
=
idx
(
$action_map
,
$action
,
$action
);
$rows
[]
=
array
(
phabricator_date
(
$log
->
getDateCreated
(),
$viewer
),
phabricator_time
(
$log
->
getDateCreated
(),
$viewer
),
$action_name
,
$log
->
getActorPHID
()
?
$handles
[
$log
->
getActorPHID
()]->
getName
()
:
null
,
$username
=
$handles
[
$log
->
getUserPHID
()]->
renderLink
(),
$ip
,
$session
,
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setHeaders
(
array
(
pht
(
'Date'
),
pht
(
'Time'
),
pht
(
'Action'
),
pht
(
'Actor'
),
pht
(
'User'
),
pht
(
'IP'
),
pht
(
'Session'
),
));
$table
->
setColumnClasses
(
array
(
''
,
'right'
,
'wide'
,
''
,
''
,
''
,
'n'
,
));
return
$table
;
}
}
Event Timeline
Log In to Comment