Skip to content

Commit

Permalink
remove Plausible Analytics metions from CE
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga committed May 23, 2024
1 parent 23a6431 commit fec178e
Show file tree
Hide file tree
Showing 20 changed files with 50 additions and 48 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ENV LANG=C.UTF-8
ARG MIX_ENV=ce
ENV MIX_ENV=$MIX_ENV

RUN adduser -S -H -u 999 -G nogroup plausible -g 'Plausible Analytics'
RUN adduser -S -H -u 999 -G nogroup plausible

RUN apk upgrade --no-cache
RUN apk add --no-cache openssl ncurses libstdc++ libgcc ca-certificates
Expand Down
2 changes: 2 additions & 0 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ if (embedButton) {
embedLink.searchParams.set('background', background)
}

// TODO

embedCode.value = `<iframe plausible-embed src="${embedLink.toString()}" scrolling="no" frameborder="0" loading="lazy" style="width: 1px; min-width: 100%; height: 1600px;"></iframe>
<div style="font-size: 14px; padding-bottom: 14px;">Stats powered by <a target="_blank" style="color: #4F46E5; text-decoration: underline;" href="https://plausible.io">Plausible Analytics</a></div>
<script async src="${baseUrl}/js/embed.host.js"></script>`
Expand Down
10 changes: 10 additions & 0 deletions lib/plausible.ex
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,14 @@ defmodule Plausible do
end
end
end

if Mix.env() in @ce_builds do
def product_name do
"Plausible CE"
end
else
def product_name do
"Plausible Analytics"
end
end
end
6 changes: 2 additions & 4 deletions lib/plausible/auth/totp.ex
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ defmodule Plausible.Auth.TOTP do
alias Plausible.Repo
alias PlausibleWeb.Email

@issuer_name "Plausible Analytics"
@recovery_codes_count 10

@spec enabled?(Auth.User.t()) :: boolean()
Expand Down Expand Up @@ -298,9 +297,8 @@ defmodule Plausible.Auth.TOTP do
end

defp totp_uri(user) do
NimbleTOTP.otpauth_uri("#{@issuer_name}:#{user.email}", user.totp_secret,
issuer: @issuer_name
)
issuer_name = Plausible.product_name()
NimbleTOTP.otpauth_uri("#{issuer_name}:#{user.email}", user.totp_secret, issuer: issuer_name)
end

defp readable_secret(user) do
Expand Down
38 changes: 14 additions & 24 deletions lib/plausible_web/email.ex
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ defmodule PlausibleWeb.Email do
priority_email()
|> to(invitation.email)
|> tag("new-user-invitation")
|> subject("[Plausible Analytics] You've been invited to #{invitation.site.domain}")
|> subject("[#{Plausible.product_name()}] You've been invited to #{invitation.site.domain}")
|> render("new_user_invitation.html",
invitation: invitation
)
Expand All @@ -234,7 +234,7 @@ defmodule PlausibleWeb.Email do
priority_email()
|> to(invitation.email)
|> tag("existing-user-invitation")
|> subject("[Plausible Analytics] You've been invited to #{invitation.site.domain}")
|> subject("[#{Plausible.product_name()}] You've been invited to #{invitation.site.domain}")
|> render("existing_user_invitation.html",
invitation: invitation
)
Expand All @@ -244,7 +244,9 @@ defmodule PlausibleWeb.Email do
priority_email()
|> to(invitation.email)
|> tag("ownership-transfer-request")
|> subject("[Plausible Analytics] Request to transfer ownership of #{invitation.site.domain}")
|> subject(
"[#{Plausible.product_name()}] Request to transfer ownership of #{invitation.site.domain}"
)
|> render("ownership_transfer_request.html",
invitation: invitation,
new_owner_account: new_owner_account
Expand All @@ -256,7 +258,7 @@ defmodule PlausibleWeb.Email do
|> to(invitation.inviter.email)
|> tag("invitation-accepted")
|> subject(
"[Plausible Analytics] #{invitation.email} accepted your invitation to #{invitation.site.domain}"
"[#{Plausible.product_name()}] #{invitation.email} accepted your invitation to #{invitation.site.domain}"
)
|> render("invitation_accepted.html",
user: invitation.inviter,
Expand All @@ -269,7 +271,7 @@ defmodule PlausibleWeb.Email do
|> to(invitation.inviter.email)
|> tag("invitation-rejected")
|> subject(
"[Plausible Analytics] #{invitation.email} rejected your invitation to #{invitation.site.domain}"
"[#{Plausible.product_name()}] #{invitation.email} rejected your invitation to #{invitation.site.domain}"
)
|> render("invitation_rejected.html",
user: invitation.inviter,
Expand All @@ -282,7 +284,7 @@ defmodule PlausibleWeb.Email do
|> to(invitation.inviter.email)
|> tag("ownership-transfer-accepted")
|> subject(
"[Plausible Analytics] #{invitation.email} accepted the ownership transfer of #{invitation.site.domain}"
"[#{Plausible.product_name()}] #{invitation.email} accepted the ownership transfer of #{invitation.site.domain}"
)
|> render("ownership_transfer_accepted.html",
user: invitation.inviter,
Expand All @@ -295,7 +297,7 @@ defmodule PlausibleWeb.Email do
|> to(invitation.inviter.email)
|> tag("ownership-transfer-rejected")
|> subject(
"[Plausible Analytics] #{invitation.email} rejected the ownership transfer of #{invitation.site.domain}"
"[#{Plausible.product_name()}] #{invitation.email} rejected the ownership transfer of #{invitation.site.domain}"
)
|> render("ownership_transfer_rejected.html",
user: invitation.inviter,
Expand All @@ -307,7 +309,9 @@ defmodule PlausibleWeb.Email do
priority_email()
|> to(membership.user.email)
|> tag("site-member-removed")
|> subject("[Plausible Analytics] Your access to #{membership.site.domain} has been revoked")
|> subject(
"[#{Plausible.product_name()}] Your access to #{membership.site.domain} has been revoked"
)
|> render("site_member_removed.html",
user: membership.user,
membership: membership
Expand Down Expand Up @@ -348,13 +352,6 @@ defmodule PlausibleWeb.Email do
end

def export_success(user, site, expires_at) do
subject =
on_ee do
"Your Plausible Analytics export is now ready for download"
else
"Your export is now ready for download"
end

expires_in =
if expires_at do
Timex.Format.DateTime.Formatters.Relative.format!(
Expand All @@ -373,7 +370,7 @@ defmodule PlausibleWeb.Email do
priority_email()
|> to(user)
|> tag("export-success")
|> subject(subject)
|> subject("[#{Plausible.product_name()}] Your export is now ready for download")
|> render("export_success.html",
user: user,
site: site,
Expand All @@ -383,16 +380,9 @@ defmodule PlausibleWeb.Email do
end

def export_failure(user, site) do
subject =
on_ee do
"Your Plausible Analytics export has failed"
else
"Your export has failed"
end

priority_email()
|> to(user)
|> subject(subject)
|> subject("[#{Plausible.product_name()}] Your export has failed")
|> render("export_failure.html", user: user, site: site)
end

Expand Down
4 changes: 2 additions & 2 deletions lib/plausible_web/live/register_form.ex
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ defmodule PlausibleWeb.Live.RegisterForm do
def render(%{invitation_expired: true} = assigns) do
~H"""
<div class="mx-auto mt-6 text-center dark:text-gray-300">
<h1 class="text-3xl font-black">Plausible Analytics</h1>
<h1 class="text-3xl font-black"><%= Plausible.product_name() %></h1>
<div class="text-xl font-medium">Lightweight and privacy-friendly web analytics</div>
</div>
Expand All @@ -65,7 +65,7 @@ defmodule PlausibleWeb.Live.RegisterForm do
<div class="mx-auto mt-6 text-center dark:text-gray-300">
<h1 class="text-3xl font-black">
<%= if ce?() or @live_action == :register_from_invitation_form do %>
Register your Plausible Analytics account
Register your <%= Plausible.product_name() %> account
<% else %>
Register your 30-day free trial
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion lib/plausible_web/mjml/templates/stats_report.mjml.eex
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<mj-section padding="25px 0 0 0">
<mj-column>
<mj-text mj-class="text-sm" height="40px">
Plausible Analytics
<%= Plausible.product_name() %>
</mj-text>
<mj-text mj-class="text-lg">
<%= @site.domain %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
You used to have an active account with Plausible Analytics, a simple, lightweight, open source and privacy-first Google Analytics alternative.
You used to have an active account with <%= Plausible.product_name() %>, a simple, lightweight, open source and privacy-first Google Analytics alternative.
<br /><br />
We've noticed that you're still sending us stats so we're writing to inform you that we'll stop accepting stats from your sites <%= @time %>. We're an independent, bootstrapped service and we don't sell your data, so this will reduce our server costs and help keep us sustainable.
<br /><br /> If you'd like to continue counting your site stats in a privacy-friendly way, please
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Last week we sent a reminder that your site traffic has exceeded the limits of your Plausible Analytics subscription tier for two consecutive months. Since we haven't received a response, we've had to temporarily lock access to your stats.
Last week we sent a reminder that your site traffic has exceeded the limits of your <%= Plausible.product_name() %> subscription tier for two consecutive months. Since we haven't received a response, we've had to temporarily lock access to your stats.
<br /><br />
Your subscription is still active, we're still counting your stats and haven't deleted any of your data but as you have outgrown your subscription tier, we kindly ask you to upgrade to match your new traffic levels. Upon upgrading to a suitable tier, your dashboard access will be immediately restored.
<br /><br />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<%= @invitation.inviter.email %> has invited you to the <%= @invitation.site.domain %> site on Plausible Analytics.
<%= @invitation.inviter.email %> has invited you to the <%= @invitation.site.domain %> site on <%= Plausible.product_name() %>.
<%= link("Click here", to: Routes.site_url(PlausibleWeb.Endpoint, :index)) %> to view and respond to the invitation. The invitation
will expire 48 hours after this email is sent.
2 changes: 1 addition & 1 deletion lib/plausible_web/templates/email/export_failure.html.eex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Your <%= if ee?() do %>Plausible Analytics <% end %>export for <%= @site.domain %> has encountered an error and was unsuccessful.
Your <%= Plausible.product_name() %> export for <%= @site.domain %> has encountered an error and was unsuccessful.
Sorry for the trouble this may have caused.
<br/><br/>
Please attempt to export your data again.
Expand Down
2 changes: 1 addition & 1 deletion lib/plausible_web/templates/email/export_success.html.eex
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Your <%= if ee?() do %>Plausible Analytics <% end %>export for <%= @site.domain %> is now ready for download.
Your <%= Plausible.product_name() %> export for <%= @site.domain %> is now ready for download.
Please click <a href="<%= @download_url %>">here</a> to start the download process.
<%= if @expires_in do %>Note that this link will expire <%= @expires_in %>.<% end %>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= @invitation.inviter.email %> has invited you to join the <%= @invitation.site.domain %> site on Plausible Analytics.
<%= @invitation.inviter.email %> has invited you to join the <%= @invitation.site.domain %> site on <%= Plausible.product_name() %>.
<%= link("Click here", to: Routes.auth_url(PlausibleWeb.Endpoint, :register_from_invitation_form, @invitation.invitation_id)) %> to create your account. The link is valid for 48 hours after this email is sent.
<br /><br />
Plausible is a lightweight and open-source website analytics tool. We hope you like our simple and ethical approach to tracking website visitors.
2 changes: 1 addition & 1 deletion lib/plausible_web/templates/email/over_limit.html.eex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Thanks for being a Plausible Analytics subscriber!
Thanks for being a <%= Plausible.product_name() %> subscriber!
<br /><br />
This is a friendly reminder that your traffic has exceeded your subscription tier for two consecutive months. Congrats on all that traffic!
<br /><br />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%= @invitation.inviter.email %> has requested to transfer the ownership of <%= @invitation.site.domain %> site on Plausible Analytics to you.
<%= @invitation.inviter.email %> has requested to transfer the ownership of <%= @invitation.site.domain %> site on <%= Plausible.product_name() %> to you.
<%= if @new_owner_account do %>
<%= link("Click here", to: Routes.site_url(PlausibleWeb.Endpoint, :index)) %> to view and respond to the invitation.
<% else %>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Time flies! This is a reminder that your annual subscription for Plausible Analytics will expire on <%= @next_bill_date %>.
Time flies! This is a reminder that your annual subscription for <%= Plausible.product_name() %> will expire on <%= @next_bill_date %>.
<br /><br />
You need to <%= link("renew your subscription", to: PlausibleWeb.Router.Helpers.billing_url(PlausibleWeb.Endpoint, :choose_plan)) %> if you want to continue using Plausible to count your website stats in a privacy-friendly way.
<br /><br />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Time flies! This is a reminder that your annual subscription for Plausible Analytics is due to renew on <%= @date %>. We will automatically charge <%= PlausibleWeb.BillingView.present_currency(@currency) %><%= @next_bill_amount %> from your preferred billing method.
Time flies! This is a reminder that your annual subscription for <%= Plausible.product_name() %> is due to renew on <%= @date %>. We will automatically charge <%= PlausibleWeb.BillingView.present_currency(@currency) %><%= @next_bill_amount %> from your preferred billing method.
<br /><br />
There's no action required if you're happy to continue using Plausible to count your website stats in a privacy-friendly way.
<br /><br />
Expand Down
8 changes: 5 additions & 3 deletions lib/plausible_web/templates/layout/focus.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@
<% end %>
<%= @inner_content %>

<p class="text-center text-gray-500 text-xs py-8">
© <%= DateTime.utc_now().year() %> Plausible Analytics. All rights reserved.
</p>
<%= if ee?() do %>
<p class="text-center text-gray-500 text-xs py-8">
© <%= DateTime.utc_now().year() %> Plausible Analytics. All rights reserved.
</p>
<% end %>

<PlausibleWeb.Components.Layout.theme_script current_user={assigns[:current_user]} />

Expand Down
4 changes: 2 additions & 2 deletions lib/plausible_web/templates/page/index.html.eex
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="mt-12 w-full md:max-w-xl md:mx-auto bg-white dark:bg-gray-800 md:shadow-md md:rounded px-8 py-6">
<p class="text-gray-900 text-xl font-black dark:text-gray-100">
Welcome to Plausible Analytics!
Welcome to <%= Plausible.product_name() %>!
</p>
<p class="mt-4 text-gray-600 dark:text-gray-200">
<a href="https://plausible.io/" class="border-b text-indigo-700 font-semibold dark:text-indigo-400 border-indigo-700 dark:border-indigo-500">Plausible Analytics</a> is a simple, open source, lightweight (&lt; 1 KB) and privacy-friendly alternative to Google Analytics. We're completely independent and solely funded by our 10,000+ paying subscribers. Read more <a href="https://plausible.io/about" class="border-b font-semibold text-indigo-700 dark:text-indigo-400 border-indigo-700 dark:border-indigo-500">about us.</a>
<a href="https://plausible.io/" class="border-b text-indigo-700 font-semibold dark:text-indigo-400 border-indigo-700 dark:border-indigo-500"><%= Plausible.product_name() %></a> is a simple, open source, lightweight (&lt; 1 KB) and privacy-friendly alternative to Google Analytics. We're completely independent and solely funded by our 10,000+ paying subscribers. Read more <a href="https://plausible.io/about" class="border-b font-semibold text-indigo-700 dark:text-indigo-400 border-indigo-700 dark:border-indigo-500">about us.</a>
</p>
<ul class="mt-6 flex flex-wrap text-gray-700 dark:text-gray-300 space-y-1 md:space-y-0">
<li class="w-full md:w-1/2 md:order-1">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</path>
</svg>
<p class="text-gray-900 dark:text-gray-200">
An extra step is needed to set up your Plausible Analytics Self Hosted for the Google Search Console integration.
An extra step is needed to set up your <%= Plausible.product_name() %> for the Google Search Console integration.
Find instructions <%= link("here",
to: "https://plausible.io/docs/self-hosting-configuration#google-search-integration",
class: "text-indigo-500"
Expand Down

0 comments on commit fec178e

Please sign in to comment.