/usr/share/perl5/FlashVideo/Site/Daum.pm is in get-flash-videos 1.25~git2012.06.27-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | # Part of get-flash-videos. See get_flash_videos for copyright.
package FlashVideo::Site::Daum;
use strict;
use FlashVideo::Utils;
use HTML::Entities qw(decode_entities);
sub find_video {
my ($self, $browser) = @_;
# Step 1: Get video ID
my $video_id = get_video_id($browser);
debug "Video ID: $video_id";
# Step 2: Get video title
my $video_title = get_video_title($browser, $video_id);
debug "Video title: $video_title";
# Step 3: Get video URL
my $video_url = get_video_url($browser, $video_id);
debug "Video URL: $video_url";
return $video_url, title_to_filename($video_title);
}
# Internal subroutines
sub is_valid_video_id {
my ($video_id) = @_;
return if !defined $video_id;
return if length $video_id != 12;
return if $video_id !~ /\$$/xms;
return 1;
}
sub get_video_id {
my ($browser) = @_;
my $singer_url
= quotemeta 'http://media.daum.net/entertain/showcase/singer/';
my $singer_url_pattern = qr{^ $singer_url .* [#] (\d+) $}xmsi;
if ( $browser->uri()->as_string() =~ $singer_url_pattern ) {
my $id = $1;
return get_video_id_for_singer($browser, $id);
}
# http://tvpot.daum.net/best/Top.do?from=gnb#clipid=31946003
if ( $browser->uri()->as_string() =~ /[#] clipid = (\d+)/xmsi ) {
my $url = 'http://tvpot.daum.net/clip/ClipView.do?clipid=' . $1;
$browser->get($url);
if ( !$browser->success() ) {
die "Cannot fetch the document identified by the given URL: $url\n";
}
}
my $document = $browser->content();
# "http://flvs.daum.net/flvPlayer.swf?vid=FlVGvam5dPM$"
my $flv_player_url = quotemeta 'http://flvs.daum.net/flvPlayer.swf';
my $video_id_pattern_1 = qr{['"] $flv_player_url [?] vid = ([^'"&]+)}xmsi;
# Story.UI.PlayerManager.createViewer('2oHFG_aR9uA$');
my $function_name = quotemeta 'Story.UI.PlayerManager.createViewer';
my $video_id_pattern_2 = qr{$function_name [(] '(.+?)' [)]}xms;
if ( $document !~ $video_id_pattern_1
&& $document !~ $video_id_pattern_2 )
{
die "Cannot find video ID from the document.\n";
}
my $video_id = $1;
# Remove white spaces in video ID.
$video_id =~ s/\s+//xmsg;
die "Invalid video ID: $video_id\n" if !is_valid_video_id($video_id);
return $video_id;
}
sub get_video_id_for_singer {
my ($browser, $id) = @_;
my $document = $browser->content();
# id:'16', vid:'HZYz4R8qUEU$'
my $video_id_pattern = qr{id:'$id', \s* vid:'(.+?)'}xms;
if ( $document !~ $video_id_pattern ) {
die "Cannot find video ID from the document.\n";
}
my $video_id = $1;
# Remove white spaces in video ID.
$video_id =~ s/\s+//xmsg;
die "Invalid video ID: $video_id\n" if !is_valid_video_id($video_id);
return $video_id;
}
sub get_video_title {
my ($browser, $video_id) = @_;
my $query_url = "http://tvpot.daum.net/clip/ClipInfoXml.do?vid=$video_id";
$browser->get($query_url);
if ( !$browser->success() ) {
die "Cannot fetch the document identified by the given URL: $query_url\n";
}
my $document = $browser->content();
# <TITLE><![CDATA[Just The Way You Are]]></TITLE>
my $video_title_pattern
= qr{<TITLE> <!\[CDATA \[ (.+?) \] \]> </TITLE>}xmsi;
if ( $document !~ $video_title_pattern ) {
die "Cannot find video title from the document.\n";
}
my $video_title = $1;
# & => &
$video_title = decode_entities($video_title);
return $video_title;
}
sub get_video_url {
my ($browser, $video_id) = @_;
my $query_url
= 'http://stream.tvpot.daum.net/fms/pos_query2.php'
. '?service_id=1001&protocol=http&out_type=xml'
. "&s_idx=$video_id";
$browser->get($query_url);
if ( !$browser->success() ) {
die "Cannot fetch the document identified by the given URL: $query_url\n";
}
my $document = $browser->content();
# movieURL="http://stream.tvpot.daum.net/swxwT-/InNM6w/JgEM-E/OxDQ$$.flv"
my $video_url_pattern = qr{movieURL = "(.+?)"}xmsi;
if ( $document !~ $video_url_pattern ) {
die "Cannot find video URL from the document.\n";
}
my $video_url = $1;
return $video_url;
}
1;
|