# --- BEGIN PLUGIN HELP --- h1. Podcast generation... *for nerds*. h4. For an exmaple of this in action, check out the various feeds for "Sysadministrivia":http://sysadministrivia.com. This plugin performs multiple functions to aid in creating a podcast. It requires "getID3":http://www.getid3.org to be available in your PHP's path. h5. bts_podcast_path The path to the media file. Attributes: *media=* Useful for mp3/oggcasts. Default is _mp3_. *base=* Path to the media file (excluding the filename itself). Default is _media/*$media*/_. h5. bts_podcast_filename The filename of the media file. Automatically generated from the title by default. Attributes: *media=* File extension. Recommended is either _mp3_ or _ogg_. Default is _mp3_. *name=* The string to use as the filename. Default is to use *@@* (in a stripped manner- all symbols etc. replaced with . and -). h5. bts_podcast_guid The GUID for the podcast. See the *Storing Checksums* section. Attributes: *string=* The string to use as a GUID. Default is to use a SHA256 of the file (byte-wise) found at _*@@*/*@@*_. *byte=* Boolean. Use byte checksumming instead of string checksumming. This requires a valid path for the *string=* attribute. Default is _1_ (use byte checksumming). *db=* Boolean. Use the SHA256 table to look up the GUID (see the *Storing Checksums* section below). Default is _1_ (use the sha256 table). h5. bts_podcast_media_uri The web path to fetch the file. Attributes: *uri=* The path to use. Default is to use _*@@@@*/*@@*_. h3. Storing Checksums Using SHA256 sums as your GUID is a very handy thing- it not only gaurantees unique GUIDs (which is the entire point of GUIDs), but also gaurantees file integrity in transit. However, it can take a while to generate SHA256 sums dynamically every time the feed is fetched. So how do we get around this? Simple; we use a database! This plugin creates a *sha256* table in your Textpattern DB. There, it stores the checksums of MP3 and OGG files when an article in the "episodes" section is created. When the feed is pulled, they are fetched from the DB automatically (assuming you're using *bts_podcast_guid* with _db="1"_). # --- END PLUGIN HELP --- register('bts_podcast_path') ->register('bts_podcast_filename') ->register('bts_podcast_guid') ->register('bts_podcast_media_uri'); } // Tags function bts_podcast_path($atts) { $default_vals = array('media' => 'mp3'); $default_vals['base'] = 'media/' . $default_vals['media'] . '/'; extract(lAtts(($default_vals), $atts)); if ($base == 'media/mp3/') { $base = 'media/' . $media . '/'; } return $base; } function bts_podcast_filename($atts) { extract(lAtts(array( 'media' => 'mp3', 'name' => NULL, ), $atts)); if (! $name) { $raw_name = strtolower(title($atts)); $stripped = trim($raw_name); $replaced = preg_replace('(\s+|[^A-Za-z0-9\.\-]+)','.',$stripped); $name = preg_replace('(\.+)','.',$replaced); } return $name . '.' . $media; } function bts_podcast_guid ($atts) { extract(lAtts(array( 'string' => '', 'byte' => '1', 'db' => '1', 'media' => 'mp3', ), $atts)); if (($byte == '1' && $db == '1') || ($string == '')) { $checksum = fetch('checksum','bts_podcast','filename',bts_podcast_filename($atts)); } elseif ($byte == '1') { $checksum = hash_file('sha256',$string); } else { $checksum = hash('sha256',$string); } return $checksum; } function bts_podcast_media_uri ($atts) { $default_vals = array('media' => 'mp3'); $default_vals['uri'] = site_url($atts) . bts_podcast_path($atts) . bts_podcast_filename($atts); extract(lAtts(array($default_vals), $atts)); if (! isset($uri)) { $uri = site_url($atts) . bts_podcast_path($atts) . bts_podcast_filename($atts); } return $uri; } /* function bts_podcast_medialength($atts) { } function bts_podcast_add_guid($atts) { } */ // UNDER DEVELOPMENT: needs bts_podcast_filesize (which i need to rename to actually be bytesize) // i also need to get media length so that can be returned in the actual feed. /* $metainfo_mp3 = array( //$input['urltitle'] //$input['mediafile'] //$input['mediatype'] //$input['mediachksum'] //$input['mediabytes'] urltitle => title($atts), mediafile => bts_podcast_filename($atts), mediatype => 'mp3', mediachksum => bts_podcast_guid($atts), mediabytes => bts_podcast_filesize($atts)); $metainfo_ogg = array( //$input['urltitle'] //$input['mediafile'] //$input['mediatype'] //$input['mediachksum'] //$input['mediabytes'] urltitle => title($atts), mediafile => bts_podcast_filename($atts), mediatype => 'mp3', mediachksum => bts_podcast_guid($atts), mediabytes => bts_podcast_filesize($atts)); bts_podcast_gen_metainfo ($metainfo_mp3); bts_podcast_gen_metainfo ($metainfo_ogg); */ # --- END PLUGIN CODE --- ?>