phase D milestones 1+2: referral system + paid-access gate
Lays the billing-prep spine before Paddle lands in D.3.
D.1 — referrals
- users.referral_code: unique 8-char URL-safe code (alphabet excludes the
ambiguous 0/O/1/I/L). Generated lazily on first /settings hit so existing
accounts pick one up without a backfill migration.
- users.referred_by_user_id + new referrals audit table (referrer,
referred, created_at, converted_at, credited_at). converted_at /
credited_at stay null until D.3 fills them via the Paddle webhook.
- POST /login accepts ?ref=<code>; the code rides on the signed
pending-verify cookie so it survives the GET → POST → /verify hop.
- /settings page: email, tier badge, referral code chip + invite link
with one-click copy, pending/converted/active-credits stats grid.
Settings nav link added to the top bar.
Reward shape: when the referred user makes their first paid Paddle
subscription, both they and the referrer get 50% off for 3 months.
(D.3 wires the actual credit application via the Paddle webhook.)
D.2 — paid-access gate
- users.credit_until: timestamp until which a free-tier account has
paid-tier access. Null = no credit. Populated by admin CLI now and the
D.3 webhook later.
- app.services.access exposes paid_status(user) → PaidStatus dataclass
(active / source / expires_at / days_remaining), is_paid_active() with
admin-bearer-token bypass, and a require_paid FastAPI dependency that
raises 402 Payment Required for free-tier callers.
- POST /api/analyze (portfolio AI commentary) gated behind require_paid.
- Settings page surfaces credit window when active ("free · credit · N
day(s) remaining (expires YYYY-MM-DD)") and the upgrade hint when not.
- Admin CLI: python -m app.cli {grant-credit,revoke-credit,show-status}.
grant-credit is idempotent — extends from max(now, current expiry) so
re-running the command never erodes an existing grant.
Migrations 0013 (referrals) and 0014 (credit_until). Tests cover the
paid-status truth table, code generation + normalisation, CLI argument
parsing, and the pending-cookie ref roundtrip (29 new tests).
This commit is contained in:
parent
2013bfa8cc
commit
9759080134
18 changed files with 1159 additions and 21 deletions
|
|
@ -139,10 +139,11 @@
|
|||
<header class="app-header">
|
||||
<div class="brand">Cassandra</div>
|
||||
<nav>
|
||||
<a href="/" class="{% if request.url.path == '/' %}active{% endif %}">Dashboard</a>
|
||||
<a href="/news" class="{% if request.url.path == '/news' %}active{% endif %}">News</a>
|
||||
<a href="/log" class="{% if request.url.path.startswith('/log') %}active{% endif %}">Log</a>
|
||||
<a href="/upload" class="{% if request.url.path == '/upload' %}active{% endif %}">Import</a>
|
||||
<a href="/" class="{% if request.url.path == '/' %}active{% endif %}">Dashboard</a>
|
||||
<a href="/news" class="{% if request.url.path == '/news' %}active{% endif %}">News</a>
|
||||
<a href="/log" class="{% if request.url.path.startswith('/log') %}active{% endif %}">Log</a>
|
||||
<a href="/upload" class="{% if request.url.path == '/upload' %}active{% endif %}">Import</a>
|
||||
<a href="/settings" class="{% if request.url.path == '/settings' %}active{% endif %}">Settings</a>
|
||||
</nav>
|
||||
<div class="header-right">
|
||||
<div id="tone-toggle" class="tone-toggle" data-tone="INTERMEDIATE"
|
||||
|
|
|
|||
|
|
@ -18,6 +18,14 @@
|
|||
<div class="auth-card__brand">Cassandra</div>
|
||||
<div class="auth-card__hint">sign in with email</div>
|
||||
|
||||
{% if referrer_present %}
|
||||
<div class="auth-info auth-info--invited">
|
||||
<strong>You've been invited.</strong>
|
||||
When you subscribe, you and your friend both get
|
||||
<strong>50% off for 3 months</strong>. Sign up below to lock it in.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<p class="auth-card__lede">
|
||||
Enter your email and we'll send you a 6-digit code. No password.
|
||||
First-time visitors get an account; returning visitors get a sign-in.
|
||||
|
|
@ -27,6 +35,7 @@
|
|||
|
||||
<form method="post" action="/login" autocomplete="on">
|
||||
<input type="hidden" name="next" value="{{ next_path or '/' }}">
|
||||
{% if ref %}<input type="hidden" name="ref" value="{{ ref }}">{% endif %}
|
||||
<label>Email
|
||||
<input type="email" name="email" value="{{ email or '' }}" required autofocus>
|
||||
</label>
|
||||
|
|
|
|||
102
app/templates/settings.html
Normal file
102
app/templates/settings.html
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}Cassandra · Settings{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
<section class="panel" style="grid-column: 1 / -1; max-width: 760px; margin: 0 auto;">
|
||||
<div class="panel-header">
|
||||
<span class="title">Settings</span>
|
||||
<span class="meta">your account · client-only data unchanged</span>
|
||||
</div>
|
||||
<div class="panel-body" style="padding: 18px clamp(16px, 4vw, 32px) 24px;">
|
||||
|
||||
{% if not user %}
|
||||
<div class="empty">no per-user settings (admin bearer-token session)</div>
|
||||
{% else %}
|
||||
|
||||
<div class="settings-row">
|
||||
<div class="settings-row__label">Email</div>
|
||||
<div class="settings-row__value">{{ user.email }}</div>
|
||||
</div>
|
||||
|
||||
<div class="settings-row">
|
||||
<div class="settings-row__label">Tier</div>
|
||||
<div class="settings-row__value">
|
||||
<span class="badge {% if paid and paid.active %}badge--ok{% else %}badge--ver{% endif %}">
|
||||
{{ user.tier }}{% if paid and paid.active and paid.source == "credit" %} · credit{% endif %}
|
||||
</span>
|
||||
{% if paid and paid.active %}
|
||||
{% if paid.source == "credit" %}
|
||||
<span class="settings-row__hint">
|
||||
Paid features active via credit · {{ paid.days_remaining }} day(s) remaining
|
||||
(expires {{ paid.expires_at.strftime("%Y-%m-%d") }}).
|
||||
</span>
|
||||
{% else %}
|
||||
<span class="settings-row__hint">Paid subscription active.</span>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<span class="settings-row__hint">Paid features unlock with Paddle (D.3) or invite credits.</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{# --- Referral block ---------------------------------------------- #}
|
||||
<div class="settings-section">
|
||||
<div class="settings-section__head">Invite a friend</div>
|
||||
<p class="settings-section__lede">
|
||||
Share your invite link. When your friend subscribes, you and
|
||||
they each get <strong>50% off for 3 months</strong>.
|
||||
</p>
|
||||
|
||||
<div class="invite-block">
|
||||
<label class="invite-block__label">Your code</label>
|
||||
<div class="invite-block__code">{{ user.referral_code }}</div>
|
||||
|
||||
<label class="invite-block__label">Invite link</label>
|
||||
<div class="invite-block__link">
|
||||
<input type="text" id="invite-url" readonly value="{{ invite_url }}">
|
||||
<button type="button" id="invite-copy">Copy</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="invite-stats">
|
||||
<div>
|
||||
<div class="invite-stats__label">Pending signups</div>
|
||||
<div class="invite-stats__value">{{ pending_count }}</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="invite-stats__label">Converted (paid)</div>
|
||||
<div class="invite-stats__value">{{ converted_count }}</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="invite-stats__label">Active credits</div>
|
||||
<div class="invite-stats__value settings-row__hint">— (D.3)</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{# Future: Paddle subscription block, AI-spend ledger summary, etc. #}
|
||||
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
var btn = document.getElementById('invite-copy');
|
||||
var fld = document.getElementById('invite-url');
|
||||
if (!btn || !fld) return;
|
||||
btn.addEventListener('click', async function () {
|
||||
try {
|
||||
await navigator.clipboard.writeText(fld.value);
|
||||
var orig = btn.textContent;
|
||||
btn.textContent = 'Copied';
|
||||
setTimeout(function () { btn.textContent = orig; }, 1500);
|
||||
} catch (e) {
|
||||
// Fallback for older browsers: select the input.
|
||||
fld.select();
|
||||
}
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue