Phoenix.Controller

Controllers are used to group common functionality in the same (pluggable) module.

For example, the route:

get "/users/:id", UserController, :show

will invoke the show/2 action in the UserController:

defmodule UserController do
  use Phoenix.Controller

  plug :action

  def show(conn, %{"id" => id}) do
    user = Repo.get(User, id)
    render conn, "show.html", user: user
  end
end

An action is just a regular function that receives the connection and the request parameters as arguments. The connection is a Plug.Conn struct, as specified by the Plug library.

Connection

A controller by default provides many convenience functions for manipulating the connection, rendering templates, and more.

Those functions are imported from two modules:

Rendering and layouts

One of the main features provided by controllers is the ability to do content negotiation and render templates based on information sent by the client. Read render/3 to learn more.

It is also important to not confuse Phoenix.Controller.render/3 with Phoenix.View.render/3 in the long term. The former expects a connection and relies on content negotiation while the latter is connection-agnostnic and typically invoked from your views.

Plug pipeline

As routers, controllers also have their own plug pipeline. However, different from routers, controllers have a single pipeline:

defmodule UserController do
  use Phoenix.Controller

  plug :authenticate, usernames: ["jose", "eric", "sonny"]
  plug :action

  def show(conn, params) do
    # authenticated users only
  end

  defp authenticate(conn, options) do
    if get_session(conn, :username) in options[:usernames] do
      conn
    else
      conn |> redirect(Router.root_path) |> halt
    end
  end
end

The :action plug must always be invoked and it represents the action to be dispatched to.

Check Phoenix.Controller.Pipeline for more information on plug/2 and how to customize the plug pipeline.

Summary

accepts(conn, accepted)

Performs content negotiation based on the accepted formats

action_name(conn)

Returns the action name as an atom

controller_module(conn)

Returns the controller module as an atom

error(conn)

Retrieve error from Phoenix router

html(conn, data)

Sends html response and halts

json(conn, data)

Sends JSON response and halts

layout(conn)

Retrieves the current layout

layout_formats(conn)

Retrieves current layout formats

put_layout(conn, layout)

Stores the layout for rendering

put_layout_formats(conn, formats)

Sets which formats have a layout when rendering

put_view(conn, module)

Stores the view for rendering

redirect(conn, opts)

Sends redirect response to the given url

render(conn, template_or_assigns \\ [])

Render the given template or the default template specified by the current action with the given assigns

render(conn, template, assigns)

Renders the given template and assigns based on the conn information

render(conn, template, format, assigns)
router_module(conn)

Returns the router module as an atom

text(conn, data)

Sends text response and halts

view_module(conn)

Retrieves the current view

Functions

accepts(conn, accepted)

Specs:

  • accepts(Plug.Conn.t, [binary]) :: Plug.Conn.t | no_return

Performs content negotiation based on the accepted formats.

It receives a connection, a list of formats that the server is capable of rendering and then proceeds to perform content negotiation based on the request information.

If the request contains a “format” parameter, it is considered to be the format desired by the client. If no “format” parameter is available, this function will parse the “accept” header and find a matching format accordingly.

It is important to notice that browsers have historically sent bad accept headers. For this reason, this function will default to “html” format whenever:

  • the accepted list of arguments contains the “html” format

  • the accept header specified more than one media type preceeded or followed by the wildcard media type “/

This function raises Phoenix.NotAcceptableError, which is rendered with status 406, whenever the server cannot serve a response in any of the formats expected by the client.

Examples

accepts/2 can be invoked as a function:

iex> accepts(conn, ~w(html json))

or used as a plug:

plug :accepts, ~w(html json)
action_name(conn)

Specs:

  • action_name(Plug.Conn.t) :: atom

Returns the action name as an atom.

controller_module(conn)

Specs:

  • controller_module(Plug.Conn.t) :: atom

Returns the controller module as an atom.

error(conn)

Specs:

  • error(Plug.Conn.t) :: term

Retrieve error from Phoenix router.

html(conn, data)

Specs:

  • html(Plug.Conn.t, iodata) :: Plug.Conn.t

Sends html response and halts.

Examples

iex> html conn, "<html><head>..."
json(conn, data)

Specs:

  • json(Plug.Conn.t, term) :: Plug.Conn.t

Sends JSON response and halts.

It uses the configured :format_encoders under the :phoenix application for :json to pick up the encoder module.

Examples

iex> json conn, %{id: 123}
layout(conn)

Specs:

  • layout(Plug.Conn.t) :: {atom, String.t} | false

Retrieves the current layout.

layout_formats(conn)

Specs:

  • layout_formats(Plug.Conn.t) :: [String.t]

Retrieves current layout formats.

put_layout(conn, layout)

Specs:

  • put_layout(Plug.Conn.t, {atom, binary} | binary | false) :: Plug.Conn.t

Stores the layout for rendering.

The layout must be a tuple, specifying the layout view and the layout name, or false. In case a previous layout is set, put_layout also accepts the layout name to be given as a string or as an atom. If a string, it must contain the format. Passing an atom means the layout format will be found at rendering time, similar to the template in render/3.

Examples

iex> layout(conn)
false

iex> conn = put_layout conn, {AppView, "application"}
iex> layout(conn)
{AppView, "application"}

iex> conn = put_layout conn, "print"
iex> layout(conn)
{AppView, "print"}

iex> conn = put_layout :print
iex> layout(conn)
{AppView, :print}
put_layout_formats(conn, formats)

Specs:

  • put_layout_formats(Plug.Conn.t, [String.t]) :: Plug.Conn.t

Sets which formats have a layout when rendering.

Examples

iex> layout_formats conn
["html"]

iex> put_layout_formats conn, ~w(html mobile)
iex> layout_formats conn
["html", "mobile"]
put_view(conn, module)

Specs:

  • put_view(Plug.Conn.t, atom) :: Plug.Conn.t

Stores the view for rendering.

redirect(conn, opts)

Sends redirect response to the given url.

For security, :to only accepts paths. Use the :external option to redirect to any URL.

Examples

iex> redirect conn, to: "/login"

iex> redirect conn, external: "http://elixir-lang.org"
render(conn, template_or_assigns \\ [])

Specs:

  • render(Plug.Conn.t, Dict.t | binary | atom) :: Plug.Conn.t

Render the given template or the default template specified by the current action with the given assigns.

See render/3 for more information.

render(conn, template, assigns)

Specs:

  • render(Plug.Conn.t, binary | atom, Dict.t) :: Plug.Conn.t

Renders the given template and assigns based on the conn information.

Once the template is rendered, the template format is set as the response content type (for example, a HTML template will set “text/html” as response content type) and the data is sent to the client with default status of 200.

The connection is halted after rendering, meaning any other plug in the pipeline won’t be invoked.

Arguments

  • conn - the Plug.Conn struct

  • template - which may be an atom or a string. If an atom, like :index, it will render a template with the same format as the one found in conn.params["format"]. For example, for an HTML request, it will render the “index.html” template. If the template is a string, it must contain the extension too, like “index.json”

  • assigns - a dictionary with the assigns to be used in the view. Those assigns are merged and have higher precedence than the connection assigns (conn.assigns)

Examples

defmodule MyApp.UserController do
  use Phoenix.Controller

  plug :action

  def show(conn) do
    render conn, "show.html", message: "Hello"
  end
end

The example above renders a template “show.html” from the MyApp.UserView and set the response content type to “text/html”.

In many cases, you may want the template format to be set dynamically based on the request. To do so, you can pass the template name as an atom (without the extension):

def show(conn) do
  render conn, :show, message: "Hello"
end

In order for the example above to work, we need to do content negotiation with the accepts plug before rendering. You can do so by adding the following to your pipeline (in the router):

plug :accepts, ~w(html)

Views

Controllers render by default templates in a view with a similar name to the controller. For example, MyApp.UserController will render templates inside the MyApp.UserView. This information can be changed any time by using the put_view/2 function:

def show(conn) do
  conn
  |> put_view(MyApp.SpecialView)
  |> render(:show, message: "Hello")
end

. put_view/2 can also be used as a plug:

defmodule MyApp.UserController do
  use Phoenix.Controller

  plug :put_view, MyApp.SpecialView
  plug :action

  def show(conn) do
    render conn, :show, message: "Hello"
  end
end

Layouts

Templates are often rendered inside layouts. By default, Phoenix will render layouts for html requests. For example:

defmodule MyApp.UserController do
  use Phoenix.Controller

  plug :action

  def show(conn) do
    render conn, "show.html", message: "Hello"
  end
end

will render the “show.html” template inside an “application.html” template specified in MyApp.LayoutView. put_layout/2 can be used to change the layout, similar to how put_view/2 can be used to change the view.

layout_formats/2 and put_layout_formats/2 can be used to configure which formats support/require layout rendering (defaults to “html” only).

render(conn, template, format, assigns)
router_module(conn)

Specs:

  • router_module(Plug.Conn.t) :: atom

Returns the router module as an atom.

text(conn, data)

Specs:

Sends text response and halts.

Examples

iex> text conn, "hello"

iex> text conn, :implements_to_string
view_module(conn)

Specs:

  • view_module(Plug.Conn.t) :: atom

Retrieves the current view.