68 lines
1.6 KiB
Elixir
68 lines
1.6 KiB
Elixir
defmodule Plug.MIME do
|
|
@moduledoc false
|
|
|
|
if Application.compile_env(:plug, :mimes) do
|
|
IO.puts(:stderr, """
|
|
warning: you have set the :mimes configuration for the :plug
|
|
application but it is no longer supported. Instead of:
|
|
|
|
config :plug, :mimes, %{...}
|
|
|
|
You must write:
|
|
|
|
config :mime, :types, %{...}
|
|
|
|
After adding the configuration, MIME needs to be recompiled.
|
|
If you are using mix, it can be done with:
|
|
|
|
$ mix deps.clean mime --build
|
|
$ mix deps.get
|
|
|
|
""")
|
|
end
|
|
|
|
@deprecated "Use MIME.extensions(type) != [] instead"
|
|
def valid?(type) do
|
|
IO.puts(
|
|
:stderr,
|
|
"Plug.MIME.valid?/1 is deprecated, please use MIME.extensions(type) != [] instead\n" <>
|
|
Exception.format_stacktrace()
|
|
)
|
|
|
|
MIME.extensions(type) != []
|
|
end
|
|
|
|
@deprecated "Use MIME.extensions/1 instead"
|
|
def extensions(type) do
|
|
IO.puts(
|
|
:stderr,
|
|
"Plug.MIME.extensions/1 is deprecated, please use MIME.extensions/1 instead\n" <>
|
|
Exception.format_stacktrace()
|
|
)
|
|
|
|
MIME.extensions(type)
|
|
end
|
|
|
|
@deprecated "Use MIME.type/1 instead"
|
|
def type(file_extension) do
|
|
IO.puts(
|
|
:stderr,
|
|
"Plug.MIME.type/1 is deprecated, please use MIME.type/1 instead\n" <>
|
|
Exception.format_stacktrace()
|
|
)
|
|
|
|
MIME.type(file_extension)
|
|
end
|
|
|
|
@deprecated "Use MIME.from_path/1 instead"
|
|
def path(path) do
|
|
IO.puts(
|
|
:stderr,
|
|
"Plug.MIME.path/1 is deprecated, please use MIME.from_path/1 instead\n" <>
|
|
Exception.format_stacktrace()
|
|
)
|
|
|
|
MIME.from_path(path)
|
|
end
|
|
end
|