defmodule Ueberauth.Strategy.Gitlab do @moduledoc """ Provides an Ueberauth strategy for Gitlab. This is based on the GitHub strategy. ## Configuration Create a [Gitlab application](https://gitlab.com/profile/applications), and write down its `client_id` and `client_secret` values. Include the Gitlab provider in your Ueberauth configuration: config :ueberauth, Ueberauth, providers: [ ... gitlab: { Ueberauth.Strategy.Gitlab, [] } ] The configure the Gitlab strategy: config :ueberauth, Ueberauth.Strategy.Gitlab.OAuth, client_id: System.get_env("GITLAB_CLIENT_ID"), client_secret: System.get_env("GITLAB_CLIENT_SECRET") You can edit the behaviour of the Strategy by including some options when you register your provider. To set the `uid_field` config :ueberauth, Ueberauth, providers: [ ... gitlab: { Ueberauth.Strategy.Gitlab, [uid_field: :email] } ] Default is `:username`. To set the default 'scopes' (permissions): config :ueberauth, Ueberauth, providers: [ gitlab: { Ueberauth.Strategy.Gitlab, [default_scope: "read_user,api"] } ] Default is "read_user" """ use Ueberauth.Strategy, uid_field: :username, default_scope: "read_user", oauth2_module: Ueberauth.Strategy.Gitlab.OAuth @gitlab_api_version "v3" @gitlab_user_endpoint "/api/#{@gitlab_api_version}/user" alias Ueberauth.Auth.Info alias Ueberauth.Auth.Credentials alias Ueberauth.Auth.Extra @doc """ Handles the initial redirect to the gitlab authentication page. To customize the scope (permissions) that are requested by gitlab include them as part of your url: "/auth/gitlab?scope=read_user,api" You can also include a `state` param that gitlab will return to you. """ def handle_request!(conn) do scopes = conn.params["scope"] || option(conn, :default_scope) opts = [redirect_uri: callback_url(conn), scope: scopes] opts = if conn.params["state"], do: Keyword.put(opts, :state, conn.params["state"]), else: opts module = option(conn, :oauth2_module) redirect!(conn, apply(module, :authorize_url!, [opts])) end @doc """ Handles the callback from Gitlab. When there is a failure from Gitlab the failure is included in the `ueberauth_failure` struct. Otherwise the information returned from Gitlab is returned in the `Ueberauth.Auth` struct. """ def handle_callback!(%Plug.Conn{params: %{"code" => code}} = conn) do module = option(conn, :oauth2_module) token = apply(module, :get_token!, [[code: code, redirect_uri: callback_url(conn)]]) if is_nil(token.access_token) do set_errors!(conn, [error(token.other_params["error"], token.other_params["error_description"])]) else fetch_user(conn, token) end end @doc """ Called when no code is received from Gitlab. """ def handle_callback!(conn) do set_errors!(conn, [error("missing_code", "No code received")]) end @doc """ Cleans up the private area of the connection used for passing the raw Gitlab response around during the callback. """ def handle_cleanup!(conn) do conn |> put_private(:gitlab_user, nil) |> put_private(:gitlab_token, nil) end @doc """ Fetches the uid field from the Gitlab response. This defaults to the option `uid_field` which in-turn defaults to `username` """ def uid(conn) do user = conn |> option(:uid_field) |> to_string conn.private.gitlab_user[user] end @doc """ Includes the credentials from the Gitlab response. """ def credentials(conn) do token = conn.private.gitlab_token scope_string = (token.other_params["scope"] || "") scopes = String.split(scope_string, ",") %Credentials { token: token.access_token, refresh_token: token.refresh_token, expires_at: token.expires_at, token_type: token.token_type, expires: !!token.expires_at, scopes: scopes } end @doc """ Fetches the fields to populate the info section of the `Ueberauth.Auth` struct. """ def info(conn) do user = conn.private.gitlab_user %Info { name: user["name"], email: user["email"] || Enum.find(user["emails"] || [], &(&1["primary"]))["email"], nickname: user["login"], location: user["location"], urls: %{ avatar_url: user["avatar_url"], web_url: user["web_url"], website_url: user["website_url"] } } end @doc """ Stores the raw information (including the token) obtained from the Gitlab callback. """ def extra(conn) do %Extra { raw_info: %{ token: conn.private.gitlab_token, user: conn.private.gitlab_user } } end defp fetch_user(conn, token) do conn = put_private(conn, :gitlab_token, token) # Unlike github, gitlab returns the email in the main call, so a simple `case` # statement works very well here. case Ueberauth.Strategy.Gitlab.OAuth.get(token, @gitlab_user_endpoint) do {:ok, %OAuth2.Response{status_code: status_code_user, body: user}} when status_code_user in 200..399 -> put_private(conn, :gitlab_user, user) {:ok, %OAuth2.Response{status_code: 401, body: body}} -> set_errors!(conn, [error("token", "unauthorized: #{inspect body}")]) {:error, %OAuth2.Error{reason: reason}} -> set_errors!(conn, [error("OAuth2", reason)]) _ -> set_errors!(conn, [error("OAuth2", "An undefined error occured")]) end end defp option(conn, key) do Keyword.get(options(conn), key, Keyword.get(default_options(), key)) end end