Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117476623
PhabricatorSSHLog.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, Jun 13, 23:48
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jun 15, 23:48 (2 d)
Engine
blob
Format
Raw Data
Handle
26714162
Attached To
rPH Phabricator
PhabricatorSSHLog.php
View Options
<?php
final
class
PhabricatorSSHLog
extends
Phobject
{
static
$log
;
public
static
function
getLog
()
{
if
(!
self
::
$log
)
{
$path
=
PhabricatorEnv
::
getEnvConfig
(
'log.ssh.path'
);
$format
=
PhabricatorEnv
::
getEnvConfig
(
'log.ssh.format'
);
$format
=
nonempty
(
$format
,
"[%D]
\t
%p
\t
%h
\t
%r
\t
%s
\t
%S
\t
%u
\t
%C
\t
%U
\t
%c
\t
%T
\t
%i
\t
%o"
);
// NOTE: Path may be null. We still create the log, it just won't write
// anywhere.
$data
=
array
(
'D'
=>
date
(
'r'
),
'h'
=>
php_uname
(
'n'
),
'p'
=>
getmypid
(),
'e'
=>
time
(),
);
$sudo_user
=
PhabricatorEnv
::
getEnvConfig
(
'phd.user'
);
if
(
strlen
(
$sudo_user
))
{
$data
[
'S'
]
=
$sudo_user
;
}
if
(
function_exists
(
'posix_geteuid'
))
{
$system_uid
=
posix_geteuid
();
$system_info
=
posix_getpwuid
(
$system_uid
);
$data
[
's'
]
=
idx
(
$system_info
,
'name'
);
}
$client
=
getenv
(
'SSH_CLIENT'
);
if
(
strlen
(
$client
))
{
$remote_address
=
head
(
explode
(
' '
,
$client
));
$data
[
'r'
]
=
$remote_address
;
}
$log
=
id
(
new
PhutilDeferredLog
(
$path
,
$format
))
->
setFailQuietly
(
true
)
->
setData
(
$data
);
self
::
$log
=
$log
;
}
return
self
::
$log
;
}
}
Event Timeline
Log In to Comment