Class: StompServer::StompAuth

Inherits:
Object
  • Object
show all
Defined in:
lib/stomp_server/stomp_auth.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(passfile = '.passwd') ⇒ StompAuth

Returns a new instance of StompAuth.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/stomp_server/stomp_auth.rb', line 6

def initialize(passfile='.passwd')
  @passfile = passfile
  @authorized = Hash.new
  if File.exists?(@passfile)
    file = File.read(@passfile)
    file.split(/\n/).each do |data|
      next if data =~/^\s*#/
      data.gsub(/\s/,'')
      if data =~ /^\s*(\S+)\s*:\s*(.*?)\s*$/
        @authorized[$1] = $2
      end
    end
  end
  puts "Authorized users #{@authorized.keys}" if $DEBUG
end

Instance Attribute Details

#authorizedObject

Returns the value of attribute authorized.



4
5
6
# File 'lib/stomp_server/stomp_auth.rb', line 4

def authorized
  @authorized
end