Extract quote parsing into a method

This commit is contained in:
Navin 2013-05-22 21:38:45 +02:00
parent 45361934b9
commit ef93512de8
1 changed files with 10 additions and 6 deletions

View File

@ -421,12 +421,6 @@ class Post < ActiveRecord::Base
self.quoted_post_numbers = []
# Create relationships for the quotes
raw.scan(/\[quote=\"([^"]+)"\]/).each do |m|
if m.present?
args = {}
m.first.scan(/([a-z]+)\:(\d+)/).each do |arg|
args[arg[0].to_sym] = arg[1].to_i
end
if args[:topic].present?
# If the topic attribute is present, ensure it's the same topic
@ -436,6 +430,8 @@ class Post < ActiveRecord::Base
end
end
raw.scan(/\[quote=\"([^"]+)"\]/).each do |quote|
args = parse_quote_into_arguments(quote)
end
self.quoted_post_numbers.uniq!
@ -485,4 +481,12 @@ class Post < ActiveRecord::Base
def add_error_if_count_exceeded(key_for_translation, current_count, max_count)
errors.add(:base, I18n.t(key_for_translation, count: max_count)) if current_count > max_count
end
def parse_quote_into_arguments(quote)
return {} unless quote.present?
args = {}
quote.first.scan(/([a-z]+)\:(\d+)/).each do |arg|
args[arg[0].to_sym] = arg[1].to_i
end
args
end
end