mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
147 lines
4.5 KiB
Ruby
147 lines
4.5 KiB
Ruby
module RecurringTodos
|
|
class AbstractRecurringTodosBuilder
|
|
attr_reader :mapped_attributes, :pattern
|
|
|
|
def initialize(user, attributes, pattern_class)
|
|
@user = user
|
|
@saved = false
|
|
|
|
@attributes = attributes
|
|
@selector = get_selector(selector_key)
|
|
@filtered_attributes = filter_attributes(@attributes)
|
|
@mapped_attributes = map_attributes(@filtered_attributes)
|
|
|
|
@pattern = pattern_class.new(user)
|
|
@pattern.attributes = @mapped_attributes
|
|
end
|
|
|
|
# build does not add tags. For tags, the recurring todos needs to be saved
|
|
def build
|
|
@recurring_todo = @pattern.build_recurring_todo(@mapped_attributes)
|
|
end
|
|
|
|
def update(recurring_todo)
|
|
@recurring_todo = @pattern.update_recurring_todo(recurring_todo, @mapped_attributes)
|
|
save_recurring_todo
|
|
end
|
|
|
|
def save
|
|
build
|
|
save_recurring_todo
|
|
end
|
|
|
|
def save_project
|
|
save_collection(:project, :project_id)
|
|
end
|
|
|
|
def save_context
|
|
save_collection(:context, :context_id)
|
|
end
|
|
|
|
def saved_recurring_todo
|
|
raise(Exception.new, @recurring_todo.valid? ? "Recurring todo was not saved yet" : "Recurring todos was not saved because of validation errors") unless @saved
|
|
|
|
@recurring_todo
|
|
end
|
|
|
|
def attributes
|
|
@pattern.attributes
|
|
end
|
|
|
|
def errors
|
|
@recurring_todo.try(:errors)
|
|
end
|
|
|
|
def attributes_to_filter
|
|
raise Exception.new, "attributes_to_filter should be overridden"
|
|
end
|
|
|
|
def filter_attributes(attributes)
|
|
# get pattern independend attributes
|
|
filtered_attributes = filter_generic_attributes(attributes)
|
|
# append pattern specific attributes
|
|
attributes_to_filter.each { |key| filtered_attributes[key] = attributes[key] if attributes.key?(key) }
|
|
|
|
filtered_attributes
|
|
end
|
|
|
|
def filter_generic_attributes(attributes)
|
|
return Tracks::AttributeHandler.new(@user, {
|
|
recurring_period: attributes[:recurring_period],
|
|
description: attributes[:description],
|
|
notes: attributes[:notes],
|
|
tag_list: tag_list_or_empty_string(attributes),
|
|
start_from: attributes[:start_from],
|
|
end_date: attributes[:end_date],
|
|
ends_on: attributes[:ends_on],
|
|
number_of_occurrences: attributes[:number_of_occurrences],
|
|
project: attributes[:project],
|
|
context: attributes[:context],
|
|
project_id: attributes[:project_id],
|
|
context_id: attributes[:context_id],
|
|
target: attributes[:recurring_target],
|
|
show_from_delta: attributes[:recurring_show_days_before],
|
|
show_always: attributes[:recurring_show_always]
|
|
})
|
|
end
|
|
|
|
def map_attributes
|
|
# should be overwritten by subclasses to map attributes to activerecord model attributes
|
|
@filtered_attributes
|
|
end
|
|
|
|
# helper method to be used in mapped_attributes in subclasses
|
|
# changes name of key from source_key to key
|
|
def map(mapping, key, source_key)
|
|
mapping[key] = mapping[source_key]
|
|
mapping.except(source_key)
|
|
end
|
|
|
|
# should return period specific selector like yearly_selector or daily_selector
|
|
def selector_key
|
|
raise Exception.new, "selector_key should be overridden in subclass of AbstractRecurringTodosBuilder"
|
|
end
|
|
|
|
def get_selector(key)
|
|
return nil if key.nil?
|
|
|
|
raise Exception.new, "recurrence selector pattern (#{key}) not given" unless @attributes.selector_key_present?(key)
|
|
selector = @attributes[key]
|
|
|
|
raise Exception.new, "unknown recurrence selector pattern: '#{selector}'" unless valid_selector?(selector)
|
|
|
|
@attributes = @attributes.except(key)
|
|
return selector
|
|
end
|
|
|
|
def valid_selector?(selector)
|
|
raise Exception.new, "valid_selector? should be overridden in subclass of AbstractRecurringTodosBuilder"
|
|
end
|
|
|
|
private
|
|
|
|
def save_recurring_todo
|
|
@saved = @recurring_todo.save
|
|
save_tags if @saved
|
|
return @saved
|
|
end
|
|
|
|
def save_tags
|
|
@recurring_todo.tag_with(@filtered_attributes[:tag_list]) if @filtered_attributes[:tag_list].present?
|
|
@recurring_todo.reload
|
|
end
|
|
|
|
def save_collection(collection, collection_id)
|
|
# save object (project or context) and add its id to @mapped_attributes and remove the object from the attributes
|
|
object = @mapped_attributes[collection]
|
|
object.save
|
|
@mapped_attributes[collection_id] = object.id
|
|
@mapped_attributes.except(collection)
|
|
end
|
|
|
|
def tag_list_or_empty_string(attributes)
|
|
# avoid nil
|
|
attributes[:tag_list].blank? ? "" : attributes[:tag_list].strip
|
|
end
|
|
end
|
|
end
|