diff --git a/elixir-ory-network/.formatter.exs b/elixir-ory-network/.formatter.exs new file mode 100644 index 00000000..9ff46bdd --- /dev/null +++ b/elixir-ory-network/.formatter.exs @@ -0,0 +1,6 @@ +[ + import_deps: [:ecto, :ecto_sql, :phoenix, :plug], + subdirectories: ["priv/*/migrations"], + plugins: [Phoenix.LiveView.HTMLFormatter], + inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"] +] diff --git a/elixir-ory-network/.gitignore b/elixir-ory-network/.gitignore new file mode 100644 index 00000000..ac35e98c --- /dev/null +++ b/elixir-ory-network/.gitignore @@ -0,0 +1,40 @@ +# 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"). +example-*.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/ + + +assets/vendor/heroicons +priv/database.db* \ No newline at end of file diff --git a/elixir-ory-network/README.md b/elixir-ory-network/README.md new file mode 100644 index 00000000..6f8c3368 --- /dev/null +++ b/elixir-ory-network/README.md @@ -0,0 +1,71 @@ +# Elixir Ory Cloud Phoenix Example +A basic Example of integrating [Ory](https://ory.sh) with [Phoenix](https://www.phoenixframework.org/). Highlighting a controller flow, using [plugs](https://hexdocs.pm/phoenix/plug.html) to render HEEx templates with session details, etc. + +## Overview + +A simple server-side rendered web application serving Custom UI for Ory Flows. + +## Develop + +### Prerequisites + +[Elixir](https://elixir-lang.org/install.html) >= 1.14 +[Erlang](https://www.erlang.org/downloads) +[Ory CLI](https://www.ory.sh/docs/guides/cli/installation) + +### Configure your Ory Network/Kratos project +Set up your Custom UI to the following values: +| Custom UI | URL | +| --------------- | --------------------------------------- | +| Login UI | https://localhost:3000/auth/login | +| Register UI | https://localhost:3000/auth/register | + +> NOTE: The other UIs are currently not implemented in this example. + +### Environmental Variables + +`$ORY_PROJECT` is used when running the Ory Proxy to prevent CORS issues. + +### Run locally + +First build the dependencies and setup Phoenix: + +```sh +$ mix deps.get && mix deps.compile +$ mix setup +``` + +Start the Ory proxy for your `$ORY_PROJECT` slug in another shell +```sh +$ ory proxy http://localhost:4000 --dev --project $ORY_PROJECT --port 3000 --cookie-domain localhost +``` + +And finally start serving the Phoenix server +```sh +$ mix phx.server +``` + +### Run tests + +TODO: Integrate proper tests. :) + +```sh +$ mix test +``` + +## Deploy + +Most deployment mechanisms will work fine, such as [Fly.io](https://fly.io). + +## Contribute + +Feel free to +[open a discussion](https://github.com/ory/examples/discussions/new) to provide +feedback or talk about ideas, or +[open an issue](https://github.com/ory/examples/issues/new) if you want to add +your example to the repository or encounter a bug. You can contribute to Ory in +many ways, see the +[Ory Contributing Guidelines](https://www.ory.sh/docs/ecosystem/contributing) +for more information. + + diff --git a/elixir-ory-network/assets/css/app.css b/elixir-ory-network/assets/css/app.css new file mode 100644 index 00000000..378c8f90 --- /dev/null +++ b/elixir-ory-network/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/elixir-ory-network/assets/js/app.js b/elixir-ory-network/assets/js/app.js new file mode 100644 index 00000000..df0cdd9f --- /dev/null +++ b/elixir-ory-network/assets/js/app.js @@ -0,0 +1,41 @@ +// 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, {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/elixir-ory-network/assets/tailwind.config.js b/elixir-ory-network/assets/tailwind.config.js new file mode 100644 index 00000000..856af57c --- /dev/null +++ b/elixir-ory-network/assets/tailwind.config.js @@ -0,0 +1,68 @@ +// 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/*_web.ex", + "../lib/*_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, "./vendor/heroicons/optimized") + let values = {} + let icons = [ + ["", "/24/outline"], + ["-solid", "/24/solid"], + ["-mini", "/20/solid"] + ] + icons.forEach(([suffix, dir]) => { + fs.readdirSync(path.join(iconsDir, dir)).map(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, "") + 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": theme("spacing.5"), + "height": theme("spacing.5") + } + } + }, {values}) + }) + ] +} diff --git a/elixir-ory-network/assets/vendor/topbar.js b/elixir-ory-network/assets/vendor/topbar.js new file mode 100644 index 00000000..41957274 --- /dev/null +++ b/elixir-ory-network/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/elixir-ory-network/config/config.exs b/elixir-ory-network/config/config.exs new file mode 100644 index 00000000..34f950df --- /dev/null +++ b/elixir-ory-network/config/config.exs @@ -0,0 +1,57 @@ +# 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 :example, + ecto_repos: [Example.Repo] + +config :example, Example.Repo, database: "priv/database.db" + +# Configures the endpoint +config :example, ExampleWeb.Endpoint, + url: [host: "localhost"], + render_errors: [ + formats: [html: ExampleWeb.ErrorHTML, json: ExampleWeb.ErrorJSON], + layout: false + ], + pubsub_server: Example.PubSub, + live_view: [signing_salt: "i5wDSk9E"] + +# Configure esbuild (the version is required) +config :esbuild, + version: "0.17.11", + default: [ + 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.2.7", + default: [ + 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/elixir-ory-network/config/dev.exs b/elixir-ory-network/config/dev.exs new file mode 100644 index 00000000..bca76ed2 --- /dev/null +++ b/elixir-ory-network/config/dev.exs @@ -0,0 +1,72 @@ +import Config + +# Configure your Ory Network URL +config :ory_client, + # Via ory proxy + :base_url, + "http://localhost:3000/.ory" + +# 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 :example, ExampleWeb.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: "5fIBbNftDx6gQuGq3NsTqV3wE6Rz1QJLJwmjtuhfalulLCEhh94+NY+Lcf+zRkX5", + watchers: [ + esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]}, + tailwind: {Tailwind, :install_and_run, [:default, ~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 :example, ExampleWeb.Endpoint, + live_reload: [ + patterns: [ + ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", + ~r"priv/gettext/.*(po)$", + ~r"lib/example_web/(controllers|live|components)/.*(ex|heex)$" + ] + ] + +# Enable dev routes for dashboard and mailbox +config :example, 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 diff --git a/elixir-ory-network/config/prod.exs b/elixir-ory-network/config/prod.exs new file mode 100644 index 00000000..b49883b7 --- /dev/null +++ b/elixir-ory-network/config/prod.exs @@ -0,0 +1,14 @@ +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 :example, ExampleWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" + +# 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/elixir-ory-network/config/runtime.exs b/elixir-ory-network/config/runtime.exs new file mode 100644 index 00000000..68ddf324 --- /dev/null +++ b/elixir-ory-network/config/runtime.exs @@ -0,0 +1,82 @@ +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/example 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 :example, ExampleWeb.Endpoint, server: true +end + +if config_env() == :prod do + # 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 :example, ExampleWeb.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/plug_cowboy/Plug.Cowboy.html + # 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 :example, ExampleWeb.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 endpoint, ensuring + # no data is ever sent via http, always redirecting to https: + # + # config :example, ExampleWeb.Endpoint, + # force_ssl: [hsts: true] + # + # Check `Plug.SSL` for all available options in `force_ssl`. +end diff --git a/elixir-ory-network/config/test.exs b/elixir-ory-network/config/test.exs new file mode 100644 index 00000000..ad342829 --- /dev/null +++ b/elixir-ory-network/config/test.exs @@ -0,0 +1,20 @@ +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. + +# We don't run a server during test. If one is required, +# you can enable the server option below. +config :example, ExampleWeb.Endpoint, + http: [ip: {127, 0, 0, 1}, port: 4002], + secret_key_base: "3o1BjMPrdjBl6QR9wmzJD5FKkb8w31WjZEyu6cw2zKxc4Z/vyrKDiDGSWUUwyTwa", + server: 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/elixir-ory-network/lib/example.ex b/elixir-ory-network/lib/example.ex new file mode 100644 index 00000000..5f4a4e0b --- /dev/null +++ b/elixir-ory-network/lib/example.ex @@ -0,0 +1,9 @@ +defmodule Example do + @moduledoc """ + Example 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/elixir-ory-network/lib/example/application.ex b/elixir-ory-network/lib/example/application.ex new file mode 100644 index 00000000..ff6273d7 --- /dev/null +++ b/elixir-ory-network/lib/example/application.ex @@ -0,0 +1,36 @@ +defmodule Example.Application do + # See https://hexdocs.pm/elixir/Application.html + # for more information on OTP Applications + @moduledoc false + + use Application + + @impl true + def start(_type, _args) do + children = [ + # Start the Telemetry supervisor + ExampleWeb.Telemetry, + # Start the Ecto repository + Example.Repo, + # Start the PubSub system + {Phoenix.PubSub, name: Example.PubSub}, + # Start the Endpoint (http/https) + ExampleWeb.Endpoint + # Start a worker by calling: Example.Worker.start_link(arg) + # {Example.Worker, arg} + ] + + # See https://hexdocs.pm/elixir/Supervisor.html + # for other strategies and supported options + opts = [strategy: :one_for_one, name: Example.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 + ExampleWeb.Endpoint.config_change(changed, removed) + :ok + end +end diff --git a/elixir-ory-network/lib/example/repo.ex b/elixir-ory-network/lib/example/repo.ex new file mode 100644 index 00000000..ebed8072 --- /dev/null +++ b/elixir-ory-network/lib/example/repo.ex @@ -0,0 +1,5 @@ +defmodule Example.Repo do + use Ecto.Repo, + otp_app: :example, + adapter: Ecto.Adapters.SQLite3 +end diff --git a/elixir-ory-network/lib/example_web.ex b/elixir-ory-network/lib/example_web.ex new file mode 100644 index 00000000..b6bb1ac0 --- /dev/null +++ b/elixir-ory-network/lib/example_web.ex @@ -0,0 +1,113 @@ +defmodule ExampleWeb 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 ExampleWeb, :controller + use ExampleWeb, :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: ExampleWeb.Layouts] + + import Plug.Conn + import ExampleWeb.Gettext + + unquote(verified_routes()) + end + end + + def live_view do + quote do + use Phoenix.LiveView, + layout: {ExampleWeb.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 ExampleWeb.CoreComponents + import ExampleWeb.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: ExampleWeb.Endpoint, + router: ExampleWeb.Router, + statics: ExampleWeb.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/elixir-ory-network/lib/example_web/authentication.ex b/elixir-ory-network/lib/example_web/authentication.ex new file mode 100644 index 00000000..f0bcfe66 --- /dev/null +++ b/elixir-ory-network/lib/example_web/authentication.ex @@ -0,0 +1,60 @@ +defmodule ExampleWeb.Authentication do + use ExampleWeb, :controller + + import ExampleWeb.Helpers, only: [cookies: 1] + + alias Ory.Api.Frontend + + def init(opts), do: [] + + def call(conn, opts) do + # TODO(@tobbbles): Look at expiration and optionally refresh the session + if Map.has_key?(conn.assigns, :session) do + conn + else + case Frontend.to_session(Ory.Connection.new(), Cookie: cookies(conn)) do + {:ok, %Ory.Model.Session{} = session} -> + assign(conn, :session, session) + + _ -> + assign(conn, :session, nil) + end + end + end + + def has_session(conn, opts) do + if conn.assigns[:session] do + conn + else + conn + |> put_flash(:error, "You must be logged in") + |> redirect(to: ~p"/auth/login") + |> halt() + end + end + + @doc """ + Ensures a user's session identity has all emails verified, redirects to verification if not. + """ + def is_verified(%{assigns: %{session: session}} = conn, opts) do + IO.puts("checking if user is verified") + + has_unverified = + session.identity.verifiable_addresses + |> Enum.filter(&unverified_address/1) + |> Enum.any?() + + if has_unverified do + conn |> redirect(to: ~p"/account/verify") |> halt() + else + conn + end + + conn + end + + @spec unverified_address(Ory.Model.VerifiableIdentityAddress.t()) :: boolean() + defp unverified_address(address) do + !address.verified + end +end diff --git a/elixir-ory-network/lib/example_web/components/core_components.ex b/elixir-ory-network/lib/example_web/components/core_components.ex new file mode 100644 index 00000000..30075651 --- /dev/null +++ b/elixir-ory-network/lib/example_web/components/core_components.ex @@ -0,0 +1,665 @@ +defmodule ExampleWeb.CoreComponents do + @moduledoc """ + Provides core UI components. + + At the first glance, this module may seem daunting, but its goal is + to provide some core building blocks in your application, such modals, + tables, and forms. The components are mostly markup and 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 ExampleWeb.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 your `assets/vendor/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(ExampleWeb.Gettext, "errors", msg, msg, count, opts) + else + Gettext.dgettext(ExampleWeb.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/elixir-ory-network/lib/example_web/components/flow.ex b/elixir-ory-network/lib/example_web/components/flow.ex new file mode 100644 index 00000000..85b072fa --- /dev/null +++ b/elixir-ory-network/lib/example_web/components/flow.ex @@ -0,0 +1,226 @@ +defmodule ExampleWeb.Flow do + use Phoenix.Component + + alias Phoenix.LiveView.JS + + import ExampleWeb.Gettext + import ExampleWeb.CoreComponents + + # TODO(@tobbbles): Figure out if this can be dynamically set up as a type union from Ory LoginFlow and RegistrationFlow + attr :flow, :map, required: true + + def flow(assigns) when not is_nil(assigns.flow) do + IO.inspect(assigns) + + ~H""" + <.ui_message_group flow={@flow} /> + +
+ <%= for node <- @flow.ui.nodes do %> + <.ui_node node={node} /> + <% end %> +
+ """ + end + + attr :flow, :map + + def ui_message_group(%{flow: %{ui: %{messages: messages}}} = assigns) do + ~H""" + <%= if @flow.ui.messages do %> + <%= for message <- @flow.ui.messages do %> + <.ui_message text={message.text} /> + <% end %> + <% end %> + """ + end + + def ui_message_group(assigns) do + ~H""" + + """ + end + + attr :text, :string + + def ui_message(assigns) do + ~H""" + + <%= @text %> + + """ + end + + @doc """ + Renders UI nodes conditionally on their attribute type(s) + """ + attr :node, Ory.Model.UiNode + + def ui_node(%{node: %{type: "input", attributes: %{type: "hidden"}} = node} = assigns) do + ~H""" +
+ <.ui_input attributes={@node.attributes} /> +
+ """ + end + + def ui_node(%{node: %{type: "input", attributes: %{type: "submit"}} = node} = assigns) do + ~H""" +
+ <.button + name={@node.attributes.name} + type={@node.attributes.type} + value={@node.attributes.value} + > + <%= @node.meta.label.text %> + +
+ """ + end + + def ui_node( + %{ + node: + %{ + type: "input", + attributes: %{type: "checkbox"} + } = node + } = assigns + ) do + ~H""" +
+ + + <.ui_label + class="l-2 block text-gray-800 text-sm font-bold" + for={@node.attributes.name} + text={@node.meta.label.text} + /> + <%= if @node.messages do %> + <%= for message <- @node.messages do %> + <.ui_message text={message.text} /> + <% end %> + <% end %> +
+ """ + end + + def ui_node(%{node: %{type: "script"} = node} = assigns) do + ~H""" + + """ + end + + # TODO(@tobbbles): Implement + def ui_node(%{node: %{type: "a"} = node} = assigns) do + ~H""" + <.button> + <:inner_block> + <.link + id={@node.attributes.id} + href={@node.attributes.href} + class="text-sm font-semibold leading-6 ext-gray-100" + > + <%= @node.meta.label.text %> + + + + """ + end + + def ui_node(%{node: %{type: "img"} = node} = assigns) do + ~H""" + {@node.meta.label.text} + """ + end + + # TODO(@tobbbles): Implement text ID 1050015 for multiple secrets as a table + def ui_node(%{node: %{type: "text"} = node} = assigns) do + ~H""" +
+
+        <%= @node.attributes.text.text %>
+      
+
+ """ + end + + def ui_node(%{node: node} = assigns) do + ~H""" +
+ <.ui_label for={@node.attributes.name} text={@node.meta.label.text} /> + <.ui_input attributes={@node.attributes} /> + <%= if @node.messages do %> + <%= for message <- @node.messages do %> + <.ui_message text={message.text} /> + <% end %> + <% end %> +
+ """ + end + + attr :for, :string, required: true + attr :text, :string, required: true + attr :class, :string, default: "block mb-2 text-sm font-medium text-gray-900" + + def ui_label(assigns) do + ~H""" + + """ + end + + attr :attributes, Ory.Model.UiNodeAttributes, required: true + + def ui_input(assigns) do + ~H""" + + """ + end + + # attr :message, :string, required: true + # def ui_node_message(assigns) do + # ~H""" + # <%= @message %> + # """ + # end +end diff --git a/elixir-ory-network/lib/example_web/components/layouts.ex b/elixir-ory-network/lib/example_web/components/layouts.ex new file mode 100644 index 00000000..36111b5a --- /dev/null +++ b/elixir-ory-network/lib/example_web/components/layouts.ex @@ -0,0 +1,5 @@ +defmodule ExampleWeb.Layouts do + use ExampleWeb, :html + + embed_templates "layouts/*" +end diff --git a/elixir-ory-network/lib/example_web/components/layouts/app.html.heex b/elixir-ory-network/lib/example_web/components/layouts/app.html.heex new file mode 100644 index 00000000..e23bfc81 --- /dev/null +++ b/elixir-ory-network/lib/example_web/components/layouts/app.html.heex @@ -0,0 +1,32 @@ +
+
+
+ + + +

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

+
+ +
+
+
+
+ <.flash_group flash={@flash} /> + <%= @inner_content %> +
+
diff --git a/elixir-ory-network/lib/example_web/components/layouts/root.html.heex b/elixir-ory-network/lib/example_web/components/layouts/root.html.heex new file mode 100644 index 00000000..e7924f04 --- /dev/null +++ b/elixir-ory-network/lib/example_web/components/layouts/root.html.heex @@ -0,0 +1,17 @@ + + + + + + + <.live_title suffix=" · Phoenix Framework"> + <%= assigns[:page_title] || "Example" %> + + + + + + <%= @inner_content %> + + diff --git a/elixir-ory-network/lib/example_web/controllers/account_controller.ex b/elixir-ory-network/lib/example_web/controllers/account_controller.ex new file mode 100644 index 00000000..3391f303 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/account_controller.ex @@ -0,0 +1,83 @@ +defmodule ExampleWeb.AccountController do + use ExampleWeb, :controller + + import ExampleWeb.Helpers, only: [cookies: 1] + + alias Ory.Api.Frontend + + @doc """ + Verify page from flow parameters with optional code pre-filling + """ + + def verify(conn, %{"flow" => flow, "code" => code}) do + case Frontend.get_verification_flow(Ory.Connection.new(), flow, cookie: cookies(conn)) do + {:ok, %Ory.Model.VerificationFlow{} = flow} -> + render(conn, :verify, flow: flow) + + {:ok, %Ory.Model.ErrorGeneric{} = error} -> + IO.inspect(error) + render(conn, :verify, flow: nil) + + _ -> + IO.puts("oops") + end + end + + def verify(conn, %{"flow" => id}) do + case Frontend.get_verification_flow(Ory.Connection.new(), id, cookie: cookies(conn)) do + {:ok, %Ory.Model.VerificationFlow{} = flow} -> + render(conn, :verify, flow: flow) + + {:ok, %Ory.Model.ErrorGeneric{}} -> + render(conn, :verify, flow: nil) + + _ -> + IO.puts("oops") + end + end + + def verify(%{assigns: %{session: session}} = conn, %{return_to: return_to}) do + IO.inspect(session) + + {:ok, %{url: url}} = + Frontend.create_browser_verification_flow(Ory.Connection.new(), return_to: return_to) + + redirect(conn, external: url) + end + + def verify(%{assigns: %{session: session}} = conn, _params) do + IO.inspect(session) + + # TODO(@tobbbles): Check for verified session(s) + + {:ok, %{url: url}} = Frontend.create_browser_verification_flow(Ory.Connection.new()) + redirect(conn, external: url) + end + + # Redirect on no-session + def verify(conn, _params) do + redirect(conn, to: ~p"/account/settings") + end + + @doc """ + Settings controller + """ + + def settings(conn, %{"flow" => id}) do + {:ok, %Ory.Model.LogoutFlow{logout_url: logout_url}} = + Frontend.create_browser_logout_flow(Ory.Connection.new(), cookie: cookies(conn)) + + {:ok, settings_flow} = + Frontend.get_settings_flow(Ory.Connection.new(), id, Cookie: cookies(conn)) + + IO.inspect(settings_flow) + render(conn, :settings, flow: settings_flow, logout_url: logout_url) + end + + def settings(conn, _params) do + {:ok, %{url: url} = settings_flow} = + Frontend.create_browser_settings_flow(Ory.Connection.new(), Cookie: cookies(conn)) + + redirect(conn, external: url) + end +end diff --git a/elixir-ory-network/lib/example_web/controllers/account_html.ex b/elixir-ory-network/lib/example_web/controllers/account_html.ex new file mode 100644 index 00000000..1ead375e --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/account_html.ex @@ -0,0 +1,5 @@ +defmodule ExampleWeb.AccountHTML do + use ExampleWeb, :html + + embed_templates "account_html/*" +end diff --git a/elixir-ory-network/lib/example_web/controllers/account_html/settings.html.heex b/elixir-ory-network/lib/example_web/controllers/account_html/settings.html.heex new file mode 100644 index 00000000..cc4aa583 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/account_html/settings.html.heex @@ -0,0 +1,13 @@ +

+ <%= gettext("Settings") %> +

+ + + +<.button> + <:inner_block> + <.link navigate={@logout_url} class="text-white text-sm font-semibold leading-6"> + Log out + + + diff --git a/elixir-ory-network/lib/example_web/controllers/account_html/verify.html.heex b/elixir-ory-network/lib/example_web/controllers/account_html/verify.html.heex new file mode 100644 index 00000000..7eef2c7c --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/account_html/verify.html.heex @@ -0,0 +1,5 @@ +

+ <%= gettext("Verify") %> +

+ + diff --git a/elixir-ory-network/lib/example_web/controllers/auth_controller.ex b/elixir-ory-network/lib/example_web/controllers/auth_controller.ex new file mode 100644 index 00000000..ae9371e4 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/auth_controller.ex @@ -0,0 +1,73 @@ +defmodule ExampleWeb.AuthController do + use ExampleWeb, :controller + use Phoenix.VerifiedRoutes, endpoint: ExampleWeb.Endpoint, router: ExampleWeb.Router + + import ExampleWeb.Helpers, only: [cookies: 1] + + alias Ory.Api.Frontend + + @doc """ + Login pages with pattern-matched parameters to capture flow IDs and return_to parameters + """ + def login(conn, %{"flow" => id}) do + case Frontend.get_login_flow(Ory.Connection.new(), id, Cookie: cookies(conn)) do + {:ok, flow} -> + render(conn, :login, flow: flow) + + {:ok, %Ory.Model.ErrorGeneric{error: error}} = wrapper -> + render(conn, :login, flow: nil, error: error.message) + + {:error, reason} -> + IO.inspect(reason) + end + end + + def login(conn, %{"return_to" => return_to}) do + {:ok, %{url: url}} = + Frontend.create_browser_login_flow(Ory.Connection.new(), + Cookie: cookies(conn), + return_to: return_to + ) + + redirect(conn, external: url) + end + + def login(conn, _params) do + case Frontend.create_browser_login_flow(Ory.Connection.new(), Cookie: cookies(conn)) do + {:ok, %{url: url}} -> + redirect(conn, external: url) + + {:ok, %Ory.Model.GenericError{} = error} -> + IO.inspect(error) + + _ -> + conn |> render(:login, flow: nil) + end + end + + @doc """ + Registration pages with pattern-matched parameters to capture flow IDs and return_to parameters + """ + def registration(conn, %{"flow" => id}) do + case Frontend.get_registration_flow(Ory.Connection.new(), id, Cookie: cookies(conn)) do + {:ok, flow} -> render(conn, :registration, flow: flow) + {:error, reason} -> IO.inspect(reason) + end + end + + def registration(conn, %{"return_to" => return_to}) do + {:ok, %{url: url}} = + Frontend.create_browser_registration_flow(Ory.Connection.new(), return_to: return_to) + + redirect(conn, external: url) + end + + def registration(conn, params) do + {:ok, %{url: url}} = + Frontend.create_browser_registration_flow(Ory.Connection.new(), + return_to: url(conn, ~p"/auth/register") + ) + + redirect(conn, external: url) + end +end diff --git a/elixir-ory-network/lib/example_web/controllers/auth_html.ex b/elixir-ory-network/lib/example_web/controllers/auth_html.ex new file mode 100644 index 00000000..d6e8d1ae --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/auth_html.ex @@ -0,0 +1,5 @@ +defmodule ExampleWeb.AuthHTML do + use ExampleWeb, :html + + embed_templates "auth_html/*" +end diff --git a/elixir-ory-network/lib/example_web/controllers/auth_html/login.html.heex b/elixir-ory-network/lib/example_web/controllers/auth_html/login.html.heex new file mode 100644 index 00000000..29358f11 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/auth_html/login.html.heex @@ -0,0 +1,5 @@ +

+ <%= gettext("Login") %> +

+ + diff --git a/elixir-ory-network/lib/example_web/controllers/auth_html/registration.html.heex b/elixir-ory-network/lib/example_web/controllers/auth_html/registration.html.heex new file mode 100644 index 00000000..fc159717 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/auth_html/registration.html.heex @@ -0,0 +1,5 @@ +

+ <%= gettext("Register") %> +

+ + diff --git a/elixir-ory-network/lib/example_web/controllers/error_html.ex b/elixir-ory-network/lib/example_web/controllers/error_html.ex new file mode 100644 index 00000000..d42c3b3b --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/error_html.ex @@ -0,0 +1,19 @@ +defmodule ExampleWeb.ErrorHTML do + use ExampleWeb, :html + + # If you want to customize your error pages, + # uncomment the embed_templates/1 call below + # and add pages to the error directory: + # + # * lib/example_web/controllers/error_html/404.html.heex + # * lib/example_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/elixir-ory-network/lib/example_web/controllers/error_json.ex b/elixir-ory-network/lib/example_web/controllers/error_json.ex new file mode 100644 index 00000000..fa24e50f --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/error_json.ex @@ -0,0 +1,15 @@ +defmodule ExampleWeb.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/elixir-ory-network/lib/example_web/controllers/page_controller.ex b/elixir-ory-network/lib/example_web/controllers/page_controller.ex new file mode 100644 index 00000000..c5b11e5e --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/page_controller.ex @@ -0,0 +1,22 @@ +defmodule ExampleWeb.PageController do + use ExampleWeb, :controller + + import ExampleWeb.Helpers, only: [cookies: 1] + + alias Ory.Api.Frontend + + def home(%{assigns: %{session: session}} = conn, _params) when not is_nil(session) do + # When the user has a session, let's generate a logout url for home. + + {:ok, %Ory.Model.LogoutFlow{logout_url: logout_url}} = + Frontend.create_browser_logout_flow(Ory.Connection.new(), cookie: cookies(conn)) + + render(conn, :home, layout: false, logout_url: logout_url) + end + + 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/elixir-ory-network/lib/example_web/controllers/page_html.ex b/elixir-ory-network/lib/example_web/controllers/page_html.ex new file mode 100644 index 00000000..9958f742 --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/page_html.ex @@ -0,0 +1,5 @@ +defmodule ExampleWeb.PageHTML do + use ExampleWeb, :html + + embed_templates "page_html/*" +end diff --git a/elixir-ory-network/lib/example_web/controllers/page_html/home.html.heex b/elixir-ory-network/lib/example_web/controllers/page_html/home.html.heex new file mode 100644 index 00000000..5e27025a --- /dev/null +++ b/elixir-ory-network/lib/example_web/controllers/page_html/home.html.heex @@ -0,0 +1,93 @@ +<.flash_group flash={@flash} /> + +
+
+ +

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

+ <%= if @session do %> +

+ Successfully logged in. Hello <%= @session.identity.traits["email"] %>! +

+ + <.link navigate={~p"/account/settings"} class="text-sm font-semibold leading-6"> +

+ Go to account settings -> +

+ + <% else %> +

+ Peace of mind from prototype to production. +

+ <% end %> +

+ 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. +

+
+ +
+ <%= if !@session do %> + <.button> + <:inner_block> + <.link navigate={~p"/auth/login"} class="text-white text-sm font-semibold leading-6"> + Log in + + + + <.button> + <:inner_block> + <.link navigate={~p"/auth/register"} class="text-white text-sm font-semibold leading-6"> + Register + + + + <% end %> +
+
diff --git a/elixir-ory-network/lib/example_web/endpoint.ex b/elixir-ory-network/lib/example_web/endpoint.ex new file mode 100644 index 00000000..30660f77 --- /dev/null +++ b/elixir-ory-network/lib/example_web/endpoint.ex @@ -0,0 +1,51 @@ +defmodule ExampleWeb.Endpoint do + use Phoenix.Endpoint, otp_app: :example + + # 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: "_example_key", + signing_salt: "AHkMGziU", + same_site: "Lax" + ] + + socket "/live", Phoenix.LiveView.Socket, websocket: [connect_info: [session: @session_options]] + + # Serve at "/" the static files from "priv/static" directory. + # + # You should set gzip to true if you are running phx.digest + # when deploying your static files in production. + plug Plug.Static, + at: "/", + from: :example, + gzip: false, + only: ExampleWeb.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: :example + 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 ExampleWeb.Router +end diff --git a/elixir-ory-network/lib/example_web/gettext.ex b/elixir-ory-network/lib/example_web/gettext.ex new file mode 100644 index 00000000..7d87b5dd --- /dev/null +++ b/elixir-ory-network/lib/example_web/gettext.ex @@ -0,0 +1,24 @@ +defmodule ExampleWeb.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 ExampleWeb.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: :example +end diff --git a/elixir-ory-network/lib/example_web/helpers.ex b/elixir-ory-network/lib/example_web/helpers.ex new file mode 100644 index 00000000..56ffe909 --- /dev/null +++ b/elixir-ory-network/lib/example_web/helpers.ex @@ -0,0 +1,9 @@ +defmodule ExampleWeb.Helpers do + @doc """ + Helper function to format request cookie map into string + """ + def cookies(conn) do + conn.req_cookies + |> Enum.reduce("", fn {k, v}, acc -> "#{k}=#{v};#{acc}" end) + end +end diff --git a/elixir-ory-network/lib/example_web/router.ex b/elixir-ory-network/lib/example_web/router.ex new file mode 100644 index 00000000..9b73f766 --- /dev/null +++ b/elixir-ory-network/lib/example_web/router.ex @@ -0,0 +1,59 @@ +defmodule ExampleWeb.Router do + use ExampleWeb, :router + + pipeline :browser do + plug(:accepts, ["html"]) + plug(:fetch_session) + plug(:fetch_live_flash) + plug(:put_root_layout, html: {ExampleWeb.Layouts, :root}) + plug(:protect_from_forgery) + plug(:put_secure_browser_headers) + + plug(ExampleWeb.Authentication) + end + + pipeline :api do + plug(:accepts, ["json"]) + end + + scope "/", ExampleWeb do + pipe_through(:browser) + + get("/", PageController, :home) + end + + scope "/auth", ExampleWeb do + pipe_through(:browser) + + get "/login", AuthController, :login + get "/register", AuthController, :registration + end + + scope "/account", ExampleWeb do + pipe_through [:browser] + + get "/settings", AccountController, :settings + get "/verify", AccountController, :verify + end + + # Other scopes may use custom stacks. + # scope "/api", ExampleWeb do + # pipe_through :api + # end + + # Enable LiveDashboard in development + if Application.compile_env(:example, :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: ExampleWeb.Telemetry) + end + end +end diff --git a/elixir-ory-network/lib/example_web/telemetry.ex b/elixir-ory-network/lib/example_web/telemetry.ex new file mode 100644 index 00000000..50dda537 --- /dev/null +++ b/elixir-ory-network/lib/example_web/telemetry.ex @@ -0,0 +1,92 @@ +defmodule ExampleWeb.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_join.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.channel_handled_in.duration", + tags: [:event], + unit: {:native, :millisecond} + ), + + # Database Metrics + summary("example.repo.query.total_time", + unit: {:native, :millisecond}, + description: "The sum of the other measurements" + ), + summary("example.repo.query.decode_time", + unit: {:native, :millisecond}, + description: "The time spent decoding the data received from the database" + ), + summary("example.repo.query.query_time", + unit: {:native, :millisecond}, + description: "The time spent executing the query" + ), + summary("example.repo.query.queue_time", + unit: {:native, :millisecond}, + description: "The time spent waiting for a database connection" + ), + summary("example.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. + # {ExampleWeb, :count_users, []} + ] + end +end diff --git a/elixir-ory-network/mix.exs b/elixir-ory-network/mix.exs new file mode 100644 index 00000000..b0f0e543 --- /dev/null +++ b/elixir-ory-network/mix.exs @@ -0,0 +1,75 @@ +defmodule Example.MixProject do + use Mix.Project + + def project do + [ + app: :example, + 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: {Example.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.6"}, + {:phoenix_ecto, "~> 4.4"}, + {:ecto_sql, "~> 3.10"}, + {:ecto_sqlite3, "~> 0.10"}, + {:phoenix_html, "~> 3.3"}, + {:phoenix_live_reload, "~> 1.2", only: :dev}, + {:phoenix_live_view, "~> 0.19.0"}, + {:floki, ">= 0.30.0", only: :test}, + {:phoenix_live_dashboard, "~> 0.8.0"}, + {:esbuild, "~> 0.7", runtime: Mix.env() == :dev}, + {:tailwind, "~> 0.2.0", runtime: Mix.env() == :dev}, + {:telemetry_metrics, "~> 0.6"}, + {:telemetry_poller, "~> 1.0"}, + {:gettext, "~> 0.20"}, + {:jason, "~> 1.2"}, + {:plug_cowboy, "~> 2.5"}, + + # {:ory_client, "~> 1.1.42"} + {:ory_client, + git: "https://github.com/tobbbles/sdk.git", ref: "master", subdir: "clients/client/elixir"} + ] + 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 default", "esbuild default"], + "assets.deploy": ["tailwind default --minify", "esbuild default --minify", "phx.digest"] + ] + end +end diff --git a/elixir-ory-network/mix.lock b/elixir-ory-network/mix.lock new file mode 100644 index 00000000..fcac8fbe --- /dev/null +++ b/elixir-ory-network/mix.lock @@ -0,0 +1,43 @@ +%{ + "castore": {:hex, :castore, "1.0.3", "7130ba6d24c8424014194676d608cb989f62ef8039efd50ff4b3f33286d06db8", [:mix], [], "hexpm", "680ab01ef5d15b161ed6a95449fac5c6b8f60055677a8e79acf01b27baa4390b"}, + "cc_precompiler": {:hex, :cc_precompiler, "0.1.7", "77de20ac77f0e53f20ca82c563520af0237c301a1ec3ab3bc598e8a96c7ee5d9", [:mix], [{:elixir_make, "~> 0.7.3", [hex: :elixir_make, repo: "hexpm", optional: false]}], "hexpm", "2768b28bf3c2b4f788c995576b39b8cb5d47eb788526d93bd52206c1d8bf4b75"}, + "cowboy": {:hex, :cowboy, "2.10.0", "ff9ffeff91dae4ae270dd975642997afe2a1179d94b1887863e43f681a203e26", [:make, :rebar3], [{:cowlib, "2.12.1", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "1.8.0", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm", "3afdccb7183cc6f143cb14d3cf51fa00e53db9ec80cdcd525482f5e99bc41d6b"}, + "cowboy_telemetry": {:hex, :cowboy_telemetry, "0.4.0", "f239f68b588efa7707abce16a84d0d2acf3a0f50571f8bb7f56a15865aae820c", [:rebar3], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7d98bac1ee4565d31b62d59f8823dfd8356a169e7fcbb83831b8a5397404c9de"}, + "cowlib": {:hex, :cowlib, "2.12.1", "a9fa9a625f1d2025fe6b462cb865881329b5caff8f1854d1cbc9f9533f00e1e1", [:make, :rebar3], [], "hexpm", "163b73f6367a7341b33c794c4e88e7dbfe6498ac42dcd69ef44c5bc5507c8db0"}, + "db_connection": {:hex, :db_connection, "2.5.0", "bb6d4f30d35ded97b29fe80d8bd6f928a1912ca1ff110831edcd238a1973652c", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "c92d5ba26cd69ead1ff7582dbb860adeedfff39774105a4f1c92cbb654b55aa2"}, + "decimal": {:hex, :decimal, "2.1.1", "5611dca5d4b2c3dd497dec8f68751f1f1a54755e8ed2a966c2633cf885973ad6", [:mix], [], "hexpm", "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc"}, + "ecto": {:hex, :ecto, "3.10.3", "eb2ae2eecd210b4eb8bece1217b297ad4ff824b4384c0e3fdd28aaf96edd6135", [:mix], [{:decimal, "~> 1.6 or ~> 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", "44bec74e2364d491d70f7e42cd0d690922659d329f6465e89feb8a34e8cd3433"}, + "ecto_sql": {:hex, :ecto_sql, "3.10.1", "6ea6b3036a0b0ca94c2a02613fd9f742614b5cfe494c41af2e6571bb034dd94c", [:mix], [{:db_connection, "~> 2.4.1 or ~> 2.5", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.10.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", "f6a25bdbbd695f12c8171eaff0851fa4c8e72eec1e98c7364402dda9ce11c56b"}, + "ecto_sqlite3": {:hex, :ecto_sqlite3, "0.10.3", "82ce316a8727f1daec397a9932b1a20130ea1ac33c3257b78eded1d3f45ae9b3", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:ecto, "~> 3.10", [hex: :ecto, repo: "hexpm", optional: false]}, {:ecto_sql, "~> 3.10", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:exqlite, "~> 0.9", [hex: :exqlite, repo: "hexpm", optional: false]}], "hexpm", "b4fa32d09f5e5c05d3401ade3dd4416e3c7072d5117c150cb4adeea72760fb93"}, + "elixir_make": {:hex, :elixir_make, "0.7.7", "7128c60c2476019ed978210c245badf08b03dbec4f24d05790ef791da11aa17c", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}], "hexpm", "5bc19fff950fad52bbe5f211b12db9ec82c6b34a9647da0c2224b8b8464c7e6c"}, + "esbuild": {:hex, :esbuild, "0.7.1", "fa0947e8c3c3c2f86c9bf7e791a0a385007ccd42b86885e8e893bdb6631f5169", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "66661cdf70b1378ee4dc16573fcee67750b59761b2605a0207c267ab9d19f13c"}, + "expo": {:hex, :expo, "0.4.1", "1c61d18a5df197dfda38861673d392e642649a9cef7694d2f97a587b2cfb319b", [:mix], [], "hexpm", "2ff7ba7a798c8c543c12550fa0e2cbc81b95d4974c65855d8d15ba7b37a1ce47"}, + "exqlite": {:hex, :exqlite, "0.13.14", "acd8b58c2245c6aa611262a887509c6aa862a05bfeb174faf348375bd9fc7edb", [:make, :mix], [{:cc_precompiler, "~> 0.1", [hex: :cc_precompiler, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:elixir_make, "~> 0.7", [hex: :elixir_make, repo: "hexpm", optional: false]}, {:table, "~> 0.1.0", [hex: :table, repo: "hexpm", optional: true]}], "hexpm", "e81cd9b811e70a43b8d2d4ee76d3ce57ff349890ec4182f8f5223ead38ac4996"}, + "file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"}, + "floki": {:hex, :floki, "0.34.3", "5e2dcaec5d7c228ce5b1d3501502e308b2d79eb655e4191751a1fe491c37feac", [:mix], [], "hexpm", "9577440eea5b97924b4bf3c7ea55f7b8b6dce589f9b28b096cc294a8dc342341"}, + "gettext": {:hex, :gettext, "0.22.3", "c8273e78db4a0bb6fba7e9f0fd881112f349a3117f7f7c598fa18c66c888e524", [:mix], [{:expo, "~> 0.4.0", [hex: :expo, repo: "hexpm", optional: false]}], "hexpm", "935f23447713954a6866f1bb28c3a878c4c011e802bcd68a726f5e558e4b64bd"}, + "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"}, + "ory_client": {:git, "https://github.com/tobbbles/sdk.git", "c182ac6820a1620e115f40268ff0775cc4a2fc0c", [ref: "master", subdir: "clients/client/elixir"]}, + "phoenix": {:hex, :phoenix, "1.7.6", "61f0625af7c1d1923d582470446de29b008c0e07ae33d7a3859ede247ddaf59a", [: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.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [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", "f6b4be7780402bb060cbc6e83f1b6d3f5673b674ba73cc4a7dd47db0322dfb88"}, + "phoenix_ecto": {:hex, :phoenix_ecto, "4.4.2", "b21bd01fdeffcfe2fab49e4942aa938b6d3e89e93a480d4aee58085560a0bc0d", [:mix], [{:ecto, "~> 3.5", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "70242edd4601d50b69273b057ecf7b684644c19ee750989fd555625ae4ce8f5d"}, + "phoenix_html": {:hex, :phoenix_html, "3.3.1", "4788757e804a30baac6b3fc9695bf5562465dd3f1da8eb8460ad5b404d9a2178", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "bed1906edd4906a15fd7b412b85b05e521e1f67c9a85418c55999277e553d0d3"}, + "phoenix_live_dashboard": {:hex, :phoenix_live_dashboard, "0.8.0", "0b3158b5b198aa444473c91d23d79f52fb077e807ffad80dacf88ce078fa8df2", [: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", [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.0", [hex: :phoenix_live_view, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6 or ~> 1.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}], "hexpm", "87785a54474fed91a67a1227a741097eb1a42c2e49d3c0d098b588af65cd410d"}, + "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.4.1", "2aff698f5e47369decde4357ba91fc9c37c6487a512b41732818f2204a8ef1d3", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "9bffb834e7ddf08467fe54ae58b5785507aaba6255568ae22b4d46e2bb3615ab"}, + "phoenix_live_view": {:hex, :phoenix_live_view, "0.19.3", "3918c1b34df8ac71a9a636806ba5b7f053349a0392b312e16f35b0bf4d070aab", [:mix], [{: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", [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]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "545626887948495fd8ea23d83b75bd7aaf9dc4221563e158d2c4b52ea1dd7e00"}, + "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.1.3", "3168d78ba41835aecad272d5e8cd51aa87a7ac9eb836eabc42f6e57538e3731d", [:mix], [], "hexpm", "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"}, + "phoenix_template": {:hex, :phoenix_template, "1.0.2", "a3dd349493d7c0b8f58da8175f805963a5b809ffc7d8c1b8dd46ba5b199ef58f", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "ab78ebc964685b9eeba102344049eb32d69e582c497d5a0ae6f25909db00c67b"}, + "plug": {:hex, :plug, "1.14.2", "cff7d4ec45b4ae176a227acd94a7ab536d9b37b942c8e8fa6dfc0fff98ff4d80", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "842fc50187e13cf4ac3b253d47d9474ed6c296a8732752835ce4a86acdf68d13"}, + "plug_cowboy": {:hex, :plug_cowboy, "2.6.1", "9a3bbfceeb65eff5f39dab529e5cd79137ac36e913c02067dba3963a26efe9b2", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "de36e1a21f451a18b790f37765db198075c25875c64834bcc82d90b309eb6613"}, + "plug_crypto": {:hex, :plug_crypto, "1.2.5", "918772575e48e81e455818229bf719d4ab4181fcbf7f85b68a35620f78d89ced", [:mix], [], "hexpm", "26549a1d6345e2172eb1c233866756ae44a9609bd33ee6f99147ab3fd87fd842"}, + "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], [], "hexpm", "fec8660eb7733ee4117b85f55799fd3833eb769a6df71ccf8903e8dc5447cfce"}, + "postgrex": {:hex, :postgrex, "0.17.1", "01c29fd1205940ee55f7addb8f1dc25618ca63a8817e56fac4f6846fc2cddcbe", [: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", "14b057b488e73be2beee508fb1955d8db90d6485c6466428fe9ccf1d6692a555"}, + "ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"}, + "tailwind": {:hex, :tailwind, "0.2.1", "83d8eadbe71a8e8f67861fe7f8d51658ecfb258387123afe4d9dc194eddc36b0", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "e8a13f6107c95f73e58ed1b4221744e1eb5a093cd1da244432067e19c8c9a277"}, + "telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"}, + "telemetry_metrics": {:hex, :telemetry_metrics, "0.6.1", "315d9163a1d4660aedc3fee73f33f1d355dcc76c5c3ab3d59e76e3edf80eef1f", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"}, + "telemetry_poller": {:hex, :telemetry_poller, "1.0.0", "db91bb424e07f2bb6e73926fcafbfcbcb295f0193e0a00e825e589a0a47e8453", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"}, + "tesla": {:hex, :tesla, "1.7.0", "a62dda2f80d4f8a925eb7b8c5b78c461e0eb996672719fe1a63b26321a5f8b4e", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.13", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, "~> 1.3", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:msgpax, "~> 2.3", [hex: :msgpax, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "2e64f01ebfdb026209b47bc651a0e65203fcff4ae79c11efb73c4852b00dc313"}, + "websock": {:hex, :websock, "0.5.2", "b3c08511d8d79ed2c2f589ff430bd1fe799bb389686dafce86d28801783d8351", [:mix], [], "hexpm", "925f5de22fca6813dfa980fb62fd542ec43a2d1a1f83d2caec907483fe66ff05"}, + "websock_adapter": {:hex, :websock_adapter, "0.5.3", "4908718e42e4a548fc20e00e70848620a92f11f7a6add8cf0886c4232267498d", [: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", "cbe5b814c1f86b6ea002b52dd99f345aeecf1a1a6964e209d208fb404d930d3d"}, +} diff --git a/elixir-ory-network/priv/gettext/en/LC_MESSAGES/errors.po b/elixir-ory-network/priv/gettext/en/LC_MESSAGES/errors.po new file mode 100644 index 00000000..844c4f5c --- /dev/null +++ b/elixir-ory-network/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/elixir-ory-network/priv/gettext/errors.pot b/elixir-ory-network/priv/gettext/errors.pot new file mode 100644 index 00000000..ccf5c687 --- /dev/null +++ b/elixir-ory-network/priv/gettext/errors.pot @@ -0,0 +1,110 @@ +## 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/elixir-ory-network/priv/repo/migrations/.formatter.exs b/elixir-ory-network/priv/repo/migrations/.formatter.exs new file mode 100644 index 00000000..49f9151e --- /dev/null +++ b/elixir-ory-network/priv/repo/migrations/.formatter.exs @@ -0,0 +1,4 @@ +[ + import_deps: [:ecto_sql], + inputs: ["*.exs"] +] diff --git a/elixir-ory-network/priv/repo/seeds.exs b/elixir-ory-network/priv/repo/seeds.exs new file mode 100644 index 00000000..5f66b95b --- /dev/null +++ b/elixir-ory-network/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: +# +# Example.Repo.insert!(%Example.SomeSchema{}) +# +# We recommend using the bang functions (`insert!`, `update!` +# and so on) as they will fail if something goes wrong. diff --git a/elixir-ory-network/priv/static/favicon.ico b/elixir-ory-network/priv/static/favicon.ico new file mode 100644 index 00000000..73de524a Binary files /dev/null and b/elixir-ory-network/priv/static/favicon.ico differ diff --git a/elixir-ory-network/priv/static/images/logo.svg b/elixir-ory-network/priv/static/images/logo.svg new file mode 100644 index 00000000..7347634f --- /dev/null +++ b/elixir-ory-network/priv/static/images/logo.svg @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/elixir-ory-network/priv/static/robots.txt b/elixir-ory-network/priv/static/robots.txt new file mode 100644 index 00000000..26e06b5f --- /dev/null +++ b/elixir-ory-network/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/elixir-ory-network/test/example_web/controllers/error_html_test.exs b/elixir-ory-network/test/example_web/controllers/error_html_test.exs new file mode 100644 index 00000000..af9d3e2a --- /dev/null +++ b/elixir-ory-network/test/example_web/controllers/error_html_test.exs @@ -0,0 +1,14 @@ +defmodule ExampleWeb.ErrorHTMLTest do + use ExampleWeb.ConnCase, async: true + + # Bring render_to_string/4 for testing custom views + import Phoenix.Template + + test "renders 404.html" do + assert render_to_string(ExampleWeb.ErrorHTML, "404", "html", []) == "Not Found" + end + + test "renders 500.html" do + assert render_to_string(ExampleWeb.ErrorHTML, "500", "html", []) == "Internal Server Error" + end +end diff --git a/elixir-ory-network/test/example_web/controllers/error_json_test.exs b/elixir-ory-network/test/example_web/controllers/error_json_test.exs new file mode 100644 index 00000000..9a291d13 --- /dev/null +++ b/elixir-ory-network/test/example_web/controllers/error_json_test.exs @@ -0,0 +1,12 @@ +defmodule ExampleWeb.ErrorJSONTest do + use ExampleWeb.ConnCase, async: true + + test "renders 404" do + assert ExampleWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}} + end + + test "renders 500" do + assert ExampleWeb.ErrorJSON.render("500.json", %{}) == + %{errors: %{detail: "Internal Server Error"}} + end +end diff --git a/elixir-ory-network/test/example_web/controllers/page_controller_test.exs b/elixir-ory-network/test/example_web/controllers/page_controller_test.exs new file mode 100644 index 00000000..9b7e7ec4 --- /dev/null +++ b/elixir-ory-network/test/example_web/controllers/page_controller_test.exs @@ -0,0 +1,8 @@ +defmodule ExampleWeb.PageControllerTest do + use ExampleWeb.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/elixir-ory-network/test/example_web/live/auth_live_test.exs b/elixir-ory-network/test/example_web/live/auth_live_test.exs new file mode 100644 index 00000000..5d793064 --- /dev/null +++ b/elixir-ory-network/test/example_web/live/auth_live_test.exs @@ -0,0 +1,108 @@ +defmodule ExampleWeb.AuthLiveTest do + use ExampleWeb.ConnCase + + import Phoenix.LiveViewTest + import Example.AccountsFixtures + + @create_attrs %{} + @update_attrs %{} + @invalid_attrs %{} + + defp create_auth(_) do + auth = auth_fixture() + %{auth: auth} + end + + describe "Index" do + setup [:create_auth] + + test "lists all auth", %{conn: conn} do + {:ok, _index_live, html} = live(conn, ~p"/auth") + + assert html =~ "Listing Auth" + end + + test "saves new auth", %{conn: conn} do + {:ok, index_live, _html} = live(conn, ~p"/auth") + + assert index_live |> element("a", "New Auth") |> render_click() =~ + "New Auth" + + assert_patch(index_live, ~p"/auth/new") + + assert index_live + |> form("#auth-form", auth: @invalid_attrs) + |> render_change() =~ "can't be blank" + + assert index_live + |> form("#auth-form", auth: @create_attrs) + |> render_submit() + + assert_patch(index_live, ~p"/auth") + + html = render(index_live) + assert html =~ "Auth created successfully" + end + + test "updates auth in listing", %{conn: conn, auth: auth} do + {:ok, index_live, _html} = live(conn, ~p"/auth") + + assert index_live |> element("#auth-#{auth.id} a", "Edit") |> render_click() =~ + "Edit Auth" + + assert_patch(index_live, ~p"/auth/#{auth}/edit") + + assert index_live + |> form("#auth-form", auth: @invalid_attrs) + |> render_change() =~ "can't be blank" + + assert index_live + |> form("#auth-form", auth: @update_attrs) + |> render_submit() + + assert_patch(index_live, ~p"/auth") + + html = render(index_live) + assert html =~ "Auth updated successfully" + end + + test "deletes auth in listing", %{conn: conn, auth: auth} do + {:ok, index_live, _html} = live(conn, ~p"/auth") + + assert index_live |> element("#auth-#{auth.id} a", "Delete") |> render_click() + refute has_element?(index_live, "#auth-#{auth.id}") + end + end + + describe "Show" do + setup [:create_auth] + + test "displays auth", %{conn: conn, auth: auth} do + {:ok, _show_live, html} = live(conn, ~p"/auth/#{auth}") + + assert html =~ "Show Auth" + end + + test "updates auth within modal", %{conn: conn, auth: auth} do + {:ok, show_live, _html} = live(conn, ~p"/auth/#{auth}") + + assert show_live |> element("a", "Edit") |> render_click() =~ + "Edit Auth" + + assert_patch(show_live, ~p"/auth/#{auth}/show/edit") + + assert show_live + |> form("#auth-form", auth: @invalid_attrs) + |> render_change() =~ "can't be blank" + + assert show_live + |> form("#auth-form", auth: @update_attrs) + |> render_submit() + + assert_patch(show_live, ~p"/auth/#{auth}") + + html = render(show_live) + assert html =~ "Auth updated successfully" + end + end +end diff --git a/elixir-ory-network/test/support/conn_case.ex b/elixir-ory-network/test/support/conn_case.ex new file mode 100644 index 00000000..88dd7948 --- /dev/null +++ b/elixir-ory-network/test/support/conn_case.ex @@ -0,0 +1,38 @@ +defmodule ExampleWeb.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 ExampleWeb.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 ExampleWeb.Endpoint + + use ExampleWeb, :verified_routes + + # Import conveniences for testing with connections + import Plug.Conn + import Phoenix.ConnTest + import ExampleWeb.ConnCase + end + end + + setup tags do + Example.DataCase.setup_sandbox(tags) + {:ok, conn: Phoenix.ConnTest.build_conn()} + end +end diff --git a/elixir-ory-network/test/support/data_case.ex b/elixir-ory-network/test/support/data_case.ex new file mode 100644 index 00000000..f16111b2 --- /dev/null +++ b/elixir-ory-network/test/support/data_case.ex @@ -0,0 +1,58 @@ +defmodule Example.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 Example.DataCase, async: true`, although + this option is not recommended for other databases. + """ + + use ExUnit.CaseTemplate + + using do + quote do + alias Example.Repo + + import Ecto + import Ecto.Changeset + import Ecto.Query + import Example.DataCase + end + end + + setup tags do + Example.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!(Example.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/elixir-ory-network/test/test_helper.exs b/elixir-ory-network/test/test_helper.exs new file mode 100644 index 00000000..0de6b748 --- /dev/null +++ b/elixir-ory-network/test/test_helper.exs @@ -0,0 +1,2 @@ +ExUnit.start() +Ecto.Adapters.SQL.Sandbox.mode(Example.Repo, :manual)