Sha256: c7ca3425cbb683aedb08d126fe07855d4f291a312e185171dfe2bfedc531de41

Contents?: true

Size: 1.44 KB

Versions: 9

Compression:

Stored size: 1.44 KB

Contents

class Posgra::DSL::Roles
  include Posgra::Logger::Helper
  include Posgra::TemplateHelper
  include Posgra::Utils::Helper

  def self.eval(dsl, path, options = {})
    self.new(path, options) do
      eval(dsl, binding, path)
    end
  end

  def result
    @result.fetch(:users).uniq
    @result
  end

  def initialize(path, options = {}, &block)
    @path = path
    @options = options
    @result = {
      :users => [],
      :users_by_group => {},
    }

    @context = Hashie::Mash.new(
      :path => path,
      :options => options,
      :templates => {},
    )

    instance_eval(&block)
  end

  private

  def template(name, &block)
    @context.templates[name.to_s] = block
  end

  def require(file)
    pgrantfile = (file =~ %r|\A/|) ? file : File.expand_path(File.join(File.dirname(@path), file))

    if File.exist?(pgrantfile)
      instance_eval(File.read(pgrantfile), pgrantfile)
    elsif File.exist?(pgrantfile + '.rb')
      instance_eval(File.read(pgrantfile + '.rb'), pgrantfile + '.rb')
    else
      Kernel.require(file)
    end
  end

  def user(name, &block)
    name = name.to_s

    if matched?(name, @options[:include_role], @options[:exclude_role])
      @result[:users] << name
    end
  end

  def group(name, &block)
    name = name.to_s

    if matched?(name, @options[:include_role], @options[:exclude_role])
      @result[:users_by_group][name] = Posgra::DSL::Roles::Group.new(@context, name, @options, &block).result
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
posgra-0.1.8 lib/posgra/dsl/roles.rb
posgra-0.1.7 lib/posgra/dsl/roles.rb
posgra-0.1.6 lib/posgra/dsl/roles.rb
posgra-0.1.5 lib/posgra/dsl/roles.rb
posgra-0.1.4 lib/posgra/dsl/roles.rb
posgra-0.1.3 lib/posgra/dsl/roles.rb
posgra-0.1.2 lib/posgra/dsl/roles.rb
posgra-0.1.1 lib/posgra/dsl/roles.rb
posgra-0.1.0 lib/posgra/dsl/roles.rb