Pricing - Bill per workspace ($12/mo or $120/yr each); Stripe quantity tracks the workspace count and syncs on workspace create/delete. - 2,500 AI credits per workspace, pooled at the account level; monthly reset on the billing anniversary, annual granted upfront (no rollover). - One social account per network per workspace; remove all count-based limits (workspace/social/member) and the legacy plan tiers (single Workspace plan). Onboarding (cloud only: SELF_HOSTED=false + PostHog) - Replace the /subscribe plan picker with /onboarding persona selection (Creator/Freelancer/Startup/Agency/Small business/Other), saved on the user (users.persona) and mirrored to PostHog, then Stripe Checkout on the monthly price. 8-day trial so Stripe displays 7. Billing screen - Remove the Change Plan dialog (dead with a single plan); add an annual-upgrade banner for monthly subscribers (swapToYearly). - Current-plan card shows the workspace count instead of the plan name. System AI - Brand analyzer / workspace autofill is always allowed and never debits credits (system feature, not the user's usage). Self-hosted (SELF_HOSTED=true) bypasses all billing, credit, limit, network, and onboarding logic.
66 lines
1.9 KiB
PHP
66 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Enums\SocialAccount\Platform;
|
|
use App\Exceptions\SocialAccount\NetworkAlreadyConnectedException;
|
|
use App\Jobs\PostHog\SyncAccountUsage;
|
|
use App\Models\SocialAccount;
|
|
use App\Services\PostHogService;
|
|
|
|
class SocialAccountObserver
|
|
{
|
|
/**
|
|
* Enforce one connected account per social network per workspace. Variants
|
|
* of the same network (LinkedIn profile/page, Instagram standalone/Facebook)
|
|
* collapse via Platform::network(). Reconnecting an existing account goes
|
|
* through updateOrCreate's update path and never reaches this hook. Bypassed
|
|
* in self-hosted mode, which has no per-workspace limits.
|
|
*/
|
|
public function creating(SocialAccount $socialAccount): void
|
|
{
|
|
if (config('trypost.self_hosted')) {
|
|
return;
|
|
}
|
|
|
|
$platform = $socialAccount->platform;
|
|
|
|
if (! $platform instanceof Platform) {
|
|
return;
|
|
}
|
|
|
|
$conflict = SocialAccount::query()
|
|
->where('workspace_id', $socialAccount->workspace_id)
|
|
->whereIn('platform', $platform->networkPlatformValues())
|
|
->where('platform_user_id', '!=', $socialAccount->platform_user_id)
|
|
->exists();
|
|
|
|
if ($conflict) {
|
|
throw new NetworkAlreadyConnectedException($platform);
|
|
}
|
|
}
|
|
|
|
public function created(SocialAccount $socialAccount): void
|
|
{
|
|
$this->syncUsage($socialAccount);
|
|
}
|
|
|
|
public function deleted(SocialAccount $socialAccount): void
|
|
{
|
|
$this->syncUsage($socialAccount);
|
|
}
|
|
|
|
private function syncUsage(SocialAccount $socialAccount): void
|
|
{
|
|
if (! PostHogService::isEnabled()) {
|
|
return;
|
|
}
|
|
|
|
SyncAccountUsage::dispatch(
|
|
(string) $socialAccount->workspace->account_id,
|
|
(string) $socialAccount->workspace_id,
|
|
);
|
|
}
|
|
}
|