cleanup: Remove Reddit handler and dead docs from core#447
Merged
Conversation
- Remove Reddit handler (Reddit.php, RedditAuth.php, RedditSettings.php) - Remove FetchRedditAbility.php - Remove 3 require_once/instantiation lines from data-machine.php - Remove stale docs: reddit.md, google-sheets-fetch.md, google-sheets-output.md - Clean handler overview docs (remove Reddit and Google Sheets references) - Remove dead abraham/twitteroauth vendor directory Reddit handler has been migrated to data-machine-socials. Google Sheets handlers were previously migrated to data-machine-business. Closes #440 Relates to Extra-Chill/data-machine-socials#20
This was referenced Feb 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
data-machine-socials)abraham/twitteroauthvendor directoryWhat changed
Deleted files (handler code)
inc/Core/Steps/Fetch/Handlers/Reddit/Reddit.php(212 lines)inc/Core/Steps/Fetch/Handlers/Reddit/RedditAuth.php(304 lines)inc/Core/Steps/Fetch/Handlers/Reddit/RedditSettings.php(94 lines)inc/Abilities/Fetch/FetchRedditAbility.php(693 lines)Deleted files (dead docs)
docs/handlers/fetch/reddit.md— now belongs in socialsdocs/handlers/fetch/google-sheets-fetch.md— handler was migrated to data-machine-businessdocs/handlers/publish/google-sheets-output.md— handler was migrated to data-machine-businessModified files
data-machine.php— Removed 3 Reddit-related lines (require_once, ability instantiation, handler instantiation)docs/handlers/fetch/handlers-overview.md— Removed Reddit and Google Sheets entriesdocs/handlers/publish/handlers-overview.md— Removed Google Sheets entryDeleted vendor
vendor/abraham/twitteroauth/— Dead dependency (not in composer.json require, only used by OAuth1Handler which is consumed by socials plugin's Twitter handler)Context
Reddit was the last social handler remaining in core. With this PR, all social platform handlers (Instagram, Threads, Facebook, Twitter, Bluesky, Pinterest, Reddit) live in
data-machine-socialswhere they belong.The
uninstall.phplegacy cleanup entries for Reddit/social providers are intentionally kept — they clean up options that may exist from before the migration.Testing
homeboy test data-machine— PASS (all existing tests pass, no Reddit-dependent tests in core)Closes #440