Giter Site home page Giter Site logo

byjpr / plug_shopify_jwt Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 66 KB

Validates Shopify JWT, designed for Shopify App Bridge

License: GNU Affero General Public License v3.0

Elixir 100.00%
elixir jwt shopify session-tokens embedded-app shopify-app shopify-embedded-applications

plug_shopify_jwt's Issues

Split adding URL to private into separate module

In Enron I have a module (EnronWeb.Plug.ResourceFromJWT) which takes the URL from JWT Claims and puts it into a private key of it's own. It may make more sense to split it out in the public version of this plug too.

defmodule EnronWeb.Plug.ResourceFromJWT do
  @moduledoc """
  Loads Shop from JWT
  """
  import Plug.Conn

  @doc false
  def init(opts), do: opts

  @doc false
  def call(%{private: %{shop_origin_type: :jwt}} = conn, _config) do
    conn
    |> put_private(:enron_shop_name, jwt_shopify_url(conn))
  end

  def call(conn, _config), do: conn

  defp jwt_shopify_url(conn),
    do: conn.private[:shopify_jwt_claims] |> Map.fetch!("dest") |> String.replace("https://", "")
end

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.