Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117929601
PhabricatorAuthMessage.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
Mon, Jun 16, 14:54
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Jun 18, 14:54 (2 d)
Engine
blob
Format
Raw Data
Handle
26792174
Attached To
rPH Phabricator
PhabricatorAuthMessage.php
View Options
<?php
final
class
PhabricatorAuthMessage
extends
PhabricatorAuthDAO
implements
PhabricatorApplicationTransactionInterface
,
PhabricatorPolicyInterface
,
PhabricatorDestructibleInterface
{
protected
$messageKey
;
protected
$messageText
;
private
$messageType
=
self
::
ATTACHABLE
;
public
static
function
initializeNewMessage
(
PhabricatorAuthMessageType
$type
)
{
return
id
(
new
self
())
->
setMessageKey
(
$type
->
getMessageTypeKey
())
->
attachMessageType
(
$type
);
}
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'messageKey'
=>
'text64'
,
'messageText'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_type'
=>
array
(
'columns'
=>
array
(
'messageKey'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getPHIDType
()
{
return
PhabricatorAuthMessagePHIDType
::
TYPECONST
;
}
public
function
getObjectName
()
{
return
pht
(
'Auth Message %d'
,
$this
->
getID
());
}
public
function
getURI
()
{
return
urisprintf
(
'/auth/message/%s'
,
$this
->
getID
());
}
public
function
attachMessageType
(
PhabricatorAuthMessageType
$type
)
{
$this
->
messageType
=
$type
;
return
$this
;
}
public
function
getMessageType
()
{
return
$this
->
assertAttached
(
$this
->
messageType
);
}
public
function
getMessageTypeDisplayName
()
{
return
$this
->
getMessageType
()->
getDisplayName
();
}
public
static
function
loadMessage
(
PhabricatorUser
$viewer
,
$message_key
)
{
return
id
(
new
PhabricatorAuthMessageQuery
())
->
setViewer
(
$viewer
)
->
withMessageKeys
(
array
(
$message_key
))
->
executeOne
();
}
public
static
function
loadMessageText
(
PhabricatorUser
$viewer
,
$message_key
)
{
$message
=
self
::
loadMessage
(
$viewer
,
$message_key
);
if
(!
$message
)
{
return
null
;
}
return
$message
->
getMessageText
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
PhabricatorPolicies
::
getMostOpenPolicy
();
default
:
return
false
;
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
// Even if an install doesn't allow public users, you can still view
// auth messages: otherwise, we can't do things like show you
// guidance on the login screen.
return
true
;
default
:
return
false
;
}
}
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
public
function
getApplicationTransactionEditor
()
{
return
new
PhabricatorAuthMessageEditor
();
}
public
function
getApplicationTransactionTemplate
()
{
return
new
PhabricatorAuthMessageTransaction
();
}
/* -( PhabricatorDestructibleInterface )----------------------------------- */
public
function
destroyObjectPermanently
(
PhabricatorDestructionEngine
$engine
)
{
$this
->
delete
();
}
}
Event Timeline
Log In to Comment