Sha256: d502bc03ec56e074b81d6e9e937307e7ceb080bf571ebe39c833475f48c5c174

Contents?: true

Size: 1.33 KB

Versions: 5

Compression:

Stored size: 1.33 KB

Contents

module Integrity
  class Notifier
    include DataMapper::Resource
    
    property :id,      Integer,  :serial => true
    property :name,    String,   :nullable => false
    property :config,  Yaml,     :nullable => false, :lazy => false
    
    belongs_to :project, :class_name => "Integrity::Project"
    
    validates_is_unique :name, :scope => :project_id
    validates_present :project_id
    
    def self.available
      @available ||= constants.map {|name| const_get(name) }.select do |notifier|
        notifier.respond_to?(:to_haml) && notifier.respond_to?(:notify_of_build)
      end - [Notifier::Base]
    end
    
    def self.enable_notifiers(project, enabled, config={})
      all.destroy!
      list_of_enabled_notifiers(enabled).each do |name|
        create! :project_id => project, :name => name, :config => config[name]
      end
    end
    
    def notify_of_build(build)
      to_const.notify_of_build(build, config)
    end
    
    private
      
      def to_const
        self.class.module_eval(name)
      end
      
      def self.list_of_enabled_notifiers(names)
        case names
          when Array then names
          when NilClass then []
          else [names]
        end
      end
  end
end

require File.dirname(__FILE__) / 'notifier' / 'base'

Dir["#{File.dirname(__FILE__)}/notifier/*.rb"].each &method(:require)

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
foca-integrity-0.1.0 lib/integrity/notifier.rb
foca-integrity-0.1.1 lib/integrity/notifier.rb
foca-integrity-0.1.2 lib/integrity/notifier.rb
foca-integrity-0.1.3 lib/integrity/notifier.rb
giraffesoft-integrity-0.1.4 lib/integrity/notifier.rb