Initial commit

This commit is contained in:
2023-02-16 23:40:19 +00:00
commit b0a7da3ddc
27 changed files with 1133 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
defmodule PhoenixApiTemplate do
@moduledoc """
PhoenixApiTemplate keeps the contexts that define your domain
and business logic.
Contexts are also responsible for managing your data, regardless
if it comes from the database, an external API or others.
"""
end

View File

@@ -0,0 +1,36 @@
defmodule PhoenixApiTemplate.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
# Start the Ecto repository
PhoenixApiTemplate.Repo,
# Start the Telemetry supervisor
PhoenixApiTemplateWeb.Telemetry,
# Start the PubSub system
{Phoenix.PubSub, name: PhoenixApiTemplate.PubSub},
# Start the Endpoint (http/https)
PhoenixApiTemplateWeb.Endpoint
# Start a worker by calling: PhoenixApiTemplate.Worker.start_link(arg)
# {PhoenixApiTemplate.Worker, arg}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: PhoenixApiTemplate.Supervisor]
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
@impl true
def config_change(changed, _new, removed) do
PhoenixApiTemplateWeb.Endpoint.config_change(changed, removed)
:ok
end
end

View File

@@ -0,0 +1,5 @@
defmodule PhoenixApiTemplate.Repo do
use Ecto.Repo,
otp_app: :phoenix_api_template,
adapter: Ecto.Adapters.Postgres
end

View File

@@ -0,0 +1,78 @@
defmodule PhoenixApiTemplateWeb do
@moduledoc """
The entrypoint for defining your web interface, such
as controllers, views, channels and so on.
This can be used in your application as:
use PhoenixApiTemplateWeb, :controller
use PhoenixApiTemplateWeb, :view
The definitions below will be executed for every view,
controller, etc, so keep them short and clean, focused
on imports, uses and aliases.
Do NOT define functions inside the quoted expressions
below. Instead, define any helper function in modules
and import those modules here.
"""
def controller do
quote do
use Phoenix.Controller, namespace: PhoenixApiTemplateWeb
import Plug.Conn
import PhoenixApiTemplateWeb.Gettext
alias PhoenixApiTemplateWeb.Router.Helpers, as: Routes
end
end
def view do
quote do
use Phoenix.View,
root: "lib/phoenix_api_template_web/templates",
namespace: PhoenixApiTemplateWeb
# Import convenience functions from controllers
import Phoenix.Controller,
only: [get_flash: 1, get_flash: 2, view_module: 1, view_template: 1]
# Include shared imports and aliases for views
unquote(view_helpers())
end
end
def router do
quote do
use Phoenix.Router
import Plug.Conn
import Phoenix.Controller
end
end
def channel do
quote do
use Phoenix.Channel
import PhoenixApiTemplateWeb.Gettext
end
end
defp view_helpers do
quote do
# Import basic rendering functionality (render, render_layout, etc)
import Phoenix.View
import PhoenixApiTemplateWeb.ErrorHelpers
import PhoenixApiTemplateWeb.Gettext
alias PhoenixApiTemplateWeb.Router.Helpers, as: Routes
end
end
@doc """
When used, dispatch to the appropriate controller/view/etc.
"""
defmacro __using__(which) when is_atom(which) do
apply(__MODULE__, which, [])
end
end

View File

@@ -0,0 +1,44 @@
defmodule PhoenixApiTemplateWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :phoenix_api_template
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
# Set :encryption_salt if you would also like to encrypt it.
@session_options [
store: :cookie,
key: "_phoenix_api_template_key",
signing_salt: "naeVg5Wf"
]
# socket "/live", Phoenix.LiveView.Socket, websocket: [connect_info: [session: @session_options]]
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phx.digest
# when deploying your static files in production.
plug Plug.Static,
at: "/",
from: :phoenix_api_template,
gzip: false,
only: ~w(assets fonts images favicon.ico robots.txt)
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
plug Phoenix.CodeReloader
plug Phoenix.Ecto.CheckRepoStatus, otp_app: :phoenix_api_template
end
plug Plug.RequestId
plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint]
plug Plug.Parsers,
parsers: [:urlencoded, :multipart, :json],
pass: ["*/*"],
json_decoder: Phoenix.json_library()
plug Plug.MethodOverride
plug Plug.Head
plug Plug.Session, @session_options
plug PhoenixApiTemplateWeb.Router
end

View File

@@ -0,0 +1,24 @@
defmodule PhoenixApiTemplateWeb.Gettext do
@moduledoc """
A module providing Internationalization with a gettext-based API.
By using [Gettext](https://hexdocs.pm/gettext),
your module gains a set of macros for translations, for example:
import PhoenixApiTemplateWeb.Gettext
# Simple translation
gettext("Here is the string to translate")
# Plural translation
ngettext("Here is the string to translate",
"Here are the strings to translate",
3)
# Domain-based translation
dgettext("errors", "Here is the error message to translate")
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
"""
use Gettext, otp_app: :phoenix_api_template
end

View File

@@ -0,0 +1,11 @@
defmodule PhoenixApiTemplateWeb.Router do
use PhoenixApiTemplateWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/api", PhoenixApiTemplateWeb do
pipe_through :api
end
end

View File

@@ -0,0 +1,71 @@
defmodule PhoenixApiTemplateWeb.Telemetry do
use Supervisor
import Telemetry.Metrics
def start_link(arg) do
Supervisor.start_link(__MODULE__, arg, name: __MODULE__)
end
@impl true
def init(_arg) do
children = [
# Telemetry poller will execute the given period measurements
# every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics
{:telemetry_poller, measurements: periodic_measurements(), period: 10_000}
# Add reporters as children of your supervision tree.
# {Telemetry.Metrics.ConsoleReporter, metrics: metrics()}
]
Supervisor.init(children, strategy: :one_for_one)
end
def metrics do
[
# Phoenix Metrics
summary("phoenix.endpoint.stop.duration",
unit: {:native, :millisecond}
),
summary("phoenix.router_dispatch.stop.duration",
tags: [:route],
unit: {:native, :millisecond}
),
# Database Metrics
summary("phoenix_api_template.repo.query.total_time",
unit: {:native, :millisecond},
description: "The sum of the other measurements"
),
summary("phoenix_api_template.repo.query.decode_time",
unit: {:native, :millisecond},
description: "The time spent decoding the data received from the database"
),
summary("phoenix_api_template.repo.query.query_time",
unit: {:native, :millisecond},
description: "The time spent executing the query"
),
summary("phoenix_api_template.repo.query.queue_time",
unit: {:native, :millisecond},
description: "The time spent waiting for a database connection"
),
summary("phoenix_api_template.repo.query.idle_time",
unit: {:native, :millisecond},
description:
"The time the connection spent waiting before being checked out for the query"
),
# VM Metrics
summary("vm.memory.total", unit: {:byte, :kilobyte}),
summary("vm.total_run_queue_lengths.total"),
summary("vm.total_run_queue_lengths.cpu"),
summary("vm.total_run_queue_lengths.io")
]
end
defp periodic_measurements do
[
# A module, function and arguments to be invoked periodically.
# This function must call :telemetry.execute/3 and a metric must be added above.
# {PhoenixApiTemplateWeb, :count_users, []}
]
end
end

View File

@@ -0,0 +1,33 @@
defmodule PhoenixApiTemplateWeb.ErrorHelpers do
@moduledoc """
Conveniences for translating and building error messages.
"""
@doc """
Translates an error message using gettext.
"""
def translate_error({msg, opts}) do
# When using gettext, we typically pass the strings we want
# to translate as a static argument:
#
# # Translate "is invalid" in the "errors" domain
# dgettext("errors", "is invalid")
#
# # Translate the number of files with plural rules
# dngettext("errors", "1 file", "%{count} files", count)
#
# Because the error messages we show in our forms and APIs
# are defined inside Ecto, we need to translate them dynamically.
# This requires us to call the Gettext module passing our gettext
# backend as first argument.
#
# Note we use the "errors" domain, which means translations
# should be written to the errors.po file. The :count option is
# set by Ecto and indicates we should also apply plural rules.
if count = opts[:count] do
Gettext.dngettext(PhoenixApiTemplateWeb.Gettext, "errors", msg, msg, count, opts)
else
Gettext.dgettext(PhoenixApiTemplateWeb.Gettext, "errors", msg, opts)
end
end
end

View File

@@ -0,0 +1,16 @@
defmodule PhoenixApiTemplateWeb.ErrorView do
use PhoenixApiTemplateWeb, :view
# If you want to customize a particular status code
# for a certain format, you may uncomment below.
# def render("500.json", _assigns) do
# %{errors: %{detail: "Internal Server Error"}}
# end
# By default, Phoenix returns the status message from
# the template name. For example, "404.json" becomes
# "Not Found".
def template_not_found(template, _assigns) do
%{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}}
end
end