@@ -1,436 +1,436 | |||||
1 | # Redmine - project management software |
|
1 | # Redmine - project management software | |
2 | # Copyright (C) 2006-2013 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2013 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 |
|
17 | |||
18 | class ScmFetchError < Exception; end |
|
18 | class ScmFetchError < Exception; end | |
19 |
|
19 | |||
20 | class Repository < ActiveRecord::Base |
|
20 | class Repository < ActiveRecord::Base | |
21 | include Redmine::Ciphering |
|
21 | include Redmine::Ciphering | |
22 | include Redmine::SafeAttributes |
|
22 | include Redmine::SafeAttributes | |
23 |
|
23 | |||
24 | # Maximum length for repository identifiers |
|
24 | # Maximum length for repository identifiers | |
25 | IDENTIFIER_MAX_LENGTH = 255 |
|
25 | IDENTIFIER_MAX_LENGTH = 255 | |
26 |
|
26 | |||
27 | belongs_to :project |
|
27 | belongs_to :project | |
28 | has_many :changesets, :order => "#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC" |
|
28 | has_many :changesets, :order => "#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC" | |
29 | has_many :filechanges, :class_name => 'Change', :through => :changesets |
|
29 | has_many :filechanges, :class_name => 'Change', :through => :changesets | |
30 |
|
30 | |||
31 | serialize :extra_info |
|
31 | serialize :extra_info | |
32 |
|
32 | |||
33 | before_save :check_default |
|
33 | before_save :check_default | |
34 |
|
34 | |||
35 | # Raw SQL to delete changesets and changes in the database |
|
35 | # Raw SQL to delete changesets and changes in the database | |
36 | # has_many :changesets, :dependent => :destroy is too slow for big repositories |
|
36 | # has_many :changesets, :dependent => :destroy is too slow for big repositories | |
37 | before_destroy :clear_changesets |
|
37 | before_destroy :clear_changesets | |
38 |
|
38 | |||
39 | validates_length_of :password, :maximum => 255, :allow_nil => true |
|
39 | validates_length_of :password, :maximum => 255, :allow_nil => true | |
40 | validates_length_of :identifier, :maximum => IDENTIFIER_MAX_LENGTH, :allow_blank => true |
|
40 | validates_length_of :identifier, :maximum => IDENTIFIER_MAX_LENGTH, :allow_blank => true | |
41 | validates_presence_of :identifier, :unless => Proc.new { |r| r.is_default? || r.set_as_default? } |
|
41 | validates_presence_of :identifier, :unless => Proc.new { |r| r.is_default? || r.set_as_default? } | |
42 | validates_uniqueness_of :identifier, :scope => :project_id, :allow_blank => true |
|
42 | validates_uniqueness_of :identifier, :scope => :project_id, :allow_blank => true | |
43 | validates_exclusion_of :identifier, :in => %w(show entry raw changes annotate diff show stats graph) |
|
43 | validates_exclusion_of :identifier, :in => %w(show entry raw changes annotate diff show stats graph) | |
44 | # donwcase letters, digits, dashes, underscores but not digits only |
|
44 | # donwcase letters, digits, dashes, underscores but not digits only | |
45 | validates_format_of :identifier, :with => /\A(?!\d+$)[a-z0-9\-_]*\z/, :allow_blank => true |
|
45 | validates_format_of :identifier, :with => /\A(?!\d+$)[a-z0-9\-_]*\z/, :allow_blank => true | |
46 | # Checks if the SCM is enabled when creating a repository |
|
46 | # Checks if the SCM is enabled when creating a repository | |
47 | validate :repo_create_validation, :on => :create |
|
47 | validate :repo_create_validation, :on => :create | |
48 |
|
48 | |||
49 | safe_attributes 'identifier', |
|
49 | safe_attributes 'identifier', | |
50 | 'login', |
|
50 | 'login', | |
51 | 'password', |
|
51 | 'password', | |
52 | 'path_encoding', |
|
52 | 'path_encoding', | |
53 | 'log_encoding', |
|
53 | 'log_encoding', | |
54 | 'is_default' |
|
54 | 'is_default' | |
55 |
|
55 | |||
56 | safe_attributes 'url', |
|
56 | safe_attributes 'url', | |
57 | :if => lambda {|repository, user| repository.new_record?} |
|
57 | :if => lambda {|repository, user| repository.new_record?} | |
58 |
|
58 | |||
59 | def repo_create_validation |
|
59 | def repo_create_validation | |
60 | unless Setting.enabled_scm.include?(self.class.name.demodulize) |
|
60 | unless Setting.enabled_scm.include?(self.class.name.demodulize) | |
61 | errors.add(:type, :invalid) |
|
61 | errors.add(:type, :invalid) | |
62 | end |
|
62 | end | |
63 | end |
|
63 | end | |
64 |
|
64 | |||
65 | def self.human_attribute_name(attribute_key_name, *args) |
|
65 | def self.human_attribute_name(attribute_key_name, *args) | |
66 | attr_name = attribute_key_name.to_s |
|
66 | attr_name = attribute_key_name.to_s | |
67 | if attr_name == "log_encoding" |
|
67 | if attr_name == "log_encoding" | |
68 | attr_name = "commit_logs_encoding" |
|
68 | attr_name = "commit_logs_encoding" | |
69 | end |
|
69 | end | |
70 | super(attr_name, *args) |
|
70 | super(attr_name, *args) | |
71 | end |
|
71 | end | |
72 |
|
72 | |||
73 | # Removes leading and trailing whitespace |
|
73 | # Removes leading and trailing whitespace | |
74 | def url=(arg) |
|
74 | def url=(arg) | |
75 | write_attribute(:url, arg ? arg.to_s.strip : nil) |
|
75 | write_attribute(:url, arg ? arg.to_s.strip : nil) | |
76 | end |
|
76 | end | |
77 |
|
77 | |||
78 | # Removes leading and trailing whitespace |
|
78 | # Removes leading and trailing whitespace | |
79 | def root_url=(arg) |
|
79 | def root_url=(arg) | |
80 | write_attribute(:root_url, arg ? arg.to_s.strip : nil) |
|
80 | write_attribute(:root_url, arg ? arg.to_s.strip : nil) | |
81 | end |
|
81 | end | |
82 |
|
82 | |||
83 | def password |
|
83 | def password | |
84 | read_ciphered_attribute(:password) |
|
84 | read_ciphered_attribute(:password) | |
85 | end |
|
85 | end | |
86 |
|
86 | |||
87 | def password=(arg) |
|
87 | def password=(arg) | |
88 | write_ciphered_attribute(:password, arg) |
|
88 | write_ciphered_attribute(:password, arg) | |
89 | end |
|
89 | end | |
90 |
|
90 | |||
91 | def scm_adapter |
|
91 | def scm_adapter | |
92 | self.class.scm_adapter_class |
|
92 | self.class.scm_adapter_class | |
93 | end |
|
93 | end | |
94 |
|
94 | |||
95 | def scm |
|
95 | def scm | |
96 | unless @scm |
|
96 | unless @scm | |
97 | @scm = self.scm_adapter.new(url, root_url, |
|
97 | @scm = self.scm_adapter.new(url, root_url, | |
98 | login, password, path_encoding) |
|
98 | login, password, path_encoding) | |
99 | if root_url.blank? && @scm.root_url.present? |
|
99 | if root_url.blank? && @scm.root_url.present? | |
100 | update_attribute(:root_url, @scm.root_url) |
|
100 | update_attribute(:root_url, @scm.root_url) | |
101 | end |
|
101 | end | |
102 | end |
|
102 | end | |
103 | @scm |
|
103 | @scm | |
104 | end |
|
104 | end | |
105 |
|
105 | |||
106 | def scm_name |
|
106 | def scm_name | |
107 | self.class.scm_name |
|
107 | self.class.scm_name | |
108 | end |
|
108 | end | |
109 |
|
109 | |||
110 | def name |
|
110 | def name | |
111 | if identifier.present? |
|
111 | if identifier.present? | |
112 | identifier |
|
112 | identifier | |
113 | elsif is_default? |
|
113 | elsif is_default? | |
114 | l(:field_repository_is_default) |
|
114 | l(:field_repository_is_default) | |
115 | else |
|
115 | else | |
116 | scm_name |
|
116 | scm_name | |
117 | end |
|
117 | end | |
118 | end |
|
118 | end | |
119 |
|
119 | |||
120 | def identifier=(identifier) |
|
120 | def identifier=(identifier) | |
121 | super unless identifier_frozen? |
|
121 | super unless identifier_frozen? | |
122 | end |
|
122 | end | |
123 |
|
123 | |||
124 | def identifier_frozen? |
|
124 | def identifier_frozen? | |
125 | errors[:identifier].blank? && !(new_record? || identifier.blank?) |
|
125 | errors[:identifier].blank? && !(new_record? || identifier.blank?) | |
126 | end |
|
126 | end | |
127 |
|
127 | |||
128 | def identifier_param |
|
128 | def identifier_param | |
129 | if is_default? |
|
129 | if is_default? | |
130 | nil |
|
130 | nil | |
131 | elsif identifier.present? |
|
131 | elsif identifier.present? | |
132 | identifier |
|
132 | identifier | |
133 | else |
|
133 | else | |
134 | id.to_s |
|
134 | id.to_s | |
135 | end |
|
135 | end | |
136 | end |
|
136 | end | |
137 |
|
137 | |||
138 | def <=>(repository) |
|
138 | def <=>(repository) | |
139 | if is_default? |
|
139 | if is_default? | |
140 | -1 |
|
140 | -1 | |
141 | elsif repository.is_default? |
|
141 | elsif repository.is_default? | |
142 | 1 |
|
142 | 1 | |
143 | else |
|
143 | else | |
144 | identifier.to_s <=> repository.identifier.to_s |
|
144 | identifier.to_s <=> repository.identifier.to_s | |
145 | end |
|
145 | end | |
146 | end |
|
146 | end | |
147 |
|
147 | |||
148 | def self.find_by_identifier_param(param) |
|
148 | def self.find_by_identifier_param(param) | |
149 | if param.to_s =~ /^\d+$/ |
|
149 | if param.to_s =~ /^\d+$/ | |
150 | find_by_id(param) |
|
150 | find_by_id(param) | |
151 | else |
|
151 | else | |
152 | find_by_identifier(param) |
|
152 | find_by_identifier(param) | |
153 | end |
|
153 | end | |
154 | end |
|
154 | end | |
155 |
|
155 | |||
156 | def merge_extra_info(arg) |
|
156 | def merge_extra_info(arg) | |
157 | h = extra_info || {} |
|
157 | h = extra_info || {} | |
158 | return h if arg.nil? |
|
158 | return h if arg.nil? | |
159 | h.merge!(arg) |
|
159 | h.merge!(arg) | |
160 | write_attribute(:extra_info, h) |
|
160 | write_attribute(:extra_info, h) | |
161 | end |
|
161 | end | |
162 |
|
162 | |||
163 | def report_last_commit |
|
163 | def report_last_commit | |
164 | true |
|
164 | true | |
165 | end |
|
165 | end | |
166 |
|
166 | |||
167 | def supports_cat? |
|
167 | def supports_cat? | |
168 | scm.supports_cat? |
|
168 | scm.supports_cat? | |
169 | end |
|
169 | end | |
170 |
|
170 | |||
171 | def supports_annotate? |
|
171 | def supports_annotate? | |
172 | scm.supports_annotate? |
|
172 | scm.supports_annotate? | |
173 | end |
|
173 | end | |
174 |
|
174 | |||
175 | def supports_all_revisions? |
|
175 | def supports_all_revisions? | |
176 | true |
|
176 | true | |
177 | end |
|
177 | end | |
178 |
|
178 | |||
179 | def supports_directory_revisions? |
|
179 | def supports_directory_revisions? | |
180 | false |
|
180 | false | |
181 | end |
|
181 | end | |
182 |
|
182 | |||
183 | def supports_revision_graph? |
|
183 | def supports_revision_graph? | |
184 | false |
|
184 | false | |
185 | end |
|
185 | end | |
186 |
|
186 | |||
187 | def entry(path=nil, identifier=nil) |
|
187 | def entry(path=nil, identifier=nil) | |
188 | scm.entry(path, identifier) |
|
188 | scm.entry(path, identifier) | |
189 | end |
|
189 | end | |
190 |
|
190 | |||
191 | def entries(path=nil, identifier=nil) |
|
191 | def entries(path=nil, identifier=nil) | |
192 | entries = scm.entries(path, identifier) |
|
192 | entries = scm.entries(path, identifier) | |
193 | load_entries_changesets(entries) |
|
193 | load_entries_changesets(entries) | |
194 | entries |
|
194 | entries | |
195 | end |
|
195 | end | |
196 |
|
196 | |||
197 | def branches |
|
197 | def branches | |
198 | scm.branches |
|
198 | scm.branches | |
199 | end |
|
199 | end | |
200 |
|
200 | |||
201 | def tags |
|
201 | def tags | |
202 | scm.tags |
|
202 | scm.tags | |
203 | end |
|
203 | end | |
204 |
|
204 | |||
205 | def default_branch |
|
205 | def default_branch | |
206 | nil |
|
206 | nil | |
207 | end |
|
207 | end | |
208 |
|
208 | |||
209 | def properties(path, identifier=nil) |
|
209 | def properties(path, identifier=nil) | |
210 | scm.properties(path, identifier) |
|
210 | scm.properties(path, identifier) | |
211 | end |
|
211 | end | |
212 |
|
212 | |||
213 | def cat(path, identifier=nil) |
|
213 | def cat(path, identifier=nil) | |
214 | scm.cat(path, identifier) |
|
214 | scm.cat(path, identifier) | |
215 | end |
|
215 | end | |
216 |
|
216 | |||
217 | def diff(path, rev, rev_to) |
|
217 | def diff(path, rev, rev_to) | |
218 | scm.diff(path, rev, rev_to) |
|
218 | scm.diff(path, rev, rev_to) | |
219 | end |
|
219 | end | |
220 |
|
220 | |||
221 | def diff_format_revisions(cs, cs_to, sep=':') |
|
221 | def diff_format_revisions(cs, cs_to, sep=':') | |
222 | text = "" |
|
222 | text = "" | |
223 | text << cs_to.format_identifier + sep if cs_to |
|
223 | text << cs_to.format_identifier + sep if cs_to | |
224 | text << cs.format_identifier if cs |
|
224 | text << cs.format_identifier if cs | |
225 | text |
|
225 | text | |
226 | end |
|
226 | end | |
227 |
|
227 | |||
228 | # Returns a path relative to the url of the repository |
|
228 | # Returns a path relative to the url of the repository | |
229 | def relative_path(path) |
|
229 | def relative_path(path) | |
230 | path |
|
230 | path | |
231 | end |
|
231 | end | |
232 |
|
232 | |||
233 | # Finds and returns a revision with a number or the beginning of a hash |
|
233 | # Finds and returns a revision with a number or the beginning of a hash | |
234 | def find_changeset_by_name(name) |
|
234 | def find_changeset_by_name(name) | |
235 | return nil if name.blank? |
|
235 | return nil if name.blank? | |
236 | s = name.to_s |
|
236 | s = name.to_s | |
237 | if s.match(/^\d*$/) |
|
237 | if s.match(/^\d*$/) | |
238 | changesets.where("revision = ?", s).first |
|
238 | changesets.where("revision = ?", s).first | |
239 | else |
|
239 | else | |
240 | changesets.where("revision LIKE ?", s + '%').first |
|
240 | changesets.where("revision LIKE ?", s + '%').first | |
241 | end |
|
241 | end | |
242 | end |
|
242 | end | |
243 |
|
243 | |||
244 | def latest_changeset |
|
244 | def latest_changeset | |
245 | @latest_changeset ||= changesets.first |
|
245 | @latest_changeset ||= changesets.first | |
246 | end |
|
246 | end | |
247 |
|
247 | |||
248 | # Returns the latest changesets for +path+ |
|
248 | # Returns the latest changesets for +path+ | |
249 | # Default behaviour is to search in cached changesets |
|
249 | # Default behaviour is to search in cached changesets | |
250 | def latest_changesets(path, rev, limit=10) |
|
250 | def latest_changesets(path, rev, limit=10) | |
251 | if path.blank? |
|
251 | if path.blank? | |
252 | changesets. |
|
252 | changesets. | |
253 | reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). |
|
253 | reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). | |
254 | limit(limit). |
|
254 | limit(limit). | |
255 | preload(:user). |
|
255 | preload(:user). | |
256 | all |
|
256 | all | |
257 | else |
|
257 | else | |
258 | filechanges. |
|
258 | filechanges. | |
259 | where("path = ?", path.with_leading_slash). |
|
259 | where("path = ?", path.with_leading_slash). | |
260 | reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). |
|
260 | reorder("#{Changeset.table_name}.committed_on DESC, #{Changeset.table_name}.id DESC"). | |
261 | limit(limit). |
|
261 | limit(limit). | |
262 | preload(:changeset => :user). |
|
262 | preload(:changeset => :user). | |
263 | collect(&:changeset) |
|
263 | collect(&:changeset) | |
264 | end |
|
264 | end | |
265 | end |
|
265 | end | |
266 |
|
266 | |||
267 | def scan_changesets_for_issue_ids |
|
267 | def scan_changesets_for_issue_ids | |
268 | self.changesets.each(&:scan_comment_for_issue_ids) |
|
268 | self.changesets.each(&:scan_comment_for_issue_ids) | |
269 | end |
|
269 | end | |
270 |
|
270 | |||
271 | # Returns an array of committers usernames and associated user_id |
|
271 | # Returns an array of committers usernames and associated user_id | |
272 | def committers |
|
272 | def committers | |
273 | @committers ||= Changeset.connection.select_rows( |
|
273 | @committers ||= Changeset.connection.select_rows( | |
274 | "SELECT DISTINCT committer, user_id FROM #{Changeset.table_name} WHERE repository_id = #{id}") |
|
274 | "SELECT DISTINCT committer, user_id FROM #{Changeset.table_name} WHERE repository_id = #{id}") | |
275 | end |
|
275 | end | |
276 |
|
276 | |||
277 | # Maps committers username to a user ids |
|
277 | # Maps committers username to a user ids | |
278 | def committer_ids=(h) |
|
278 | def committer_ids=(h) | |
279 | if h.is_a?(Hash) |
|
279 | if h.is_a?(Hash) | |
280 | committers.each do |committer, user_id| |
|
280 | committers.each do |committer, user_id| | |
281 | new_user_id = h[committer] |
|
281 | new_user_id = h[committer] | |
282 | if new_user_id && (new_user_id.to_i != user_id.to_i) |
|
282 | if new_user_id && (new_user_id.to_i != user_id.to_i) | |
283 | new_user_id = (new_user_id.to_i > 0 ? new_user_id.to_i : nil) |
|
283 | new_user_id = (new_user_id.to_i > 0 ? new_user_id.to_i : nil) | |
284 | Changeset.where(["repository_id = ? AND committer = ?", id, committer]). |
|
284 | Changeset.where(["repository_id = ? AND committer = ?", id, committer]). | |
285 | update_all("user_id = #{new_user_id.nil? ? 'NULL' : new_user_id}") |
|
285 | update_all("user_id = #{new_user_id.nil? ? 'NULL' : new_user_id}") | |
286 | end |
|
286 | end | |
287 | end |
|
287 | end | |
288 | @committers = nil |
|
288 | @committers = nil | |
289 | @found_committer_users = nil |
|
289 | @found_committer_users = nil | |
290 | true |
|
290 | true | |
291 | else |
|
291 | else | |
292 | false |
|
292 | false | |
293 | end |
|
293 | end | |
294 | end |
|
294 | end | |
295 |
|
295 | |||
296 | # Returns the Redmine User corresponding to the given +committer+ |
|
296 | # Returns the Redmine User corresponding to the given +committer+ | |
297 | # It will return nil if the committer is not yet mapped and if no User |
|
297 | # It will return nil if the committer is not yet mapped and if no User | |
298 | # with the same username or email was found |
|
298 | # with the same username or email was found | |
299 | def find_committer_user(committer) |
|
299 | def find_committer_user(committer) | |
300 | unless committer.blank? |
|
300 | unless committer.blank? | |
301 | @found_committer_users ||= {} |
|
301 | @found_committer_users ||= {} | |
302 | return @found_committer_users[committer] if @found_committer_users.has_key?(committer) |
|
302 | return @found_committer_users[committer] if @found_committer_users.has_key?(committer) | |
303 |
|
303 | |||
304 | user = nil |
|
304 | user = nil | |
305 | c = changesets.where(:committer => committer).includes(:user).first |
|
305 | c = changesets.where(:committer => committer).includes(:user).first | |
306 | if c && c.user |
|
306 | if c && c.user | |
307 | user = c.user |
|
307 | user = c.user | |
308 | elsif committer.strip =~ /^([^<]+)(<(.*)>)?$/ |
|
308 | elsif committer.strip =~ /^([^<]+)(<(.*)>)?$/ | |
309 | username, email = $1.strip, $3 |
|
309 | username, email = $1.strip, $3 | |
310 | u = User.find_by_login(username) |
|
310 | u = User.find_by_login(username) | |
311 | u ||= User.find_by_mail(email) unless email.blank? |
|
311 | u ||= User.find_by_mail(email) unless email.blank? | |
312 | user = u |
|
312 | user = u | |
313 | end |
|
313 | end | |
314 | @found_committer_users[committer] = user |
|
314 | @found_committer_users[committer] = user | |
315 | user |
|
315 | user | |
316 | end |
|
316 | end | |
317 | end |
|
317 | end | |
318 |
|
318 | |||
319 | def repo_log_encoding |
|
319 | def repo_log_encoding | |
320 | encoding = log_encoding.to_s.strip |
|
320 | encoding = log_encoding.to_s.strip | |
321 | encoding.blank? ? 'UTF-8' : encoding |
|
321 | encoding.blank? ? 'UTF-8' : encoding | |
322 | end |
|
322 | end | |
323 |
|
323 | |||
324 | # Fetches new changesets for all repositories of active projects |
|
324 | # Fetches new changesets for all repositories of active projects | |
325 | # Can be called periodically by an external script |
|
325 | # Can be called periodically by an external script | |
326 | # eg. ruby script/runner "Repository.fetch_changesets" |
|
326 | # eg. ruby script/runner "Repository.fetch_changesets" | |
327 | def self.fetch_changesets |
|
327 | def self.fetch_changesets | |
328 | Project.active.has_module(:repository).all.each do |project| |
|
328 | Project.active.has_module(:repository).all.each do |project| | |
329 | project.repositories.each do |repository| |
|
329 | project.repositories.each do |repository| | |
330 | begin |
|
330 | begin | |
331 | repository.fetch_changesets |
|
331 | repository.fetch_changesets | |
332 | rescue Redmine::Scm::Adapters::CommandFailed => e |
|
332 | rescue Redmine::Scm::Adapters::CommandFailed => e | |
333 | logger.error "scm: error during fetching changesets: #{e.message}" |
|
333 | logger.error "scm: error during fetching changesets: #{e.message}" | |
334 | end |
|
334 | end | |
335 | end |
|
335 | end | |
336 | end |
|
336 | end | |
337 | end |
|
337 | end | |
338 |
|
338 | |||
339 | # scan changeset comments to find related and fixed issues for all repositories |
|
339 | # scan changeset comments to find related and fixed issues for all repositories | |
340 | def self.scan_changesets_for_issue_ids |
|
340 | def self.scan_changesets_for_issue_ids | |
341 | all.each(&:scan_changesets_for_issue_ids) |
|
341 | all.each(&:scan_changesets_for_issue_ids) | |
342 | end |
|
342 | end | |
343 |
|
343 | |||
344 | def self.scm_name |
|
344 | def self.scm_name | |
345 | 'Abstract' |
|
345 | 'Abstract' | |
346 | end |
|
346 | end | |
347 |
|
347 | |||
348 | def self.available_scm |
|
348 | def self.available_scm | |
349 | subclasses.collect {|klass| [klass.scm_name, klass.name]} |
|
349 | subclasses.collect {|klass| [klass.scm_name, klass.name]} | |
350 | end |
|
350 | end | |
351 |
|
351 | |||
352 | def self.factory(klass_name, *args) |
|
352 | def self.factory(klass_name, *args) | |
353 | klass = "Repository::#{klass_name}".constantize |
|
353 | klass = "Repository::#{klass_name}".constantize | |
354 | klass.new(*args) |
|
354 | klass.new(*args) | |
355 | rescue |
|
355 | rescue | |
356 | nil |
|
356 | nil | |
357 | end |
|
357 | end | |
358 |
|
358 | |||
359 | def self.scm_adapter_class |
|
359 | def self.scm_adapter_class | |
360 | nil |
|
360 | nil | |
361 | end |
|
361 | end | |
362 |
|
362 | |||
363 | def self.scm_command |
|
363 | def self.scm_command | |
364 | ret = "" |
|
364 | ret = "" | |
365 | begin |
|
365 | begin | |
366 | ret = self.scm_adapter_class.client_command if self.scm_adapter_class |
|
366 | ret = self.scm_adapter_class.client_command if self.scm_adapter_class | |
367 | rescue Exception => e |
|
367 | rescue Exception => e | |
368 | logger.error "scm: error during get command: #{e.message}" |
|
368 | logger.error "scm: error during get command: #{e.message}" | |
369 | end |
|
369 | end | |
370 | ret |
|
370 | ret | |
371 | end |
|
371 | end | |
372 |
|
372 | |||
373 | def self.scm_version_string |
|
373 | def self.scm_version_string | |
374 | ret = "" |
|
374 | ret = "" | |
375 | begin |
|
375 | begin | |
376 | ret = self.scm_adapter_class.client_version_string if self.scm_adapter_class |
|
376 | ret = self.scm_adapter_class.client_version_string if self.scm_adapter_class | |
377 | rescue Exception => e |
|
377 | rescue Exception => e | |
378 | logger.error "scm: error during get version string: #{e.message}" |
|
378 | logger.error "scm: error during get version string: #{e.message}" | |
379 | end |
|
379 | end | |
380 | ret |
|
380 | ret | |
381 | end |
|
381 | end | |
382 |
|
382 | |||
383 | def self.scm_available |
|
383 | def self.scm_available | |
384 | ret = false |
|
384 | ret = false | |
385 | begin |
|
385 | begin | |
386 | ret = self.scm_adapter_class.client_available if self.scm_adapter_class |
|
386 | ret = self.scm_adapter_class.client_available if self.scm_adapter_class | |
387 | rescue Exception => e |
|
387 | rescue Exception => e | |
388 | logger.error "scm: error during get scm available: #{e.message}" |
|
388 | logger.error "scm: error during get scm available: #{e.message}" | |
389 | end |
|
389 | end | |
390 | ret |
|
390 | ret | |
391 | end |
|
391 | end | |
392 |
|
392 | |||
393 | def set_as_default? |
|
393 | def set_as_default? | |
394 | new_record? && project && Repository.where(:project_id => project.id).empty? |
|
394 | new_record? && project && Repository.where(:project_id => project.id).empty? | |
395 | end |
|
395 | end | |
396 |
|
396 | |||
397 | protected |
|
397 | protected | |
398 |
|
398 | |||
399 | def check_default |
|
399 | def check_default | |
400 | if !is_default? && set_as_default? |
|
400 | if !is_default? && set_as_default? | |
401 | self.is_default = true |
|
401 | self.is_default = true | |
402 | end |
|
402 | end | |
403 | if is_default? && is_default_changed? |
|
403 | if is_default? && is_default_changed? | |
404 | Repository.where(["project_id = ?", project_id]).update_all(["is_default = ?", false]) |
|
404 | Repository.where(["project_id = ?", project_id]).update_all(["is_default = ?", false]) | |
405 | end |
|
405 | end | |
406 | end |
|
406 | end | |
407 |
|
407 | |||
408 | def load_entries_changesets(entries) |
|
408 | def load_entries_changesets(entries) | |
409 | if entries |
|
409 | if entries | |
410 | entries.each do |entry| |
|
410 | entries.each do |entry| | |
411 | if entry.lastrev && entry.lastrev.identifier |
|
411 | if entry.lastrev && entry.lastrev.identifier | |
412 | entry.changeset = find_changeset_by_name(entry.lastrev.identifier) |
|
412 | entry.changeset = find_changeset_by_name(entry.lastrev.identifier) | |
413 | end |
|
413 | end | |
414 | end |
|
414 | end | |
415 | end |
|
415 | end | |
416 | end |
|
416 | end | |
417 |
|
417 | |||
418 | private |
|
418 | private | |
419 |
|
419 | |||
420 | # Deletes repository data |
|
420 | # Deletes repository data | |
421 | def clear_changesets |
|
421 | def clear_changesets | |
422 | cs = Changeset.table_name |
|
422 | cs = Changeset.table_name | |
423 | ch = Change.table_name |
|
423 | ch = Change.table_name | |
424 | ci = "#{table_name_prefix}changesets_issues#{table_name_suffix}" |
|
424 | ci = "#{table_name_prefix}changesets_issues#{table_name_suffix}" | |
425 | cp = "#{table_name_prefix}changeset_parents#{table_name_suffix}" |
|
425 | cp = "#{table_name_prefix}changeset_parents#{table_name_suffix}" | |
426 |
|
426 | |||
427 | connection.delete("DELETE FROM #{ch} WHERE #{ch}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") |
|
427 | ActiveRecord::Base.connection.delete("DELETE FROM #{ch} WHERE #{ch}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") | |
428 | connection.delete("DELETE FROM #{ci} WHERE #{ci}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") |
|
428 | ActiveRecord::Base.connection.delete("DELETE FROM #{ci} WHERE #{ci}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") | |
429 | connection.delete("DELETE FROM #{cp} WHERE #{cp}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") |
|
429 | ActiveRecord::Base.connection.delete("DELETE FROM #{cp} WHERE #{cp}.changeset_id IN (SELECT #{cs}.id FROM #{cs} WHERE #{cs}.repository_id = #{id})") | |
430 | connection.delete("DELETE FROM #{cs} WHERE #{cs}.repository_id = #{id}") |
|
430 | ActiveRecord::Base.connection.delete("DELETE FROM #{cs} WHERE #{cs}.repository_id = #{id}") | |
431 | clear_extra_info_of_changesets |
|
431 | clear_extra_info_of_changesets | |
432 | end |
|
432 | end | |
433 |
|
433 | |||
434 | def clear_extra_info_of_changesets |
|
434 | def clear_extra_info_of_changesets | |
435 | end |
|
435 | end | |
436 | end |
|
436 | end |
General Comments 0
You need to be logged in to leave comments.
Login now