Sha256: 0be115cae376144057aeb023008038e647c12b20d6e4e575872d6f95e2c98354

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

require_dependency "renalware/clinical"

module Renalware
  module Clinical
    class CreateAllergy

      def initialize(patient, user)
        @patient = patient
        @user = user
      end

      def call(params)
        allergy = build_allergy(params)
        yield allergy if block_given?
        if allergy.valid?
          save_allergy(allergy)
          Success.new(allergy)
        else
          Failure.new(allergy)
        end
      end

      private

      attr_reader :patient, :user

      def build_allergy(params)
        params[:by] = user
        params[:recorded_at] ||= Time.zone.now
        patient.allergies.build(params)
      end

      def save_allergy(allergy)
        Allergy.transaction do
          allergy.save!
          unless patient.allergy_status.try!(:known_allergies?)
            patient.allergy_status = :known_allergies
            patient.allergy_status_updated_at = Time.zone.now
            patient.by = user
            patient.save!
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta8 app/models/renalware/clinical/create_allergy.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/clinical/create_allergy.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/clinical/create_allergy.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/clinical/create_allergy.rb
renalware-core-2.0.0.pre.beta4 app/models/renalware/clinical/create_allergy.rb