lib/assent/strategies/basecamp.ex

defmodule Assent.Strategy.Basecamp do
  @moduledoc """
  Basecamp OAuth 2.0 strategy.

  In the normalized user response a `basecamp_accounts` field is included that
  can be used to limit access to users belonging to a particular account.

  The Basecamp user endpoint does not provide data on email verification, email
  is considered unverified.

  ## Usage

      config = [
        client_id: "REPLACE_WITH_CLIENT_ID",
        client_secret: "REPLACE_WITH_CLIENT_SECRET",
        redirect_uri: "http://localhost:4000/auth/callback"
      ]

  See `Assent.Strategy.OAuth2` for more.
  """
  use Assent.Strategy.OAuth2.Base

  @impl true
  def default_config(_config) do
    [
      base_url: "https://launchpad.37signals.com",
      authorize_url: "/authorization/new",
      token_url: "/authorization/token",
      user_url: "/authorization.json",
      authorization_params: [type: "web_server"],
      auth_method: :client_secret_post
    ]
  end

  @impl true
  def normalize(_config, user) do
    {:ok,
     %{
       "sub" => user["identity"]["id"],
       "name" => "#{user["identity"]["first_name"]} #{user["identity"]["last_name"]}",
       "given_name" => user["identity"]["first_name"],
       "family_name" => user["identity"]["last_name"],
       "email" => user["identity"]["email_address"]
     },
     %{
       "basecamp_accounts" => user["accounts"]
     }}
  end
end