Skip to content

Commit 736c84b

Browse files
Yuriy BodarevYuriy Bodarev
Yuriy Bodarev
authored and
Yuriy Bodarev
committed
Init
0 parents  commit 736c84b

26 files changed

+910
-0
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# App artifacts
2+
/_build
3+
/db
4+
/deps
5+
/*.ez
6+
7+
# Generated on crash by the VM
8+
erl_crash.dump
9+
10+
# Files matching config/*.secret.exs pattern contain sensitive
11+
# data and you should not commit them into version control.
12+
#
13+
# Alternatively, you may comment the line below and commit the
14+
# secrets files as long as you replace their contents by environment
15+
# variables.
16+
/config/*.secret.exs

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Transactions
2+
3+
To start your Phoenix server:
4+
5+
* Install dependencies with `mix deps.get`
6+
* Create and migrate your database with `mix ecto.create && mix ecto.migrate`
7+
* Start Phoenix endpoint with `mix phx.server`
8+
9+
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
10+
11+
Ready to run in production? Please [check our deployment guides](http://www.phoenixframework.org/docs/deployment).
12+
13+
## Learn more
14+
15+
* Official website: http://www.phoenixframework.org/
16+
* Guides: http://phoenixframework.org/docs/overview
17+
* Docs: https://hexdocs.pm/phoenix
18+
* Mailing list: http://groups.google.com/group/phoenix-talk
19+
* Source: https://github.com/phoenixframework/phoenix

config/config.exs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file is responsible for configuring your application
2+
# and its dependencies with the aid of the Mix.Config module.
3+
#
4+
# This configuration file is loaded before any dependency and
5+
# is restricted to this project.
6+
use Mix.Config
7+
8+
# General application configuration
9+
config :transactions_api,
10+
namespace: Transactions,
11+
ecto_repos: [Transactions.Repo]
12+
13+
# Configures the endpoint
14+
config :transactions_api, TransactionsWeb.Endpoint,
15+
url: [host: "localhost"],
16+
secret_key_base: "HSQ9nXbQtGtYRs1AMdVAs0afX2p8gb+TxyEV9HgtahqtVp+DbQuUeNnNIcuz45uT",
17+
render_errors: [view: TransactionsWeb.ErrorView, accepts: ~w(json)],
18+
pubsub: [name: Transactions.PubSub,
19+
adapter: Phoenix.PubSub.PG2]
20+
21+
# Configures Elixir's Logger
22+
config :logger, :console,
23+
format: "$time $metadata[$level] $message\n",
24+
metadata: [:request_id]
25+
26+
# Import environment specific config. This must remain at the bottom
27+
# of this file so it overrides the configuration defined above.
28+
import_config "#{Mix.env}.exs"

config/dev.exs

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
use Mix.Config
2+
3+
# For development, we disable any cache and enable
4+
# debugging and code reloading.
5+
#
6+
# The watchers configuration can be used to run external
7+
# watchers to your application. For example, we use it
8+
# with brunch.io to recompile .js and .css sources.
9+
config :transactions_api, TransactionsWeb.Endpoint,
10+
http: [port: 4000],
11+
debug_errors: true,
12+
code_reloader: true,
13+
check_origin: false,
14+
watchers: []
15+
16+
# ## SSL Support
17+
#
18+
# In order to use HTTPS in development, a self-signed
19+
# certificate can be generated by running the following
20+
# command from your terminal:
21+
#
22+
# openssl req -new -newkey rsa:4096 -days 365 -nodes -x509 -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" -keyout priv/server.key -out priv/server.pem
23+
#
24+
# The `http:` config above can be replaced with:
25+
#
26+
# https: [port: 4000, keyfile: "priv/server.key", certfile: "priv/server.pem"],
27+
#
28+
# If desired, both `http:` and `https:` keys can be
29+
# configured to run both http and https servers on
30+
# different ports.
31+
32+
# Do not include metadata nor timestamps in development logs
33+
config :logger, :console, format: "[$level] $message\n"
34+
35+
# Set a higher stacktrace during development. Avoid configuring such
36+
# in production as building large stacktraces may be expensive.
37+
config :phoenix, :stacktrace_depth, 20
38+
39+
# Configure your database
40+
config :transactions_api, Transactions.Repo,
41+
adapter: Ecto.Adapters.Postgres,
42+
username: "postgres",
43+
password: "postgres",
44+
database: "transactions_api_dev",
45+
hostname: "localhost",
46+
pool_size: 10

config/prod.exs

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
use Mix.Config
2+
3+
# For production, we often load configuration from external
4+
# sources, such as your system environment. For this reason,
5+
# you won't find the :http configuration below, but set inside
6+
# TransactionsWeb.Endpoint.init/2 when load_from_system_env is
7+
# true. Any dynamic configuration should be done there.
8+
#
9+
# Don't forget to configure the url host to something meaningful,
10+
# Phoenix uses this information when generating URLs.
11+
#
12+
# Finally, we also include the path to a cache manifest
13+
# containing the digested version of static files. This
14+
# manifest is generated by the mix phx.digest task
15+
# which you typically run after static files are built.
16+
config :transactions_api, TransactionsWeb.Endpoint,
17+
load_from_system_env: true,
18+
url: [host: "example.com", port: 80],
19+
cache_static_manifest: "priv/static/cache_manifest.json"
20+
21+
# Do not print debug messages in production
22+
config :logger, level: :info
23+
24+
# ## SSL Support
25+
#
26+
# To get SSL working, you will need to add the `https` key
27+
# to the previous section and set your `:url` port to 443:
28+
#
29+
# config :transactions_api, TransactionsWeb.Endpoint,
30+
# ...
31+
# url: [host: "example.com", port: 443],
32+
# https: [:inet6,
33+
# port: 443,
34+
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
35+
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH")]
36+
#
37+
# Where those two env variables return an absolute path to
38+
# the key and cert in disk or a relative path inside priv,
39+
# for example "priv/ssl/server.key".
40+
#
41+
# We also recommend setting `force_ssl`, ensuring no data is
42+
# ever sent via http, always redirecting to https:
43+
#
44+
# config :transactions_api, TransactionsWeb.Endpoint,
45+
# force_ssl: [hsts: true]
46+
#
47+
# Check `Plug.SSL` for all available options in `force_ssl`.
48+
49+
# ## Using releases
50+
#
51+
# If you are doing OTP releases, you need to instruct Phoenix
52+
# to start the server for all endpoints:
53+
#
54+
# config :phoenix, :serve_endpoints, true
55+
#
56+
# Alternatively, you can configure exactly which server to
57+
# start per endpoint:
58+
#
59+
# config :transactions_api, TransactionsWeb.Endpoint, server: true
60+
#
61+
62+
# Finally import the config/prod.secret.exs
63+
# which should be versioned separately.
64+
import_config "prod.secret.exs"

config/test.exs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use Mix.Config
2+
3+
# We don't run a server during test. If one is required,
4+
# you can enable the server option below.
5+
config :transactions_api, TransactionsWeb.Endpoint,
6+
http: [port: 4001],
7+
server: false
8+
9+
# Print only warnings and errors during test
10+
config :logger, level: :warn
11+
12+
# Configure your database
13+
config :transactions_api, Transactions.Repo,
14+
adapter: Ecto.Adapters.Postgres,
15+
username: "postgres",
16+
password: "postgres",
17+
database: "transactions_api_test",
18+
hostname: "localhost",
19+
pool: Ecto.Adapters.SQL.Sandbox

lib/transactions_api.ex

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
defmodule Transactions do
2+
@moduledoc """
3+
Transactions keeps the contexts that define your domain
4+
and business logic.
5+
6+
Contexts are also responsible for managing your data, regardless
7+
if it comes from the database, an external API or others.
8+
"""
9+
end

lib/transactions_api/application.ex

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
defmodule Transactions.Application do
2+
use Application
3+
4+
# See https://hexdocs.pm/elixir/Application.html
5+
# for more information on OTP Applications
6+
def start(_type, _args) do
7+
import Supervisor.Spec
8+
9+
# Define workers and child supervisors to be supervised
10+
children = [
11+
# Start the Ecto repository
12+
supervisor(Transactions.Repo, []),
13+
# Start the endpoint when the application starts
14+
supervisor(TransactionsWeb.Endpoint, []),
15+
# Start your own worker by calling: Transactions.Worker.start_link(arg1, arg2, arg3)
16+
# worker(Transactions.Worker, [arg1, arg2, arg3]),
17+
]
18+
19+
# See https://hexdocs.pm/elixir/Supervisor.html
20+
# for other strategies and supported options
21+
opts = [strategy: :one_for_one, name: Transactions.Supervisor]
22+
Supervisor.start_link(children, opts)
23+
end
24+
25+
# Tell Phoenix to update the endpoint configuration
26+
# whenever the application is updated.
27+
def config_change(changed, _new, removed) do
28+
TransactionsWeb.Endpoint.config_change(changed, removed)
29+
:ok
30+
end
31+
end

lib/transactions_api/repo.ex

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
defmodule Transactions.Repo do
2+
use Ecto.Repo, otp_app: :transactions_api
3+
4+
@doc """
5+
Dynamically loads the repository url from the
6+
DATABASE_URL environment variable.
7+
"""
8+
def init(_, opts) do
9+
{:ok, Keyword.put(opts, :url, System.get_env("DATABASE_URL"))}
10+
end
11+
end

lib/transactions_api_web.ex

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
defmodule TransactionsWeb do
2+
@moduledoc """
3+
The entrypoint for defining your web interface, such
4+
as controllers, views, channels and so on.
5+
6+
This can be used in your application as:
7+
8+
use TransactionsWeb, :controller
9+
use TransactionsWeb, :view
10+
11+
The definitions below will be executed for every view,
12+
controller, etc, so keep them short and clean, focused
13+
on imports, uses and aliases.
14+
15+
Do NOT define functions inside the quoted expressions
16+
below. Instead, define any helper function in modules
17+
and import those modules here.
18+
"""
19+
20+
def controller do
21+
quote do
22+
use Phoenix.Controller, namespace: TransactionsWeb
23+
import Plug.Conn
24+
import TransactionsWeb.Router.Helpers
25+
import TransactionsWeb.Gettext
26+
end
27+
end
28+
29+
def view do
30+
quote do
31+
use Phoenix.View, root: "lib/transactions_api_web/templates",
32+
namespace: TransactionsWeb
33+
34+
# Import convenience functions from controllers
35+
import Phoenix.Controller, only: [get_flash: 2, view_module: 1]
36+
37+
import TransactionsWeb.Router.Helpers
38+
import TransactionsWeb.ErrorHelpers
39+
import TransactionsWeb.Gettext
40+
end
41+
end
42+
43+
def router do
44+
quote do
45+
use Phoenix.Router
46+
import Plug.Conn
47+
import Phoenix.Controller
48+
end
49+
end
50+
51+
def channel do
52+
quote do
53+
use Phoenix.Channel
54+
import TransactionsWeb.Gettext
55+
end
56+
end
57+
58+
@doc """
59+
When used, dispatch to the appropriate controller/view/etc.
60+
"""
61+
defmacro __using__(which) when is_atom(which) do
62+
apply(__MODULE__, which, [])
63+
end
64+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
defmodule TransactionsWeb.UserSocket do
2+
use Phoenix.Socket
3+
4+
## Channels
5+
# channel "room:*", TransactionsWeb.RoomChannel
6+
7+
## Transports
8+
transport :websocket, Phoenix.Transports.WebSocket
9+
# transport :longpoll, Phoenix.Transports.LongPoll
10+
11+
# Socket params are passed from the client and can
12+
# be used to verify and authenticate a user. After
13+
# verification, you can put default assigns into
14+
# the socket that will be set for all channels, ie
15+
#
16+
# {:ok, assign(socket, :user_id, verified_user_id)}
17+
#
18+
# To deny connection, return `:error`.
19+
#
20+
# See `Phoenix.Token` documentation for examples in
21+
# performing token verification on connect.
22+
def connect(_params, socket) do
23+
{:ok, socket}
24+
end
25+
26+
# Socket id's are topics that allow you to identify all sockets for a given user:
27+
#
28+
# def id(socket), do: "user_socket:#{socket.assigns.user_id}"
29+
#
30+
# Would allow you to broadcast a "disconnect" event and terminate
31+
# all active sockets and channels for a given user:
32+
#
33+
# TransactionsWeb.Endpoint.broadcast("user_socket:#{user.id}", "disconnect", %{})
34+
#
35+
# Returning `nil` makes this socket anonymous.
36+
def id(_socket), do: nil
37+
end

0 commit comments

Comments
 (0)