Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92714602
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, Nov 23, 01:33
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 01:33 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22494304
Attached To
rPH Phabricator
PhabricatorSavedQuery.php
View Options
<?php
final
class
PhabricatorSavedQuery
extends
PhabricatorSearchDAO
implements
PhabricatorPolicyInterface
{
protected
$parameters
=
array
();
protected
$queryKey
;
protected
$engineClassName
;
private
$parameterMap
=
self
::
ATTACHABLE
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'parameters'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'engineClassName'
=>
'text255'
,
'queryKey'
=>
'text12'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_queryKey'
=>
array
(
'columns'
=>
array
(
'queryKey'
),
'unique'
=>
true
,
),
),
)
+
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.'
));
}
// Instantiate the engine to make sure it's valid.
$this
->
newEngine
();
$serial
=
$this
->
getEngineClassName
().
serialize
(
$this
->
parameters
);
$this
->
queryKey
=
PhabricatorHash
::
digestForIndex
(
$serial
);
return
parent
::
save
();
}
public
function
newEngine
()
{
return
newv
(
$this
->
getEngineClassName
(),
array
());
}
public
function
attachParameterMap
(
array
$map
)
{
$this
->
parameterMap
=
$map
;
return
$this
;
}
public
function
getEvaluatedParameter
(
$key
)
{
return
$this
->
assertAttachedKey
(
$this
->
parameterMap
,
$key
);
}
/* -( 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