Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98273803
20140211.dx.2.migcommenttext.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, Jan 11, 16:33
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 16:33 (2 d)
Engine
blob
Format
Raw Data
Handle
23550181
Attached To
rPH Phabricator
20140211.dx.2.migcommenttext.php
View Options
<?php
$conn_w
=
id
(
new
DifferentialRevision
())->
establishConnection
(
'w'
);
$rows
=
new
LiskRawMigrationIterator
(
$conn_w
,
'differential_comment'
);
$content_source
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_LEGACY
,
array
())->
serialize
();
echo
"Migrating Differential comment text to modern storage...
\n
"
;
foreach
(
$rows
as
$row
)
{
$id
=
$row
[
'id'
];
echo
"Migrating Differential comment {$id}...
\n
"
;
if
(!
strlen
(
$row
[
'content'
]))
{
echo
"Comment has no text, continuing.
\n
"
;
continue
;
}
$revision
=
id
(
new
DifferentialRevision
())->
load
(
$row
[
'revisionID'
]);
if
(!
$revision
)
{
echo
"Comment has no valid revision, continuing.
\n
"
;
continue
;
}
$revision_phid
=
$revision
->
getPHID
();
$dst_table
=
'differential_inline_comment'
;
$xaction_phid
=
PhabricatorPHID
::
generateNewPHID
(
PhabricatorApplicationTransactionPHIDTypeTransaction
::
TYPECONST
,
DifferentialPHIDTypeRevision
::
TYPECONST
);
$comment_phid
=
PhabricatorPHID
::
generateNewPHID
(
PhabricatorPHIDConstants
::
PHID_TYPE_XCMT
,
DifferentialPHIDTypeRevision
::
TYPECONST
);
queryfx
(
$conn_w
,
'INSERT IGNORE INTO %T
(phid, transactionPHID, authorPHID, viewPolicy, editPolicy,
commentVersion, content, contentSource, isDeleted,
dateCreated, dateModified, revisionPHID, changesetID,
legacyCommentID)
VALUES (%s, %s, %s, %s, %s,
%d, %s, %s, %d,
%d, %d, %s, %nd,
%d)'
,
'differential_transaction_comment'
,
// phid, transactionPHID, authorPHID, viewPolicy, editPolicy
$comment_phid
,
$xaction_phid
,
$row
[
'authorPHID'
],
'public'
,
$row
[
'authorPHID'
],
// commentVersion, content, contentSource, isDeleted
1
,
$row
[
'content'
],
$content_source
,
0
,
// dateCreated, dateModified, revisionPHID, changesetID, legacyCommentID
$row
[
'dateCreated'
],
$row
[
'dateModified'
],
$revision_phid
,
null
,
$row
[
'id'
]);
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment