//This version of script is for use with PVD versions 0.9.9.16 and above!!! (* Additional types and functions that can be used in scripts: --------------------------------------------- SCRIPT: iafd_movie script AUTHOR: SusiMeier DATE: 20/6/2010 VERSION: 0.0.1.3 CO-AUTHOR: Ivek23 SCRIPT MODIFICATION: Ivek23 MODIFICATION VERSION: 0.0.2.0 DATE: 29/12/2014 UPDATE: 21/1/2015 --------------------------------------------- //Types TWIDEARRAY : array of String //Field functions procedure AddSearchResult(Title1, Title2, Year, URL, PreviewURL : String) procedure AddFieldValue(AField: Integer; AValue : String) procedure AddMoviePerson(Name, TransName, Role, URL : String; AType : Byte) procedure AddPersonMovie(Title, OrigTitle, Role, Year, URL : String; AType : Byte) procedure AddAward(Event, Award, Category, Recipient, Year: String; const Won : Boolean) procedure AddConnection(Title, OrigTitle, Category, URL, Year: String) procedure AddEpisode(Title, OrigTitle, Description, URL, Year, Season, Episode : String) //String functions function Pos(Substr : String; Str: String): Integer function PosFrom(const SubStr, Str : String; FromIndex : Integer) : Integer function LastPos(const SubStr, Str : String) : Integer function PrevPos(const SubStr, Str : String; APos : Integer) : Integer function RemoveTags(AText : String; doLineBreaks : Boolean) : String function ExplodeString(AText : String; var Items : TWideArray; Delimiters : String) : Integer function Copy(S: String; Index, Count: Integer): String procedure Delete(var S: String; Index, Count: Integer) procedure Insert(Source: String; var Dest: String; Index: Integer) function Length(S: String): Integer function Trim(S: String): String function CompareText(S1, S2: String): Integer function CompareStr(S1, S2: String): Integer function UpperCase(S: String): String function LowerCase(S: String): String function StringReplace(S, OldPattern, NewPattern: String; ReplaceAll : Boolean; IgnoreCase : Boolean; WholeWord: Boolean): String function StrToInt(const S: String): Integer function IntToStr(const Value: Integer): String function StrToFloat(const S: String): Extended function FloatToStr(const Value: Extended): String function HTMLValues(const HTML : String; ABegin, AEnd, ItemBegin, ItemEnd : String; ValDelim : String; var Pos : Integer) : String function HTMLValues2(const HTML : String; ABegin, AEnd, ItemBegin, ItemEnd : String; ValDelim : String; var Pos : Integer) : String function TextBetween(const HTML : String; ABegin, AEnd : String; doLineBreaks : Boolean; var Pos : Integer) : String function HTMLToText(const HTML : String) : String procedure ShowMessage(const Msg, Head : String) *) const pauseBeforeLoad = 1000; // Pause before loading (in millisecond) //Some useful constants const //Script types stMovies = 0; stPeople = 1; stPoster = 2; //Script modes smSearch = 0; smNormal = 1; smPoster = 2; //Parse results prError = 0; prFinished = 1; prList = 2; prListImage = 3; prDownload = 4; //Movie fields mfURL = 0; mfTitle = 1; mfOrigTitle = 2; mfAka = 3; mfYear = 4; mfGenre = 5; mfCategory = 6; mfCountry = 7; mfStudio = 8; mfMPAA = 9; mfRating = 10; mfTags = 11; mfTagline = 12; mfDescription = 13; mfDuration = 14; mfFeatures = 15; //People fields pfURL = 0; pfName = 1; pfTransName = 2; pfAltNames = 3; pfBirthday = 4; pfBirthplace = 5; pfGenre = 6; pfBio = 7; pfDeathDate = 8; //Credits types ctActors = 0; ctDirectors = 1; ctWriters = 2; ctComposers = 3; ctProducers = 4; //Script data //This version of script is for use with PVD versions 0.9.9.16 and above!!! SCRIPT_VERSION = '0.0.2.0'; SCRIPT_NAME = 'IAFD.com'; SCRIPT_DESC = '[EN] Get movie information from IAFD.com'; SCRIPT_LANG = $09; //English SCRIPT_TYPE = stMovies; BASE_URL = 'http://www.iafd.com/'; RATING_NAME = 'ADE'; SEARCH_STR = 'www.iafd.com/results.asp?SearchType=Mozilla-search&SearchString=%s'; CODE_PAGE = 0; //Use 0 for Autodetect //Global variables var Mode : Byte; PosterURL : String; //Functions function GetScriptVersion : String; begin Result := SCRIPT_VERSION; end; function GetScriptName : String; begin Result := SCRIPT_NAME; end; function GetScriptDesc : String; begin Result := SCRIPT_DESC; end; function GetRatingName : String; begin Result := RATING_NAME; end; function GetScriptLang: Cardinal; begin Result := SCRIPT_LANG; end; function GetCodePage : Cardinal; begin Result := CODE_PAGE; end; function GetBaseURL : AnsiString; begin Result := BASE_URL; end; function GetDownloadURL : AnsiString; begin if PosterURL = '' then Result := SEARCH_STR else Result := PosterURL; end; function GetScriptType : Byte; begin Result := SCRIPT_TYPE; end; function GetCurrentMode : Byte; begin Result := Mode; end; //procedure FindPoster(HTML : String); //var // curPos, EndPos : Integer; //begin // curPos := Pos('Box Cover', HTML); // curPos := PosFrom('', '(', False, EndPos); LogMessage('Title: ' + dbgstrg); AddFieldValue(mfOrigTitle,dbgstrg); AddFieldValue(mfTitle,dbgstrg); // Year dbgstrg:= Trim(TextBetween(HTML, '(', ')', False, EndPos)); LogMessage('YEAR:' + dbgstrg); AddFieldValue(mfYear,dbgstrg); // AKA - Titles... //LogMessage('getting all titles'); //CurPos:= Pos('
Also Known As',HTML); //EndPos := CurPos; //while (curPos > 0) AND (curPos < PosFrom('
', HTML, EndPos)) do begin //dbgstrg:= TextBetween(HTML, '
', '
', False, CurPos); //LogMessage('AKA: ' + dbgstrg); //curPos := PosFrom('', HTML,CurPos); //AddFieldValue(mfAka,dbgstrg); //end; // AKA - Titles... LogMessage('getting all titles'); curPos := Pos('
Also Known As', HTML); if curPos>0 then begin curPos := PosFrom('Also Known As
', HTML,curPos)+22; EndPos := PosFrom('
',HTML,curPos); dbgstrg0:= Trim(Copy(HTML,curPos ,(EndPos-curPos))); dbgstrg0 := StringReplace(dbgstrg0,'
','
',true,true,true); AddFieldValue(mfAka,dbgstrg0); end; // Studio //
VTO (VTO)
curPos := PosFrom('VTO (VTO) curPos := PosFrom('
Studio (Distributor)
', HTML, EndPos); if curPos > 0 then AddFieldValue(mfStudio, TextBetween(HTML, '">', ' ', False, curPos)) else curPos := EndPos; // Distributor // Same Code as for an actor curPos := Pos('
Studio (Distributor)
', HTML); if curPos>0 then begin // get url Curpos := Posfrom('', HTML, Curpos); URL := BASE_URL + '/' + Trim(Copy(HTML, Curpos+9, Endpos- Curpos-9)); LogMessage(URL); // Get Name Curpos := Posfrom('">', HTML, Curpos)+2; Endpos := PosFrom(')', HTML, Curpos); if (curPos > 0) then begin Name := Trim(Copy(HTML, curPos, (endPos-curPos))); LogMessage(Name); debug_pos1:=Pos('(',Name); if debug_pos1 >0 then Name := Copy(Name,0,debug_pos1-1); LogMessage(Name); AddMoviePerson(Trim(Name), '', '', URL, ctProducers); //Where to store? curPos := PosFrom('', HTML, curPos); // search for url start; actPosEnd:=PosFrom('', HTML, actPosStart); // search for url end if (actPosStart > 0) then begin Name := Trim(Copy(HTML, (actPosStart + Length('.htm">')), (actPosEnd - actPosStart - 6) )); LogMessage(Name); debug_pos1:=Pos('(',Name); if debug_pos1 >0 then Name := Copy(Name,0,debug_pos1-1); LogMessage(Name); AddMoviePerson(Trim(Name), '', '', LowerCase(URL), ctProducers); //Where to store? curPos := PosFrom('href="', HTML, Curpos); end; end; // Director // Same Code as for an actor curPos := Pos('
Director
', HTML); if curPos>0 then begin EndPos := curPos; while (curPos > 0) AND (curPos < PosFrom('
Minutes
', HTML, EndPos)) do begin EndPos := curPos; // Set last position to actual position // get url UrlPosStart := PosFrom('href=', HTML, curPos); // search for url start UrlPosEnd := PosFrom('>', HTML, UrlPosStart); // search for url start URL := Trim(Copy(HTML, UrlPosStart + 7, (UrlPosEnd - UrlPosStart - 8) )); URL := StringReplace(URL, '/person.rme/perfid=no_cred/gender=d/no-director-credited.htm', '', true, false, true); URL := BASE_URL + '/' + URL; LogMessage(URL); // Get Name actPosStart:=PosFrom('.htm">', HTML, curPos); // search for url start; actPosEnd:=PosFrom('', HTML, actPosStart); // search for url end if (actPosStart > 0) then begin Name := Trim(Copy(HTML, (actPosStart + Length('.htm">')), (actPosEnd - actPosStart - 6) )); Name := StringReplace(Name, 'No Director Credited', '', true, false, true); LogMessage(Name); debug_pos1:=Pos('(',Name); if debug_pos1 >0 then Name := Copy(Name,0,debug_pos1-1); LogMessage(Name); AddMoviePerson(Trim(Name), '', '', LowerCase(URL), ctDirectors); curPos := PosFrom('href="', HTML, actPosEnd); end; end; end; // Cast curPos := Pos('

Actresses

', HTML); LogMessage('Cast readout'); if curPos > 0 then begin EndPos := curPos; while (curPos > 0) AND (curPos < PosFrom('
', HTML, UrlPosStart); // search for url end URL := Trim(Copy(HTML, UrlPosStart + 6, (UrlPosEnd - UrlPosStart - 7) )); URL := StringReplace(URL, '/person.rme/perfid=no_cred/gender=d/no-director-credited.htm', '', true, false, true); URL := BASE_URL + URL; LogMessage(URL); // Get Name actPosStart:=PosFrom('.htm">', HTML, EndPos); // search for url start; actPosEnd:=PosFrom('', HTML, actPosStart); // search for url end Name := Trim(Copy(HTML, (actPosStart + Length('.htm">')), (actPosEnd - actPosStart - 6) )); Name := StringReplace(Name, 'No Director Credited', '', true, false, true); LogMessage(Name); debug_pos1:=Pos('(',Name); if debug_pos1 >0 then Name := Copy(Name,0,debug_pos1-1); LogMessage(Name); AddMoviePerson(Trim(Name), '', '', LowerCase(URL), ctActors); curPos := PosFrom('href="', HTML, actPosEnd); end; end; // Minutes CurPos:= Pos('
Minutes
',HTML); if curPos > 0 then begin //EndPos := CurPos; curPos := PosFrom('
', HTML, curPos)+4; EndPos := PosFrom('
', HTML, curPos); Duration := IntToStr(StrToInt(Copy(HTML, curPos, EndPos - curPos)) * 60); if Duration <> '' then AddFieldValueXML('length',Duration); end else LogMessage('length not found'); Duration1 := Copy(HTML, curPos, EndPos - curPos); Duration1 := StringReplace(Duration1, 'No Data', '', true, false, true); if Duration1 <> '' then Duration1 := 'Runtime : ' + Duration1 + ' Min.' else Duration1 := Duration1; AddFieldValueXML('comment',Duration1); // Scene Breakdowns curPos := Pos('

Scene Breakdowns

', HTML); if curPos > 0 then begin LogMessage('Scene readout'); EndPos := curPos; curPos := PosFrom('Scene', HTML, EndPos+10); dbgstrg := ''; J:=1; //while (curPos > 0) AND (curPos < PosFrom('id=ratings', HTML, EndPos)) do begin while (curPos > 0) AND (curPos < PosFrom('

', HTML, EndPos+10)) do begin // G actPosStart:=PosFrom('Scene', HTML, curPos); // search for url start; actPosEnd:=PosFrom('', HTML, actPosStart); // search for url end Name := Trim (Copy(HTML, actPosStart,actPosEnd - actPosStart)); LogMessage(Name); // NEW: Split string by comma and insert hyperlink-tags // Scene 1. Julianne James, Tom Byron // Final Strin: Scene ##. actor actor2 // remove static text from string (scene 1.) and split cleaned string by ',' tmpstrg := Copy(Name,10,100); ActorNumber := ExplodeString(tmpstrg, ActorNames,','); LogMessage(tmpstrg); // Prepare first part of string... //if dbgstrg <> '' then //dbgstrg:= dbgstrg + ' '+#8226+' ' + 'Scene ' + IntToStr(j)+ '. ' //else //dbgstrg:= dbgstrg; dbgstrg:= dbgstrg + ' '+#8226+' ' + 'Scene ' + IntToStr(j)+ '. '; // format splitted strings into links For I := Low (ActorNames) To High (ActorNames) Do begin dbgstrg := dbgstrg+ '' + ActorNames[I] + ' '; end; dbgstrg:= dbgstrg + #13#10; //dbgstrg:= dbgstrg + Name + #13#10; j:=j+1; curPos := PosFrom('Scene', HTML, actPosEnd); end; LogMessage(dbgstrg); If dbgstrg <> '' then dbgstrg := 'Scene Breakdowns :' +#13#10 + dbgstrg else dbgstrg := dbgstrg; AddFieldValue(mfTagline,dbgstrg); end; end; // End of the routine... // ParseSearchResults // - create list of movies found during the search procedure ParseSearchResults(HTML : String); var curPos, EndPos, P : Integer; Title, Year, URL, Studio : String; begin EndPos := 1; LogMessage('Parsing movie list...'); curPos := PosFrom('
', HTML, EndPos); while curPos > 0 do begin // Each movie entry starts with
EndPos := curPos + Length('
'); curPos := PosFrom('', '', False, EndPos); LogMessage(Title); // Now that we got the title, move on to the studio... curPos := PosFrom('Release Info:', HTML, EndPos); if curPos > 0 then begin curPos := curPos + Length('Release Info:') + 1; EndPos := PosFrom(',', HTML, curPos); Studio := Copy(HTML, curPos, EndPos - curPos); LogMessage(Studio); curPos := EndPos + 2; EndPos := PosFrom('<', HTML, curPos); Year := Copy(HTML, curPos, EndPos - curPos); LogMessage(Year); end; AddSearchResult(Title, Studio, Year, URL, ''); curPos := PosFrom('
', HTML, EndPos); end; end; // ParsePage // - Entrypoint for the script. Check if the search-term leads to zero, one or many results. function ParsePage(HTML : String; URL : AnsiString) : Cardinal; begin Wait (pauseBeforeLoad); LogMessage('Script version:' + SCRIPT_VERSION); if Pos('

Movie Titles - Top 50 Results

', HTML) > 0 then begin ParseSearchResults(HTML); Result := prList; //search results retrieved end else if Pos('

Movie Titles - Top 50 Results

', HTML) < 0 then Result := prError //error (movie not found) else if (Pos(': movie detail :', HTML) > 0) then begin Mode := smNormal; ParseMovie(URL, HTML); Result := prFinished; //script has finished it's job end else Result := prError; //error (unknown page retrieved) end; begin Mode := smSearch; end.