mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
118 lines
3.5 KiB
Elixir
118 lines
3.5 KiB
Elixir
defmodule PlausibleWeb.BillingController do
|
|
use PlausibleWeb, :controller
|
|
use Plausible.Repo
|
|
alias Plausible.Billing
|
|
require Logger
|
|
|
|
plug PlausibleWeb.RequireAccountPlug
|
|
|
|
def admin_email do
|
|
Application.get_env(:plausible, :admin_email)
|
|
end
|
|
|
|
def change_plan_form(conn, _params) do
|
|
subscription = Billing.active_subscription_for(conn.assigns[:current_user].id)
|
|
|
|
if subscription do
|
|
render(conn, "change_plan.html",
|
|
subscription: subscription,
|
|
layout: {PlausibleWeb.LayoutView, "focus.html"}
|
|
)
|
|
else
|
|
redirect(conn, to: "/billing/upgrade")
|
|
end
|
|
end
|
|
|
|
def change_plan_preview(conn, %{"plan_id" => new_plan_id}) do
|
|
subscription = Billing.active_subscription_for(conn.assigns[:current_user].id)
|
|
|
|
if subscription do
|
|
{:ok, preview_info} = Billing.change_plan_preview(subscription, new_plan_id)
|
|
|
|
render(conn, "change_plan_preview.html",
|
|
subscription: subscription,
|
|
preview_info: preview_info,
|
|
layout: {PlausibleWeb.LayoutView, "focus.html"}
|
|
)
|
|
else
|
|
redirect(conn, to: "/billing/upgrade")
|
|
end
|
|
end
|
|
|
|
def change_plan(conn, %{"new_plan_id" => new_plan_id}) do
|
|
case Billing.change_plan(conn.assigns[:current_user], new_plan_id) do
|
|
{:ok, _subscription} ->
|
|
conn
|
|
|> put_flash(:success, "Plan changed successfully")
|
|
|> redirect(to: "/settings")
|
|
|
|
{:error, e} ->
|
|
# https://developer.paddle.com/api-reference/intro/api-error-codes
|
|
msg =
|
|
case e do
|
|
%{"code" => 147} ->
|
|
"We were unable to charge your card. Make sure your payment details are up to date and try again."
|
|
|
|
%{"message" => msg} when not is_nil(msg) ->
|
|
msg
|
|
|
|
_ ->
|
|
"Something went wrong. Please try again or contact support at support@plausible.io"
|
|
end
|
|
|
|
Sentry.capture_message("Error changing plans",
|
|
extra: %{
|
|
errors: inspect(e),
|
|
message: msg,
|
|
new_plan_id: new_plan_id,
|
|
user_id: conn.assigns[:current_user].id
|
|
}
|
|
)
|
|
|
|
conn
|
|
|> put_flash(
|
|
:error,
|
|
"Something went wrong. Please try again or contact support at support@plausible.io"
|
|
)
|
|
|> redirect(to: "/settings")
|
|
end
|
|
end
|
|
|
|
def upgrade(conn, _params) do
|
|
usage = Plausible.Billing.usage(conn.assigns[:current_user])
|
|
today = Timex.today()
|
|
IO.inspect(Plausible.Billing.Plans.plans_for(conn.assigns[:current_user]))
|
|
|
|
render(conn, "upgrade.html",
|
|
usage: usage,
|
|
today: today,
|
|
user: conn.assigns[:current_user],
|
|
layout: {PlausibleWeb.LayoutView, "focus.html"}
|
|
)
|
|
end
|
|
|
|
def upgrade_to_plan(conn, %{"plan_id" => plan_id}) do
|
|
plan = Plausible.Billing.Plans.for_product_id(plan_id)
|
|
|
|
if plan do
|
|
cycle = if plan[:monthly_product_id] == plan_id, do: "monthly", else: "yearly"
|
|
cost = if cycle == "monthly", do: plan[:monthly_cost], else: plan[:yearly_cost]
|
|
plan = Map.merge(plan, %{cycle: cycle, cost: cost, product_id: plan_id})
|
|
usage = Plausible.Billing.usage(conn.assigns[:current_user])
|
|
|
|
render(conn, "upgrade_to_plan.html",
|
|
usage: usage,
|
|
plan: plan,
|
|
user: conn.assigns[:current_user],
|
|
layout: {PlausibleWeb.LayoutView, "focus.html"}
|
|
)
|
|
else
|
|
render_error(conn, 404)
|
|
end
|
|
end
|
|
|
|
def upgrade_success(conn, _params) do
|
|
render(conn, "upgrade_success.html", layout: {PlausibleWeb.LayoutView, "focus.html"})
|
|
end
|
|
end
|