Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120261665
20130820.file-mailkey-populate.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:57
Size
709 B
Mime Type
text/x-php
Expires
Sat, Jul 5, 01:57 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27163542
Attached To
rPH Phabricator
20130820.file-mailkey-populate.php
View Options
<?php
echo
"Populating Phabricator files with mail keys xactions...
\n
"
;
$table
=
new
PhabricatorFile
();
$table_name
=
$table
->
getTableName
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$conn_w
->
openTransaction
();
$sql
=
array
();
foreach
(
new
LiskRawMigrationIterator
(
$conn_w
,
'file'
)
as
$row
)
{
$sql
[]
=
qsprintf
(
$conn_w
,
'(%d, %s)'
,
$row
[
'id'
],
Filesystem
::
readRandomCharacters
(
20
));
}
if
(
$sql
)
{
foreach
(
PhabricatorLiskDAO
::
chunkSQL
(
$sql
,
', '
)
as
$chunk
)
{
queryfx
(
$conn_w
,
'INSERT INTO %T (id, mailKey) VALUES %Q '
.
'ON DUPLICATE KEY UPDATE mailKey = VALUES(mailKey)'
,
$table_name
,
$chunk
);
}
}
$table
->
saveTransaction
();
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment