Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93165334
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
Tue, Nov 26, 17:18
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 17:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22585469
Attached To
rPH Phabricator
PhabricatorSavedQuery.php
View Options
<?php
final
class
PhabricatorSavedQuery
extends
PhabricatorSearchDAO
implements
PhabricatorPolicyInterface
{
protected
$parameters
=
array
();
protected
$queryKey
;
protected
$engineClassName
;
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
());
}
/* -( 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
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
}
Event Timeline
Log In to Comment