Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F950591
NuanceSource.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
NuanceSource.php
View Options
<?php
final
class
NuanceSource
extends
NuanceDAO
implements
PhabricatorPolicyInterface
{
protected
$name
;
protected
$type
;
protected
$data
;
protected
$mailKey
;
protected
$viewPolicy
;
protected
$editPolicy
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'data'
=>
self
::
SERIALIZATION_JSON
,
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
NuanceSourcePHIDType
::
TYPECONST
);
}
public
function
save
()
{
if
(!
$this
->
getMailKey
())
{
$this
->
setMailKey
(
Filesystem
::
readRandomCharacters
(
20
));
}
return
parent
::
save
();
}
public
function
getURI
()
{
return
'/nuance/source/view/'
.
$this
->
getID
().
'/'
;
}
public
static
function
initializeNewSource
(
PhabricatorUser
$actor
)
{
$app
=
id
(
new
PhabricatorApplicationQuery
())
->
setViewer
(
$actor
)
->
withClasses
(
array
(
'PhabricatorNuanceApplication'
))
->
executeOne
();
$view_policy
=
$app
->
getPolicy
(
NuanceCapabilitySourceDefaultView
::
CAPABILITY
);
$edit_policy
=
$app
->
getPolicy
(
NuanceCapabilitySourceDefaultEdit
::
CAPABILITY
);
$definitions
=
NuanceSourceDefinition
::
getAllDefinitions
();
$lucky_definition
=
head
(
$definitions
);
return
id
(
new
NuanceSource
())
->
setViewPolicy
(
$view_policy
)
->
setEditPolicy
(
$edit_policy
)
->
setType
(
$lucky_definition
->
getSourceTypeConstant
());
}
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
$this
->
getViewPolicy
();
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
return
$this
->
getEditPolicy
();
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 2:10 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225008
Default Alt Text
NuanceSource.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment