feat: add purchase url (#695)

* feat: add purchase url

* chore: bump snjs

* fix: reuse existing function
This commit is contained in:
Mo
2021-10-21 12:41:58 -05:00
committed by GitHub
parent 397e4963bd
commit e79811afda
8 changed files with 31 additions and 22 deletions

View File

@@ -7,6 +7,7 @@ RAILS_LOG_LEVEL=INFO
RAILS_SERVE_STATIC_FILES=true RAILS_SERVE_STATIC_FILES=true
SECRET_KEY_BASE=test SECRET_KEY_BASE=test
APP_HOST=http://localhost:3001 APP_HOST=http://localhost:3001
PURCHASE_URL=https://standardnotes.com/purchase
EXTENSIONS_MANAGER_LOCATION=extensions/extensions-manager/dist/index.html EXTENSIONS_MANAGER_LOCATION=extensions/extensions-manager/dist/index.html
SF_DEFAULT_SERVER=http://localhost:3000 SF_DEFAULT_SERVER=http://localhost:3000

View File

@@ -1,5 +1,14 @@
'use strict'; 'use strict';
declare global {
interface Window {
// eslint-disable-next-line camelcase
_bugsnag_api_key?: string;
// eslint-disable-next-line camelcase
_purchase_url?: string;
}
}
import { SNLog } from '@standardnotes/snjs'; import { SNLog } from '@standardnotes/snjs';
import angular from 'angular'; import angular from 'angular';
import { configRoutes } from './routes'; import { configRoutes } from './routes';

View File

@@ -3,7 +3,7 @@ import { LinkButton, Text } from '@/preferences/components';
import { Button } from '@/components/Button'; import { Button } from '@/components/Button';
import { WebApplication } from "@/ui_models/application"; import { WebApplication } from "@/ui_models/application";
import { useState } from "preact/hooks"; import { useState } from "preact/hooks";
import { isDesktopApplication } from "@/utils"; import { loadPurchaseFlowUrl } from "@/purchaseFlow/PurchaseFlowWrapper";
export const NoSubscription: FunctionalComponent<{ export const NoSubscription: FunctionalComponent<{
application: WebApplication; application: WebApplication;
@@ -15,12 +15,7 @@ export const NoSubscription: FunctionalComponent<{
const errorMessage = 'There was an error when attempting to redirect you to the subscription page.'; const errorMessage = 'There was an error when attempting to redirect you to the subscription page.';
setIsLoadingPurchaseFlow(true); setIsLoadingPurchaseFlow(true);
try { try {
const url = await application.getPurchaseFlowUrl(); if (!await loadPurchaseFlowUrl(application)) {
if (url) {
const currentUrl = window.location.href;
const successUrl = isDesktopApplication() ? `standardnotes://${currentUrl}` : currentUrl;
window.location.assign(`${url}&success_url=${successUrl}`);
} else {
setPurchaseFlowError(errorMessage); setPurchaseFlowError(errorMessage);
} }
} catch (e) { } catch (e) {

View File

@@ -10,17 +10,25 @@ export type PurchaseFlowWrapperProps = {
application: WebApplication; application: WebApplication;
}; };
export const getPurchaseFlowUrl = async (application: WebApplication): Promise<string | undefined> => {
const token = await application.getNewSubscriptionToken();
if (token) {
const currentUrl = window.location.href;
const successUrl = isDesktopApplication() ? `standardnotes://${currentUrl}` : currentUrl;
return `${window._purchase_url}?subscription_token=${token}&success_url=${successUrl}`;
}
return undefined;
};
export const loadPurchaseFlowUrl = async ( export const loadPurchaseFlowUrl = async (
application: WebApplication application: WebApplication
): Promise<void> => { ): Promise<boolean> => {
const url = await application.getPurchaseFlowUrl(); const url = await getPurchaseFlowUrl(application);
if (url) { if (url) {
const currentUrl = window.location.href.split('/?')[0]; window.location.assign(url);
const successUrl = isDesktopApplication() return true;
? `standardnotes://${currentUrl}`
: currentUrl;
window.location.assign(`${url}&success_url=${successUrl}`);
} }
return false;
}; };
export const PurchaseFlowWrapper: FunctionComponent<PurchaseFlowWrapperProps> = export const PurchaseFlowWrapper: FunctionComponent<PurchaseFlowWrapperProps> =

View File

@@ -5,13 +5,6 @@ import Bugsnag from '@bugsnag/js';
import { WebCrypto } from '../crypto'; import { WebCrypto } from '../crypto';
import { AppVersion } from '@/version'; import { AppVersion } from '@/version';
declare global {
interface Window {
// eslint-disable-next-line camelcase
_bugsnag_api_key?: string;
}
}
function redactFilePath(line: string): string { function redactFilePath(line: string): string {
const fileName = line.match(/\w+\.(html|js)/)?.[0]; const fileName = line.match(/\w+\.(html|js)/)?.[0];
const redacted = '<redacted file path>'; const redacted = '<redacted file path>';

View File

@@ -37,6 +37,7 @@
window._bugsnag_api_key = "<%= ENV['BUGSNAG_API_KEY'] %>"; window._bugsnag_api_key = "<%= ENV['BUGSNAG_API_KEY'] %>";
window._enable_unfinished_features = "<%= ENV['ENABLE_UNFINISHED_FEATURES'] %>" === 'true'; window._enable_unfinished_features = "<%= ENV['ENABLE_UNFINISHED_FEATURES'] %>" === 'true';
window._websocket_url = "<%= ENV['WEBSOCKET_URL'] %>"; window._websocket_url = "<%= ENV['WEBSOCKET_URL'] %>";
window._purchase_url = "<%= ENV['PURCHASE_URL'] %>";
</script> </script>
<% if Rails.env.development? %> <% if Rails.env.development? %>

View File

@@ -34,6 +34,7 @@
data-bugsnag-api-key="<%= env.DEV_BUGSNAG_API_KEY %>" data-bugsnag-api-key="<%= env.DEV_BUGSNAG_API_KEY %>"
data-enable-unfinished-features="<%= env.ENABLE_UNFINISHED_FEATURES %>" data-enable-unfinished-features="<%= env.ENABLE_UNFINISHED_FEATURES %>"
data-web-socket-url="<%= env.DEV_WEBSOCKET_URL %>" data-web-socket-url="<%= env.DEV_WEBSOCKET_URL %>"
data-purchase-url="<%= env.PURCHASE_URL %>"
> >
<script> <script>
window._default_sync_server = document.body.dataset.defaultSyncServer || "https://api.standardnotes.com"; window._default_sync_server = document.body.dataset.defaultSyncServer || "https://api.standardnotes.com";
@@ -41,6 +42,7 @@
window._bugsnag_api_key = document.body.dataset.bugsnagApiKey; window._bugsnag_api_key = document.body.dataset.bugsnagApiKey;
window._enable_unfinished_features = document.body.dataset.enableUnfinishedFeatures === 'true'; window._enable_unfinished_features = document.body.dataset.enableUnfinishedFeatures === 'true';
window._websocket_url = document.body.dataset.webSocketUrl; window._websocket_url = document.body.dataset.webSocketUrl;
window._purchase_url = document.body.dataset.purchaseUrl;
</script> </script>
<application-group-view /> <application-group-view />
</body> </body>

View File

@@ -73,7 +73,7 @@
"@reach/listbox": "^0.16.1", "@reach/listbox": "^0.16.1",
"@standardnotes/features": "1.7.2", "@standardnotes/features": "1.7.2",
"@standardnotes/sncrypto-web": "1.5.2", "@standardnotes/sncrypto-web": "1.5.2",
"@standardnotes/snjs": "2.15.2", "@standardnotes/snjs": "2.16.0",
"mobx": "^6.3.2", "mobx": "^6.3.2",
"mobx-react-lite": "^3.2.0", "mobx-react-lite": "^3.2.0",
"preact": "^10.5.12", "preact": "^10.5.12",