Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F427984
PhabricatorSSHLog.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorSSHLog.php
View Options
<?php
final
class
PhabricatorSSHLog
extends
Phobject
{
private
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 5:34 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
58916
Default Alt Text
PhabricatorSSHLog.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment