Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F468880
20130805.pastemailkeypop.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
584 B
Referenced Files
None
Subscribers
None
20130805.pastemailkeypop.php
View Options
<?php
echo
pht
(
'Populating pastes with mail keys...'
).
"
\n
"
;
$table
=
new
PhabricatorPaste
();
$table
->
openTransaction
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$paste
)
{
$id
=
$paste
->
getID
();
echo
"P{$id}: "
;
if
(!
$paste
->
getMailKey
())
{
queryfx
(
$conn_w
,
'UPDATE %T SET mailKey = %s WHERE id = %d'
,
$paste
->
getTableName
(),
Filesystem
::
readRandomCharacters
(
20
),
$id
);
echo
pht
(
'Generated Key'
).
"
\n
"
;
}
else
{
echo
"-
\n
"
;
}
}
$table
->
saveTransaction
();
echo
pht
(
'Done.'
).
"
\n
"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 6:50 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
81199
Default Alt Text
20130805.pastemailkeypop.php (584 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment