From 06b0d8a41be2a8c51fd3ad8352ea42171dd07dbe Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Mon, 22 Apr 2024 22:30:14 -0400 Subject: [PATCH] Add Phoenix application. --- app/.editorconfig | 3 - app/.formatter.exs | 6 + app/.gitignore | 38 +- app/README.md | 23 +- app/assets/css/app.css | 5 + app/assets/js/app.js | 44 ++ app/assets/tailwind.config.js | 75 ++ app/assets/vendor/topbar.js | 165 +++++ app/bun.lockb | Bin 54447 -> 0 bytes app/config/config.exs | 66 ++ app/config/dev.exs | 82 +++ app/config/prod.exs | 20 + app/config/runtime.exs | 117 +++ app/config/test.exs | 33 + app/index.ts | 4 - app/lib/app.ex | 9 + app/lib/app/application.ex | 36 + app/lib/app/mailer.ex | 3 + app/lib/app/repo.ex | 5 + app/lib/app_web.ex | 113 +++ app/lib/app_web/components/core_components.ex | 675 ++++++++++++++++++ app/lib/app_web/components/layouts.ex | 5 + .../app_web/components/layouts/app.html.heex | 32 + .../app_web/components/layouts/root.html.heex | 17 + app/lib/app_web/controllers/error_html.ex | 19 + app/lib/app_web/controllers/error_json.ex | 15 + .../app_web/controllers/hello_controller.ex | 11 + app/lib/app_web/controllers/hello_html.ex | 10 + .../controllers/hello_html/index.html.heex | 3 + .../controllers/hello_html/show.html.heex | 3 + .../app_web/controllers/page_controller.ex | 9 + app/lib/app_web/controllers/page_html.ex | 5 + .../controllers/page_html/home.html.heex | 222 ++++++ app/lib/app_web/endpoint.ex | 65 ++ app/lib/app_web/gettext.ex | 24 + app/lib/app_web/router.ex | 46 ++ app/lib/app_web/telemetry.ex | 92 +++ app/mix.exs | 85 +++ app/mix.lock | 41 ++ app/package.json | 17 - app/priv/gettext/en/LC_MESSAGES/errors.po | 112 +++ app/priv/gettext/errors.pot | 109 +++ app/priv/repo/migrations/.formatter.exs | 4 + app/priv/repo/seeds.exs | 11 + app/priv/static/favicon.ico | Bin 0 -> 152 bytes app/priv/static/images/logo.svg | 6 + app/priv/static/robots.txt | 5 + app/src/api/controller.ts | 5 - app/src/api/user-controller.ts | 58 -- app/src/domain/entity.ts | 23 - app/src/domain/repository.ts | 22 - .../domain/repository/channel-repository.ts | 39 - app/src/domain/repository/image-repository.ts | 57 -- app/src/domain/repository/user-repository.ts | 89 --- app/src/infrastructure/connection-pool.ts | 10 - app/src/models/channel.ts | 16 - app/src/models/episode.ts | 12 - app/src/models/image.ts | 6 - app/src/models/user.ts | 10 - app/src/server.ts | 19 - .../app_web/controllers/error_html_test.exs | 14 + .../app_web/controllers/error_json_test.exs | 12 + .../controllers/page_controller_test.exs | 8 + app/test/support/conn_case.ex | 38 + app/test/support/data_case.ex | 58 ++ app/test/test_helper.exs | 2 + app/tsconfig.json | 30 - docker-compose.yml | 13 +- 68 files changed, 2593 insertions(+), 438 deletions(-) delete mode 100644 app/.editorconfig create mode 100644 app/.formatter.exs create mode 100644 app/assets/css/app.css create mode 100644 app/assets/js/app.js create mode 100644 app/assets/tailwind.config.js create mode 100644 app/assets/vendor/topbar.js delete mode 100755 app/bun.lockb create mode 100644 app/config/config.exs create mode 100644 app/config/dev.exs create mode 100644 app/config/prod.exs create mode 100644 app/config/runtime.exs create mode 100644 app/config/test.exs delete mode 100644 app/index.ts create mode 100644 app/lib/app.ex create mode 100644 app/lib/app/application.ex create mode 100644 app/lib/app/mailer.ex create mode 100644 app/lib/app/repo.ex create mode 100644 app/lib/app_web.ex create mode 100644 app/lib/app_web/components/core_components.ex create mode 100644 app/lib/app_web/components/layouts.ex create mode 100644 app/lib/app_web/components/layouts/app.html.heex create mode 100644 app/lib/app_web/components/layouts/root.html.heex create mode 100644 app/lib/app_web/controllers/error_html.ex create mode 100644 app/lib/app_web/controllers/error_json.ex create mode 100644 app/lib/app_web/controllers/hello_controller.ex create mode 100644 app/lib/app_web/controllers/hello_html.ex create mode 100644 app/lib/app_web/controllers/hello_html/index.html.heex create mode 100644 app/lib/app_web/controllers/hello_html/show.html.heex create mode 100644 app/lib/app_web/controllers/page_controller.ex create mode 100644 app/lib/app_web/controllers/page_html.ex create mode 100644 app/lib/app_web/controllers/page_html/home.html.heex create mode 100644 app/lib/app_web/endpoint.ex create mode 100644 app/lib/app_web/gettext.ex create mode 100644 app/lib/app_web/router.ex create mode 100644 app/lib/app_web/telemetry.ex create mode 100644 app/mix.exs create mode 100644 app/mix.lock delete mode 100644 app/package.json create mode 100644 app/priv/gettext/en/LC_MESSAGES/errors.po create mode 100644 app/priv/gettext/errors.pot create mode 100644 app/priv/repo/migrations/.formatter.exs create mode 100644 app/priv/repo/seeds.exs create mode 100644 app/priv/static/favicon.ico create mode 100644 app/priv/static/images/logo.svg create mode 100644 app/priv/static/robots.txt delete mode 100644 app/src/api/controller.ts delete mode 100644 app/src/api/user-controller.ts delete mode 100644 app/src/domain/entity.ts delete mode 100644 app/src/domain/repository.ts delete mode 100644 app/src/domain/repository/channel-repository.ts delete mode 100644 app/src/domain/repository/image-repository.ts delete mode 100644 app/src/domain/repository/user-repository.ts delete mode 100644 app/src/infrastructure/connection-pool.ts delete mode 100644 app/src/models/channel.ts delete mode 100644 app/src/models/episode.ts delete mode 100644 app/src/models/image.ts delete mode 100644 app/src/models/user.ts delete mode 100644 app/src/server.ts create mode 100644 app/test/app_web/controllers/error_html_test.exs create mode 100644 app/test/app_web/controllers/error_json_test.exs create mode 100644 app/test/app_web/controllers/page_controller_test.exs create mode 100644 app/test/support/conn_case.ex create mode 100644 app/test/support/data_case.ex create mode 100644 app/test/test_helper.exs delete mode 100644 app/tsconfig.json diff --git a/app/.editorconfig b/app/.editorconfig deleted file mode 100644 index 7445b61..0000000 --- a/app/.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -[*.{js,jsx,ts,tsx}] -indent_style = space -indent_size = 2 diff --git a/app/.formatter.exs b/app/.formatter.exs new file mode 100644 index 0000000..ef8840c --- /dev/null +++ b/app/.formatter.exs @@ -0,0 +1,6 @@ +[ + import_deps: [:ecto, :ecto_sql, :phoenix], + subdirectories: ["priv/*/migrations"], + plugins: [Phoenix.LiveView.HTMLFormatter], + inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"] +] diff --git a/app/.gitignore b/app/.gitignore index 3c3629e..8073c0c 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1 +1,37 @@ -node_modules +# The directory Mix will write compiled artifacts to. +/_build/ + +# If you run "mix test --cover", coverage assets end up here. +/cover/ + +# The directory Mix downloads your dependencies sources to. +/deps/ + +# Where 3rd-party dependencies like ExDoc output generated docs. +/doc/ + +# Ignore .fetch files in case you like to edit your project deps locally. +/.fetch + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez + +# Temporary files, for example, from tests. +/tmp/ + +# Ignore package tarball (built via "mix hex.build"). +app-*.tar + +# Ignore assets that are produced by build tools. +/priv/static/assets/ + +# Ignore digested assets cache. +/priv/static/cache_manifest.json + +# In case you use Node.js/npm, you want to ignore these. +npm-debug.log +/assets/node_modules/ + diff --git a/app/README.md b/app/README.md index 8033691..a620cf9 100644 --- a/app/README.md +++ b/app/README.md @@ -1,15 +1,18 @@ -# slovocast-api +# App -To install dependencies: +To start your Phoenix server: -```bash -bun install -``` + * Run `mix setup` to install and setup dependencies + * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` -To run: +Now you can visit [`localhost:4000`](http://localhost:4000) from your browser. -```bash -bun run server.ts -``` +Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html). -This project was created using `bun init` in bun v1.0.35. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. +## Learn more + + * Official website: https://www.phoenixframework.org/ + * Guides: https://hexdocs.pm/phoenix/overview.html + * Docs: https://hexdocs.pm/phoenix + * Forum: https://elixirforum.com/c/phoenix-forum + * Source: https://github.com/phoenixframework/phoenix diff --git a/app/assets/css/app.css b/app/assets/css/app.css new file mode 100644 index 0000000..378c8f9 --- /dev/null +++ b/app/assets/css/app.css @@ -0,0 +1,5 @@ +@import "tailwindcss/base"; +@import "tailwindcss/components"; +@import "tailwindcss/utilities"; + +/* This file is for your main application CSS */ diff --git a/app/assets/js/app.js b/app/assets/js/app.js new file mode 100644 index 0000000..d5e278a --- /dev/null +++ b/app/assets/js/app.js @@ -0,0 +1,44 @@ +// If you want to use Phoenix channels, run `mix help phx.gen.channel` +// to get started and then uncomment the line below. +// import "./user_socket.js" + +// You can include dependencies in two ways. +// +// The simplest option is to put them in assets/vendor and +// import them using relative paths: +// +// import "../vendor/some-package.js" +// +// Alternatively, you can `npm install some-package --prefix assets` and import +// them using a path starting with the package name: +// +// import "some-package" +// + +// Include phoenix_html to handle method=PUT/DELETE in forms and buttons. +import "phoenix_html" +// Establish Phoenix Socket and LiveView configuration. +import {Socket} from "phoenix" +import {LiveSocket} from "phoenix_live_view" +import topbar from "../vendor/topbar" + +let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content") +let liveSocket = new LiveSocket("/live", Socket, { + longPollFallbackMs: 2500, + params: {_csrf_token: csrfToken} +}) + +// Show progress bar on live navigation and form submits +topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"}) +window.addEventListener("phx:page-loading-start", _info => topbar.show(300)) +window.addEventListener("phx:page-loading-stop", _info => topbar.hide()) + +// connect if there are any LiveViews on the page +liveSocket.connect() + +// expose liveSocket on window for web console debug logs and latency simulation: +// >> liveSocket.enableDebug() +// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session +// >> liveSocket.disableLatencySim() +window.liveSocket = liveSocket + diff --git a/app/assets/tailwind.config.js b/app/assets/tailwind.config.js new file mode 100644 index 0000000..c7e7944 --- /dev/null +++ b/app/assets/tailwind.config.js @@ -0,0 +1,75 @@ +// See the Tailwind configuration guide for advanced usage +// https://tailwindcss.com/docs/configuration + +const plugin = require("tailwindcss/plugin") +const fs = require("fs") +const path = require("path") + +module.exports = { + content: [ + "./js/**/*.js", + "../lib/app_web.ex", + "../lib/app_web/**/*.*ex" + ], + theme: { + extend: { + colors: { + brand: "#FD4F00", + } + }, + }, + plugins: [ + require("@tailwindcss/forms"), + // Allows prefixing tailwind classes with LiveView classes to add rules + // only when LiveView classes are applied, for example: + // + //
+ // + plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])), + plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), + plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), + plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])), + + // Embeds Heroicons (https://heroicons.com) into your app.css bundle + // See your `CoreComponents.icon/1` for more information. + // + plugin(function({matchComponents, theme}) { + let iconsDir = path.join(__dirname, "../deps/heroicons/optimized") + let values = {} + let icons = [ + ["", "/24/outline"], + ["-solid", "/24/solid"], + ["-mini", "/20/solid"], + ["-micro", "/16/solid"] + ] + icons.forEach(([suffix, dir]) => { + fs.readdirSync(path.join(iconsDir, dir)).forEach(file => { + let name = path.basename(file, ".svg") + suffix + values[name] = {name, fullPath: path.join(iconsDir, dir, file)} + }) + }) + matchComponents({ + "hero": ({name, fullPath}) => { + let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "") + let size = theme("spacing.6") + if (name.endsWith("-mini")) { + size = theme("spacing.5") + } else if (name.endsWith("-micro")) { + size = theme("spacing.4") + } + return { + [`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`, + "-webkit-mask": `var(--hero-${name})`, + "mask": `var(--hero-${name})`, + "mask-repeat": "no-repeat", + "background-color": "currentColor", + "vertical-align": "middle", + "display": "inline-block", + "width": size, + "height": size + } + } + }, {values}) + }) + ] +} diff --git a/app/assets/vendor/topbar.js b/app/assets/vendor/topbar.js new file mode 100644 index 0000000..4195727 --- /dev/null +++ b/app/assets/vendor/topbar.js @@ -0,0 +1,165 @@ +/** + * @license MIT + * topbar 2.0.0, 2023-02-04 + * https://buunguyen.github.io/topbar + * Copyright (c) 2021 Buu Nguyen + */ +(function (window, document) { + "use strict"; + + // https://gist.github.com/paulirish/1579671 + (function () { + var lastTime = 0; + var vendors = ["ms", "moz", "webkit", "o"]; + for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + window.requestAnimationFrame = + window[vendors[x] + "RequestAnimationFrame"]; + window.cancelAnimationFrame = + window[vendors[x] + "CancelAnimationFrame"] || + window[vendors[x] + "CancelRequestAnimationFrame"]; + } + if (!window.requestAnimationFrame) + window.requestAnimationFrame = function (callback, element) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = window.setTimeout(function () { + callback(currTime + timeToCall); + }, timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + if (!window.cancelAnimationFrame) + window.cancelAnimationFrame = function (id) { + clearTimeout(id); + }; + })(); + + var canvas, + currentProgress, + showing, + progressTimerId = null, + fadeTimerId = null, + delayTimerId = null, + addEvent = function (elem, type, handler) { + if (elem.addEventListener) elem.addEventListener(type, handler, false); + else if (elem.attachEvent) elem.attachEvent("on" + type, handler); + else elem["on" + type] = handler; + }, + options = { + autoRun: true, + barThickness: 3, + barColors: { + 0: "rgba(26, 188, 156, .9)", + ".25": "rgba(52, 152, 219, .9)", + ".50": "rgba(241, 196, 15, .9)", + ".75": "rgba(230, 126, 34, .9)", + "1.0": "rgba(211, 84, 0, .9)", + }, + shadowBlur: 10, + shadowColor: "rgba(0, 0, 0, .6)", + className: null, + }, + repaint = function () { + canvas.width = window.innerWidth; + canvas.height = options.barThickness * 5; // need space for shadow + + var ctx = canvas.getContext("2d"); + ctx.shadowBlur = options.shadowBlur; + ctx.shadowColor = options.shadowColor; + + var lineGradient = ctx.createLinearGradient(0, 0, canvas.width, 0); + for (var stop in options.barColors) + lineGradient.addColorStop(stop, options.barColors[stop]); + ctx.lineWidth = options.barThickness; + ctx.beginPath(); + ctx.moveTo(0, options.barThickness / 2); + ctx.lineTo( + Math.ceil(currentProgress * canvas.width), + options.barThickness / 2 + ); + ctx.strokeStyle = lineGradient; + ctx.stroke(); + }, + createCanvas = function () { + canvas = document.createElement("canvas"); + var style = canvas.style; + style.position = "fixed"; + style.top = style.left = style.right = style.margin = style.padding = 0; + style.zIndex = 100001; + style.display = "none"; + if (options.className) canvas.classList.add(options.className); + document.body.appendChild(canvas); + addEvent(window, "resize", repaint); + }, + topbar = { + config: function (opts) { + for (var key in opts) + if (options.hasOwnProperty(key)) options[key] = opts[key]; + }, + show: function (delay) { + if (showing) return; + if (delay) { + if (delayTimerId) return; + delayTimerId = setTimeout(() => topbar.show(), delay); + } else { + showing = true; + if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId); + if (!canvas) createCanvas(); + canvas.style.opacity = 1; + canvas.style.display = "block"; + topbar.progress(0); + if (options.autoRun) { + (function loop() { + progressTimerId = window.requestAnimationFrame(loop); + topbar.progress( + "+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2) + ); + })(); + } + } + }, + progress: function (to) { + if (typeof to === "undefined") return currentProgress; + if (typeof to === "string") { + to = + (to.indexOf("+") >= 0 || to.indexOf("-") >= 0 + ? currentProgress + : 0) + parseFloat(to); + } + currentProgress = to > 1 ? 1 : to; + repaint(); + return currentProgress; + }, + hide: function () { + clearTimeout(delayTimerId); + delayTimerId = null; + if (!showing) return; + showing = false; + if (progressTimerId != null) { + window.cancelAnimationFrame(progressTimerId); + progressTimerId = null; + } + (function loop() { + if (topbar.progress("+.1") >= 1) { + canvas.style.opacity -= 0.05; + if (canvas.style.opacity <= 0.05) { + canvas.style.display = "none"; + fadeTimerId = null; + return; + } + } + fadeTimerId = window.requestAnimationFrame(loop); + })(); + }, + }; + + if (typeof module === "object" && typeof module.exports === "object") { + module.exports = topbar; + } else if (typeof define === "function" && define.amd) { + define(function () { + return topbar; + }); + } else { + this.topbar = topbar; + } +}.call(this, window, document)); diff --git a/app/bun.lockb b/app/bun.lockb deleted file mode 100755 index 0ba25ec771d594e6515963e96509b5dbba2b4b6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54447 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 KROI&meg6YOn~^~P diff --git a/app/config/config.exs b/app/config/config.exs new file mode 100644 index 0000000..f05f97e --- /dev/null +++ b/app/config/config.exs @@ -0,0 +1,66 @@ +# This file is responsible for configuring your application +# and its dependencies with the aid of the Config module. +# +# This configuration file is loaded before any dependency and +# is restricted to this project. + +# General application configuration +import Config + +config :app, + ecto_repos: [App.Repo], + generators: [timestamp_type: :utc_datetime] + +# Configures the endpoint +config :app, AppWeb.Endpoint, + url: [host: "localhost"], + adapter: Bandit.PhoenixAdapter, + render_errors: [ + formats: [html: AppWeb.ErrorHTML, json: AppWeb.ErrorJSON], + layout: false + ], + pubsub_server: App.PubSub, + live_view: [signing_salt: "62+191z+"] + +# Configures the mailer +# +# By default it uses the "Local" adapter which stores the emails +# locally. You can see the emails in your browser, at "/dev/mailbox". +# +# For production it's recommended to configure a different adapter +# at the `config/runtime.exs`. +config :app, App.Mailer, adapter: Swoosh.Adapters.Local + +# Configure esbuild (the version is required) +config :esbuild, + version: "0.17.11", + app: [ + args: + ~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), + cd: Path.expand("../assets", __DIR__), + env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} + ] + +# Configure tailwind (the version is required) +config :tailwind, + version: "3.4.0", + app: [ + args: ~w( + --config=tailwind.config.js + --input=css/app.css + --output=../priv/static/assets/app.css + ), + cd: Path.expand("../assets", __DIR__) + ] + +# Configures Elixir's Logger +config :logger, :console, + format: "$time $metadata[$level] $message\n", + metadata: [:request_id] + +# Use Jason for JSON parsing in Phoenix +config :phoenix, :json_library, Jason + +# Import environment specific config. This must remain at the bottom +# of this file so it overrides the configuration defined above. +import_config "#{config_env()}.exs" diff --git a/app/config/dev.exs b/app/config/dev.exs new file mode 100644 index 0000000..6b5a7dc --- /dev/null +++ b/app/config/dev.exs @@ -0,0 +1,82 @@ +import Config + +# Configure your database +config :app, App.Repo, + username: "slovocast", + password: "password", + hostname: "localhost", + database: "slovocast", + stacktrace: true, + show_sensitive_data_on_connection_error: true, + pool_size: 10 + +# For development, we disable any cache and enable +# debugging and code reloading. +# +# The watchers configuration can be used to run external +# watchers to your application. For example, we can use it +# to bundle .js and .css sources. +config :app, AppWeb.Endpoint, + # Binding to loopback ipv4 address prevents access from other machines. + # Change to `ip: {0, 0, 0, 0}` to allow access from other machines. + http: [ip: {127, 0, 0, 1}, port: 4000], + check_origin: false, + code_reloader: true, + debug_errors: true, + secret_key_base: "/bVXtCMQrqe1J3I81rZlY3uXfwr7HYFzema/42p5Y7fB/AD3sQjMte03GmO4i90D", + watchers: [ + esbuild: {Esbuild, :install_and_run, [:app, ~w(--sourcemap=inline --watch)]}, + tailwind: {Tailwind, :install_and_run, [:app, ~w(--watch)]} + ] + +# ## SSL Support +# +# In order to use HTTPS in development, a self-signed +# certificate can be generated by running the following +# Mix task: +# +# mix phx.gen.cert +# +# Run `mix help phx.gen.cert` for more information. +# +# The `http:` config above can be replaced with: +# +# https: [ +# port: 4001, +# cipher_suite: :strong, +# keyfile: "priv/cert/selfsigned_key.pem", +# certfile: "priv/cert/selfsigned.pem" +# ], +# +# If desired, both `http:` and `https:` keys can be +# configured to run both http and https servers on +# different ports. + +# Watch static and templates for browser reloading. +config :app, AppWeb.Endpoint, + live_reload: [ + patterns: [ + ~r"priv/static/(?!uploads/).*(js|css|png|jpeg|jpg|gif|svg)$", + ~r"priv/gettext/.*(po)$", + ~r"lib/app_web/(controllers|live|components)/.*(ex|heex)$" + ] + ] + +# Enable dev routes for dashboard and mailbox +config :app, dev_routes: true + +# Do not include metadata nor timestamps in development logs +config :logger, :console, format: "[$level] $message\n" + +# Set a higher stacktrace during development. Avoid configuring such +# in production as building large stacktraces may be expensive. +config :phoenix, :stacktrace_depth, 20 + +# Initialize plugs at runtime for faster development compilation +config :phoenix, :plug_init_mode, :runtime + +# Include HEEx debug annotations as HTML comments in rendered markup +config :phoenix_live_view, :debug_heex_annotations, true + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false diff --git a/app/config/prod.exs b/app/config/prod.exs new file mode 100644 index 0000000..0edbd60 --- /dev/null +++ b/app/config/prod.exs @@ -0,0 +1,20 @@ +import Config + +# Note we also include the path to a cache manifest +# containing the digested version of static files. This +# manifest is generated by the `mix assets.deploy` task, +# which you should run after static files are built and +# before starting your production server. +config :app, AppWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" + +# Configures Swoosh API Client +config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: App.Finch + +# Disable Swoosh Local Memory Storage +config :swoosh, local: false + +# Do not print debug messages in production +config :logger, level: :info + +# Runtime production configuration, including reading +# of environment variables, is done on config/runtime.exs. diff --git a/app/config/runtime.exs b/app/config/runtime.exs new file mode 100644 index 0000000..9316116 --- /dev/null +++ b/app/config/runtime.exs @@ -0,0 +1,117 @@ +import Config + +# config/runtime.exs is executed for all environments, including +# during releases. It is executed after compilation and before the +# system starts, so it is typically used to load production configuration +# and secrets from environment variables or elsewhere. Do not define +# any compile-time configuration in here, as it won't be applied. +# The block below contains prod specific runtime configuration. + +# ## Using releases +# +# If you use `mix release`, you need to explicitly enable the server +# by passing the PHX_SERVER=true when you start it: +# +# PHX_SERVER=true bin/app start +# +# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server` +# script that automatically sets the env var above. +if System.get_env("PHX_SERVER") do + config :app, AppWeb.Endpoint, server: true +end + +if config_env() == :prod do + database_url = + System.get_env("DATABASE_URL") || + raise """ + environment variable DATABASE_URL is missing. + For example: ecto://USER:PASS@HOST/DATABASE + """ + + maybe_ipv6 = if System.get_env("ECTO_IPV6") in ~w(true 1), do: [:inet6], else: [] + + config :app, App.Repo, + # ssl: true, + url: database_url, + pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"), + socket_options: maybe_ipv6 + + # The secret key base is used to sign/encrypt cookies and other secrets. + # A default value is used in config/dev.exs and config/test.exs but you + # want to use a different value for prod and you most likely don't want + # to check this value into version control, so we use an environment + # variable instead. + secret_key_base = + System.get_env("SECRET_KEY_BASE") || + raise """ + environment variable SECRET_KEY_BASE is missing. + You can generate one by calling: mix phx.gen.secret + """ + + host = System.get_env("PHX_HOST") || "example.com" + port = String.to_integer(System.get_env("PORT") || "4000") + + config :app, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY") + + config :app, AppWeb.Endpoint, + url: [host: host, port: 443, scheme: "https"], + http: [ + # Enable IPv6 and bind on all interfaces. + # Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access. + # See the documentation on https://hexdocs.pm/bandit/Bandit.html#t:options/0 + # for details about using IPv6 vs IPv4 and loopback vs public addresses. + ip: {0, 0, 0, 0, 0, 0, 0, 0}, + port: port + ], + secret_key_base: secret_key_base + + # ## SSL Support + # + # To get SSL working, you will need to add the `https` key + # to your endpoint configuration: + # + # config :app, AppWeb.Endpoint, + # https: [ + # ..., + # port: 443, + # cipher_suite: :strong, + # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), + # certfile: System.get_env("SOME_APP_SSL_CERT_PATH") + # ] + # + # The `cipher_suite` is set to `:strong` to support only the + # latest and more secure SSL ciphers. This means old browsers + # and clients may not be supported. You can set it to + # `:compatible` for wider support. + # + # `:keyfile` and `:certfile` expect an absolute path to the key + # and cert in disk or a relative path inside priv, for example + # "priv/ssl/server.key". For all supported SSL configuration + # options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 + # + # We also recommend setting `force_ssl` in your config/prod.exs, + # ensuring no data is ever sent via http, always redirecting to https: + # + # config :app, AppWeb.Endpoint, + # force_ssl: [hsts: true] + # + # Check `Plug.SSL` for all available options in `force_ssl`. + + # ## Configuring the mailer + # + # In production you need to configure the mailer to use a different adapter. + # Also, you may need to configure the Swoosh API client of your choice if you + # are not using SMTP. Here is an example of the configuration: + # + # config :app, App.Mailer, + # adapter: Swoosh.Adapters.Mailgun, + # api_key: System.get_env("MAILGUN_API_KEY"), + # domain: System.get_env("MAILGUN_DOMAIN") + # + # For this example you need include a HTTP client required by Swoosh API client. + # Swoosh supports Hackney and Finch out of the box: + # + # config :swoosh, :api_client, Swoosh.ApiClient.Hackney + # + # See https://hexdocs.pm/swoosh/Swoosh.html#module-installation for details. +end diff --git a/app/config/test.exs b/app/config/test.exs new file mode 100644 index 0000000..2393760 --- /dev/null +++ b/app/config/test.exs @@ -0,0 +1,33 @@ +import Config + +# Configure your database +# +# The MIX_TEST_PARTITION environment variable can be used +# to provide built-in test partitioning in CI environment. +# Run `mix help test` for more information. +config :app, App.Repo, + username: "postgres", + password: "postgres", + hostname: "localhost", + database: "app_test#{System.get_env("MIX_TEST_PARTITION")}", + pool: Ecto.Adapters.SQL.Sandbox, + pool_size: System.schedulers_online() * 2 + +# We don't run a server during test. If one is required, +# you can enable the server option below. +config :app, AppWeb.Endpoint, + http: [ip: {127, 0, 0, 1}, port: 4002], + secret_key_base: "FVNTtDJJiLSl0mydxii9KYlsgdACOgSookLcXM8UOIleSq/CpDYjfyhcqSZtHrol", + server: false + +# In test we don't send emails. +config :app, App.Mailer, adapter: Swoosh.Adapters.Test + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false + +# Print only warnings and errors during test +config :logger, level: :warning + +# Initialize plugs at runtime for faster test compilation +config :phoenix, :plug_init_mode, :runtime diff --git a/app/index.ts b/app/index.ts deleted file mode 100644 index 5070c88..0000000 --- a/app/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { server } from '@slovo/server'; -server.listen(3000, () => { - console.log("Running server on port 3000"); -}); diff --git a/app/lib/app.ex b/app/lib/app.ex new file mode 100644 index 0000000..a10dc06 --- /dev/null +++ b/app/lib/app.ex @@ -0,0 +1,9 @@ +defmodule App do + @moduledoc """ + App 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 diff --git a/app/lib/app/application.ex b/app/lib/app/application.ex new file mode 100644 index 0000000..0c9c23f --- /dev/null +++ b/app/lib/app/application.ex @@ -0,0 +1,36 @@ +defmodule App.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 = [ + AppWeb.Telemetry, + App.Repo, + {DNSCluster, query: Application.get_env(:app, :dns_cluster_query) || :ignore}, + {Phoenix.PubSub, name: App.PubSub}, + # Start the Finch HTTP client for sending emails + {Finch, name: App.Finch}, + # Start a worker by calling: App.Worker.start_link(arg) + # {App.Worker, arg}, + # Start to serve requests, typically the last entry + AppWeb.Endpoint + ] + + # See https://hexdocs.pm/elixir/Supervisor.html + # for other strategies and supported options + opts = [strategy: :one_for_one, name: App.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 + AppWeb.Endpoint.config_change(changed, removed) + :ok + end +end diff --git a/app/lib/app/mailer.ex b/app/lib/app/mailer.ex new file mode 100644 index 0000000..4c4c2cb --- /dev/null +++ b/app/lib/app/mailer.ex @@ -0,0 +1,3 @@ +defmodule App.Mailer do + use Swoosh.Mailer, otp_app: :app +end diff --git a/app/lib/app/repo.ex b/app/lib/app/repo.ex new file mode 100644 index 0000000..857bd3f --- /dev/null +++ b/app/lib/app/repo.ex @@ -0,0 +1,5 @@ +defmodule App.Repo do + use Ecto.Repo, + otp_app: :app, + adapter: Ecto.Adapters.Postgres +end diff --git a/app/lib/app_web.ex b/app/lib/app_web.ex new file mode 100644 index 0000000..4b74d02 --- /dev/null +++ b/app/lib/app_web.ex @@ -0,0 +1,113 @@ +defmodule AppWeb do + @moduledoc """ + The entrypoint for defining your web interface, such + as controllers, components, channels, and so on. + + This can be used in your application as: + + use AppWeb, :controller + use AppWeb, :html + + The definitions below will be executed for every controller, + component, etc, so keep them short and clean, focused + on imports, uses and aliases. + + Do NOT define functions inside the quoted expressions + below. Instead, define additional modules and import + those modules here. + """ + + def static_paths, do: ~w(assets fonts images favicon.ico robots.txt) + + def router do + quote do + use Phoenix.Router, helpers: false + + # Import common connection and controller functions to use in pipelines + import Plug.Conn + import Phoenix.Controller + import Phoenix.LiveView.Router + end + end + + def channel do + quote do + use Phoenix.Channel + end + end + + def controller do + quote do + use Phoenix.Controller, + formats: [:html, :json], + layouts: [html: AppWeb.Layouts] + + import Plug.Conn + import AppWeb.Gettext + + unquote(verified_routes()) + end + end + + def live_view do + quote do + use Phoenix.LiveView, + layout: {AppWeb.Layouts, :app} + + unquote(html_helpers()) + end + end + + def live_component do + quote do + use Phoenix.LiveComponent + + unquote(html_helpers()) + end + end + + def html do + quote do + use Phoenix.Component + + # Import convenience functions from controllers + import Phoenix.Controller, + only: [get_csrf_token: 0, view_module: 1, view_template: 1] + + # Include general helpers for rendering HTML + unquote(html_helpers()) + end + end + + defp html_helpers do + quote do + # HTML escaping functionality + import Phoenix.HTML + # Core UI components and translation + import AppWeb.CoreComponents + import AppWeb.Gettext + + # Shortcut for generating JS commands + alias Phoenix.LiveView.JS + + # Routes generation with the ~p sigil + unquote(verified_routes()) + end + end + + def verified_routes do + quote do + use Phoenix.VerifiedRoutes, + endpoint: AppWeb.Endpoint, + router: AppWeb.Router, + statics: AppWeb.static_paths() + 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 diff --git a/app/lib/app_web/components/core_components.ex b/app/lib/app_web/components/core_components.ex new file mode 100644 index 0000000..ccfbc8d --- /dev/null +++ b/app/lib/app_web/components/core_components.ex @@ -0,0 +1,675 @@ +defmodule AppWeb.CoreComponents do + @moduledoc """ + Provides core UI components. + + At first glance, this module may seem daunting, but its goal is to provide + core building blocks for your application, such as modals, tables, and + forms. The components consist mostly of markup and are well-documented + with doc strings and declarative assigns. You may customize and style + them in any way you want, based on your application growth and needs. + + The default components use Tailwind CSS, a utility-first CSS framework. + See the [Tailwind CSS documentation](https://tailwindcss.com) to learn + how to customize them or feel free to swap in another framework altogether. + + Icons are provided by [heroicons](https://heroicons.com). See `icon/1` for usage. + """ + use Phoenix.Component + + alias Phoenix.LiveView.JS + import AppWeb.Gettext + + @doc """ + Renders a modal. + + ## Examples + + <.modal id="confirm-modal"> + This is a modal. + + + JS commands may be passed to the `:on_cancel` to configure + the closing/cancel event, for example: + + <.modal id="confirm" on_cancel={JS.navigate(~p"/posts")}> + This is another modal. + + + """ + attr :id, :string, required: true + attr :show, :boolean, default: false + attr :on_cancel, JS, default: %JS{} + slot :inner_block, required: true + + def modal(assigns) do + ~H""" + + """ + end + + def input(%{type: "select"} = assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + def input(%{type: "textarea"} = assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + # All other inputs text, datetime-local, url, password, etc. are handled here... + def input(assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + @doc """ + Renders a label. + """ + attr :for, :string, default: nil + slot :inner_block, required: true + + def label(assigns) do + ~H""" + + """ + end + + @doc """ + Generates a generic error message. + """ + slot :inner_block, required: true + + def error(assigns) do + ~H""" +

+ <.icon name="hero-exclamation-circle-mini" class="mt-0.5 h-5 w-5 flex-none" /> + <%= render_slot(@inner_block) %> +

+ """ + end + + @doc """ + Renders a header with title. + """ + attr :class, :string, default: nil + + slot :inner_block, required: true + slot :subtitle + slot :actions + + def header(assigns) do + ~H""" +
+
+

+ <%= render_slot(@inner_block) %> +

+

+ <%= render_slot(@subtitle) %> +

+
+
<%= render_slot(@actions) %>
+
+ """ + end + + @doc ~S""" + Renders a table with generic styling. + + ## Examples + + <.table id="users" rows={@users}> + <:col :let={user} label="id"><%= user.id %> + <:col :let={user} label="username"><%= user.username %> + + """ + attr :id, :string, required: true + attr :rows, :list, required: true + attr :row_id, :any, default: nil, doc: "the function for generating the row id" + attr :row_click, :any, default: nil, doc: "the function for handling phx-click on each row" + + attr :row_item, :any, + default: &Function.identity/1, + doc: "the function for mapping each row before calling the :col and :action slots" + + slot :col, required: true do + attr :label, :string + end + + slot :action, doc: "the slot for showing user actions in the last table column" + + def table(assigns) do + assigns = + with %{rows: %Phoenix.LiveView.LiveStream{}} <- assigns do + assign(assigns, row_id: assigns.row_id || fn {id, _item} -> id end) + end + + ~H""" +
+ + + + + + + + + + + + + +
<%= col[:label] %> + <%= gettext("Actions") %> +
+
+ + + <%= render_slot(col, @row_item.(row)) %> + +
+
+
+ + + <%= render_slot(action, @row_item.(row)) %> + +
+
+
+ """ + end + + @doc """ + Renders a data list. + + ## Examples + + <.list> + <:item title="Title"><%= @post.title %> + <:item title="Views"><%= @post.views %> + + """ + slot :item, required: true do + attr :title, :string, required: true + end + + def list(assigns) do + ~H""" +
+
+
+
<%= item.title %>
+
<%= render_slot(item) %>
+
+
+
+ """ + end + + @doc """ + Renders a back navigation link. + + ## Examples + + <.back navigate={~p"/posts"}>Back to posts + """ + attr :navigate, :any, required: true + slot :inner_block, required: true + + def back(assigns) do + ~H""" +
+ <.link + navigate={@navigate} + class="text-sm font-semibold leading-6 text-zinc-900 hover:text-zinc-700" + > + <.icon name="hero-arrow-left-solid" class="h-3 w-3" /> + <%= render_slot(@inner_block) %> + +
+ """ + end + + @doc """ + Renders a [Heroicon](https://heroicons.com). + + Heroicons come in three styles – outline, solid, and mini. + By default, the outline style is used, but solid and mini may + be applied by using the `-solid` and `-mini` suffix. + + You can customize the size and colors of the icons by setting + width, height, and background color classes. + + Icons are extracted from the `deps/heroicons` directory and bundled within + your compiled app.css by the plugin in your `assets/tailwind.config.js`. + + ## Examples + + <.icon name="hero-x-mark-solid" /> + <.icon name="hero-arrow-path" class="ml-1 w-3 h-3 animate-spin" /> + """ + attr :name, :string, required: true + attr :class, :string, default: nil + + def icon(%{name: "hero-" <> _} = assigns) do + ~H""" + + """ + end + + ## JS Commands + + def show(js \\ %JS{}, selector) do + JS.show(js, + to: selector, + transition: + {"transition-all transform ease-out duration-300", + "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95", + "opacity-100 translate-y-0 sm:scale-100"} + ) + end + + def hide(js \\ %JS{}, selector) do + JS.hide(js, + to: selector, + time: 200, + transition: + {"transition-all transform ease-in duration-200", + "opacity-100 translate-y-0 sm:scale-100", + "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"} + ) + end + + def show_modal(js \\ %JS{}, id) when is_binary(id) do + js + |> JS.show(to: "##{id}") + |> JS.show( + to: "##{id}-bg", + transition: {"transition-all transform ease-out duration-300", "opacity-0", "opacity-100"} + ) + |> show("##{id}-container") + |> JS.add_class("overflow-hidden", to: "body") + |> JS.focus_first(to: "##{id}-content") + end + + def hide_modal(js \\ %JS{}, id) do + js + |> JS.hide( + to: "##{id}-bg", + transition: {"transition-all transform ease-in duration-200", "opacity-100", "opacity-0"} + ) + |> hide("##{id}-container") + |> JS.hide(to: "##{id}", transition: {"block", "block", "hidden"}) + |> JS.remove_class("overflow-hidden", to: "body") + |> JS.pop_focus() + end + + @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 the number of files with plural rules + # dngettext("errors", "1 file", "%{count} files", count) + # + # However the error messages in our forms and APIs are generated + # dynamically, so we need to translate them by calling Gettext + # with our gettext backend as first argument. Translations are + # available in the errors.po file (as we use the "errors" domain). + if count = opts[:count] do + Gettext.dngettext(AppWeb.Gettext, "errors", msg, msg, count, opts) + else + Gettext.dgettext(AppWeb.Gettext, "errors", msg, opts) + end + end + + @doc """ + Translates the errors for a field from a keyword list of errors. + """ + def translate_errors(errors, field) when is_list(errors) do + for {^field, {msg, opts}} <- errors, do: translate_error({msg, opts}) + end +end diff --git a/app/lib/app_web/components/layouts.ex b/app/lib/app_web/components/layouts.ex new file mode 100644 index 0000000..2ce6721 --- /dev/null +++ b/app/lib/app_web/components/layouts.ex @@ -0,0 +1,5 @@ +defmodule AppWeb.Layouts do + use AppWeb, :html + + embed_templates "layouts/*" +end diff --git a/app/lib/app_web/components/layouts/app.html.heex b/app/lib/app_web/components/layouts/app.html.heex new file mode 100644 index 0000000..e23bfc8 --- /dev/null +++ b/app/lib/app_web/components/layouts/app.html.heex @@ -0,0 +1,32 @@ +
+
+
+ + + +

+ v<%= Application.spec(:phoenix, :vsn) %> +

+
+ +
+
+
+
+ <.flash_group flash={@flash} /> + <%= @inner_content %> +
+
diff --git a/app/lib/app_web/components/layouts/root.html.heex b/app/lib/app_web/components/layouts/root.html.heex new file mode 100644 index 0000000..35aa3dc --- /dev/null +++ b/app/lib/app_web/components/layouts/root.html.heex @@ -0,0 +1,17 @@ + + + + + + + <.live_title suffix=" · Phoenix Framework"> + <%= assigns[:page_title] || "App" %> + + + + + + <%= @inner_content %> + + diff --git a/app/lib/app_web/controllers/error_html.ex b/app/lib/app_web/controllers/error_html.ex new file mode 100644 index 0000000..f04c674 --- /dev/null +++ b/app/lib/app_web/controllers/error_html.ex @@ -0,0 +1,19 @@ +defmodule AppWeb.ErrorHTML do + use AppWeb, :html + + # If you want to customize your error pages, + # uncomment the embed_templates/1 call below + # and add pages to the error directory: + # + # * lib/app_web/controllers/error_html/404.html.heex + # * lib/app_web/controllers/error_html/500.html.heex + # + # embed_templates "error_html/*" + + # The default is to render a plain text page based on + # the template name. For example, "404.html" becomes + # "Not Found". + def render(template, _assigns) do + Phoenix.Controller.status_message_from_template(template) + end +end diff --git a/app/lib/app_web/controllers/error_json.ex b/app/lib/app_web/controllers/error_json.ex new file mode 100644 index 0000000..000c0bf --- /dev/null +++ b/app/lib/app_web/controllers/error_json.ex @@ -0,0 +1,15 @@ +defmodule AppWeb.ErrorJSON do + # If you want to customize a particular status code, + # you may add your own clauses, such as: + # + # 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 render(template, _assigns) do + %{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}} + end +end diff --git a/app/lib/app_web/controllers/hello_controller.ex b/app/lib/app_web/controllers/hello_controller.ex new file mode 100644 index 0000000..0168be3 --- /dev/null +++ b/app/lib/app_web/controllers/hello_controller.ex @@ -0,0 +1,11 @@ +defmodule AppWeb.HelloController do + use AppWeb, :controller + + def index(conn, _params) do + render(conn, :index) + end + + def show(conn, %{"messenger" => messenger}) do + render(conn, :show, messenger: messenger) + end +end diff --git a/app/lib/app_web/controllers/hello_html.ex b/app/lib/app_web/controllers/hello_html.ex new file mode 100644 index 0000000..ac09767 --- /dev/null +++ b/app/lib/app_web/controllers/hello_html.ex @@ -0,0 +1,10 @@ +defmodule AppWeb.HelloHTML do + use AppWeb, :html + embed_templates "hello_html/*" + + def index(assigns) do + ~H""" + Hello! + """ + end +end diff --git a/app/lib/app_web/controllers/hello_html/index.html.heex b/app/lib/app_web/controllers/hello_html/index.html.heex new file mode 100644 index 0000000..fe644ca --- /dev/null +++ b/app/lib/app_web/controllers/hello_html/index.html.heex @@ -0,0 +1,3 @@ +
+

Hello world, from Phoenix!

+
diff --git a/app/lib/app_web/controllers/hello_html/show.html.heex b/app/lib/app_web/controllers/hello_html/show.html.heex new file mode 100644 index 0000000..64b0540 --- /dev/null +++ b/app/lib/app_web/controllers/hello_html/show.html.heex @@ -0,0 +1,3 @@ +
+

Hello world, from <%= @messenger %>!

+
diff --git a/app/lib/app_web/controllers/page_controller.ex b/app/lib/app_web/controllers/page_controller.ex new file mode 100644 index 0000000..df51b09 --- /dev/null +++ b/app/lib/app_web/controllers/page_controller.ex @@ -0,0 +1,9 @@ +defmodule AppWeb.PageController do + use AppWeb, :controller + + def home(conn, _params) do + # The home page is often custom made, + # so skip the default app layout. + render(conn, :home, layout: false) + end +end diff --git a/app/lib/app_web/controllers/page_html.ex b/app/lib/app_web/controllers/page_html.ex new file mode 100644 index 0000000..f7d5a30 --- /dev/null +++ b/app/lib/app_web/controllers/page_html.ex @@ -0,0 +1,5 @@ +defmodule AppWeb.PageHTML do + use AppWeb, :html + + embed_templates "page_html/*" +end diff --git a/app/lib/app_web/controllers/page_html/home.html.heex b/app/lib/app_web/controllers/page_html/home.html.heex new file mode 100644 index 0000000..dc1820b --- /dev/null +++ b/app/lib/app_web/controllers/page_html/home.html.heex @@ -0,0 +1,222 @@ +<.flash_group flash={@flash} /> + +
+
+ +

+ Phoenix Framework + + v<%= Application.spec(:phoenix, :vsn) %> + +

+

+ Peace of mind from prototype to production. +

+

+ Build rich, interactive web applications quickly, with less code and fewer moving parts. Join our growing community of developers using Phoenix to craft APIs, HTML5 apps and more, for fun or at scale. +

+ +
+
diff --git a/app/lib/app_web/endpoint.ex b/app/lib/app_web/endpoint.ex new file mode 100644 index 0000000..7a245d7 --- /dev/null +++ b/app/lib/app_web/endpoint.ex @@ -0,0 +1,65 @@ +defmodule AppWeb.Endpoint do + use Phoenix.Endpoint, otp_app: :app + + # 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: "_app_key", + signing_salt: "dpwatWFp", + same_site: "Lax" + ] + + socket "/live", Phoenix.LiveView.Socket, + websocket: [connect_info: [session: @session_options]], + longpoll: [connect_info: [session: @session_options]] + + plug :introspect + def introspect(conn, _opts) do + IO.puts """ + Verb: #{inspect(conn.method)} + Host: #{inspect(conn.host)} + Headers: #{inspect(conn.req_headers)} + Path: #{inspect(conn.request_path)} + """ + + conn + end + + # 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: :app, + gzip: false, + only: AppWeb.static_paths() + + # Code reloading can be explicitly enabled under the + # :code_reloader configuration of your endpoint. + if code_reloading? do + socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket + plug Phoenix.LiveReloader + plug Phoenix.CodeReloader + plug Phoenix.Ecto.CheckRepoStatus, otp_app: :app + end + + plug Phoenix.LiveDashboard.RequestLogger, + param_key: "request_logger", + cookie_key: "request_logger" + + 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 AppWeb.Router +end diff --git a/app/lib/app_web/gettext.ex b/app/lib/app_web/gettext.ex new file mode 100644 index 0000000..19bc04e --- /dev/null +++ b/app/lib/app_web/gettext.ex @@ -0,0 +1,24 @@ +defmodule AppWeb.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 AppWeb.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: :app +end diff --git a/app/lib/app_web/router.ex b/app/lib/app_web/router.ex new file mode 100644 index 0000000..8281b55 --- /dev/null +++ b/app/lib/app_web/router.ex @@ -0,0 +1,46 @@ +defmodule AppWeb.Router do + use AppWeb, :router + + pipeline :browser do + plug :accepts, ["html"] + plug :fetch_session + plug :fetch_live_flash + plug :put_root_layout, html: {AppWeb.Layouts, :root} + plug :protect_from_forgery + plug :put_secure_browser_headers + end + + pipeline :api do + plug :accepts, ["json"] + end + + scope "/", AppWeb do + pipe_through :browser + + get "/", PageController, :home + get "/hello", HelloController, :index + get "/hello/:messenger", HelloController, :show + end + + # Other scopes may use custom stacks. + # scope "/api", AppWeb do + # pipe_through :api + # end + + # Enable LiveDashboard and Swoosh mailbox preview in development + if Application.compile_env(:app, :dev_routes) do + # If you want to use the LiveDashboard in production, you should put + # it behind authentication and allow only admins to access it. + # If your application does not have an admins-only section yet, + # you can use Plug.BasicAuth to set up some basic authentication + # as long as you are also using SSL (which you should anyway). + import Phoenix.LiveDashboard.Router + + scope "/dev" do + pipe_through :browser + + live_dashboard "/dashboard", metrics: AppWeb.Telemetry + forward "/mailbox", Plug.Swoosh.MailboxPreview + end + end +end diff --git a/app/lib/app_web/telemetry.ex b/app/lib/app_web/telemetry.ex new file mode 100644 index 0000000..aae2e6c --- /dev/null +++ b/app/lib/app_web/telemetry.ex @@ -0,0 +1,92 @@ +defmodule AppWeb.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.start.system_time", + unit: {:native, :millisecond} + ), + summary("phoenix.endpoint.stop.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.start.system_time", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.exception.duration", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.stop.duration", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.socket_connected.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.channel_joined.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.channel_handled_in.duration", + tags: [:event], + unit: {:native, :millisecond} + ), + + # Database Metrics + summary("app.repo.query.total_time", + unit: {:native, :millisecond}, + description: "The sum of the other measurements" + ), + summary("app.repo.query.decode_time", + unit: {:native, :millisecond}, + description: "The time spent decoding the data received from the database" + ), + summary("app.repo.query.query_time", + unit: {:native, :millisecond}, + description: "The time spent executing the query" + ), + summary("app.repo.query.queue_time", + unit: {:native, :millisecond}, + description: "The time spent waiting for a database connection" + ), + summary("app.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. + # {AppWeb, :count_users, []} + ] + end +end diff --git a/app/mix.exs b/app/mix.exs new file mode 100644 index 0000000..8a521e7 --- /dev/null +++ b/app/mix.exs @@ -0,0 +1,85 @@ +defmodule App.MixProject do + use Mix.Project + + def project do + [ + app: :app, + version: "0.1.0", + elixir: "~> 1.14", + elixirc_paths: elixirc_paths(Mix.env()), + start_permanent: Mix.env() == :prod, + aliases: aliases(), + deps: deps() + ] + end + + # Configuration for the OTP application. + # + # Type `mix help compile.app` for more information. + def application do + [ + mod: {App.Application, []}, + extra_applications: [:logger, :runtime_tools] + ] + end + + # Specifies which paths to compile per environment. + defp elixirc_paths(:test), do: ["lib", "test/support"] + defp elixirc_paths(_), do: ["lib"] + + # Specifies your project dependencies. + # + # Type `mix help deps` for examples and options. + defp deps do + [ + {:phoenix, "~> 1.7.11"}, + {:phoenix_ecto, "~> 4.4"}, + {:ecto_sql, "~> 3.10"}, + {:postgrex, ">= 0.0.0"}, + {:phoenix_html, "~> 4.0"}, + {:phoenix_live_reload, "~> 1.2", only: :dev}, + {:phoenix_live_view, "~> 0.20.2"}, + {:floki, ">= 0.30.0", only: :test}, + {:phoenix_live_dashboard, "~> 0.8.3"}, + {:esbuild, "~> 0.8", runtime: Mix.env() == :dev}, + {:tailwind, "~> 0.2", runtime: Mix.env() == :dev}, + {:heroicons, + github: "tailwindlabs/heroicons", + tag: "v2.1.1", + sparse: "optimized", + app: false, + compile: false, + depth: 1}, + {:swoosh, "~> 1.5"}, + {:finch, "~> 0.13"}, + {:telemetry_metrics, "~> 0.6"}, + {:telemetry_poller, "~> 1.0"}, + {:gettext, "~> 0.20"}, + {:jason, "~> 1.2"}, + {:dns_cluster, "~> 0.1.1"}, + {:bandit, "~> 1.2"} + ] + end + + # Aliases are shortcuts or tasks specific to the current project. + # For example, to install project dependencies and perform other setup tasks, run: + # + # $ mix setup + # + # See the documentation for `Mix` for more info on aliases. + defp aliases do + [ + setup: ["deps.get", "ecto.setup", "assets.setup", "assets.build"], + "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"], + "ecto.reset": ["ecto.drop", "ecto.setup"], + test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"], + "assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"], + "assets.build": ["tailwind app", "esbuild app"], + "assets.deploy": [ + "tailwind app --minify", + "esbuild app --minify", + "phx.digest" + ] + ] + end +end diff --git a/app/mix.lock b/app/mix.lock new file mode 100644 index 0000000..a91460f --- /dev/null +++ b/app/mix.lock @@ -0,0 +1,41 @@ +%{ + "bandit": {:hex, :bandit, "1.5.0", "3bc864a0da7f013ad3713a7f550c6a6ec0e19b8d8715ec678256a0dc197d5539", [:mix], [{:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:thousand_island, "~> 1.0", [hex: :thousand_island, repo: "hexpm", optional: false]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "92d18d9a7228a597e0d4661ef69a874ea82d63ff49c7d801a5c68cb18ebbbd72"}, + "castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"}, + "db_connection": {:hex, :db_connection, "2.6.0", "77d835c472b5b67fc4f29556dee74bf511bbafecdcaf98c27d27fa5918152086", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "c2f992d15725e721ec7fbc1189d4ecdb8afef76648c746a8e1cad35e3b8a35f3"}, + "decimal": {:hex, :decimal, "2.1.1", "5611dca5d4b2c3dd497dec8f68751f1f1a54755e8ed2a966c2633cf885973ad6", [:mix], [], "hexpm", "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc"}, + "dns_cluster": {:hex, :dns_cluster, "0.1.3", "0bc20a2c88ed6cc494f2964075c359f8c2d00e1bf25518a6a6c7fd277c9b0c66", [:mix], [], "hexpm", "46cb7c4a1b3e52c7ad4cbe33ca5079fbde4840dedeafca2baf77996c2da1bc33"}, + "ecto": {:hex, :ecto, "3.11.2", "e1d26be989db350a633667c5cda9c3d115ae779b66da567c68c80cfb26a8c9ee", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "3c38bca2c6f8d8023f2145326cc8a80100c3ffe4dcbd9842ff867f7fc6156c65"}, + "ecto_sql": {:hex, :ecto_sql, "3.11.1", "e9abf28ae27ef3916b43545f9578b4750956ccea444853606472089e7d169470", [:mix], [{:db_connection, "~> 2.4.1 or ~> 2.5", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.11.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:myxql, "~> 0.6.0", [hex: :myxql, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.16.0 or ~> 0.17.0 or ~> 1.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:tds, "~> 2.1.1 or ~> 2.2", [hex: :tds, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "ce14063ab3514424276e7e360108ad6c2308f6d88164a076aac8a387e1fea634"}, + "esbuild": {:hex, :esbuild, "0.8.1", "0cbf919f0eccb136d2eeef0df49c4acf55336de864e63594adcea3814f3edf41", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}, {:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "25fc876a67c13cb0a776e7b5d7974851556baeda2085296c14ab48555ea7560f"}, + "expo": {:hex, :expo, "0.5.2", "beba786aab8e3c5431813d7a44b828e7b922bfa431d6bfbada0904535342efe2", [:mix], [], "hexpm", "8c9bfa06ca017c9cb4020fabe980bc7fdb1aaec059fd004c2ab3bff03b1c599c"}, + "file_system": {:hex, :file_system, "1.0.0", "b689cc7dcee665f774de94b5a832e578bd7963c8e637ef940cd44327db7de2cd", [:mix], [], "hexpm", "6752092d66aec5a10e662aefeed8ddb9531d79db0bc145bb8c40325ca1d8536d"}, + "finch": {:hex, :finch, "0.18.0", "944ac7d34d0bd2ac8998f79f7a811b21d87d911e77a786bc5810adb75632ada4", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.3", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.2.6 or ~> 1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "69f5045b042e531e53edc2574f15e25e735b522c37e2ddb766e15b979e03aa65"}, + "floki": {:hex, :floki, "0.36.1", "712b7f2ba19a4d5a47dfe3e74d81876c95bbcbee44fe551f0af3d2a388abb3da", [:mix], [], "hexpm", "21ba57abb8204bcc70c439b423fc0dd9f0286de67dc82773a14b0200ada0995f"}, + "gettext": {:hex, :gettext, "0.24.0", "6f4d90ac5f3111673cbefc4ebee96fe5f37a114861ab8c7b7d5b30a1108ce6d8", [:mix], [{:expo, "~> 0.5.1", [hex: :expo, repo: "hexpm", optional: false]}], "hexpm", "bdf75cdfcbe9e4622dd18e034b227d77dd17f0f133853a1c73b97b3d6c770e8b"}, + "heroicons": {:git, "https://github.com/tailwindlabs/heroicons.git", "88ab3a0d790e6a47404cba02800a6b25d2afae50", [tag: "v2.1.1", sparse: "optimized"]}, + "hpax": {:hex, :hpax, "0.1.2", "09a75600d9d8bbd064cdd741f21fc06fc1f4cf3d0fcc335e5aa19be1a7235c84", [:mix], [], "hexpm", "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13"}, + "jason": {:hex, :jason, "1.4.1", "af1504e35f629ddcdd6addb3513c3853991f694921b1b9368b0bd32beb9f1b63", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fbb01ecdfd565b56261302f7e1fcc27c4fb8f32d56eab74db621fc154604a7a1"}, + "mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"}, + "mint": {:hex, :mint, "1.6.0", "88a4f91cd690508a04ff1c3e28952f322528934be541844d54e0ceb765f01d5e", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1 or ~> 0.2.0", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "3c5ae85d90a5aca0a49c0d8b67360bbe407f3b54f1030a111047ff988e8fefaa"}, + "nimble_options": {:hex, :nimble_options, "1.1.0", "3b31a57ede9cb1502071fade751ab0c7b8dbe75a9a4c2b5bbb0943a690b63172", [:mix], [], "hexpm", "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"}, + "nimble_pool": {:hex, :nimble_pool, "1.1.0", "bf9c29fbdcba3564a8b800d1eeb5a3c58f36e1e11d7b7fb2e084a643f645f06b", [:mix], [], "hexpm", "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a"}, + "phoenix": {:hex, :phoenix, "1.7.12", "1cc589e0eab99f593a8aa38ec45f15d25297dd6187ee801c8de8947090b5a9d3", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.1", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_template, "~> 1.0", [hex: :phoenix_template, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 2.0", [hex: :phoenix_view, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.7", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:websock_adapter, "~> 0.5.3", [hex: :websock_adapter, repo: "hexpm", optional: false]}], "hexpm", "d646192fbade9f485b01bc9920c139bfdd19d0f8df3d73fd8eaf2dfbe0d2837c"}, + "phoenix_ecto": {:hex, :phoenix_ecto, "4.5.1", "6fdbc334ea53620e71655664df6f33f670747b3a7a6c4041cdda3e2c32df6257", [:mix], [{:ecto, "~> 3.5", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0 or ~> 4.1", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ebe43aa580db129e54408e719fb9659b7f9e0d52b965c5be26cdca416ecead28"}, + "phoenix_html": {:hex, :phoenix_html, "4.1.1", "4c064fd3873d12ebb1388425a8f2a19348cef56e7289e1998e2d2fa758aa982e", [:mix], [], "hexpm", "f2f2df5a72bc9a2f510b21497fd7d2b86d932ec0598f0210fed4114adc546c6f"}, + "phoenix_live_dashboard": {:hex, :phoenix_live_dashboard, "0.8.3", "7ff51c9b6609470f681fbea20578dede0e548302b0c8bdf338b5a753a4f045bf", [:mix], [{:ecto, "~> 3.6.2 or ~> 3.7", [hex: :ecto, repo: "hexpm", optional: true]}, {:ecto_mysql_extras, "~> 0.5", [hex: :ecto_mysql_extras, repo: "hexpm", optional: true]}, {:ecto_psql_extras, "~> 0.7", [hex: :ecto_psql_extras, repo: "hexpm", optional: true]}, {:ecto_sqlite3_extras, "~> 1.1.7 or ~> 1.2.0", [hex: :ecto_sqlite3_extras, repo: "hexpm", optional: true]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:phoenix_live_view, "~> 0.19 or ~> 1.0", [hex: :phoenix_live_view, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6 or ~> 1.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}], "hexpm", "f9470a0a8bae4f56430a23d42f977b5a6205fdba6559d76f932b876bfaec652d"}, + "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.5.3", "f2161c207fda0e4fb55165f650f7f8db23f02b29e3bff00ff7ef161d6ac1f09d", [:mix], [{:file_system, "~> 0.3 or ~> 1.0", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "b4ec9cd73cb01ff1bd1cac92e045d13e7030330b74164297d1aee3907b54803c"}, + "phoenix_live_view": {:hex, :phoenix_live_view, "0.20.14", "70fa101aa0539e81bed4238777498f6215e9dda3461bdaa067cad6908110c364", [:mix], [{:floki, "~> 0.36", [hex: :floki, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix, "~> 1.6.15 or ~> 1.7.0", [hex: :phoenix, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 3.3 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: false]}, {:phoenix_template, "~> 1.0", [hex: :phoenix_template, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 2.0", [hex: :phoenix_view, repo: "hexpm", optional: true]}, {:plug, "~> 1.15", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "82f6d006c5264f979ed5eb75593d808bbe39020f20df2e78426f4f2d570e2402"}, + "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.1.3", "3168d78ba41835aecad272d5e8cd51aa87a7ac9eb836eabc42f6e57538e3731d", [:mix], [], "hexpm", "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"}, + "phoenix_template": {:hex, :phoenix_template, "1.0.4", "e2092c132f3b5e5b2d49c96695342eb36d0ed514c5b252a77048d5969330d639", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "2c0c81f0e5c6753faf5cca2f229c9709919aba34fab866d3bc05060c9c444206"}, + "plug": {:hex, :plug, "1.15.3", "712976f504418f6dff0a3e554c40d705a9bcf89a7ccef92fc6a5ef8f16a30a97", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "cc4365a3c010a56af402e0809208873d113e9c38c401cabd88027ef4f5c01fd2"}, + "plug_crypto": {:hex, :plug_crypto, "2.0.0", "77515cc10af06645abbfb5e6ad7a3e9714f805ae118fa1a70205f80d2d70fe73", [:mix], [], "hexpm", "53695bae57cc4e54566d993eb01074e4d894b65a3766f1c43e2c61a1b0f45ea9"}, + "postgrex": {:hex, :postgrex, "0.17.5", "0483d054938a8dc069b21bdd636bf56c487404c241ce6c319c1f43588246b281", [:mix], [{:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:table, "~> 0.1.0", [hex: :table, repo: "hexpm", optional: true]}], "hexpm", "50b8b11afbb2c4095a3ba675b4f055c416d0f3d7de6633a595fc131a828a67eb"}, + "swoosh": {:hex, :swoosh, "1.16.4", "d407768b3b68e3d1ff8d43b575a20c13bea338647143e241a324894cdb5af0b2", [:mix], [{:bandit, ">= 1.0.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, repo: "hexpm", optional: true]}, {:ex_aws, "~> 2.1", [hex: :ex_aws, repo: "hexpm", optional: true]}, {:finch, "~> 0.6", [hex: :finch, repo: "hexpm", optional: true]}, {:gen_smtp, "~> 0.13 or ~> 1.0", [hex: :gen_smtp, repo: "hexpm", optional: true]}, {:hackney, "~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mail, "~> 0.2", [hex: :mail, repo: "hexpm", optional: true]}, {:mime, "~> 1.1 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mua, "~> 0.1.0", [hex: :mua, repo: "hexpm", optional: true]}, {:multipart, "~> 0.4", [hex: :multipart, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: true]}, {:plug_cowboy, ">= 1.0.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:req, "~> 0.4 or ~> 1.0", [hex: :req, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "a38798368c09b09d7108803c42f24bb051d3e87bc1b81e6f09b20bf5a31c6676"}, + "tailwind": {:hex, :tailwind, "0.2.2", "9e27288b568ede1d88517e8c61259bc214a12d7eed271e102db4c93fcca9b2cd", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "ccfb5025179ea307f7f899d1bb3905cd0ac9f687ed77feebc8f67bdca78565c4"}, + "telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"}, + "telemetry_metrics": {:hex, :telemetry_metrics, "0.6.2", "2caabe9344ec17eafe5403304771c3539f3b6e2f7fb6a6f602558c825d0d0bfb", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9b43db0dc33863930b9ef9d27137e78974756f5f198cae18409970ed6fa5b561"}, + "telemetry_poller": {:hex, :telemetry_poller, "1.1.0", "58fa7c216257291caaf8d05678c8d01bd45f4bdbc1286838a28c4bb62ef32999", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f"}, + "thousand_island": {:hex, :thousand_island, "1.3.5", "6022b6338f1635b3d32406ff98d68b843ba73b3aa95cfc27154223244f3a6ca5", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "2be6954916fdfe4756af3239fb6b6d75d0b8063b5df03ba76fd8a4c87849e180"}, + "websock": {:hex, :websock, "0.5.3", "2f69a6ebe810328555b6fe5c831a851f485e303a7c8ce6c5f675abeb20ebdadc", [:mix], [], "hexpm", "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"}, + "websock_adapter": {:hex, :websock_adapter, "0.5.6", "0437fe56e093fd4ac422de33bf8fc89f7bc1416a3f2d732d8b2c8fd54792fe60", [:mix], [{:bandit, ">= 0.6.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "e04378d26b0af627817ae84c92083b7e97aca3121196679b73c73b99d0d133ea"}, +} diff --git a/app/package.json b/app/package.json deleted file mode 100644 index b07ebb0..0000000 --- a/app/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "slovocast-api", - "module": "server.ts", - "type": "module", - "devDependencies": { - "@types/bun": "latest" - }, - "peerDependencies": { - "typescript": "^5.0.0" - }, - "dependencies": { - "@types/express": "^4.17.21", - "bcrypt": "^5.1.1", - "express": "^4.19.2", - "mariadb": "^3.3.0" - } -} \ No newline at end of file diff --git a/app/priv/gettext/en/LC_MESSAGES/errors.po b/app/priv/gettext/en/LC_MESSAGES/errors.po new file mode 100644 index 0000000..844c4f5 --- /dev/null +++ b/app/priv/gettext/en/LC_MESSAGES/errors.po @@ -0,0 +1,112 @@ +## `msgid`s in this file come from POT (.pot) files. +## +## Do not add, change, or remove `msgid`s manually here as +## they're tied to the ones in the corresponding POT file +## (with the same domain). +## +## Use `mix gettext.extract --merge` or `mix gettext.merge` +## to merge POT files into PO files. +msgid "" +msgstr "" +"Language: en\n" + +## From Ecto.Changeset.cast/4 +msgid "can't be blank" +msgstr "" + +## From Ecto.Changeset.unique_constraint/3 +msgid "has already been taken" +msgstr "" + +## From Ecto.Changeset.put_change/3 +msgid "is invalid" +msgstr "" + +## From Ecto.Changeset.validate_acceptance/3 +msgid "must be accepted" +msgstr "" + +## From Ecto.Changeset.validate_format/3 +msgid "has invalid format" +msgstr "" + +## From Ecto.Changeset.validate_subset/3 +msgid "has an invalid entry" +msgstr "" + +## From Ecto.Changeset.validate_exclusion/3 +msgid "is reserved" +msgstr "" + +## From Ecto.Changeset.validate_confirmation/3 +msgid "does not match confirmation" +msgstr "" + +## From Ecto.Changeset.no_assoc_constraint/3 +msgid "is still associated with this entry" +msgstr "" + +msgid "are still associated with this entry" +msgstr "" + +## From Ecto.Changeset.validate_length/3 +msgid "should have %{count} item(s)" +msgid_plural "should have %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be %{count} character(s)" +msgid_plural "should be %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be %{count} byte(s)" +msgid_plural "should be %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should have at least %{count} item(s)" +msgid_plural "should have at least %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at least %{count} character(s)" +msgid_plural "should be at least %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at least %{count} byte(s)" +msgid_plural "should be at least %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should have at most %{count} item(s)" +msgid_plural "should have at most %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at most %{count} character(s)" +msgid_plural "should be at most %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at most %{count} byte(s)" +msgid_plural "should be at most %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +## From Ecto.Changeset.validate_number/3 +msgid "must be less than %{number}" +msgstr "" + +msgid "must be greater than %{number}" +msgstr "" + +msgid "must be less than or equal to %{number}" +msgstr "" + +msgid "must be greater than or equal to %{number}" +msgstr "" + +msgid "must be equal to %{number}" +msgstr "" diff --git a/app/priv/gettext/errors.pot b/app/priv/gettext/errors.pot new file mode 100644 index 0000000..eef2de2 --- /dev/null +++ b/app/priv/gettext/errors.pot @@ -0,0 +1,109 @@ +## This is a PO Template file. +## +## `msgid`s here are often extracted from source code. +## Add new translations manually only if they're dynamic +## translations that can't be statically extracted. +## +## Run `mix gettext.extract` to bring this file up to +## date. Leave `msgstr`s empty as changing them here has no +## effect: edit them in PO (`.po`) files instead. +## From Ecto.Changeset.cast/4 +msgid "can't be blank" +msgstr "" + +## From Ecto.Changeset.unique_constraint/3 +msgid "has already been taken" +msgstr "" + +## From Ecto.Changeset.put_change/3 +msgid "is invalid" +msgstr "" + +## From Ecto.Changeset.validate_acceptance/3 +msgid "must be accepted" +msgstr "" + +## From Ecto.Changeset.validate_format/3 +msgid "has invalid format" +msgstr "" + +## From Ecto.Changeset.validate_subset/3 +msgid "has an invalid entry" +msgstr "" + +## From Ecto.Changeset.validate_exclusion/3 +msgid "is reserved" +msgstr "" + +## From Ecto.Changeset.validate_confirmation/3 +msgid "does not match confirmation" +msgstr "" + +## From Ecto.Changeset.no_assoc_constraint/3 +msgid "is still associated with this entry" +msgstr "" + +msgid "are still associated with this entry" +msgstr "" + +## From Ecto.Changeset.validate_length/3 +msgid "should have %{count} item(s)" +msgid_plural "should have %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be %{count} character(s)" +msgid_plural "should be %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be %{count} byte(s)" +msgid_plural "should be %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should have at least %{count} item(s)" +msgid_plural "should have at least %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at least %{count} character(s)" +msgid_plural "should be at least %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at least %{count} byte(s)" +msgid_plural "should be at least %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should have at most %{count} item(s)" +msgid_plural "should have at most %{count} item(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at most %{count} character(s)" +msgid_plural "should be at most %{count} character(s)" +msgstr[0] "" +msgstr[1] "" + +msgid "should be at most %{count} byte(s)" +msgid_plural "should be at most %{count} byte(s)" +msgstr[0] "" +msgstr[1] "" + +## From Ecto.Changeset.validate_number/3 +msgid "must be less than %{number}" +msgstr "" + +msgid "must be greater than %{number}" +msgstr "" + +msgid "must be less than or equal to %{number}" +msgstr "" + +msgid "must be greater than or equal to %{number}" +msgstr "" + +msgid "must be equal to %{number}" +msgstr "" diff --git a/app/priv/repo/migrations/.formatter.exs b/app/priv/repo/migrations/.formatter.exs new file mode 100644 index 0000000..49f9151 --- /dev/null +++ b/app/priv/repo/migrations/.formatter.exs @@ -0,0 +1,4 @@ +[ + import_deps: [:ecto_sql], + inputs: ["*.exs"] +] diff --git a/app/priv/repo/seeds.exs b/app/priv/repo/seeds.exs new file mode 100644 index 0000000..fe3037b --- /dev/null +++ b/app/priv/repo/seeds.exs @@ -0,0 +1,11 @@ +# Script for populating the database. You can run it as: +# +# mix run priv/repo/seeds.exs +# +# Inside the script, you can read and write to any of your +# repositories directly: +# +# App.Repo.insert!(%App.SomeSchema{}) +# +# We recommend using the bang functions (`insert!`, `update!` +# and so on) as they will fail if something goes wrong. diff --git a/app/priv/static/favicon.ico b/app/priv/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..7f372bfc21cdd8cb47585339d5fa4d9dd424402f GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=@t!V@Ar*{oFEH`~d50E!_s``s q?{G*w(7?#d#v@^nKnY_HKaYb01EZMZjMqTJ89ZJ6T-G@yGywoKK_h|y literal 0 HcmV?d00001 diff --git a/app/priv/static/images/logo.svg b/app/priv/static/images/logo.svg new file mode 100644 index 0000000..9f26bab --- /dev/null +++ b/app/priv/static/images/logo.svg @@ -0,0 +1,6 @@ + diff --git a/app/priv/static/robots.txt b/app/priv/static/robots.txt new file mode 100644 index 0000000..26e06b5 --- /dev/null +++ b/app/priv/static/robots.txt @@ -0,0 +1,5 @@ +# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/app/src/api/controller.ts b/app/src/api/controller.ts deleted file mode 100644 index a77268b..0000000 --- a/app/src/api/controller.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { Express } from 'express'; - -export interface Controller { - bootstrapRoutes(app: Express): void; -} diff --git a/app/src/api/user-controller.ts b/app/src/api/user-controller.ts deleted file mode 100644 index 17a9016..0000000 --- a/app/src/api/user-controller.ts +++ /dev/null @@ -1,58 +0,0 @@ -import type { - Express, - Request, - Response -} from "express"; -import type { Pool } from 'mariadb'; -import type { Controller } from '@slovo/api/controller'; -import { UserRepository } from '@slovo/domain/repository/user-repository'; - -export class UserController implements Controller { - private userRepository: UserRepository; - - public constructor(pool: Pool) { - this.userRepository = new UserRepository(pool); - } - - public bootstrapRoutes(app: Express): void { - app.get('/users', this.getUsers); - app.get('/user/:id', this.getUser); - app.post('/user', this.createUser); - app.put('/user', this.updateUser); - app.put('/login', this.loginUser); - } - - public async getUsers(req: Request, res: Response): Promise { - const users = await this.userRepository.getAll(); - - if (!users.size) { - res.status(404); - } - - return res.json({ users }); - } - - public async getUser(req: Request, res: Response): Promise { - - return res; - } - - public async createUser(req: Request, res: Response): Promise { - - return res; - } - - public async updateUser(req: Reqst, res: Response): Promise { - - return res; - } - - public async loginUser(req: Request, res: Response): Promise { - // match the passwords - // - // set the JWT data - - return res; - } -} - diff --git a/app/src/domain/entity.ts b/app/src/domain/entity.ts deleted file mode 100644 index 1c827d4..0000000 --- a/app/src/domain/entity.ts +++ /dev/null @@ -1,23 +0,0 @@ -export type EntityId = number|string; - -export class Entity { - protected readonly id: EntityId; - protected _model: T; - - public constructor(id: EntityId, model: T) { - this.id = id; - this._model = model; - } - - public getId(): EntityId { - return this.id; - } - - public getModel(): T { - return this._model; - } - - public get model(): T { - return this.getModel(); - } -} diff --git a/app/src/domain/repository.ts b/app/src/domain/repository.ts deleted file mode 100644 index 31bf756..0000000 --- a/app/src/domain/repository.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Entity, type EntityId } from '@slovo/domain/entity'; -import type { Pool } from 'mariadb'; - -export interface Repository { - get(id: EntityId): Promise>; - save(model: T): Promise>; - update(model: Entity): Promise>; - delete(model: Entity): Promise; -} - -export abstract class BaseRepository implements Repository { - protected pool: Pool; - - public constructor(pool: Pool) { - this.pool = pool; - } - - public abstract get(id: EntityId): Promise>; - public abstract save(model: T): Promise>; - public abstract update(model: Entity): Promise>; - public abstract delete(model: Entity): Promise; -} diff --git a/app/src/domain/repository/channel-repository.ts b/app/src/domain/repository/channel-repository.ts deleted file mode 100644 index 5798396..0000000 --- a/app/src/domain/repository/channel-repository.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { type EntityId, Entity } from '@slovo/domain/entity'; -import { BaseRepository } from '@slovo/domain/repository'; -import { type Channel } from '@slovo/models/channel'; - -export class ChannelRepository extends BaseRepository { - public async get(id: EntityId): Promise> { - const conn = await this.pool.getConnection(); - const query = `SELECT * FROM Channels WHERE id = ?`; - const rows = await conn.query(query, [ id ]); - - if (!rows.length) { - throw Error("Unable to find Channel."); - } - - return new Entity(id, { - name: rows[0].name, - description: rows[0].description, - link: new URL(rows[0].link), - language: rows[0].language, - copyright: rows[0].copyright, - explicit: rows[0].explicit as boolean, - category: rows[0].category, - } as Channel); - } - - public async save(channel: Entity): Promise> { - - return channel; - } - - public async update(channel: Entity): Promise> { - - return channel; - } - - public async delete(channel: Entity): Promise { - return true; - } -} diff --git a/app/src/domain/repository/image-repository.ts b/app/src/domain/repository/image-repository.ts deleted file mode 100644 index 258d470..0000000 --- a/app/src/domain/repository/image-repository.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { BaseRepository } from '@slovo/domain/repository'; -import { Entity, type EntityId } from '@slovo/domain/entity'; -import type { Image } from '@slovo/models/image'; -import type { PoolConnection } from 'mariadb'; - -export class ImageRepository extends BaseRepository { - public async get(id: EntityId): Promise> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = `SELECT * FROM images WHERE id = ?`; - const rows = await conn.query(query, [ id ]); - - if (!rows.length) { - throw Error("Unable to find Image."); - } - - const row = rows.shift(); - - await conn.release(); - return new Entity(row.id, { - url: new URL(row.url), - title: row.title, - width: row.width, - height: row.height - } as Image); - } - - public async save(image: Image): Promise> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = ` - INSERT INTO images (url, title, width, height) - VALUES (?, ?, ?, ?) - `; - const rows = await conn.query(query, [ - image.url.toString(), - image.title, - image.width, - image.height - ]); - - if (!rows.insertId) { - throw Error("Unable to create Image"); - } - - await conn.release(); - return new Entity(rows.insertId, image); - } - - public async update(image: Entity): Promise> { - - } - - public async delete(image: Entity): Promise { - - } -} diff --git a/app/src/domain/repository/user-repository.ts b/app/src/domain/repository/user-repository.ts deleted file mode 100644 index 350b265..0000000 --- a/app/src/domain/repository/user-repository.ts +++ /dev/null @@ -1,89 +0,0 @@ -import { BaseRepository } from '@slovo/domain/repository'; -import { Entity, type EntityId } from '@slovo/domain/entity'; -import { type User } from '@slovo/models/user'; -import { type PoolConnection } from 'mariadb'; - -export class UserRepository extends BaseRepository { - public async get(id: EntityId): Promise> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = `SELECT * FROM users WHERE id = ?`; - const rows = await conn.query(query, [ id ]); - - if (!rows.length) { - throw Error("Unable to find User"); - } - - const row = rows.shift(); - - const user: User = { - name: row.name, - email: row.email, - password: row.password - }; - - await conn.release(); - return new Entity(id, user); - } - - public async getAll(): Promise>> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = `SELECT * FROM users`; - const rows = await conn.query(query); - - const users = new Set>(); - - if (!rows.length) { - return users; - } - - for (const row of rows) { - const user: Entity = new Entity(row.id, { - email: row.email, - name: row.name, - }); - users.add(user); - } - - return users; - } - - public async save(user: User): Promise> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = `INSERT INTO users (name, email, password) VALUES (?, ?, ?)`; - const rows = await conn.query(query, [ user.name, user.email, user.password ]); - - if (!rows.length) { - throw Error("Unable to create User"); - } - - await conn.release(); - return new Entity(rows.insertId, user); - } - - public async update(user: Entity): Promise> { - const conn: PoolConnection = await this.pool.getConnection(); - - const query = `UPDATE user SET name = ?, email = ?, password = ? WHERE id = ?`; - const results = await conn.query(query, [ - user.model.name, - user.model.email, - user.model.password, - user.getId() - ]); - - if (!results.length) { - throw Error("Unable to update the User"); - } - - await conn.release(); - return user; - } - - /// Don't delete users - public async delete(user: Entity): Promise { - return true; - } -} diff --git a/app/src/infrastructure/connection-pool.ts b/app/src/infrastructure/connection-pool.ts deleted file mode 100644 index d7b96e8..0000000 --- a/app/src/infrastructure/connection-pool.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { createPool } from 'mariadb'; - -const connectionPool = createPool({ - host: process.env.DB_HOST, - user: process.env.DB_USER, - password: process.env.DB_PASSWORD, - database: process.env.DB_SCHEMA -}); - -export default connectionPool; diff --git a/app/src/models/channel.ts b/app/src/models/channel.ts deleted file mode 100644 index adb8a78..0000000 --- a/app/src/models/channel.ts +++ /dev/null @@ -1,16 +0,0 @@ -import type { Episode } from "@slovo/models/episode"; -import type { Image } from "@slovo/models/image"; - -export type Channel = { - name: string, - description: string, - link: URL, - language: string, - copyright: string, - explicit: boolean, - category: string, - - episodes?: Set, - image?: Image -}; - diff --git a/app/src/models/episode.ts b/app/src/models/episode.ts deleted file mode 100644 index 538fb5d..0000000 --- a/app/src/models/episode.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { Image } from "@slovo/models/image"; - -export type Episode = { - title: string, - link: URL, - duration: string, - description: string, - explicit: boolean, - - image?: Image, -}; - diff --git a/app/src/models/image.ts b/app/src/models/image.ts deleted file mode 100644 index 47a8147..0000000 --- a/app/src/models/image.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type Image = { - url: URL, - title: string, - width: number, - height: number, -}; diff --git a/app/src/models/user.ts b/app/src/models/user.ts deleted file mode 100644 index 4c0e81c..0000000 --- a/app/src/models/user.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { Channel } from "@slovo/models/channel"; - -export type User = { - email: string, - name: string, - password?: string, - - channel?: Channel -}; - diff --git a/app/src/server.ts b/app/src/server.ts deleted file mode 100644 index 09d7a60..0000000 --- a/app/src/server.ts +++ /dev/null @@ -1,19 +0,0 @@ -import express, { - type Express, - type Request, - type Response -} from "express"; -import connectionPool from '@slovo/infrastructure/connection-pool'; - -const server: Express = express(); - -// bootstrap controllers -import { UserController } from '@slovo/api/user-controller'; -new UserController(connectionPool).bootstrapRoutes(server); - -server.get("/", async (req: Request, res: Response) => { - console.log(req); - return res.json({ message: "Hello!" }); -}); - -export { server }; diff --git a/app/test/app_web/controllers/error_html_test.exs b/app/test/app_web/controllers/error_html_test.exs new file mode 100644 index 0000000..fab2b79 --- /dev/null +++ b/app/test/app_web/controllers/error_html_test.exs @@ -0,0 +1,14 @@ +defmodule AppWeb.ErrorHTMLTest do + use AppWeb.ConnCase, async: true + + # Bring render_to_string/4 for testing custom views + import Phoenix.Template + + test "renders 404.html" do + assert render_to_string(AppWeb.ErrorHTML, "404", "html", []) == "Not Found" + end + + test "renders 500.html" do + assert render_to_string(AppWeb.ErrorHTML, "500", "html", []) == "Internal Server Error" + end +end diff --git a/app/test/app_web/controllers/error_json_test.exs b/app/test/app_web/controllers/error_json_test.exs new file mode 100644 index 0000000..ebc82d7 --- /dev/null +++ b/app/test/app_web/controllers/error_json_test.exs @@ -0,0 +1,12 @@ +defmodule AppWeb.ErrorJSONTest do + use AppWeb.ConnCase, async: true + + test "renders 404" do + assert AppWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}} + end + + test "renders 500" do + assert AppWeb.ErrorJSON.render("500.json", %{}) == + %{errors: %{detail: "Internal Server Error"}} + end +end diff --git a/app/test/app_web/controllers/page_controller_test.exs b/app/test/app_web/controllers/page_controller_test.exs new file mode 100644 index 0000000..659fc1f --- /dev/null +++ b/app/test/app_web/controllers/page_controller_test.exs @@ -0,0 +1,8 @@ +defmodule AppWeb.PageControllerTest do + use AppWeb.ConnCase + + test "GET /", %{conn: conn} do + conn = get(conn, ~p"/") + assert html_response(conn, 200) =~ "Peace of mind from prototype to production" + end +end diff --git a/app/test/support/conn_case.ex b/app/test/support/conn_case.ex new file mode 100644 index 0000000..12a83a1 --- /dev/null +++ b/app/test/support/conn_case.ex @@ -0,0 +1,38 @@ +defmodule AppWeb.ConnCase do + @moduledoc """ + This module defines the test case to be used by + tests that require setting up a connection. + + Such tests rely on `Phoenix.ConnTest` and also + import other functionality to make it easier + to build common data structures and query the data layer. + + Finally, if the test case interacts with the database, + we enable the SQL sandbox, so changes done to the database + are reverted at the end of every test. If you are using + PostgreSQL, you can even run database tests asynchronously + by setting `use AppWeb.ConnCase, async: true`, although + this option is not recommended for other databases. + """ + + use ExUnit.CaseTemplate + + using do + quote do + # The default endpoint for testing + @endpoint AppWeb.Endpoint + + use AppWeb, :verified_routes + + # Import conveniences for testing with connections + import Plug.Conn + import Phoenix.ConnTest + import AppWeb.ConnCase + end + end + + setup tags do + App.DataCase.setup_sandbox(tags) + {:ok, conn: Phoenix.ConnTest.build_conn()} + end +end diff --git a/app/test/support/data_case.ex b/app/test/support/data_case.ex new file mode 100644 index 0000000..4a83f5a --- /dev/null +++ b/app/test/support/data_case.ex @@ -0,0 +1,58 @@ +defmodule App.DataCase do + @moduledoc """ + This module defines the setup for tests requiring + access to the application's data layer. + + You may define functions here to be used as helpers in + your tests. + + Finally, if the test case interacts with the database, + we enable the SQL sandbox, so changes done to the database + are reverted at the end of every test. If you are using + PostgreSQL, you can even run database tests asynchronously + by setting `use App.DataCase, async: true`, although + this option is not recommended for other databases. + """ + + use ExUnit.CaseTemplate + + using do + quote do + alias App.Repo + + import Ecto + import Ecto.Changeset + import Ecto.Query + import App.DataCase + end + end + + setup tags do + App.DataCase.setup_sandbox(tags) + :ok + end + + @doc """ + Sets up the sandbox based on the test tags. + """ + def setup_sandbox(tags) do + pid = Ecto.Adapters.SQL.Sandbox.start_owner!(App.Repo, shared: not tags[:async]) + on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end) + end + + @doc """ + A helper that transforms changeset errors into a map of messages. + + assert {:error, changeset} = Accounts.create_user(%{password: "short"}) + assert "password is too short" in errors_on(changeset).password + assert %{password: ["password is too short"]} = errors_on(changeset) + + """ + def errors_on(changeset) do + Ecto.Changeset.traverse_errors(changeset, fn {message, opts} -> + Regex.replace(~r"%{(\w+)}", message, fn _, key -> + opts |> Keyword.get(String.to_existing_atom(key), key) |> to_string() + end) + end) + end +end diff --git a/app/test/test_helper.exs b/app/test/test_helper.exs new file mode 100644 index 0000000..4fe7a40 --- /dev/null +++ b/app/test/test_helper.exs @@ -0,0 +1,2 @@ +ExUnit.start() +Ecto.Adapters.SQL.Sandbox.mode(App.Repo, :manual) diff --git a/app/tsconfig.json b/app/tsconfig.json deleted file mode 100644 index 7c32296..0000000 --- a/app/tsconfig.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "compilerOptions": { - // Enable latest features - "lib": ["ESNext"], - "target": "ESNext", - "module": "ESNext", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, - - // Bundler mode - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, - - // Best practices - "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false, - "paths": { - "@slovo/*": [ "./src/*" ] - } - } -} diff --git a/docker-compose.yml b/docker-compose.yml index f542aff..5cbc0d3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,15 +2,14 @@ version: '3.9' services: database: - image: mariadb:latest + image: postgres:latest environment: - ROOT_MYSQL_PASSWORD: password - MYSQL_USER: user - MYSQL_PASSWORD: password - MYSQL_DATABASE: slovocast + POSTGRES_PASSWORD: password + POSTGRES_USER: slovocast + POSTGRES_DB: slovocast ports: - - "3306:3306" + - "5432:5432" volumes: - - slovocast_db:/var/lib/mysql + - slovocast_db:/var/lib/postgresql/data/ volumes: slovocast_db: