AntonRich
So I’m on page 34.
I have a question regarding that quote:
We know that the last plug in the endpoint is the router, and we know we
can find that file in lib/hello_web/router.ex .
A plug is essentially a function that comes from the plug module. If that so why router is being called a plug?
And if plugs are functions why call them plugs(my answer for convenient reasons because they come from plug module)?
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kelvinst
So, basically you’re right, a plug is a function. But it’s not any function, it is a 2 arity function where the first argument is a
Plug.Connand the second is a list of options, and also, the return must be always aPlug.Conn. If the function doesn’t follow those rules, it can’t be used as a Plug, because that’s the way the plug lib handle’s them.Basically, all the stuff you put on the router is compiled to a function that follow the same rules, here is the function: phoenix/lib/phoenix/router.ex at main · phoenixframework/phoenix · GitHub.
As answered before, not all functions can be used as plugs, just functions that follow a predefined set of rules. But you are actually kind of right, it’s for convenience, but not because they come from a specific module, actually because it is convenient to have names that classify specific types of functions, “operators” for example, they are mostly functions (some are macros, but ok), but we call operators functions that can be used in the pattern
first_arg X second_arg(like1 + 2), but deep inside, they are just functions that follow a set of rules, just like plugs.In the case of plugs, a behaviour can be used to make sure you implement the correct functions.
peerreynders
The long version:
It would be more accurate to say that a
Pluginvolves some kind of function that satisfies the(Plug.Conn.t, Plug.opts) :: Plug.Conn.ttype signature.The documentation is also clear that:
From what I can tell the 2nd parameter on
(Plug.Conn.t, Plug.opts) :: Plug.Conn.tis useless (***) with a function plug - it exists only for compatibility with the module plug.The documentation’s example module plug looks like this:
There are two functions
call/2andinit/1. Again in this particular case the 2nd parameter_optsforcall/2is unused. Whileinit/1andcall/2exist in the same module there is a difference that is easy to miss:i.e.
init/1is called during compile time to generate a “compile time configuration” for thePlugcall/2is called during run time (while the request is being processed) and is passed the options that were generated byinit/1during compilation.The compilation/runtime split is sometimes used for testing but
init/1gives a module plug a standardized method for compile time configuration (or think of it as server configuration rather than request configuration).Plug.Cowboymakes use of thePlugspecification.init/1is used when the dispatch is created during compile time (or more accurately when the server is starting - but not yet processing any requests):https://github.com/elixir-plug/plug_cowboy/blob/master/lib/plug/cowboy.ex#L252
https://github.com/elixir-plug/plug_cowboy/blob/master/lib/plug/cowboy.ex#L290-L293
call/2is used at runtime in thePlug.Cowboy.Handler:https://github.com/elixir-plug/plug_cowboy/blob/master/lib/plug/cowboy/handler.ex#L6-L26
There is a lot of macro (compile time) activity in
hello_web/router.ex:First of all
use HelloWeb, :routerinjects a lot of code intoHelloWeb.Router. Looking intoHelloWeb.exthere isSo
use HelloWeb, :routerturns intoKernel.apply(HelloWeb, :router)(seeapply/3) at compile time which is equivalent toHelloWeb.router(). Looking up into theHelloWebmodule you’ll find thatrouterfunction:So
use HelloWeb, :routerturns into:The same type of thing happens recursively with
use Phoenix.Router- indeps/phoenix/lib/phoenix/router.ex:The interesting one is
match_dispatch():This is the function that turns your
hello_web/router.exinto a module plug as it provides the compile timeinit/1function and the runtimecall/2function.Edit: *** Correction - not entirely useless. For example with
Plug.Builder.plug/2you can supply the options to be passed to a function plug.benwilson512
AntonRich
@kelvinst @peerreynders Thank you very much. You both clarified things for me. I smiled when I read your answers.