Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14007549
D10010.id24065.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D10010.id24065.diff
View Options
diff --git a/resources/sql/autopatches/20140722.renameauth.php b/resources/sql/autopatches/20140722.renameauth.php
new file mode 100644
--- /dev/null
+++ b/resources/sql/autopatches/20140722.renameauth.php
@@ -0,0 +1,34 @@
+<?php
+
+$map = array(
+ 'PhabricatorAuthProviderOAuthAmazon' => 'PhabricatorAmazonAuthProvider',
+ 'PhabricatorAsanaAuthProvider' => 'PhabricatorAsanaAuthProvider',
+ 'PhabricatorAuthProviderOAuth1Bitbucket'
+ => 'PhabricatorBitbucketAuthProvider',
+ 'PhabricatorAuthProviderOAuthDisqus' => 'PhabricatorDisqusAuthProvider',
+ 'PhabricatorAuthProviderOAuthFacebook' => 'PhabricatorFacebookAuthProvider',
+ 'PhabricatorAuthProviderOAuthGitHub' => 'PhabricatorGitHubAuthProvider',
+ 'PhabricatorAuthProviderOAuthGoogle' => 'PhabricatorGoogleAuthProvider',
+ 'PhabricatorAuthProviderOAuth1JIRA' => 'PhabricatorJIRAAuthProvider',
+ 'PhabricatorAuthProviderLDAP' => 'PhabricatorLDAPAuthProvider',
+ 'PhabricatorAuthProviderPassword' => 'PhabricatorPasswordAuthProvider',
+ 'PhabricatorAuthProviderPersona' => 'PhabricatorPersonaAuthProvider',
+ 'PhabricatorAuthProviderOAuthTwitch' => 'PhabricatorTwitchAuthProvider',
+ 'PhabricatorAuthProviderOAuth1Twitter' => 'PhabricatorTwitterAuthProvider',
+ 'PhabricatorAuthProviderOAuthWordPress' => 'PhabricatorWordPressAuthProvider',
+);
+
+echo "Migrating auth providers...\n";
+$table = new PhabricatorAuthProviderConfig();
+$conn_w = $table->establishConnection('w');
+
+foreach (new LiskMigrationIterator($table) as $provider) {
+ $provider_class = $provider->getProviderClass();
+
+ queryfx(
+ $conn_w,
+ 'UPDATE %T SET providerClass = %s WHERE id = %d',
+ $provider->getTableName(),
+ idx($map, $provider_class, $provider_class),
+ $provider->getID());
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Oct 30, 7:42 AM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6743968
Default Alt Text
D10010.id24065.diff (1 KB)
Attached To
Mode
D10010: Add a missing migration
Attached
Detach File
Event Timeline
Log In to Comment