//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.6 DATE: 29/12/2014 UPDATE: 14/2/2015 --------------------------------------------- CustomField : IAFDUpdated ----> Long Text IAFD AKA ----> Memo IAFD Studio ----> Multiselect List IAFD Distributor ----> Multiselect List IAFD Studio (Distributor) ----> Memo --------------------------------------------- //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.6'; SCRIPT_NAME = 'IAFD.com_movie'; SCRIPT_DESC = '[EN] Get movies 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; function RemoveTagsEx(AText : String) : String; var B, E : Integer; begin Result := AText; B := PosFrom('(', Result, 1); E := PosFrom(')', Result, B); while (B > 0) AND (B < E) do begin Delete(Result, B, E - B + 1); B := Pos('(', Result); E := Pos(')', Result); end; end; function RemoveTagsEx1(AText : String) : String; var B, E : Integer; begin Result := AText; B := PosFrom('(', Result, 1); E := PosFrom(']', Result, B); while (B > 0) AND (B < E) do begin Delete(Result, B, E - B + 1); B := Pos('(', Result); E := Pos(']', Result); end; end; //procedure FindPoster(HTML : String); //var // curPos, EndPos : Integer; //begin // curPos := Pos('Box Cover', HTML); // curPos := PosFrom(' '' then begin ExplodeString(Date, DateParts, '-'); Date := DateParts[2] +'.'+ DateParts[1] +'.'+ DateParts[0]; Date := StringReplace(Date, '01.', '1.', True, True, False); Date := StringReplace(Date, '02.', '2.', True, True, False); Date := StringReplace(Date, '03.', '3.', True, True, False); Date := StringReplace(Date, '04.', '4.', True, True, False); Date := StringReplace(Date, '05.', '5.', True, True, False); Date := StringReplace(Date, '06.', '6.', True, True, False); Date := StringReplace(Date, '07.', '7.', True, True, False); Date := StringReplace(Date, '08.', '8.', True, True, False); Date := StringReplace(Date, '09.', '9.', True, True, False); // AddCustomFieldValueByName('IAFDUpdated', DateToStr(CurrentDateTime); // Simple // AddCustomFieldValueByName('IAFDUpdated', DateToStr(CurrentDateTime) + ' at ' + TimeToStr(CurrentDateTime)); // Verbose AddCustomFieldValueByName('IAFDUpdated', Date + ' at ' + TimeToStr(CurrentDateTime) + ' '+#8226+' ' + SCRIPT_NAME + ' ' + SCRIPT_VERSION); // Annoying end else LogMessage('date not found'); AddFieldValue(mfURL, MovieURL); LogMessage('Page parsing started'); EndPos := 1; //Check for title. No orig. title info present, so duplicate.. dbgstrg:= TextBetween(HTML, '

', '(', 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); if curPos>0 then begin curPos := PosFrom('Also Known As
', HTML,curPos)+22; EndPos := PosFrom('
',HTML,curPos); dbgstrg:= Trim(Copy(HTML,curPos ,(EndPos-curPos))); dbgstrg := StringReplace(dbgstrg,'
','
',true,true,true); dbgstrg := StringReplace(dbgstrg,'
','',true,true,true); AddCustomFieldValueByName('IAFD AKA',dbgstrg); dbgstrg0:= Trim(Copy(HTML,curPos ,(EndPos-curPos))); dbgstrg0 := StringReplace(dbgstrg0,'
','',true,true,true); dbgstrg0 := StringReplace(dbgstrg0,'
','
',true,true,true); dbgstrg0 := StringReplace(dbgstrg0,'
','',true,true,true); dbgstrg0 := RemoveTagsEx(dbgstrg0); dbgstrg0 := RemoveTagsEx1(dbgstrg0); AddFieldValue(mfAka,dbgstrg0); end; // Studio //
VTO (VTO)
curPos := PosFrom(' 0 then Studio := TextBetween(HTML, '>', '', False, curPos) else curPos := EndPos; Studio := StringReplace(Studio, 'Unknown', '', true, false, true); AddCustomFieldValueByName('IAFD Studio', Studio); // Studio //
VTO (VTO)
curPos := PosFrom('
Studio (Distributor)
', HTML, EndPos); if curPos > 0 then AddFieldValue(mfStudio, TextBetween(HTML, '">', ' ', False, curPos)) else curPos := EndPos; curPos := PosFrom('
Studio (Distributor)
', HTML, EndPos); if curPos > 0 then Studio2 := TextBetween(HTML, '', +'">', true, false, true); Studio2 := StringReplace(Studio2, '', true, false, true); Studio2 := StringReplace(Studio2, 'Distributor ', '', true, false, true); Studio2 := StringReplace(Studio2, '', '', true, false, true); if Studio2 <> '' then Studio2 := Studio2 else Studio2 := ''; //if Studio2 <> '' then AddCustomFieldValueByName('IAFD Studio1', Studio2); // 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)); URL := BASE_URL + Trim(Copy(HTML, Curpos+10, Endpos- Curpos-10)); 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))); Name := StringReplace(Name, '/', '-', 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), '', '', URL, ctDirectors); Where to store? AddCustomFieldValueByName('IAFD Distributor',Name); Distributor := '' + Name + ''; if Distributor <> '' then Distributor := Distributor else Distributor := ''; 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) )); Name := StringReplace(Name, '/', '-', 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), '', '', URL, ctDirectors); Where to store? AddCustomFieldValueByName('IAFD Distributor',Name); Distributor1 := '' + Name + ''; if Distributor1 <> '' then Distributor1 := Distributor1 else Distributor1 := ''; AddCustomFieldValueByName('IAFD Studio (Distributor)', 'Distributor : ' + Distributor1); 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 := BASE_URL + '/' + Trim(Copy(HTML, UrlPosStart + 7, (UrlPosEnd - UrlPosStart - 8) )); 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) )); 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 := BASE_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); 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... //dbgstrg:= dbgstrg + 'Scene ' + IntToStr(j)+ '. '; 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 : 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.