Podscope podcast CMS https://podscope.cc
  • PHP 67.9%
  • Blade 31.1%
  • CSS 0.5%
  • Shell 0.4%
  • JavaScript 0.1%
Find a file
gdadkisson 8c204d6943 v0.84 - Explicit "All Shows" option for site-wide membership plans
Replaces the membership form's "Show (leave blank for all-shows plan)" field --
an error-prone "clear the field to trigger a special mode" -- with an explicit
"All Shows (site-wide)" option at the top of the Applies-to dropdown.

- "All Shows" is a membership *scope*, not a real show: it maps to the existing
  show_id = NULL representation via MembershipPlan::ALL_SHOWS sentinel +
  scopeToShowId()/showIdToScope() round-trip helpers, wired through the field's
  formatStateUsing/dehydrateStateUsing. No schema change; checkout/RSS/access
  logic (which key off subscriptionName()) are untouched. No pseudo-show record
  is ever created, so it never appears in show listings/nav/RSS.

Tests: MembershipPlanScopeTest (helper round-trip both directions; Filament
form-load asserts a NULL-show plan loads as All Shows and a show plan as its
show). Full security suite green (71 tests). Verified on prod: helpers round-trip
the real plans, form options build with All Shows first, create route loads.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01YQvVNJ6gXHeg5ygBQ4BwQn
2026-07-07 07:16:05 -04:00
.claude/commands security: remove hardcoded Forgejo token from release.md 2026-06-19 17:22:47 -04:00
app v0.84 - Explicit "All Shows" option for site-wide membership plans 2026-07-07 07:16:05 -04:00
bootstrap v0.82 - Nonce-based CSP for the public site (N-2 Tier 1, Report-Only) 2026-07-03 10:55:39 -04:00
config v0.84 - Explicit "All Shows" option for site-wide membership plans 2026-07-07 07:16:05 -04:00
database v0.83 - Prevent orphaned membership plans on show deletion (paywall bypass) 2026-07-07 07:00:45 -04:00
public v0.76 -- bump version; sync republished Filament 5.6.7 assets 2026-06-13 22:07:45 -04:00
resources v0.82 - Nonce-based CSP for the public site (N-2 Tier 1, Report-Only) 2026-07-03 10:55:39 -04:00
routes v0.79 - Security review 2026-07-03 follow-up (N-4) 2026-07-03 10:23:01 -04:00
storage Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
tests v0.84 - Explicit "All Shows" option for site-wide membership plans 2026-07-07 07:16:05 -04:00
.editorconfig Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.env.example Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.gitattributes Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.gitignore Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.npmrc Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
artisan Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
composer.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
composer.lock v0.78 - Security review 2026-07-03 follow-up (high-value trio) 2026-07-03 10:01:04 -04:00
install.sh Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
LICENSE Add AGPL-3.0 license 2026-06-09 19:12:09 +00:00
package-lock.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
package.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
phpunit.xml Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
README.md Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
vite.config.js Initial public release -- v0.1 2026-05-21 18:53:00 +00:00

Podscope

A self-hosted podcast CMS and membership platform. Publish shows, manage episodes, accept paid memberships via Stripe, and distribute private RSS feeds to subscribers.

Features

  • Multi-show support
  • Episode management with Podcasting 2.0 metadata (persons, transcripts, chapters, soundbites)
  • Paid membership plans per show or site-wide (via Stripe / Laravel Cashier)
  • Private RSS feeds for subscribers
  • Free preview window for paid episodes
  • Episode play tracking and stats
  • Individual episode purchases
  • Public RSS feeds with OP3 tracking support
  • Filament admin panel
  • Backblaze B2 storage support
  • Redis queue support
  • Alpine.js frontend

Requirements

  • PHP 8.4+
  • PostgreSQL 14+
  • Redis
  • Node.js 20+ (for asset compilation)
  • Composer
  • A Stripe account (for memberships and purchases)
  • A Backblaze B2 bucket (optional, for media storage)

Quick Install

bash <(curl -fsSL https://git.podscope.cc/podscope/podscope/raw/branch/main/install.sh)

Manual Install

git clone https://git.podscope.cc/podscope/podscope.git
cd podscope
composer install --no-dev --optimize-autoloader
cp .env.example .env
php artisan key:generate
# Edit .env with your database, Stripe, and storage credentials
php artisan migrate --force
php artisan storage:link
npm install && npm run build
php artisan config:cache
php artisan route:cache
php artisan view:cache

Then configure your web server to point at the public/ directory and set up a queue worker:

php artisan queue:work --sleep=3 --tries=3

Configuration

All site settings (name, artwork, RSS options) are managed in the Filament admin panel under Settings.

Key .env values:

Variable Description
APP_URL Your site URL (e.g. https://example.com)
DB_CONNECTION Set to pgsql
DB_HOST, DB_DATABASE, DB_USERNAME, DB_PASSWORD PostgreSQL credentials
STRIPE_KEY, STRIPE_SECRET, STRIPE_WEBHOOK_SECRET Stripe API keys
FILESYSTEM_DISK public for local storage or b2 for Backblaze
AWS_* / B2_* Backblaze B2 credentials if using cloud storage
REDIS_HOST Redis connection
MAIL_* Mail settings for transactional email

License

MIT