User registration, authentication, forgotten passwords, social logins with OAuth, and more.
Jumpstart Pro uses Devise for user registration and authentication. This library is well tested and receives regular security updates allowing you to focus on your business.
If you would like to collect other information on registration, you can add the fields to the devise views in app/views/devise
and permit the additional params in application_controller.rb
.
To enable an oauth provider you can do so in the OAuth section of the Jumpstart Pro configuration wizard UI located at /jumpstart.
Devise is preconfigured to connect with Omniauth providers so users can register or sign in with their social accounts.
We automatically handle the various situations that can arise with social auth:
You're free to override any of this functionality by adding your own methods to the OmniauthCallbacksController like you normally would.
To create a button for OAuth, you will use the following:
<%= button_to omniauth_authorize_path(:user, :twitter), class: "btn btn-twitter m-1", data: { turbo: false, disable_with: t(".redirecting") } do %>
<%= t("oauth.twitter") %>
<% end %>
This makes a POST request to our Rails app. OmniAuth handles the request and redirects to the OAuth provider for login. This POST request is required for security.
data-turbo="false"
is important because we are redirecting to an external site after making a POST request to Rails. Disabling Turbo on the request tells it to allow the external redirect.
By default, OmniAuth callbacks controller will create a ConnectedAccount
record and associate it with current_user
.
To add custom OmniAuth OAuth providers to Jumpstart Pro, you can follow these steps:
omniauth-[provider]
to your Gemfile and run bundle
.omniauth:
for your provider.config/locales/en.yml
and add the OAuth provider to the list.config/initializers/devise.rb
and reference the Rails credentials for your client ID, secret, and scope.
Jumpstart Pro automatically generates buttons for OmniAuth providers registered with Devise. It also registers callbacks in the Devise OmniauthCallbacksController to save the OAuth credentials and generates scopes for the ConnectedAccount model.
Users can sign up or login with connected accounts. We automatically add links based upon which OmniAuth providers are enabled. By default, Jumpstart Pro has options for a few OmniAuth providers, but you're free to add other providers and they will be automatically added to parts of the UI.
If you would like to associate the ConnectedAccount
with a different model, you can pass in the record
param set to a Signed GlobalID. The callback controller will detect this and use this as the owner of the ConnectedAccount record.
Here we will associate the Twitter ConnectedAccount
with the current_account
. Optionally, you can set the redirect_to
to send the user to a different location afterwards.
<%= button_to omniauth_authorize_path(:user, :twitter, record: current_account.to_sgid(for: :oauth), redirect_to: account_path(current_account)), class: "btn btn-twitter m-1", data: { turbo: false, disable_with: t(".redirecting") } do %>
<%= t("oauth.twitter") %>
<% end %>
The User model has_many :connected_accounts
which you can use to access the data collected from the accounts such as credentials and user information.
We automatically generate a scope for each provider, so you can filter out connected accounts easily: @user.connected_accounts.twitter.first
If you would like to do something after connecting an OAuth account, you can add a method to the OmniauthCallbacksController for the provider and it will be called after the account is connected.
ConnectedAccount has a method named token
that will always return an active API token. It will seamlessly renew expired tokens for you so your code never has to deal with services who provide you expiring tokens.
ConnectedAccount records also store the entire auth hash from Omniauth so you can easily debug integrations and access any of that data later on as necessary.
For example, to use the Twitter gem, you would initialize with the token
and access_token_secret
:
connected_account = current_user.connected_accounts.twitter.first
client = Twitter::REST::Client.new do |config|
config.consumer_key = Rails.application.credentials.dig(:omniauth, :twitter, :public_key)
config.consumer_secret = Rails.application.credentials.dig(:omniauth, :twitter, :private_key)
config.access_token = connected_account.token
config.access_token_secret = connected_account.access_token_secret
end
By default, users will be required to enter their credentials for each of their subdomains. If instead you want them to log a single time and have access to all their subdomains, add these two lines:
# config/application.rb
config.session_store :cookie_store, :key => '_some_key', :domain => '.lvh.me'
# config/environments/test.rb
config.session_store :cookie_store, :key => '_some_key', :domain => '.example.com'