sinatra/examples/chat.rb

63 lines
1.3 KiB
Ruby
Raw Normal View History

2011-12-30 11:00:40 +00:00
#!/usr/bin/env ruby -I ../lib -I lib
# coding: utf-8
require_relative 'rainbows'
2011-12-30 11:00:40 +00:00
require 'sinatra'
set :server, :rainbows
2011-12-30 11:00:40 +00:00
connections = []
get '/' do
halt erb(:login) unless params[:user]
erb :chat, :locals => { :user => params[:user].gsub(/\W/, '') }
end
get '/stream', :provides => 'text/event-stream' do
stream :keep_open do |out|
connections << out
out.callback { connections.delete(out) }
end
end
post '/' do
connections.each { |out| out << "data: #{params[:msg]}\n\n" }
204 # response without entity body
end
__END__
@@ layout
<html>
2012-07-18 19:07:24 +00:00
<head>
<title>Super Simple Chat with Sinatra</title>
2011-12-30 11:00:40 +00:00
<meta charset="utf-8" />
2012-07-18 19:07:24 +00:00
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</head>
2011-12-30 11:00:40 +00:00
<body><%= yield %></body>
</html>
@@ login
<form action='/'>
<label for='user'>User Name:</label>
<input name='user' value='' />
<input type='submit' value="GO!" />
</form>
@@ chat
<pre id='chat'></pre>
<form>
<input id='msg' placeholder='type message here...' />
</form>
2011-12-30 11:00:40 +00:00
<script>
// reading
var es = new EventSource('/stream');
es.onmessage = function(e) { $('#chat').append(e.data + "\n") };
// writing
$("form").on('submit',function(e) {
2011-12-30 11:00:40 +00:00
$.post('/', {msg: "<%= user %>: " + $('#msg').val()});
$('#msg').val(''); $('#msg').focus();
e.preventDefault();
});
</script>