#!/usr/bin/perl -w

#
# This perl script is intended to perform movie data lookups based on 
# the popular russian www.kinopoisk.ru website
#
# For more information on MythVideo's external movie lookup mechanism, see
# the README file in this directory.
#
# Author: Tim Harvey (tharvey AT alumni.calpoly DOT edu)
# Modified: Sergei Gurjev, Andrei Rjeousski
# v1.1
#      - Fix for changed website
#
# $Id: kinopoisk.pl 26 2010-04-30 11:16:51Z tipok $
# $Date: 2010-04-30 14:16:51 +0300 (Птн, 30 Апр 2010) $
#

#################################################################################
# Config
#################################################################################
#my $poster_local_dir = "/storage/posters/"; # для хранения обложек
my $poster_local_dir = "/var/lib/mythtv/videoimages/";
#my $fanart_local_dir = "/storage/fanart/"; # для хранения обоев (применимо только для версии 0.22...... ну и наверное для последующих)
my $fanart_local_dir = "/var/lib/mythtv/fanart/";

#my $http_remote_dir = "http://localhost/video_covers/"; # не поддерживается в 0.22 согласно http://www.gossamer-threads.com/lists/mythtv/users/402573)


#################################################################################
# Cam CkpunT
#################################################################################
use HTML::Entities;
use HTML::Strip;
my $hs = HTML::Strip->new();
use URI::Escape;

use Switch;

use LWP::UserAgent;     # libwww-perl providing HTML get-post actions
my $ua = LWP::UserAgent->new;
$ua->agent("Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)");
$ua->default_header('Host' => "www.kinopoisk.ru");
$ua->default_header('Accept' => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
$ua->default_header('Accept-Language' => "ru-ru,ru;q=0.5");
$ua->default_header('Connection' => "close");




use vars qw($opt_h $opt_r $opt_d $opt_i $opt_v $opt_D $opt_M $opt_P $opt_F);
use Getopt::Std; 

use Text::Iconv;
$converter = Text::Iconv->new("cp1251", "utf8");
$back_converter = Text::Iconv->new("utf8", "cp1251");

$title = "KINOPOISK Query"; 
$version = '$Rev: 26 $';
$author = "Sergei Gurjev, Tim Harvey, Andrei Rjeousski";

my @countries = qw(UA RU BY);

#binmode(STDOUT, ":utf8");

# display usage
sub usage {
    print "usage: $0 -hdrviMPDF [parameters]\n";
    print "      -h           help\n";
    print "       -d           debug\n";
    print "       -r           dump raw query result data only\n";
    print "       -v           display version\n";
    print "       -i           display info\n";
    print "\n";
    print "       -M [options] <query>    get movie list\n";
    print "               some known options are:\n";
    print "                  clean=[yes|no]      clean input data (remove unneeded text) default: yes\n";
    print "               Note: multiple options must be separated by ','\n";
    print "       -P <movieid>  get movie poster\n";
    print "       -D <movieid>  get movie data\n";
    print "       -F <movieid>  get movie fanart\n";
    exit(-1);
}

# display 1-line of info that describes the version of the program
sub version {
    print "$title ($version) by $author\n"
} 

# display 1-line of info that can describe the type of query used
sub info {
    print "Performs queries using the www.kinopoisk.ru website.\n";
}

# display detailed help 
sub help {
    version();
    info();
    usage();
}

sub trim {
    my ($str) = @_;
    $str =~ s/^\s+//;
    $str =~ s/\s+$//;
    return $str;
}

# returns text within 'data' between 'beg' and 'end' matching strings
sub parseBetween {
    my ($data, $beg, $end)=@_; # grab parameters

    my $ldata = lc($data);
    my $start = index($ldata, lc($beg)) + length($beg);
    my $finish = index($ldata, lc($end), $start);
    if ($start != (length($beg) -1) && $finish != -1) {
       my $result = substr($data, $start, $finish - $start);
       # return w/ decoded numeric character references
       # (see http://www.w3.org/TR/html4/charset.html#h-5.3.1)
       decode_entities($result);
       return $result;
    }
    return "";
}

# get Movie Data 
sub getMovieData {
    my ($movieid)=@_; # grab movieid parameter
    if (defined $opt_d) { printf("# looking for movie id: '%s'\n", $movieid);}

    # get the search results  page
    my $request = "http://www.kinopoisk.ru/level/1/film/" . $movieid . "/";

    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    my $req = HTTP::Request->new(GET => $request);
    my $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
	$response =~ s/&nbsp;/ /gi;

     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
	exit(0);
     }

    if (defined $opt_r) { printf("%s", $response); }

    if (!defined $response) {return;}



    #parse title 
    my $data  = parseBetween($response, "<h1 style=\"margin: 0; padding: 0\" class=\"moviename-big\">", "</h1>");
    my $title = trim($hs->parse( $data ));

    $data = parseBetween($response, "<span style=\"color: #666; font-size: 13px\">","</span>");
    my $title_eng = trim($hs->parse( $data ));

     if (!($title_eng eq "")){
	$title = $title."/".$title_eng;
     }

    ## parse director 
    $data = parseBetween($response, ">режиссер<", "</tr>");
    my $director = trim($hs->parse( "<".$data ));
    $director =~ s/\s\,/,/gi;

    ## parse year
    $data = parseBetween($response, ">год<", "</tr>");
    my $year = trim($hs->parse( "<".$data ));

    # parse writer 
    $data = parseBetween($response, ">сценарий<", "</tr>");
    my $writer = trim($hs->parse( "<".$data ));
    $writer =~ s/\s\,/,/gi;


    $data = parseBetween($response, "<span class=\"_reachbanner_\">", "</span>");
    my $plot = $data;
    $plot =~ s/&[a-zA-Z]{3,};/ /gi;
    $plot =~ s/[\x09\r\n]/ /gi;
    $plot =~ s/\s{2,}/ /gi;
    $plot = trim ($plot);
    $plot = $hs->parse( $plot );
    $plot =~ s/([^\xD1\xD0]{1})\x97/$1-/gi;
    $plot =~ s/([^\xD1\xD0]{1})\x85/$1.../gi;
    $plot =~ s/([^\xD1\xD0]{1})\xAB/$1\"/gi;
    $plot =~ s/([^\xD1\xD0]{1})\xBB/$1\"/gi;
    

    if (!$plot) {
       $plot = "NA";
    }

#   my $ratings = parseBetween($response, "Рейтинг фильма</b>","об оценках и Top-250</a>");
    # parse KINOPOISK rating
#   my $userrating="";
    if ( $response=~ m/>([\d]+)\.([\d]+)</){
	$userrating = "KP: ".$1.".".$2 if ($1 && $2);
    }

    # parse IMDB rating
    my $imdbrating = parseBetween($response, ">IMDB: ","<");
    #6.20 (1 921)
    if ($imdbrating) {
	$imdbrating =~ s/([\d\.]+).*/$1/esg;
	$userrating .= ", " if ($userrating);
	$userrating .= "IMDB: ".$imdbrating;
    }

    # parse MPAA rating
    my $movierating = trim(parseBetween($response, ">рейтинг MPAA<", "</tr>"));
    #<a href='/level/38/film/273296/rn/R/' class='all'><img src='/images/mpaa/R.gif' height=11 alt='рейтинг R' border=0></a>
    #<a href='/level/38/film/220619/rn/PG-13/' class='all'><img src='/images/mpaa/PG-13.gif' height=11 alt='рейтинг PG-13' border=0></a>
    if ( $movierating =~ m/<img.*alt=\'рейтинг (.+?)\'/){
	$movierating = $1 if ($1);
    } else {
	$movierating = "";
    }

    # parse movie length
    $data = trim(parseBetween($response, ">время<","</tr>"));
    my $runtime = trim($hs->parse( "<".$data ));
    $runtime =~ s/\ мин\.//g;

    # parse cast 
    my $cast = "";
    $data = parseBetween($response, ">В главных ролях:<", "</table>"); 
    if ($data) {
         $data =~ s/<\/a>/,/gi;
	$cast = trim($hs->parse( "<".$data ));
    }
     $cast =~ s/\s{2,}/ /gi;
     $cast =~ s/\n/ /gi;
     $cast =~ s/\s\,/,/gi;
     #no need others
     $cast =~ s/, ...,//gi;


    # parse genres 
    $data = parseBetween($response, ">жанр<", "</tr>");
    my $lgenres = trim($hs->parse( "<".$data ));
    $lgenres =~ s/\s\,/,/gi;

    # parse countries
    $data = parseBetween($response, ">страна<", "</tr>");
    my $lcountries = trim($hs->parse( "<".$data ));
    $lcountries =~ s/\s\,/,/gi;

    # output fields (these field names must match what MythVideo is looking for)
    print "Title:$title\n";
    print "Year:$year\n";
    print "Director:$director\n";
#bug workaround.
#   print "Plot:".pack( 'U*', unpack( 'U*', $plot))."\n";
    print "Plot:$plot\n";
    print "UserRating:$userrating\n";
    print "MovieRating:$movierating\n";
    print "Runtime:$runtime\n";
    print "Writers: $writer\n";
    print "Cast: $cast\n";
    print "Genres: $lgenres\n";
    print "Countries: $lcountries\n";
}

# dump Movie Poster
sub getMoviePoster {
    my ($movieid)=@_; # grab movieid parameter
    if (defined $opt_d) { printf("# looking for movie id: '%s'\n", $movieid);}

    my $uri = "";
    my $img_uri = "";

    # get the search results  page

	#    http://www.kinopoisk.ru/level/1/film/252156/

    my $request = "http://www.kinopoisk.ru/level/17/film/" . $movieid . "/";
    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    my $req = HTTP::Request->new(GET => $request);
    my $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
         exit(0);
     }

    if (defined $opt_r) { printf("%s", $response); }

    if (!defined $response) {return;}

    my $matches = parseBetween($response,      "<table class=\"fotos\">\n",
                                               "</table>\n");

#   print $matches;
    my $beg = "<td";
    my $end = "\n</td>";
    my $count = 0;
    my @images;
    my @img;

    if ($matches eq "") {
       if (defined $opt_d) { printf("# no results\n"); }
      return; 
    }

    my $start = index($matches, $beg);
    my $finish = index($matches, $end, $start);
    
    while ($start != -1 && $start < length($matches)) {
       $start += length($beg);
       my $entry = substr($matches, $start, $finish - $start);
#      print "ENTRY:  ".$entry;
       $start = index($matches, $beg, $finish + 1);
       $finish = index($matches, $end, $start);

       #<i>800&times;1013</i>
       if ($entry =~ m/<a.+?href=\"\/picture\/(\d+)\/\"><img.+?src=".+?\/poster\/sm_.+?".+?\/>.+?(\d+).(\d+).+?(\d+)\sКб/s){
            $img[0] = $1 if ($1); #url
            $img[1] = $2 if ($2); #width
            $img[2] = $3 if ($3); #height
            $img[3] = $4 if ($4); #filesize in KB
            $images[$count++] = [ @img ];
            if (defined $opt_d) { printf("# parse: $1 $2 $3 $4\n"); }
       }
    }

    if($#images == 0) {
        if (defined $opt_d) { printf("# parse: no matches!\n"); }
        return;
    }

    my $goodposter=0;
    my $goodposterfounded=0;
    for $count ( 0 .. $#images ) {
        if ($goodposterfounded == 0 && $images[$count][2] > $images[$count][1]){
            $goodposter=$count;
            $goodposterfounded = 1;
        }
    }

    if ($images[$goodposter][0] eq ""){
        #don't have good poster
        $http_url = "http://www.kinopoisk.ru/picture/".$images[0][0]."/";
    } else {
        $http_url = "http://www.kinopoisk.ru/picture/".$images[$goodposter][0]."/";
    }

    $request = $http_url;
    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    $req = HTTP::Request->new(GET => $request);
    $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
     } else {
        if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
        exit(0);
     }

    if (defined $opt_r) { printf("%s", $response); }

    if (!defined $response) {return;}
#<table style="width: auto; margin-left: 20px; height:900px;" id='main_table'>
#<tr><td valign="top"><a href="/picture/669285/"><img alt="Гангстер (American Gangster)" src='http://st3.kinopoisk.ru/im/poster/6/7/1/kinopoisk.ru-American-Gangster-671910.jpg' width='800' height='1013' style="border: 1px #777 solid; position:absolute; margin-left:-5000px;" onload='autoFit(this);'></a></td></tr>
#
#</table>
    $matches = parseBetween($response, "id='main_table'>\n", "</table>\n");

    if ( $matches =~ m/<a href=\"\/picture\/.+?\"><img.+?src='(.+?)'.*?><\/a>/s) {
        $img_url = $1 if ($1);
    }

    if ($img_url){
	#$img_uri = "http://www.kinopoisk.ru".$img_url;
	$img_uri = $img_url;
	print "$img_uri\n";
	#anti-leech turned off by kinopoisk admins.
	return;
    } else {return;}



    if (defined $opt_r) { printf("%s bytes of image data", length($response) ); }
#   if ($img_uri eq "") {$img_uri = "http://www.kinopoisk.ru/images/wallpaper/".$movieid.".jpg"}

    if (defined $opt_d) { printf("# request: '%s'\n", $img_uri); }

    $req = HTTP::Request->new(GET => $img_uri);
    $req->header( 'Referer' => $http_url ),
    $req->header( 'Host' => "st2.kinopoisk.ru" ),
    
    $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {	
	switch ($res->header('Content-Type')) {
      case /image\/gif/i         { $img_ext="gif"; }
      case /image\/jpeg/i        { $img_ext="jpg"; }
      case /image\/png/i         { $img_ext="png"; }
      case /image\/x-ms-bmp/i    { $img_ext="bmp"; }
      case /image\/tiff/i        { $img_ext="tif"; }
      else {	
		if ($img_url =~ m/.+\.(.+)$/) {
       $img_ext = $1 if ($1); 
		} else {
		$img_ext="";
		}
      }
	}
	open(OFile, "> ".$poster_local_dir.int($movieid)."_coverart.".$img_ext) || die "No directory created";
	print OFile $res->content;
	close(OFile);
#	$uri = $http_remote_dir.int($movieid).".".$img_ext;



     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
	exit(0);
     }



    print "$uri\n";

}
#------------------------------------------------------------------------------------------
# dump Movie Fanart
sub getMovieFanart {
    my ($movieid)=@_; # grab movieid parameter
    if (defined $opt_d) { printf("# looking for movie id: '%s'\n", $movieid);}

    my $uri = "";
    my $img_uri = "";

    # get the search results  page

	#    http://www.kinopoisk.ru/level/1/film/252156/
    my $request = "http://www.kinopoisk.ru/level/12/film/" . $movieid . "/";
    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    my $req = HTTP::Request->new(GET => $request);
    my $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
	exit(0);
     }

    if (defined $opt_r) { printf("%s", $response); }

    if (!defined $response) {return;}
    my $matches = parseBetween($response,
     "\n\x09\x09\x09\x09\x09<table cellspacing=0 cellpadding=0 width=100% border=0>\n\x09\x09\x09\x09\x09\x09<tr>\n",
     "\n\x09\x09\x09\x09\x09\x09</tr>\n\x09\x09\x09\x09\x09</table>\n");
    my $beg = "<td align=center valign=top>\n";
    my $end = "\n</td>";
    my $count = 0;
    my @images;
    my @img;

    if ($matches eq "") {
       if (defined $opt_d) { printf("# no results\n"); }
       return; 
    }

    my $start = index($matches, $beg);
    my $finish = index($matches, $end, $start);
    while ($start != -1 && $start < length($matches)) {
       $start += length($beg);
       my $entry = substr($matches, $start, $finish - $start);
       $start = index($matches, $beg, $finish + 1);
       $finish = index($matches, $end, $start);

       if ($entry =~m/<img src=\'\/images\/wallpaper\/sm_(\d+).+?<a href=\"\/picture\/\d+\/w_size\/(\d+).+?class=all>(\d*)\*(\d*)/s) {
            $img[0] = $1 if ($1); #url
            $img[1] = $2 if ($2); #width
            $img[2] = $3 if ($3); #height
            $img[3] = $4 if ($4); #filesize
            $images[$count++] = [ @img ];
        }
    }

    my $goodfanart=0;
    my $goodfanartfounded=0;
    for $count ( 0 .. $#images ) {
        if ($goodfanartfounded == 0 && $images[$count][2] > $images[$count][1]){
            $goodfanart=$count;
            $goodfanartfounded = 1;
        }
    }



     if ($images[$goodfanart][0] eq ""){
        return;
     } else {
        $http_url = "http://www.kinopoisk.ru/picture/".$images[$goodfanart][0]."/";
     }



    $request = $http_url;
    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    $req = HTTP::Request->new(GET => $request);
    $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }

	exit(0);
     }
    if (defined $opt_r) { printf("%s", $response); }

    if (!defined $response) { return;}
    $matches = parseBetween($response,
      "\n\x09\x09<td colspan=3 valign='top' style=\"padding-left:20px\">\n\x09\x09\x09<table cellpadding=0 cellspacing=0>\n\x09\x09\x09\x09<tr>\n",
      "\n\x09\x09\x09\x09</tr>\n\x09\x09\x09\x09\x09\x09\x09\x09<tr><td align=center>\n");
    if ( $matches =~ m/<td width=\d*?><a href=".*?"><img.+?src='(.+?)'.*?><\/a><\/td>/s){
        $img_url = $1 if ($1);
    }

    if ($img_url){
        $img_uri = $img_url;
    } else { print  return;}



    if (defined $opt_r) { printf("%s bytes of image data", length($response) ); }

    if ($img_uri eq "") {$img_uri = "http://www.kinopoisk.ru/images/film/".$movieid.".jpg"}

    if (defined $opt_d) { printf("# request: '%s'\n", $img_uri); }

    $req = HTTP::Request->new(GET => $img_uri);
    $req->header( 'Referer' => $http_url ),
    $req->header( 'Host' => "st2.kinopoisk.ru" ),
    
    $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {	
	switch ($res->header('Content-Type')) {
      case /image\/gif/i         { $img_ext="gif"; }
      case /image\/jpeg/i        { $img_ext="jpg"; }
      case /image\/png/i         { $img_ext="png"; }
      case /image\/x-ms-bmp/i    { $img_ext="bmp"; }
      case /image\/tiff/i        { $img_ext="tif"; }
      else {	
		if ($img_url =~ m/.+\.(.+)$/) {
       $img_ext = $1 if ($1); 
		} else {
		$img_ext="";
		}
      }
	}
	open(OFile, "> ".$fanart_local_dir.int($movieid)."_fanart.".$img_ext) || die "No directory created";
	print OFile $res->content;
	close(OFile);
#	$uri = $http_remote_dir.int($movieid).".".$img_ext;



     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
	exit(0);
     }



    print "$uri\n";

}
#----------------------------------------------------------------------------------------------------

# dump Movie list:  1 entry per line, each line as 'movieid:Movie Title'
sub getMovieList {
    my ($filename, $options)=@_; # grab parameters

    # If we wanted to inspect the file for any reason we can do that now

    #
    # Convert filename into a query string 
    # (use same rules that Metadata::guesTitle does)
    my @releaseGroups = ("DVDRip", 
    "CAMRip",
    "DVDScr",
    "HDRip",
    "XviD",
    "DivX",
    "AC3",
    "H264",
    "x264",
    " L2 ",
    " TS ",
    "ELEKTRI4KA",
    "INTERFILM",
    "KINODOME",
    "HQ-ViDEO",
    "STOP.SNYATO",
    "BINMOVIE",
    "PUZKARAPUZ",
    "KiNOFACK",
    "Epidem.ru",
    "uniongang.ru",
    "LostFilm.TV",
    "torrents.ru",
    "BiNuRaL.Ru",
    "ShareReactor.ru",
    "SenatorInfo.com"
    );

    my $query = $filename;
    $query = uri_unescape($query);  # in case it was escaped
    
    
    my @op_arr = split(",", $options);
    my %op;
    foreach my $a_elem (@op_arr) {
	my ($key, $val) = split("=", $a_elem, 2);
	$op{$key} = $val;
    }
    
     if (!defined $op{'clean'} || $op{'clean'} ne "no") {

	# Strip off the file extension
	if (rindex($query, '.') != -1) {
      $query = substr($query, 0, rindex($query, '.'));
	}
	# Strip off anything following '(' - people use this for general comments
	if (rindex($query, '(') != -1) {
      $query = substr($query, 0, rindex($query, '(')); 
	}
	# Strip off anything following '[' - people use this for general comments
	if (rindex($query, '[') != -1) {
      $query = substr($query, 0, rindex($query, '[')); 
	}
    	$query =~ s/[\._]/ /g;

	#Strip off anything about release-groups and quality of video
	foreach (@releaseGroups) {
      $query =~ s/$_/ /gi;
	}
	
	# KINOPOISK searches do better if any trailing ,The is left off
	$query =~ /(.*), The$/i;
	if ($1) { $query = $1; }
	$query =~ s/\s{2,}/ /g;
	if (defined $opt_d) { printf("# q: '%s'\n", $query); }
     }

    # prepare the url 
    $query = $back_converter->convert(trim($query));

    $query = uri_escape($query);
    
    #http://www.kinopoisk.ru/index.php?kp_query=%C1%E5%EB%EE%E5+%F1%EE%EB%ED%F6%E5+%EF%F3%F1%F2%FB%ED%E8&x=55&y=9
    #http://www.kinopoisk.ru/index.php?kp_query=%C1%E5%EB%EE%E5+%F1%EE%EB%ED%F6%E5+%EF%F3%F1%F2%FB%ED%E8&x=0&y=0
    $query =~ s/%20/\+/g;
    if (!$options) { $options = "" ;}
    if (defined $opt_d) { 
       printf("# query: '%s', options: '%s'\n", $query, $options);
    }
    
    #TODO: add query options
#   my $request = "http://www.kinopoisk.ru/index.php?kp_query=$query$options";
    my $request = "http://www.kinopoisk.ru/index.php?kp_query=$query";
    if (defined $opt_d) { printf("# request: '%s'\n", $request); }

    my $req = HTTP::Request->new(GET => $request);
    my $res = $ua->request($req);
     # Check the outcome of the response
     if ($res->is_success) {
         $response = $converter->convert($res->content);
     } else {
         if (defined $opt_d) { printf("# status: '%s'\n", $res->status_line); }
	exit(0);
     }

    if (defined $opt_r) {
       print $response;
       exit(0);
    }
    
    # check to see if we got a results page or a movie page
    my $movienum = parseBetween($response, "src=\"/images/film/",".jpg");
    if ($movienum) {
        if (defined $opt_d) { printf("# redirected to movie page\n"); }
        my $movietitle = parseBetween($response, "<tr><td><H1 style=\"padding:0px;margin:0px\" class=\"moviename-big\">","&nbsp;</H1></td></tr>"); 
        my $movietitle_eng = parseBetween($response, "<span style=\"font-size:13px;color:#666\">","</span>"); 
#       $movietitle =~ m#(.+) \((\d+)\)#;
#       $movietitle = $1;
	 if ($movietitle_eng) {
      print "$movienum:$movietitle / $movietitle_eng\n";
	 } else {
      print "$movienum:$movietitle\n";
	 } 
        exit(0);
    }

    # extract possible matches
    #    possible matches are grouped in several catagories:  
    #        exact, partial, and approximate
    my $popular_results = parseBetween($response, "Скорее всего вы ищете:",
                                                  "\n<tr><td colspan=2 height=5><spacer type=block height=5></td></tr>\n");

    my $exact_matches = parseBetween($response, "Похожие результаты:",
                                                "\n<tr><td colspan=2 height=5><spacer type=block height=5></td></tr>\n");

#    print $popular_results."\n\n\n\n".$exact_matches;
#    exit;

#   my $partial_matches = parseBetween($response, "<b>Список найденных имён:</b>", 
#                                              "<tr><td colspan=2 align=\"right\">");

#    print "\n-------------------------------------\n".$partial_matches."\n----------------------------------------------\n";

    my $beg = "class=\"news\">";
    my $end = "</font>";
    my $count = 0;
    my @movies;

#   my $data = $exact_matches.$partial_matches;
    my $data = $popular_results.$exact_matches;
    
    # resort to partial matches if no exact
#   if ($data eq "") { $data = $partial_matches; }
#  print $data; exit;

    if ($data eq "") {
       if (defined $opt_d) { printf("# no results\n"); }
       return; 
    }
    my $start = index($data, $beg);
    my $finish = index($data, $end, $start);
    my $year;
    my $type;
    my $title;
    while ($start != -1 && $start < length($data)) {
       $start += length($beg);
       my $entry = substr($data, $start, $finish - $start);
       $start = index($data, $beg, $finish + 1);
       $finish = index($data, $end, $start);

       my $title = "";
       my $year = "";
       my $type = "";
       my $movieurl = "";
       
#     print $entry;

       if ($entry =~ m/.*<a class="all" href=\"(.*?)\">(.*?)<\/a>.*?>(\d*?)<\/a>.*?<font color="#999999">(.*)/s){

           $movieurl = $1;
           $title = $2;
           $year = $3;
           $engl = $4;
      #print $movieurl."----".$title."----"."----".$year."----".$engl."-----\n";

      if ($movieurl =~ m/level\/1\/film\/(\d+?)\/.*/){
         	$movienum = $1;
      } else {
		next;
      }
    
    

      $engl =~ s/\.+\s+//s;

      if ($engl) {
		$title = $title."/".$engl; 
      }

	#    http://www.kinopoisk.ru/level/1/film/252156/




       } else {
            if (defined $opt_d) {
                print("Unrecognized entry format ($entry)\n");
            }
            next;
       }

       my $skip = 0;

       # add to array
       if (!$skip) {
           my $moviename = $title;
           if ($year ne "") {
               $moviename .= " ($year)";
           }

#         $movies[$count++] = $movienum . ":" . $title;
          $movies[$count++] = $movienum . ":" . $moviename;
       }
    }

    # display array of values
    for $movie (@movies) { print "$movie\n"; }
}

#
# Main Program
#

# parse command line arguments 
getopts('ohrdivDMPF');

# print out info 
if (defined $opt_v) { version(); exit 1; }
if (defined $opt_i) { info(); exit 1; }

# print out usage if needed
if (defined $opt_h || $#ARGV<0) { help(); }

if (defined $opt_D) {
    # take movieid from cmdline arg
    $movieid = shift || die "Usage : $0 -D <movieid>\n";
    getMovieData($movieid);
}

elsif (defined $opt_P) {
    # take movieid from cmdline arg
    $movieid = shift || die "Usage : $0 -P <movieid>\n";
    getMoviePoster($movieid);
}

elsif (defined $opt_F) {
    # take movieid from cmdline arg
    $movieid = shift || die "Usage : $0 -F <movieid>\n";
    getMovieFanart($movieid);
}

elsif (defined $opt_M) {
    # take query from cmdline arg
    $options = shift || die "Usage : $0 -M [options] <query>\n";
    $query = shift;
    if (!$query) {
       $query = $options;
       $options = "";
    }
    getMovieList($query, $options);
}
# vim: set expandtab ts=3 sw=3 :
