mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 17:23:00 +03:00
3d2f356ba7
* rename enterprise?/1 function * change link text to Upgrade when subscription deleted * extract paddle_button and paddle_script components * create a new upgrade-to-enterprise-plan page * extract upgrade_link component * rename function * link to enterprise plan upgrade page from settings ...if the user has an enterprise plan configured * fetch enterprise plan price on the new page * add change_enterprise_plan functionality on the new page * render existing change_enterprise_plan_contact_us.html ...when subscribed to latest configured enterprise plan * rename vars and extract resumable? fn * remove dead billing route * small test refactor: extract convenience fn * add tests for... ...restricting paused and past_due subscription access to the new enterprise plan page. 1. redirect to /settings from the controller action 2. hiding the change-plan link from the user settings * implement redirect to /settings * hide the enterprise upgrade/change-plan link * add tests for a deleted enterprise subscription * plug in the new controller action and delete dead code * optimize for dark mode * fix compile warning * credo fix * display N/A instead of crash when price nil * change subscription.status type to Ecto.Enum Also, create a new `Subscription.Status` module that exposes macros to return the used atom values (prevent typos at compiletime). * fix bug (@conn not available anymore) * use Routes.billing_path where applicable * add a status() type * silence credo * refactor suggestion from review Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com> * Remove the __using__ macro from Subscription.Status ... instead be explicit about requires and aliases and also order the use, import, require, and alias clauses according to https://github.com/christopheradams/elixir_style_guide#module-attribute-ordering * drop the virtual Enteprise 'price_per_interval' field * apply review suggestion to make the code more DRY * use dot syntax to fetch current user in new controller actions * fix formatting --------- Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com>
25 lines
778 B
Elixir
25 lines
778 B
Elixir
defmodule Mix.Tasks.CancelSubscription do
|
|
@moduledoc """
|
|
This task is meant to replicate the behavior of cancelling
|
|
a subscription. On production, this action is initiated by
|
|
a Paddle webhook. Currently, only the subscription status
|
|
is changed with that action.
|
|
"""
|
|
|
|
use Mix.Task
|
|
use Plausible.Repo
|
|
require Plausible.Billing.Subscription.Status
|
|
require Logger
|
|
alias Plausible.{Repo, Billing.Subscription}
|
|
|
|
def run([paddle_subscription_id]) do
|
|
Mix.Task.run("app.start")
|
|
|
|
Repo.get_by!(Subscription, paddle_subscription_id: paddle_subscription_id)
|
|
|> Subscription.changeset(%{status: Subscription.Status.deleted()})
|
|
|> Repo.update!()
|
|
|
|
Logger.info("Successfully set the subscription status to #{Subscription.Status.deleted()}")
|
|
end
|
|
end
|