Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F549348
PhabricatorNamedQuery.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
PhabricatorNamedQuery.php
View Options
<?php
final
class
PhabricatorNamedQuery
extends
PhabricatorSearchDAO
implements
PhabricatorPolicyInterface
{
protected
$queryKey
;
protected
$queryName
;
protected
$userPHID
;
protected
$engineClassName
;
protected
$isBuiltin
=
0
;
protected
$isDisabled
=
0
;
protected
$sequence
=
0
;
const
SCOPE_GLOBAL
=
'scope.global'
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'engineClassName'
=>
'text128'
,
'queryName'
=>
'text255'
,
'queryKey'
=>
'text12'
,
'isBuiltin'
=>
'bool'
,
'isDisabled'
=>
'bool'
,
'sequence'
=>
'uint32'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_userquery'
=>
array
(
'columns'
=>
array
(
'userPHID'
,
'engineClassName'
,
'queryKey'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
isGlobal
()
{
if
(
$this
->
getIsBuiltin
())
{
return
true
;
}
if
(
$this
->
getUserPHID
()
===
self
::
SCOPE_GLOBAL
)
{
return
true
;
}
return
false
;
}
public
function
getNamedQuerySortVector
()
{
if
(!
$this
->
isGlobal
())
{
$phase
=
0
;
}
else
{
$phase
=
1
;
}
return
id
(
new
PhutilSortVector
())
->
addInt
(
$phase
)
->
addInt
(
$this
->
sequence
)
->
addInt
(
$this
->
getID
());
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
return
PhabricatorPolicies
::
POLICY_NOONE
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
if
(
$viewer
->
getPHID
()
==
$this
->
getUserPHID
())
{
return
true
;
}
if
(
$this
->
isGlobal
())
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
true
;
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
return
$viewer
->
getIsAdmin
();
}
}
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
pht
(
'The queries you have saved are private. Only you can view or edit '
.
'them.'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:06 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
122397
Default Alt Text
PhabricatorNamedQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment