Skip to content

Instantly share code, notes, and snippets.

<svg
version="1.1"
id="svg2"
width="75"
height="75"
viewBox="0 0 800 800"
sodipodi:docname="cloudradio-icon-grey-600px.ai"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
def require_admin_user(conn, _opts) do
current_user = conn.assigns[:current_user]
if current_user.admin? do
conn
else
conn
|> put_flash(:error, "You must be an admin to access this page.")
|> redirect(to: Routes.admin_session_path(conn, :new))
|> halt()
@hmorneau
hmorneau / dev.secrets.ex
Created March 6, 2024 22:01
[object Object]
# In this file, we load production configuration and secrets
# from environment variables. You can also hardcode secrets,
# although such is generally not recommended and you have to
# remember to add this file to your .gitignore.
import Config
config :studio, email_validator_api_key: "WEu0KUlOGv9vSW8M0JoGo3PC8dsVgTEC"
Add import_config "#{config_env()}.secrets.exs" to dev
@hmorneau
hmorneau / emailvalidation.ex
Last active March 21, 2024 14:47
api email
defmodule Studio.Accounts.EmailValidator do
@moduledoc """
Reoon Email Verifier API client. The score is the probability that the email is safe to send.
"""
@api_base_url "https://emailverifier.reoon.com/api/v1/verify"
@minimum_score 70
# Public function to check if an email is safe to send, with an optional mode parameter
def validate(email, mode \\ "power") do