|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- class Video extends Feathers implements Feather {
- public function __init() {
- $this->setField(array("attr" => "video",
- "type" => "text_block",
- "rows" => 4,
- "label" => __("Video", "video"),
- "preview" => true,
- "bookmarklet" => $this->isVideo() ?
- "url" :
- ""));
- $this->setField(array("attr" => "caption",
- "type" => "text_block",
- "rows" => 4,
- "label" => __("Caption", "video"),
- "optional" => true,
- "preview" => true,
- "bookmarklet" => "selection"));
-
- if ($this->isVideo())
- $this->bookmarkletSelected();
-
- $this->setFilter("caption", array("markup_text", "markup_post_text"));
-
- $this->respondTo("preview_video", "embed_tag");
- }
-
- public function submit() {
- if (empty($_POST['video']))
- error(__("Error"), __("Video can't be blank."));
-
- return Post::add(array("embed" => $this->embed_tag($_POST['video']),
- "video" => $_POST['video'],
- "caption" => $_POST['caption']),
- $_POST['slug'],
- Post::check_url($_POST['slug']));
- }
-
- public function update($post) {
- if (empty($_POST['video']))
- error(__("Error"), __("Video can't be blank."));
-
- $post->update(array("embed" => $this->embed_tag($_POST['video']),
- "video" => $_POST['video'],
- "caption" => $_POST['caption']));
- }
-
- public function title($post) {
- return $post->title_from_excerpt();
- }
-
- public function excerpt($post) {
- return $post->caption;
- }
-
- public function feed_content($post) {
- return $post->embed."<br /><br />".$post->caption;
- }
-
- public function embed_tag($video, $field = null) { # We use this for previewing too
- if (isset($field) and $field != "embed")
- return $video; # If they're previewing and the field argument isn't the embed, return the original.
-
- if (preg_match("/http:\/\/(www\.|[a-z]{2}\.)?youtube\.com\/watch\?v=([^&]+)/", $video, $matches)) {
- return '<object type="application/x-shockwave-flash" class="object-youtube" data="http://'.$matches[1].'youtube.com/v/'.$matches[2].'" width="468" height="391"><param name="movie" value="http://'.$matches[1].'youtube.com/v/'.$matches[2].'" /><param name="FlashVars" value="playerMode=embedded" /></object>';
- } else if (preg_match("/^http:\/\/(www\.)?vimeo.com\/([0-9]+)/", $video, $matches)) {
- $site = get_remote("http://vimeo.com/".$matches[2]);
- preg_match('/<div id="vimeo_player_[0-9]+" class="player" style="width:([0-9]+)px;height:([0-9]+)px;">/',
- $site,
- $scale);
- return '<object type="application/x-shockwave-flash" class="object-vimeo" width="'.$scale[1].'" height="'.$scale[2].'" data="http://www.vimeo.com/moogaloop.swf?clip_id='.$matches[2].'&server=www.vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=00adef&fullscreen=1"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id='.$matches[2].'&server=www.vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=00adef&fullscreen=1" /></object>';
- } else if (preg_match("/http:\/\/(www\.)?metacafe.com\/watch\/([0-9]+)\/([^\/&\?]+)/", $video, $matches)) {
- return '<object type="application/x-shockwave-flash" class="object-metacafe" data="http://www.metacafe.com/fplayer/'.$matches[2].'/'.$matches[3].'.swf" width="400" height="345"></object>';
- } else if (preg_match("/http:\/\/(www\.)?revver.com\/video\/([0-9]+)/", $video, $matches)) {
- return '<script src="http://flash.revver.com/player/1.0/player.js?mediaId:'.$matches[2].';width:468;height:391;" type="text/javascript"></script>';
- } else if (preg_match("/http:\/\/(www\.)viddler\.com\/.+/", $video)) {
- $viddler_page = get_remote($video);
-
- if (preg_match("/<link\s+rel=\"video_src\"\s+href=\"http:\/\/(www\.)?viddler.com\/player\/([0-9a-fA-F]+)/", $viddler_page, $matches) and
- preg_match("/<meta\s+name=\"video_height\"\s+content=\"([0-9]+)\"/", $viddler_page, $height) and
- preg_match("/<meta\s+name=\"video_width\"\s+content=\"([0-9]+)\"/", $viddler_page, $width)) {
- return '<object type="application/x-shockwave-flash" data="http://www.viddler.com/player/'.$matches[2].'/" width="'.$width[1].'" height="'.$height[1].'" id="viddler_'.$matches[2].'" class="object-youtube"><param name="movie" value="http://www.viddler.com/player/'.$matches[2].'/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>';
- }
-
- return $video;
- }
-
- return $video;
- }
-
- public function embed_tag_for($post, $max_width = 500) {
- $post->embed = preg_replace("/&([[:alnum:]_]+)=/", "&\\1=", $post->embed);
-
- if (preg_match("/width(=\"|='|:\s*)([0-9]+)/", $post->embed, $width)) {
- $sep_w = $width[1];
- $original_width = $width[2];
- } else
- return $post->embed;
-
- if (preg_match("/height(=\"|='|:\s*)([0-9]+)/", $post->embed, $height)) {
- $sep_h = $height[1];
- $original_height = $height[2];
-
- $new_height = (int) (($max_width / $original_width) * $original_height);
- }
-
- $post->embed = str_replace(array($width[0], $height[0]), array("width".$sep_w.$max_width, "height".$sep_h.$new_height), $post->embed);
-
- return $post->embed;
- }
-
- public function isVideo() {
- if (!isset($_GET['url']))
- return false;
-
- if (preg_match("/http:\/\/(www\.|[a-z]{2}\.)?youtube\.com\/watch\?v=([^&]+)/", $_GET['url']) or
- preg_match("/http:\/\/(www\.)?vimeo.com\/([0-9]+)/", $_GET['url']) or
- preg_match('/http:\/\/(www\.)?metacafe.com\/watch\/([0-9]+)\/([^\/&\?]+)/', $_GET['url']) or
- preg_match("/http:\/\/(www\.)?revver.com\/video\/([0-9]+)/", $_GET['url']) or
- preg_match("/http:\/\/(www\.)viddler\.com\/.+/", $_GET['url']))
- return true;
-
- return false;
- }
- }
|