Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15395343
D19446.id46522.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D19446.id46522.diff
View Options
diff --git a/resources/sql/autopatches/20180510.repo_identity.big_migrate.php b/resources/sql/autopatches/20180510.repo_identity.big_migrate.php
new file mode 100644
--- /dev/null
+++ b/resources/sql/autopatches/20180510.repo_identity.big_migrate.php
@@ -0,0 +1,59 @@
+<?php
+
+$query = id(new DiffusionCommitQuery())
+ ->setViewer(PhabricatorUser::getOmnipotentUser())
+ ->needCommitData(true);
+$iterator = new PhabricatorQueryIterator($query);
+
+foreach ($iterator as $commit) {
+ $data = $commit->getCommitData();
+ $author_name = $data->getAuthorName();
+ $author_identity = get_identity_for_commit($commit, $author_name);
+
+ $commit->setAuthorIdentityPHID($author_identity->getPHID());
+ $data->setCommitDetail(
+ 'authorIdentityPHID', $author_identity->getPHID());
+
+ $committer_name = $data->getCommitDetail('committer', null);
+ if ($committer_name) {
+ $committer_identity = get_identity_for_commit($commit, $committer_name);
+
+ $commit->setCommitterIdentityPHID($committer_identity->getPHID());
+ $data->setCommitDetail(
+ 'committerIdentityPHID', $committer_identity->getPHID());
+ }
+
+ $commit->save();
+ $data->save();
+}
+
+
+function get_identity_for_commit(
+ PhabricatorRepositoryCommit $commit, $identity_name) {
+
+ static $seen = array();
+ $identity_key = PhabricatorHash::digestForIndex($identity_name);
+ if (empty($seen[$identity_key])) {
+ try {
+ $user_phid = id(new DiffusionResolveUserQuery())
+ ->withCommit($commit)
+ ->withName($identity_name)
+ ->execute();
+
+ $identity = id(new PhabricatorRepositoryIdentity())
+ ->setAuthorPHID($commit->getPHID())
+ ->setIdentityName($identity_name)
+ ->setAutomaticGuessedUserPHID($user_phid)
+ ->save();
+ } catch (AphrontDuplicateKeyQueryException $ex) {
+ // Somehow this identity already exists?
+ $identity = id(new PhabricatorRepositoryIdentityQuery())
+ ->setViewer(PhabricatorUser::getOmnipotentUser())
+ ->withIdentityNames(array($identity_name))
+ ->executeOne();
+ }
+ $seen[$identity_key] = $identity;
+ }
+
+ return $seen[$identity_key];
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 17, 5:58 AM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7708011
Default Alt Text
D19446.id46522.diff (2 KB)
Attached To
Mode
D19446: Add workflow to create repository identities
Attached
Detach File
Event Timeline
Log In to Comment