Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102211806
PhabricatorAuthSessionRevoker.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
Tue, Feb 18, 07:49
Size
941 B
Mime Type
text/x-php
Expires
Thu, Feb 20, 07:49 (2 d)
Engine
blob
Format
Raw Data
Handle
24306785
Attached To
rPH Phabricator
PhabricatorAuthSessionRevoker.php
View Options
<?php
final
class
PhabricatorAuthSessionRevoker
extends
PhabricatorAuthRevoker
{
const
REVOKERKEY
=
'session'
;
public
function
getRevokerName
()
{
return
pht
(
'Sessions'
);
}
public
function
getRevokerDescription
()
{
return
pht
(
"Revokes all active login sessions.
\n\n
"
.
"Affected users will be logged out and need to log in again."
);
}
public
function
revokeAllCredentials
()
{
$table
=
new
PhabricatorAuthSession
();
$conn
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn
,
'DELETE FROM %T'
,
$table
->
getTableName
());
return
$conn
->
getAffectedRows
();
}
public
function
revokeCredentialsFrom
(
$object
)
{
$table
=
new
PhabricatorAuthSession
();
$conn
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn
,
'DELETE FROM %T WHERE userPHID = %s'
,
$table
->
getTableName
(),
$object
->
getPHID
());
return
$conn
->
getAffectedRows
();
}
}
Event Timeline
Log In to Comment