summaryrefslogtreecommitdiffstats
path: root/db/migrate/101_populate_changesets_user_id.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-11-10 18:59:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-11-10 18:59:06 +0000
commit79c33bbc838fd837e516fd60569dbcf7917bd534 (patch)
tree20695e6f03f08925d6be3c96846668d979b4b3b3 /db/migrate/101_populate_changesets_user_id.rb
parentf6b2be81b9cb09485a08e58fc73d9290fd544148 (diff)
downloadredmine-79c33bbc838fd837e516fd60569dbcf7917bd534.tar.gz
redmine-79c33bbc838fd837e516fd60569dbcf7917bd534.zip
Maps repository users to Redmine users (#1383).
Users with same username or email are automatically mapped. Mapping can be manually adjusted in repository settings. Multiple usernames can be mapped to the same Redmine user. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2006 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db/migrate/101_populate_changesets_user_id.rb')
-rw-r--r--db/migrate/101_populate_changesets_user_id.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/101_populate_changesets_user_id.rb b/db/migrate/101_populate_changesets_user_id.rb
new file mode 100644
index 000000000..dd493d17d
--- /dev/null
+++ b/db/migrate/101_populate_changesets_user_id.rb
@@ -0,0 +1,18 @@
+class PopulateChangesetsUserId < ActiveRecord::Migration
+ def self.up
+ committers = Changeset.connection.select_values("SELECT DISTINCT committer FROM #{Changeset.table_name}")
+ committers.each do |committer|
+ next if committer.blank?
+ if committer.strip =~ /^([^<]+)(<(.*)>)?$/
+ username, email = $1.strip, $3
+ u = User.find_by_login(username)
+ u ||= User.find_by_mail(email) unless email.blank?
+ Changeset.update_all("user_id = #{u.id}", ["committer = ?", committer]) unless u.nil?
+ end
+ end
+ end
+
+ def self.down
+ Changeset.update_all('user_id = NULL')
+ end
+end