Skip to content

Instantly share code, notes, and snippets.

@abarringer
Forked from abloom/ejabberd_auth.rb
Created July 15, 2011 18:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save abarringer/1085209 to your computer and use it in GitHub Desktop.
Save abarringer/1085209 to your computer and use it in GitHub Desktop.
ejabberd external authentication in ruby
#!/usr/bin/env ruby
require 'logger'
require 'rest_client'
$stdout.sync = true
$stdin.sync = true
path = "/usr/local/var/log/ejabberd/auth.log"
file = File.open(path, File::WRONLY | File::APPEND | File::CREAT)
file.sync = true
logger = Logger.new(file)
logger.level = Logger::DEBUG
def auth(username, password)
RestClient.post("http://my-rails-app.com/login", :username => username, :password => password)
return true
rescue RestClient::Exception
return false
end
logger.info "Starting ejabberd authentication service"
loop do
begin
$stdin.eof? # wait for input
start = Time.now
msg = $stdin.read(2)
length = msg.unpack('n').first
msg = $stdin.read(length)
cmd, *data = msg.split(":")
logger.info "Incoming Request: '#{cmd}'"
success = case cmd
when "auth"
logger.info "Authenticating #{data[0]}@#{data[1]}"
auth(data[0], data[2])
else
false
end
bool = success ? 1 : 0
$stdout.write [2, bool].pack("nn")
logger.info "Response: #{success ? "success" : "failure"}"
rescue => e
logger.error "#{e.class.name}: #{e.message}"
logger.error e.backtrace.join("\n\t")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment