-
-
Save kevinrobayna/10160476 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$LOAD_PATH.unshift(File.dirname(__FILE__)) | |
require "rubygems" | |
require 'example_omniauth_app' | |
run SinatraApp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'sinatra' | |
require 'json' | |
require 'omniauth' | |
require 'omniauth-github' | |
require 'omniauth-facebook' | |
require 'omniauth-twitter' | |
#TODO require 'omniauth-att' | |
class SinatraApp < Sinatra::Base | |
configure do | |
set :sessions, true | |
set :inline_templates, true | |
end | |
use OmniAuth::Builder do | |
provider :github, 'ece9da5a3cff23b3475f','eb81c6098ba5d08e3c2dbd263bf11de5f3382d55' | |
provider :facebook, '290594154312564','a26bcf9d7e254db82566f31c9d72c94e' | |
provider :twitter, 'cO23zABqRXQpkmAXa8MRw', 'TwtroETQ6sEDWW8HEgt0CUWxTavwFcMgAwqHdb0k1M' | |
#provider :att, 'client_id', 'client_secret', :callback_url => (ENV['BASE_DOMAIN'] | |
end | |
get '/' do | |
erb " | |
<a href='http://localhost:4567/auth/github'>Login with Github</a><br> | |
<a href='http://localhost:4567/auth/facebook'>Login with facebook</a><br> | |
<a href='http://localhost:4567/auth/twitter'>Login with twitter</a><br> | |
<a href='http://localhost:4567/auth/att-foundry'>Login with att-foundry</a>" | |
end | |
get '/auth/:provider/callback' do | |
erb "<h1>#{params[:provider]}</h1> | |
<pre>#{JSON.pretty_generate(request.env['omniauth.auth'])}</pre>" | |
end | |
get '/auth/failure' do | |
erb "<h1>Authentication Failed:</h1><h3>message:<h3> <pre>#{params}</pre>" | |
end | |
get '/auth/:provider/deauthorized' do | |
erb "#{params[:provider]} has deauthorized this app." | |
end | |
get '/protected' do | |
throw(:halt, [401, "Not authorized\n"]) unless session[:authenticated] | |
erb "<pre>#{request.env['omniauth.auth'].to_json}</pre><hr> | |
<a href='/logout'>Logout</a>" | |
end | |
get '/logout' do | |
session[:authenticated] = false | |
redirect '/' | |
end | |
end | |
SinatraApp.run! if __FILE__ == $0 | |
__END__ | |
@@ layout | |
<html> | |
<head> | |
<link href='http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css' rel='stylesheet' /> | |
</head> | |
<body> | |
<div class='container'> | |
<div class='content'> | |
<%= yield %> | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin | |
require 'sinatra' | |
require 'omniauth' | |
require 'openid/store/filesystem' | |
rescue LoadError | |
require 'rubygems' | |
require 'sinatra' | |
require 'omniauth' | |
require 'openid/store/filesystem' | |
end | |
use Rack::Session::Cookie | |
use OmniAuth::Builder do | |
provider :open_id, OpenID::Store::Filesystem.new('/tmp') | |
provider :twitter, 'consumerkey', 'consumersecret' | |
end | |
get '/' do | |
<<-HTML | |
<a href='/auth/twitter'>Sign in with Twitter</a> | |
<form action='/auth/open_id' method='post'> | |
<input type='text' name='identifier'/> | |
<input type='submit' value='Sign in with OpenID'/> | |
</form> | |
HTML | |
end | |
post '/auth/:name/callback' do | |
auth = request.env['omniauth.auth'] | |
# do whatever you want with the information! | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source :rubygems | |
gem 'sinatra' | |
gem 'json' | |
gem 'omniauth' | |
gem 'omniauth-oauth2' | |
gem 'omniauth-github' | |
# gem 'omniauth-att', :path => File.expand_path("./../../omniauth-att", __FILE__) | |
gem 'thin' | |
group :development do | |
gem 'shotgun' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment