feat/factory_creation (#1)

Prepping for launch.

Reviewed-on: #1
Co-authored-by: Paul Couture <paul@paulcouture.com>
Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #1.
This commit is contained in:
2023-12-14 11:33:03 -06:00
committed by Paul Couture
parent 8eb4d14909
commit c4398c641e
342 changed files with 60893 additions and 2557 deletions

View File

@@ -115,7 +115,31 @@ class PodcastSeeder extends Seeder
$feed = 'https://hogstory.net/feed/podcast';
$added = '2019-02-22 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
$name = 'Rare Encounter';
$description = 'AbleKirby and coldacid converse on anime they watch, books and manga they read, games they play,
and all the tech stuff that they come across.';
$website = 'http://rareencounter.net';
$slug = 'rare-encounter';
$feed = 'https://rareencounter.net/external.php?name=RSS';
$added = '2020-07-16 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
$name = 'Unrelenting';
$description = 'The Unrelenting Podcast is hosted by Gene Naftulvev and Darren ONeill. It covers politics, technology, pop-culture, and more!';
$website = 'http://unrelenting.show';
$slug = 'unrelenting';
$feed = 'https://www.unrelenting.show/feed/podcast/';
$added = '2021-10-29 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
$name = 'The Boostagram Ball';
$description = 'The First Podcast with Value4Value Music hosted by Adam Curry';
$website = 'https://boostagramball.com';
$slug = 'boostagram-ball';
$feed = 'https://mp3s.nashownotes.com/bballrss.xml';
$added = '2023-07-29 20:00:00';
$this->createPodcast($name, $description, $website, $slug, $feed, $added);
}
private function createPodcast($name, $description, $website, $slug, $feed, $added) {