SAAS-1077: REST API for podcast episodes

This commit is contained in:
drigato 2015-09-22 11:13:18 -04:00
parent 5bd8a508b1
commit 0fc324f3ba
3 changed files with 214 additions and 21 deletions

View file

@ -31,7 +31,7 @@ class Podcast extends BasePodcast
/** Creates a Podcast object from the given podcast URL.
* This is used by our Podcast REST API
*
* @param $podcastArray An array containing the URL for a Podcast object.
* @param $data An array containing the URL for a Podcast object.
*
* @return array - Podcast Array with a full list of episodes
* @throws Exception
@ -161,7 +161,6 @@ class Podcast extends BasePodcast
* Trims the podcast metadata to fit the table's column max size
*
* @param $podcastArray
* @throws PropelException
*/
private static function validatePodcastMetadata(&$podcastArray)
{

View file

@ -1,6 +1,8 @@
<?php
class PodcastEpisodeNotFoundException extends Exception
{
}
/**
* Skeleton subclass for representing a row from the 'podcast_episodes' table.
@ -15,4 +17,103 @@
*/
class PodcastEpisodes extends BasePodcastEpisodes
{
private static $privateFields = array(
"id"
);
/**
* @param $episodeId
* @return array
* @throws PodcastEpisodeNotFoundException
*/
public static function getPodcastEpisodeById($episodeId)
{
$episode = PodcastEpisodesQuery::create()->findPk($episodeId);
if (!$episode) {
throw new PodcastEpisodeNotFoundException();
}
return $episode->toArray(BasePeer::TYPE_FIELDNAME);
}
public static function getPodcastEpisodes($podcastId)
{
$podcast = PodcastQuery::create()->findPk($podcastId);
if (!$podcast) {
throw new PodcastNotFoundException();
}
$episodes = PodcastEpisodesQuery::create()->findByDbPodcastId($podcastId);
$episodesArray = array();
foreach ($episodes as $episode) {
array_push($episodesArray, $episode->toArray(BasePeer::TYPE_FIELDNAME));
}
return $episodesArray;
}
public static function create($podcastId, $data)
{
self::removePrivateFields($data);
self::validateEpisodeData($data);
try {
$episode = new PodcastEpisodes();
$episode->setDbPodcastId($podcastId);
$episode->fromArray($data, BasePeer::TYPE_FIELDNAME);
$episode->save();
return $episode->toArray(BasePeer::TYPE_FIELDNAME);
} catch (Exception $e) {
$episode->delete();
throw $e;
}
}
public static function deleteById($episodeId)
{
$episode = PodcastEpisodesQuery::create()->findByDbId($episodeId);
if ($episode) {
$episode->delete();
} else {
throw new PodcastEpisodeNotFoundException();
}
}
private static function removePrivateFields(&$data)
{
foreach (self::$privateFields as $key) {
unset($data[$key]);
}
}
/**
* Trims the episode data to fit the table's column max size
*
* @param $episodeArray
*/
private static function validateEpisodeData(&$episodeArray)
{
$podcastEpisodeTable = PodcastEpisodesPeer::getTableMap();
foreach ($episodeArray as $key => &$value) {
try {
// Make sure column exists in table
$columnMaxSize = $podcastEpisodeTable->getColumn($key)->getSize();
if (is_null($columnMaxSize)) {
continue;
}
} catch (PropelException $e) {
continue;
}
if (strlen($value) > $columnMaxSize) {
$value = substr($value, 0, $podcastEpisodeTable->getColumn($key)->getSize());
}
}
}
}