Sha256: 06c0220e666f3ce1091be7b117f267b9967a9a69f0bf5638f0442b22b4e02b22

Contents?: true

Size: 1.44 KB

Versions: 2

Compression:

Stored size: 1.44 KB

Contents

class Gratan::DSL::Context
  include Gratan::DSL::Validator
  include Gratan::Logger::Helper

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

  attr_reader :result

  def initialize(path, options = {}, &block)
    @path = path
    @options = options
    @result = {}
    instance_eval(&block)
  end

  private

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

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

  def user(name, host_or_array, options = {}, &block)
    name = name.to_s
    hosts = [host_or_array].flatten.map {|i| i.to_s }

    hosts.each do |host|
      options ||= {}

      __validate("User `#{name}@#{host}` is already defined") do
        not @result.has_key?([name, host])
      end

      if @options[:enable_expired] and (expired = options.delete(:expired))
        expired = Time.parse(expired)

        if Time.new >= expired
          log(:warn, "User `#{name}@#{host}` has expired", :color => :yellow)
          return
        end
      end

      @result[[name, host]] = {
        :objects => Gratan::DSL::Context::User.new(name, host, &block).result,
        :options => options,
      }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gratan-0.1.7 lib/gratan/dsl/context.rb
gratan-0.1.6 lib/gratan/dsl/context.rb