Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115388032
PhabricatorSavedQuery.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
Sat, May 31, 13:53
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jun 2, 13:53 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26457505
Attached To
rPH Phabricator
PhabricatorSavedQuery.php
View Options
<?php
/**
* @group search
*/
final
class
PhabricatorSavedQuery
extends
PhabricatorSearchDAO
implements
PhabricatorPolicyInterface
{
protected
$parameters
=
array
();
protected
$queryKey
=
""
;
protected
$engineClassName
=
"PhabricatorPasteSearchEngine"
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'parameters'
=>
self
::
SERIALIZATION_JSON
),
)
+
parent
::
getConfiguration
();
}
public
function
setParameter
(
$key
,
$value
)
{
$this
->
parameters
[
$key
]
=
$value
;
return
$this
;
}
public
function
getParameter
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
parameters
,
$key
,
$default
);
}
public
function
save
()
{
if
(
$this
->
getEngineClassName
()
===
null
)
{
throw
new
Exception
(
pht
(
"Engine class is null."
));
}
$serial
=
$this
->
getEngineClassName
().
serialize
(
$this
->
parameters
);
$this
->
queryKey
=
PhabricatorHash
::
digestForIndex
(
$serial
);
return
parent
::
save
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
PhabricatorPolicies
::
POLICY_PUBLIC
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
}
Event Timeline
Log In to Comment