# encoding: utf-8 # -- # The MIT License (MIT) # # Copyright (C) 2013 Gitorious AS # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #++ require "use_case/outcome" require "use_case/validator" require "ostruct" module UseCase def input_class(input_class) @input_class = input_class end def validator(validator) validators << validator end def pre_condition(pc) pre_conditions << pc end def command(command) @commands ||= [] @commands << command end def builder(builder) @builder = builder end def execute(params) input = @input_class && @input_class.new(params) || params if outcome = verify_pre_conditions(input) return outcome end begin input = @builder.build(input) if @builder rescue Exception => err return PreConditionFailed.new(self, err) end if outcome = validate_params(input) return outcome end result = @commands.inject(input) { |input, command| command.execute(input) } SuccessfulOutcome.new(self, result) end private def verify_pre_conditions(input) pre_conditions.each do |pc| begin return PreConditionFailed.new(self, pc) if !pc.satisfied?(input) rescue Exception => err return PreConditionFailed.new(self, err) end end nil end def validate_params(input) validators.each do |validator| result = validator.call(input) return FailedOutcome.new(self, result) if !result.valid? end nil end def pre_conditions; @pre_conditions ||= []; end def validators; @validators ||= []; end end