A simple example of how you could setup a pure OmniAuth login using a popup window. No javascript SDK needed. See it in action here.
There are 6 steps involved:
-
application_helper.rb - A useful method that helps simplify the view. It adds a css class to be later used as a selector and adds some data attributes that determine the size of the popup.
-
application.html.erb - The user clicks some "Login with Social Provider" button.
-
login.js - The click is intercepted by a small jQuery function that creates the popup. It also adds a simple
popup
param to be later checked by our server. -
The request goes through our server and hits the Social Provider's servers. If the user is not logged in, he is prompted to do so. If the user has not authorized this app before, he is prompted to do so too. If both of these conditions are met, this step can be skipped.
-
sessions_controller.rb - A callback request hits our server. Here, the user account is searched for or created depending on whether this is the user's first time logging in or not. The
popup
param is checked for and if it exists that means the user has javascript enabled. -
callback.html.erb - A view made of javascript closes the popup and redirects the main window to the url the user was trying to access. If the
popup
param was not present in the previous step, our server would make the redirection to the correct url.
First, install all the required gems with:
bundle install --without production
Then follow the instructions on the file application.template.yml.
Finally, start a web server on port 3000 with:
rails server