| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2007  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  | require 'iconv' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  | class Changeset < ActiveRecord::Base | 
					
						
							|  |  |  |   belongs_to :repository | 
					
						
							|  |  |  |   has_many :changes, :dependent => :delete_all | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |   has_and_belongs_to_many :issues | 
					
						
							| 
									
										
										
										
											2007-08-29 16:52:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   acts_as_event :title => Proc.new {|o| "#{l(:label_revision)} #{o.revision}" + (o.comments.blank? ? '' : (': ' + o.comments))}, | 
					
						
							|  |  |  |                 :description => :comments, | 
					
						
							|  |  |  |                 :datetime => :committed_on, | 
					
						
							|  |  |  |                 :author => :committer, | 
					
						
							|  |  |  |                 :url => Proc.new {|o| {:controller => 'repositories', :action => 'revision', :id => o.repository.project_id, :rev => o.revision}} | 
					
						
							| 
									
										
										
										
											2007-09-27 17:28:22 +00:00
										 |  |  |                  | 
					
						
							|  |  |  |   acts_as_searchable :columns => 'comments', | 
					
						
							| 
									
										
										
										
											2008-05-18 16:15:22 +00:00
										 |  |  |                      :include => {:repository => :project}, | 
					
						
							| 
									
										
										
										
											2007-09-27 17:28:22 +00:00
										 |  |  |                      :project_key => "#{Repository.table_name}.project_id", | 
					
						
							|  |  |  |                      :date_column => 'committed_on' | 
					
						
							| 
									
										
										
										
											2008-07-27 17:54:09 +00:00
										 |  |  |                       | 
					
						
							|  |  |  |   acts_as_activity_provider :timestamp => "#{table_name}.committed_on", | 
					
						
							|  |  |  |                             :find_options => {:include => {:repository => :project}} | 
					
						
							| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2007-03-25 17:11:46 +00:00
										 |  |  |   validates_presence_of :repository_id, :revision, :committed_on, :commit_date | 
					
						
							| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  |   validates_uniqueness_of :revision, :scope => :repository_id | 
					
						
							| 
									
										
										
										
											2007-06-24 19:30:38 +00:00
										 |  |  |   validates_uniqueness_of :scmid, :scope => :repository_id, :allow_nil => true | 
					
						
							| 
									
										
										
										
											2007-03-25 17:11:46 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-04-26 17:56:26 +00:00
										 |  |  |   def revision=(r) | 
					
						
							|  |  |  |     write_attribute :revision, (r.nil? ? nil : r.to_s) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-08-25 14:41:55 +00:00
										 |  |  |   def comments=(comment) | 
					
						
							| 
									
										
										
										
											2008-08-26 12:28:15 +00:00
										 |  |  |     write_attribute(:comments, Changeset.normalize_comments(comment)) | 
					
						
							| 
									
										
										
										
											2007-08-25 14:41:55 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-25 17:11:46 +00:00
										 |  |  |   def committed_on=(date) | 
					
						
							|  |  |  |     self.commit_date = date | 
					
						
							|  |  |  |     super | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-03-11 19:33:38 +00:00
										 |  |  |   def project | 
					
						
							|  |  |  |     repository.project | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |   def after_create | 
					
						
							|  |  |  |     scan_comment_for_issue_ids | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-02-06 20:02:30 +00:00
										 |  |  |   require 'pp' | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def scan_comment_for_issue_ids | 
					
						
							| 
									
										
										
										
											2007-04-25 15:06:20 +00:00
										 |  |  |     return if comments.blank? | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |     # keywords used to reference issues | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |     ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip) | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |     # keywords used to fix issues | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |     fix_keywords = Setting.commit_fix_keywords.downcase.split(",").collect(&:strip) | 
					
						
							| 
									
										
										
										
											2007-10-10 18:56:59 +00:00
										 |  |  |     # status and optional done ratio applied | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |     fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id) | 
					
						
							| 
									
										
										
										
											2007-10-10 18:56:59 +00:00
										 |  |  |     done_ratio = Setting.commit_fix_done_ratio.blank? ? nil : Setting.commit_fix_done_ratio.to_i | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |     kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw)}.join("|") | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |     return if kw_regexp.blank? | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |     referenced_issues = [] | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     if ref_keywords.delete('*') | 
					
						
							|  |  |  |       # find any issue ID in the comments | 
					
						
							|  |  |  |       target_issue_ids = [] | 
					
						
							| 
									
										
										
										
											2008-05-25 11:43:20 +00:00
										 |  |  |       comments.scan(%r{([\s\(,-]|^)#(\d+)(?=[[:punct:]]|\s|<|$)}).each { |m| target_issue_ids << m[1] } | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |       referenced_issues += repository.project.issues.find_all_by_id(target_issue_ids) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2007-04-25 15:06:20 +00:00
										 |  |  |     comments.scan(Regexp.new("(#{kw_regexp})[\s:]+(([\s,;&]*#?\\d+)+)", Regexp::IGNORECASE)).each do |match| | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |       action = match[0] | 
					
						
							|  |  |  |       target_issue_ids = match[1].scan(/\d+/) | 
					
						
							|  |  |  |       target_issues = repository.project.issues.find_all_by_id(target_issue_ids) | 
					
						
							|  |  |  |       if fix_status && fix_keywords.include?(action.downcase) | 
					
						
							|  |  |  |         # update status of issues | 
					
						
							|  |  |  |         logger.debug "Issues fixed by changeset #{self.revision}: #{issue_ids.join(', ')}." if logger && logger.debug? | 
					
						
							|  |  |  |         target_issues.each do |issue| | 
					
						
							| 
									
										
										
										
											2008-03-01 09:00:02 +00:00
										 |  |  |           # the issue may have been updated by the closure of another one (eg. duplicate) | 
					
						
							|  |  |  |           issue.reload | 
					
						
							| 
									
										
										
										
											2008-02-06 20:02:30 +00:00
										 |  |  |           # don't change the status is the issue is closed | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |           next if issue.status.is_closed? | 
					
						
							| 
									
										
										
										
											2008-02-06 20:02:30 +00:00
										 |  |  |           user = committer_user || User.anonymous | 
					
						
							| 
									
										
										
										
											2008-03-12 20:28:49 +00:00
										 |  |  |           csettext = "r#{self.revision}" | 
					
						
							|  |  |  |           if self.scmid && (! (csettext =~ /^r[0-9]+$/)) | 
					
						
							|  |  |  |             csettext = "commit:\"#{self.scmid}\"" | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           journal = issue.init_journal(user, l(:text_status_changed_by_changeset, csettext)) | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |           issue.status = fix_status | 
					
						
							| 
									
										
										
										
											2007-10-10 18:56:59 +00:00
										 |  |  |           issue.done_ratio = done_ratio if done_ratio | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |           issue.save | 
					
						
							| 
									
										
										
										
											2008-02-06 20:02:30 +00:00
										 |  |  |           Mailer.deliver_issue_edit(journal) if Setting.notified_events.include?('issue_updated') | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |       referenced_issues += target_issues | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2007-10-22 16:52:36 +00:00
										 |  |  |     self.issues = referenced_issues.uniq | 
					
						
							| 
									
										
										
										
											2007-04-24 13:57:27 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-06 20:02:30 +00:00
										 |  |  |   # Returns the Redmine User corresponding to the committer | 
					
						
							|  |  |  |   def committer_user | 
					
						
							|  |  |  |     if committer && committer.strip =~ /^([^<]+)(<(.*)>)?$/ | 
					
						
							|  |  |  |       username, email = $1.strip, $3 | 
					
						
							|  |  |  |       u = User.find_by_login(username) | 
					
						
							|  |  |  |       u ||= User.find_by_mail(email) unless email.blank? | 
					
						
							|  |  |  |       u | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   # Returns the previous changeset | 
					
						
							|  |  |  |   def previous | 
					
						
							| 
									
										
										
										
											2008-03-12 20:28:49 +00:00
										 |  |  |     @previous ||= Changeset.find(:first, :conditions => ['id < ? AND repository_id = ?', self.id, self.repository_id], :order => 'id DESC') | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Returns the next changeset | 
					
						
							|  |  |  |   def next | 
					
						
							| 
									
										
										
										
											2008-03-12 20:28:49 +00:00
										 |  |  |     @next ||= Changeset.find(:first, :conditions => ['id > ? AND repository_id = ?', self.id, self.repository_id], :order => 'id ASC') | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-08-26 12:28:15 +00:00
										 |  |  |   # Strips and reencodes a commit log before insertion into the database | 
					
						
							|  |  |  |   def self.normalize_comments(str) | 
					
						
							|  |  |  |     to_utf8(str.to_s.strip) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  |   private | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-08-26 12:28:15 +00:00
										 |  |  |   def self.to_utf8(str) | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  |     return str if /\A[\r\n\t\x20-\x7e]*\Z/n.match(str) # for us-ascii | 
					
						
							|  |  |  |     encoding = Setting.commit_logs_encoding.to_s.strip | 
					
						
							|  |  |  |     unless encoding.blank? || encoding == 'UTF-8' | 
					
						
							|  |  |  |       begin | 
					
						
							|  |  |  |         return Iconv.conv('UTF-8', encoding, str) | 
					
						
							|  |  |  |       rescue Iconv::Failure | 
					
						
							|  |  |  |         # do nothing here | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     str | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  | end |