| 
									
										
										
										
											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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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-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_numericality_of :revision, :only_integer => true | 
					
						
							|  |  |  |   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
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2007-08-25 14:41:55 +00:00
										 |  |  |   def comments=(comment) | 
					
						
							|  |  |  |     write_attribute(:comments, comment.strip) | 
					
						
							|  |  |  |   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
										 |  |  |    | 
					
						
							|  |  |  |   def after_create | 
					
						
							|  |  |  |     scan_comment_for_issue_ids | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   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 | 
					
						
							|  |  |  |     ref_keywords = Setting.commit_ref_keywords.downcase.split(",") | 
					
						
							|  |  |  |     # keywords used to fix issues | 
					
						
							|  |  |  |     fix_keywords = Setting.commit_fix_keywords.downcase.split(",") | 
					
						
							|  |  |  |     # status applied | 
					
						
							|  |  |  |     fix_status = IssueStatus.find_by_id(Setting.commit_fix_status_id) | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     kw_regexp = (ref_keywords + fix_keywords).collect{|kw| Regexp.escape(kw.strip)}.join("|") | 
					
						
							|  |  |  |     return if kw_regexp.blank? | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     # remove any associated issues | 
					
						
							|  |  |  |     self.issues.clear | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											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| | 
					
						
							|  |  |  |           # don't change the status is the issue is already closed | 
					
						
							|  |  |  |           next if issue.status.is_closed? | 
					
						
							|  |  |  |           issue.status = fix_status | 
					
						
							|  |  |  |           issue.save | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       self.issues << target_issues | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-03-25 12:12:15 +00:00
										 |  |  | end |