Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120258535
20180910.audit.01.searches.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
Thu, Jul 3, 01:20
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jul 5, 01:20 (2 d)
Engine
blob
Format
Raw Data
Handle
27132199
Attached To
rPH Phabricator
20180910.audit.01.searches.php
View Options
<?php
$table
=
new
PhabricatorSavedQuery
();
$conn
=
$table
->
establishConnection
(
'w'
);
$status_map
=
array
(
0
=>
'none'
,
1
=>
'needs-audit'
,
2
=>
'concern-raised'
,
3
=>
'partially-audited'
,
4
=>
'audited'
,
5
=>
'needs-verification'
,
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$query
)
{
if
(
$query
->
getEngineClassName
()
!==
'PhabricatorCommitSearchEngine'
)
{
continue
;
}
$parameters
=
$query
->
getParameters
();
$status
=
idx
(
$parameters
,
'statuses'
);
if
(!
$status
)
{
// No saved "status" constraint.
continue
;
}
if
(!
is_array
(
$status
))
{
// Saved constraint isn't a list.
continue
;
}
// Migrate old integer values to new string values.
$old_status
=
$status
;
foreach
(
$status
as
$key
=>
$value
)
{
if
(
is_numeric
(
$value
))
{
$status
[
$key
]
=
$status_map
[
$value
];
}
}
if
(
$status
===
$old_status
)
{
// Nothing changed.
continue
;
}
$parameters
[
'statuses'
]
=
$status
;
queryfx
(
$conn
,
'UPDATE %T SET parameters = %s WHERE id = %d'
,
$table
->
getTableName
(),
phutil_json_encode
(
$parameters
),
$query
->
getID
());
}
Event Timeline
Log In to Comment