-
Notifications
You must be signed in to change notification settings - Fork 42
/
trace.php
1383 lines (1224 loc) · 52.9 KB
/
trace.php
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Template functions
*
* These functions prepare the data for assignment to the template engine
*
* @todo comment callback functions
*
* @author Andreas Goetz <[email protected]>
* @package videoDB
* @version $Id: trace.php,v 2.64 2013/03/13 15:27:02 andig2 Exp $
*/
require_once './core/functions.php';
require_once './core/httpclient.php';
// identifier for URL parameter
$urlid = 'videodburl';
$striptags = array('iframe','object','embed','ads','html','head','body','!DOCTYPE');
/**
* input
*/
$iframe = req_int('iframe');
$videodburl = req_string('videodburl'); // #18
$videodbreload = req_int('videodbreload');
/**
* Figures out which part of a given URI is server and path
* Result in global $base_server and $base_path variables
*
* @param string $url URI
*/
function get_base($url)
{
global $uri;
$uri = parse_url($url);
if (!$uri['scheme']) $uri['scheme'] = 'http';
if (!$uri['host']) $uri['host'] = 'localhost';
if (!$uri['path']) $uri['path'] = '/';
$uri['server'] = $uri['scheme'].'://'.$uri['host'];
// remove filename from path if recognized file type
$uri['path'] = preg_replace("/^(.*\/)(.*)$/i", '\\1', $uri['path']);
// append trailing / if missing
if (!preg_match("/\/$/", $uri['path'])) $uri['path'] .= '/';
}
/**
* Figures out fully qualified, absolute URI for given (relative) URI,
* using global $base_server and $base_path variables
*
* @param string $url (relative) URI
* @return string fully qualified, absolute URI
*/
function get_full_url($url)
{
global $uri, $config;
// fully qualified?
if (preg_match("/^https?:\/\//", $url)) return $url;
// local absolute path?
if (preg_match("/^\//", $url)) {
$url = $uri['server'].$url;
} else {
$url = preg_replace("/^\.\//", '', $url);
$url = $uri['server'].$uri['path'].$url;
}
return $url;
}
/**
* Helper function to enable http(s) redirects
*
* @return string protocol scheme (http or https)
*/
function getScheme()
{
# || strtolower(substr($_SERVER["SERVER_PROTOCOL"],0,5)) != 'https'
return (!isset($_SERVER['HTTPS']) || strtolower($_SERVER['HTTPS']) != 'on') ? 'http' : 'https';
}
/**
* array_delete removes elements from array
*
* @param array $a input array
* @param string $i index to delete from
* @param string $count number of items to delete
* @return array resulting array
*/
function array_delete($a, $i, $count = 1)
{
$result = array_slice($a, 0, $i);
foreach (array_slice($a, $i+$count) as $val)
{
array_push($result, $val);
}
return $result;
}
/**
* Check if this item is already in the database
*/
function is_known_item($id, &$sp_id, &$sp_diskid)
{
$SQL = "SELECT imdbID, id, diskid
FROM ".TBL_DATA."
WHERE imdbID = '".escapeSQL($id)."'
ORDER BY diskid DESC";
$result = runSQL($SQL);
// do we know this movie?
if (count($result) && isset($result[0]['imdbID']) && adultcheck($result[0]['id']) && check_videopermission(PERM_READ, $result[0]['id']))
{
$sp_id = $result[0]['id'];
$sp_diskid = $result[0]['diskid'];
if (!$sp_diskid) $sp_diskid = 'no_diskid';
return true;
}
return false;
}
function _replace_enclosed_tag_traced($matches)
{
global $urlid, $config, $uri, $page, $iframe;
// quotes
$matches = array_delete($matches, 2);
// get fully qualified url
$url = get_full_url($matches[2]);
$url = preg_replace("/&".session_name()."=[\d|\w]+$/", '', $url);
// show anchor translation if debugging
$note = ($config['debug']) ? "($matches[2] -> $url)" : '';
// enable _top navigation for iframe mode
$top = ($iframe) ? ' target="_top"' : '';
$options = '';
$title = strip_tags($matches[4]);
// what's our host?
$engine = (preg_match('/(imdb|amazon|filmweb)/i', $uri['host'], $m)) ? $m[1] : '';
if ($engine == 'imdb')
{
// imdb
// fix for IMDB speciality: 2nd href inside first one
if (preg_match("/http.*?http/i", $url))
{
return implode('', array_slice($matches,1));
}
// title link?
// either /Title?0328828 (old-style or tiger-redirect)
// or /title/tt0306734/ (new-style)
if (preg_match("#/[Tt]itle(\?|/tt)(\d+)/?(\?|$)#", $url, $m) && $title)
{
// don't link images to avoid matching the imdb page flicker
if (!preg_match("/<img\s+/i", $matches[4]))
{
$append = ' <a href="edit.php?save=1&lookup=2&imdbID='.
urlencode("imdb:".$m[2]).'"'.$top.'><img src="'.img('add.gif').
'" valign="absmiddle" border="0" alt="Add Movie"/></a>';
if (is_known_item('imdb:'.$m[2], $sp_id, $sp_diskid))
{
$append.= ' <a href="show.php?id='.$sp_id.'"'.$top.'><img src="'.img('existing.gif').
'" title='.$sp_diskid.' valign="absmiddle" border="0" alt="Show Movie"/></a>';
}
}
}
// amend url for seasons/year the path for previous and next season/year url's at bottom of episodes page
if (preg_match("#(=(.*?)\&ref_=ttep_ep_sn_(pv|nx))|(=(.*?)\&ref_=ttep_ep_yr_(pv|nx))#",$matches[2],$mymatches))
{
if (!preg_match('#(\/episodes\/\?season=)|(\/episodes\/\?year=)#',$url,$mymatches))
{
$patterns = array ('#(\?season)#','#(\?year)#');
$replacements = array('episodes?season','episodes?year');
$url = preg_replace($patterns,$replacements,$url);
}
// remove _ajax in url will be added by js.
if (preg_match('#\/episodes\/_ajax\/#',$url,$mymatches))
{
$url = preg_replace('#\/episodes\/_ajax#','',$url);
}
}
}
elseif ($engine == 'amazon')
{
// amazon
if (preg_match("#exec/obidos/tg/detail/-/([0-9A-Z]{10,})/#", $url, $m))
{
$id = $m[1];
$append = ' <a href="edit.php?save=1&lookup=2&imdbID='.urlencode('amazon:'.$id).
'"><img src="'.img('add.gif').'" valign="absmiddle" border="0" alt="Add Movie"/></a>';
}
}
elseif ($engine == 'filmweb')
{
// filmweb.pl
if (preg_match("/[Ff]ilm[\?\.]id=(\d+)/i", $url, $m) && $title)
{
$append = " <a href=\"edit.php?save=1&engine=filmweb&lookup=1&imdbID=".
urlencode('filmweb:'.$m[1])."&title="."\">".
'<img src="'.img('add.gif').'" valign="absmiddle" border="0" alt="Add Movie"/></a>';
}
}
$url = getScheme().'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']."?$urlid=".urlencode($url);
if ($iframe) $url .= "&iframe=".$iframe;
return $matches[1].$url.$matches[3].$matches[4].$note.$matches[5].$append;
}
function _replace_tag($matches)
{
global $urlid, $striptags, $iframe;
$url = get_full_url($matches[4]);
if (in_array('ads', $striptags) && (strtolower($matches[2]) == 'img') && preg_match("/\/ads?\//i", $url)) return '';
// switch on tag
switch (strtolower($matches[2])) {
// attn: order is crucial as $url needs be saved to get overwritten
case 'form' : $append = "<input type='hidden' name='$urlid' value='$url'/>";
$url = getScheme().'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
if ($iframe) $append .= "<input type='hidden' name='iframe' value='$iframe'/>";
break;
case 'area' : $parameters = "?$urlid=".urlencode($url);
$url = getScheme().'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
if ($iframe) $parameters .= "&iframe=".$iframe;
break;
}
return $matches[1].$url.$parameters.$matches[5].$append;
}
function _remove_tag($matches)
{
return '';
}
function imdb_replace_title_callback($matches)
{
global $uri;
$result = $matches[1].$matches[2];
if (preg_match("#/title/tt(.+)/#", $uri['path'], $m) )
{
$result .= ' <a href="edit.php?save=1&lookup=2&imdbID='.
urlencode("imdb:".$m[1]).'"><img src="'.img('add.gif').
'" valign="absmiddle" border="0" alt="Add Movie"/></a>';
if (is_known_item('imdb:'.$m[1], $sp_id, $sp_diskid))
{
$result .= ' <a href="show.php?id='.$sp_id.'"><img src="'.img('existing.gif').
'" title='.$sp_diskid.' valign="absmiddle" border="0" alt="Show Movie"/></a>';
}
}
$result .= $matches[3];
return $result;
}
/**
* HTML Code Conversion
*
* Converts HTML elements to allow proxying through trace.php
* e.g. all href's are converted to trace.php?url=href links
*
* When a link of the IMDB movie title format is discovered,
* the "Add Disc" icon is appended, linking to edit.php with the correct disk id
*
* Note: this function is far from complete, more help is desired
*
* @param string $html input HTML code including relative links etc.
* @return string output HTML code with absolute proxied links, forms image maps etc.
*/
function fixup_HTML($html)
{
global $striptags, $config, $uri;
// base
if (preg_match("/<base\s+href=(\"|')(.*?)\\1/i", $html, $matches)) get_base($matches[2]);
// replace unwanted tags
$html = preg_replace_callback("/(<\/?(".join("|",$striptags).")(\s+.*?)?>)/is", '_remove_tag', $html);
// link, map/area
$html = preg_replace_callback("/(<(link|area|base)\s+[^>]*?href\s*=\s*(\"|'))([^>]*?)(\\3.*?>)/is", '_replace_tag', $html);
$html = preg_replace_callback("/(<(link|area|base)\s+[^>]*?href\s*=\s*([^\"']))([\d\w\.\/\+\%-:=&_]+?)(\s*[^>]*?>)/is", '_replace_tag', $html);
// image, frame, script
$html = preg_replace_callback("/(<(ima?ge?|frame|iframe|script)\s+[^>]*?src\s*=\s*(\"|'))([^>]*?)(\\3.*?>)/is", '_replace_tag', $html);
$html = preg_replace_callback("/(<(ima?ge?|frame|iframe|script)\s+[^>]*?src\s*=\s*([^\"']))([\d\w\.\/\+\%-:=&_]+?)(\s*[^>]*?>)/is", '_replace_tag', $html);
// form
//<input type="hidden" name="ref_" value="nv_sr_sm"/>
$html = preg_replace_callback('#<input type="hidden" name="ref_" value="nv_sr_sm"/>#', '_remove_tag', $html);
$html = preg_replace_callback("/(<(form)\s+[^>]*?action\s*=\s*(\"|'))([^>]*?)(\\3[^>]*?>)/is", '_replace_tag', $html);
$html = preg_replace_callback("/(<(form)\s+[^>]*?action\s*=\s*([^\"']))([\d\w\.\/\+\%-:=&_]+?)(\s*[^>]*?>)/is", '_replace_tag', $html);
// href
$html = preg_replace_callback("/(<a\s+[^>]*?href\s*=\s*(\"|'))([^>]*?)(\\2[^>]*?>)(.*?)(<\/a\s*>)/is", '_replace_enclosed_tag_traced', $html);
$html = preg_replace_callback("/(<a\s+[^>]*?href\s*=\s*())([\d\w\.\/\+\%-:=&_]+)(\s*[^>]*?>)(.*?)(<\/a\s*>)/is", '_replace_enclosed_tag_traced', $html);
// title
if (stristr($uri['host'], 'imdb'))
{
// this line maybe redundent with imdb now using webpack JS
$html = preg_replace_callback("#(<h1 textlength.*?>)(.*?)(</h1>)#si", 'imdb_replace_title_callback', $html);
// imdb form does not accept utf8
$html = preg_replace("/(form\s+.*?)(>)/i", '\\1 accept-charset="ISO-8859-1" \\2', $html );
}
return $html;
}
function request($urlonly=false)
{
global $urlid, $url;
// get or post?
$pass = ($_POST) ? $_POST : $_GET;
$request = '';
// don't use $_REQUEST or cookies will screw up the query
foreach ($pass as $key => $value)
{
switch ($key)
{
case $urlid:
$url = html_entity_decode(urldecode($value));
break;
case session_name():
case 'videodbreload':
case 'iframe':
break;
// case 'q':
// $url = 'http://www.imdb.com/find'; // quick fix for search
default:
if ($request) $request .= "&";
$request .= "$key=$value";
}
}
// going directly to trace.php without options?
if (!$url) $url = 'http://www.imdb.com';
// remove session identifier before request is sent or caching will not work
$url = preg_replace("/&".SID."$/", "", $url);
// workaround for fishy IMDB URLs
$url = preg_replace("/\&/", "&", $url);
// don't fetch, just find target
if ($urlonly) return($url);
// append request parameters
if ($_POST) {
$post = $request;
} elseif ($request) {
if (preg_match("#\?#",$url,$matches))
{
$url .= "&".$request;
}
else
{
$url .= "?".$request;
}
}
// encode possible spaces, use %20 instead of +
$url = preg_replace('/ /','%20', $url);
$response = httpClient($url, $_GET['videodbreload'] != 'Y', array('post' => $post));
// url after redirect
get_base($response['url']);
if ($response['success'] != true)
{
$page = 'Error: '.$response['error'];
if ($response['header']) $page .= '<br/>Header:<br/>'.nl2br($response['header']);
}
else
{
if (!$cache) putHTTPcache($url.$post, $response);
$page = $response['data'];
}
return $page;
}
/**
* @param string $html input HTML code including relative links etc.
* @return string output HTML code with absolute proxied links, forms image maps etc.
*/
function fixup_javascript($html)
{
global $uri, $debug_trace, $trace_dirs;
if (stristr($uri['host'], 'imdb') === false)
{
return $html;
}
// get cache folder for overridden js files
$cachefolder = cache_get_folder('javascript'); //get cache root folder
$error = cache_create_folders($cachefolder, 0); // ensure folder exists
array_map('unlink', glob($cachefolder."/*.*")); // delete files
// find all imdb javascript files
preg_match_all('#[\"\']\s*\Khttps?:[^\"\']+?\.js#',
$html,
$matches_all);
// for performance reduce matches by excluding all duplicate files
$unique_matches = array_unique($matches_all[0]);
// loop thru files
$x = 0;
foreach ($unique_matches as $js_file_name)
{
$partfilename = '';
$js_file_data = file_get_contents($js_file_name);
// testing/debugging only - use to get copy of all javascript before cloning
if ($debug_trace)
{
$file_path = $trace_dirs['preclone'].'pre_'.$x.'.js';
file_put_contents($file_path, $js_file_data);
}
$pattern = '#'.preg_quote('fragment BaseTitleCard on Title', '#').'#'; // add escape delimiters
if ( preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = replace_javascript_title ($js_file_data, $html);
$partfilename .= '-title';
}
// add add/show to main title on episode list page @ aug 2023
// amended pattern @Sept 24
$pattern = '#'.preg_quote('defaultMessage:"View episode guide"}', '#').'#'; // add escape delimiters
if ( preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = replace_javascript_episodemain ($js_file_data, $html);
$partfilename .= '-episodemain';
}
// add add/show to New version of episode list page @ aug 2023
$pattern = '#'.preg_quote('SeasonsTab="tab-seasons"', '#').'#'; // add escape delimiters
if (preg_match($pattern, $js_file_data, $matches) )
{
list($js_file_data, $html) = replace_javascript_episodelist ($js_file_data, $html);
$partfilename .= '-episodelist';
}
// for search bar and interactive search list
$find_string = 'hiddenFields:[{name:"ref_",val:"nv_sr_sm"}]';
$pattern = '#'.preg_quote($find_string, '#').'#'; // add escape delimiters
if (preg_match($pattern, $js_file_data, $matches) )
{
$js_file_data = replace_javascript_search ($js_file_data);
$partfilename .= '-search';
}
// for add/show movie links
$find_string = 'displayableProperty.value.plainText}),(0';
$pattern = '#'.preg_quote($find_string, '#').'#'; // add escape delimiters
if (preg_match($pattern, $js_file_data, $matches) )
{
$js_file_data = replace_javascript_addmovie ($js_file_data);
$partfilename .= '-addmovie';
}
// for qlnk links
$find_string = 'defaultMessage:"Cast & crew"';
$pattern = '#'.$find_string.'#';
if (preg_match($pattern, $js_file_data, $matches) )
{
$js_file_data = replace_javascript_qlnk ($js_file_data);
$partfilename .= '-qlnk';
}
// for search result page
$find_string = 'defaultMessage:"Exact matches"';
$pattern = '#'.$find_string.'#';
if (preg_match($pattern, $js_file_data, $matches) )
{
list($js_file_data, $html) = replace_javascript_srchlist ($js_file_data, $html);
$partfilename .= '-srchlist';
}
if ($partfilename <> '')
{
$file_path = './'.$cachefolder.'imdb-clone-'.$x.$partfilename.'.js';
//add comment line to file and save to cache (overwritten if present)
file_put_contents($file_path, '/* Processed by - replace_javascript_('.$partfilename.') : this files original name - '.$js_file_name.' */');
// save js data file to cache
file_put_contents($file_path, $js_file_data, FILE_APPEND);
$pattern = '#'.preg_quote($js_file_name, '#').'#'; // escape all delimitters in file name
$html = preg_replace($pattern,$file_path,$html);
}
// release file data from memory to avoid memory exceeeded error
$js_file_data = '';
unset($js_file_data);
$x++ ;
}
return ($html);
}
/**
* @param string $json input json data
* @return string output json with title data.
*/
function fixup_json($json)
{
/* section commented out as not needed as of june 2022 - code left incase needed in future
// insert / after title no - fixes issue with title no being deleted in $uri in function get_base
// "id":"tt5996792" allow for different digits in page
$pattern = '#(\"id\":\"tt)(\d+)(\")#';
preg_match_all($pattern,$json, $matches_all);
for ($x = 0;$x < count($matches_all[2]);$x++)
{
$tt_no = preg_quote($matches_all[2][$x]);
$pattern = '#\"id\":\"tt'.$tt_no.'\"#';
//preg_match_all($pattern,$json, $matches_pre_replace);
$json = preg_replace($pattern,
'"id":"tt'.$tt_no.'/"',
$json);
}
*/
// testing code
//$pattern = '#\"id\":\"tt.*?.\"#';
//preg_match_all($pattern,$page, $mm_after);
return $json;
}
/**
* @param string $js_file_data imdb supplied javascript
* @return string amended javascript.
*/
function replace_javascript_title ($js_file_data)
{
global $iframe;
// allow for iframe templates
$iframe_val = '';
if ($iframe) $iframe_val = "&iframe=".$iframe;
// let r=(e.localePrefix??"")+"/title/{tconst}/"
// let r=""+"/title/{tconst}/faq/"
// let r=""+"/title/{tconst}/fullcredits/"
// let r=""+"/title/{tconst}/plotsummary/"
// let r=""+"/title/{tconst}/taglines/"
// let r=""+"/title/{tconst}/trivia/"
// let r=""+"/title/{tconst}/reviews/"
$pattern = '#(let .\=""\+"|let r\=\(..localePrefix\?\?""\)\+")(/title/\{tconst\}.*?")#';
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{
return $matches[1].'?'.$iframe_val.'&videodburl=https://www.imdb.com'.$matches[2];
}, $js_file_data);
}
// let r = (e.localePrefix ?? "") + "/name/{nconst}/"
// let r=""+"/name/{nconst}/awards/"
// let r=""+"/name/{nconst}/quotes/"
// let r=""+"/name/{nconst}/triva/"
// let r=""+"/name/{nconst}/videogallery/"
// let r=""+"/name/{nconst}/bio/"
// let r=""+"/name/{nconst}/externalsites/"
// let r=""+"/name/{nconst}/faq/"
// let r=""+"/name/{nconst}/mediaindex/"
// let r=""+"/name/{nconst}/mediaviewer/"
// let r=""+"/name/{nconst}/news/"
// let r=""+"/name/{nconst}/otherworksawards/"
// let r=""+"/name/{nconst}/publicity/"
$pattern = '#(let .\=""\+"|let .\=\(..localePrefix\?\?""\)\+")(/name/\{nconst\}.*?")#';
unset($mataches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{
return $matches[1].'?'.$iframe_val.'&videodburl=https://www.imdb.com'.$matches[2];
}, $js_file_data);
}
// let r=""+"/interest/{inconst}/"
$pattern = '#(let .\=""\+")(/interest/\{inconst\}/")#';
unset($mataches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{
return $matches[1].'?'.$iframe_val.'&videodburl=https://www.imdb.com'.$matches[2];
}, $js_file_data);
}
return $js_file_data;
}
/**
* @param string $js_file_data imdb supplied javascript
* @return string amended javascript.
*/
function replace_javascript_addmovie ($js_file_data)
{
global $uri, $iframe;
// allow for iframe templates
$iframe_val = '';
if ($iframe) $iframe_val = "&iframe=".$iframe;
if (preg_match("#/title/tt(\d+)#", $uri['path'], $m)) // $m[1] is imdb tltle no
{
// look for &&S.push({text:p.displayableProperty.value.plainText}),(0,r.jsx) S p and r can change
$pattern = "#&&(.?\.push\(\{text\:)(.?\.displayableProperty\.value\.plainText\}\),\(0,.?\.jsx\))#";
// 111111111111111111 22222222222222222222222222222222222222222222222222222222222
preg_match($pattern, $js_file_data, $matches);
$append = $matches[1].'"Add Movie", link: "edit.php?save=1&lookup=2&imdbID=imdb:'.$m[1].'"}),';
if (is_known_item('imdb:'.$m[1], $sp_id, $sp_diskid))
{
$diskid = "";
if ($sp_diskid <> "no_diskid")
{
$diskid = " (Diskid:".$sp_diskid.")";
}
$append.= $matches[1].'"Show Movie'.$diskid.'", link: "show.php?id='.$sp_id.'"}),';
}
$pattern = "#(&&.?\.push\(\{text\:.?\.displayableProperty\.value\.plainText\}\),)(\(0,.?\.jsx\))#";
// 111111111111111111111111111111111111111111111111111111111111111111 2222222222222
unset($matches);
preg_match($pattern, $js_file_data, $matches);
$js_file_data = preg_replace($pattern,
$matches[1].$append.$matches[2],
$js_file_data);
}
// href=`https://${window.location.host} "#href\=`https\://\$\{window\.location\.host\}#"
$pattern = '#(href\=`)(https\://)(\$\{window\.location\.host\})#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1].'http://'.'${window.location.host}'.'${window.location.pathname}',
$js_file_data);
}
// find_string `/title/ or `/name/
$pattern = '#(`)(/title/|/name/)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val) {
return $matches[1].'?'.$iframe_val.'&videodburl=https://www.imdb.com'.$matches[2];
}, $js_file_data);
}
// links for actor real name
//"data-testid":"title-cast-item__actor",href:
$pattern = '#"data-testid":"title-cast-item__actor",href:#';
unset($matches);
preg_match($pattern, $js_file_data, $matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[0].'"?'.$iframe_val.'&videodburl=https://www.imdb.com"+',
$js_file_data);
}
// // links for principals names
// //"data-testid":"title-pc-principal-credit",labelTitle:t.category.text,labelLinkAriaLabel:a,labelLink:t.totalCredits>t.credits.length?s:void 0,listContent:t.credits.filter(e=>!!e.name.nameText).map((e,t)=>{let{name:a}=e;return{href:
$pattern = '#"data-testid":"title-pc-principal-credit".*?href:#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[0].'"?'.$iframe_val.'&videodburl=https://www.imdb.com"+',
$js_file_data);
}
// link to character profile
// find string href:c,className:"title-cast-item__char"
// 1111122222222222222222222222222222222222
$pattern = '#(href\:)(.,className\:"title\-cast\-item__char")#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+".$matches[2],
$js_file_data);
}
//"data-testid":"title-cast-allcast-link",labelTitle:s,labelLink:C,
//11111111111111111111111111111111111111111111111111111111111111122
$pattern = '#("data-testid":"title-cast-allcast-link",labelTitle:.,labelLink:)(.,)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+".$matches[2],
$js_file_data);
}
// top cast
//"data-testid":"title-cast",children:[(0,l.jsx)(aX.O,{title:r,editHref:h,subtitleProps:{href:C,subText:
//111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222
$pattern = '#("data\-testid":"title\-cast",children:\[\(.,..jsx\)\(....,{title:.,editHref:.,subtitleProps:{href:)(.,subText:)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+".$matches[2],
$js_file_data);
}
// plot summary
//w.InlineListItem,{children:(0,l.jsx)(w.TextLink,{text:s.formatMessage(t),href:i,inline:
//111111111111111111111111111111111111111111111111111111111111111111111111111111222222222
$pattern = '#(..InlineListItem,{children:\(.,..jsx\)\(..TextLink,{text:..formatMessage\(.\),href:)(.,inline:)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+".$matches[2],
$js_file_data);
}
// back cervon on eposide page to return to main series page
//refSuffix:B.Cd.SERIES});return(0,l.jsx)(tL,{children:(0,l.jsx)(tR,{href:
$pattern = '#refSuffix:.....SERIES}\);return\(.,..jsx\)\(..,{children:\(.,..jsx\)\(..,{href:#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[0]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+",
$js_file_data);
}
// various lnks - director writer ....
$pattern = '#text:..name.nameText\?.text\|\|"",href:#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[0]."'?$iframe_val&videodburl=https://www.imdb.com"."'"."+",
$js_file_data);
}
// interest lnks
//"data-testid":"interests",arrowBackgroundColorShade:"shade3",children:[E&&c?.map((e,t)=>l.jsx(w.Chip,{label:e.text,href:
// o({refSuffix:{t: B.Cd.GENRE,n:t+1},query:{genres:e.id.toLowerCase(),explore:"title_type,genres"}})},e.id)),p&&p.map((e,t)=>(0,l.jsx)(w.Chip,{label:e.node.primaryText?.text,href:
$pattern = '#("data-testid":"interests".*?href:)(.*?href:)#';
preg_match($pattern, $js_file_data, $matches);
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."'?$iframe_val&videodburl=https://www.imdb.com"."'"."+"
.$matches[2]."'?$iframe_val&videodburl=https://www.imdb.com"."'"."+",
$js_file_data);
}
return $js_file_data;
}
/**
* @param string $js_file_data imdb supplied javascript
* @return string amended javascript.
*/
function replace_javascript_search ($js_file_data)
{
global $iframe;
$url = getScheme().'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
$iframe_val = '';
if ($iframe)
{
$iframe_val = '{name:"iframe",val:"'.$iframe.'"},';
$iframe_val_1 = "&iframe=".$iframe;
}
// fix link for looking glass in search bar
// look for search:{searchEndpoint:"https://v2.sg.media-imdb.com/suggestion",queryTemplate:"%s%s/%s.json",formAction:"/find",formMethod:"get",inputName:"q",hiddenFields:[{name:"ref_",val:"nv_sr_sm"}],
// 11111111111111111111111 222222222222222222222222222222222222222 33333333333333334444444444445555555555555566666777777777777777777777777777777777777777777777778888888888888888888888888888888
$pattern = '#(search:\{searchEndpoint:")(.*?)(",queryTemplate:")(.*?formAction:")(.*?)(".*?hiddenFields:\[)(.*?\],)#';
// 1111111111111111111111111 222 33333333333333333 4444444444444444444 555 6666666666666666666 777777
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$replace_val = $matches[1].$url.$matches[3].'?videodburl='.$matches[2]."/".$matches[4].'?videodburl='.$matches[5].$matches[6].'{name:"videodburl",val:"http://www.imdb.com'.$matches[5].'"},'.$iframe_val.$matches[7];
$js_file_data = preg_replace($pattern,$replace_val, $js_file_data);
}
// fix link for drop down list in search bar
//"search-result--const",href:e.url} and "search-result--video",href:e.url} and "search-result--link",href:e.url}
// 1111111222222 1111111222222 1111111222222
$pattern = '#(",href:)(.\.url\})#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$replace_val = $matches[1].'"'.$url.'?'.$iframe_val_1.'&videodburl=https://www.imdb.com"'.'+'.$matches[2];
$js_file_data = preg_replace($pattern,$replace_val, $js_file_data);
}
return $js_file_data;
}
/**
* @param string $js_file_data imdb supplied javascript
* @param string $html html data
* @return string $js_file_data amended javascript and html.
* @return string $html amended html.
*/
function replace_javascript_srchlist ($js_file_data, $html)
{
global $iframe, $debug_trace, $trace_dirs;
$url = getScheme().'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
$iframe_val = '';
if ($iframe)
{
$iframe_val = "&iframe=".$iframe;
}
// title name interest links
// {titleMainLinkBuilder:_}=(0,E.WOb)(),M=[i?Q.C.TITLE:Q.C.ALL,{t: Q.C.TITLE,n:r}],C=
// {interestSingleLinkBuilder:p}=(0,E.WOb)(),u=
// {nameMainLinkBuilder:g}=(0,E.WOb)(),f=
$pattern = '#({titleMainLinkBuilder:.}=.*?TITLE.*?='
. '|{nameMainLinkBuilder:.}=.*?='
. '|{interestSingleLinkBuilder:.}=.*?=)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{return $matches[0]."'?".$iframe_val."&videodburl=https://www.imdb.com'"."+";
}, $js_file_data);
}
// exact match or not exact match lnks
// find_string TextButton,{href:
$pattern = '#TextButton,{href:#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[0]."'"."?$iframe_val&videodburl=https://www.imdb.com"."'"."+",
$js_file_data);
}
// lnk for refining to movie, series ... etc
// label:g,href:
$pattern = '#label:.,href:#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{return $matches[0]."'?$iframe_val&videodburl=https://www.imdb.com'+";
}, $js_file_data);
}
// defaultMessage:"Quotes"}),href:
// defaultMessage:"Plot Summaries"}),href:
// defaultMessage:"Biographies"}),href:
// defaultMessage:"Movies, TV & more"}),href:
// defaultMessage:"People"}),href:
// defaultMessage:"Collaborations"}),href:
$pattern = '#defaultMessage:'
. '("Quotes"}\),href:'
. '|"Plot Summaries"}\),href:'
. '|"Biographies"}\),href:'
. '|"Movies, TV & more"}\),href:'
. '|"People"}\),href:'
. '|"Collaborations"}\),href:)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{return $matches[0]."'?$iframe_val&videodburl=https://www.imdb.com'+";
}, $js_file_data);
}
// "data-testid":"advanced-search-link-genres",href:
// "data-testid":"advanced-search-link-keywords",href:
$pattern = '#"data-testid":'
. '("advanced-search-link-genres",href:'
. '|"advanced-search-link-keywords",href:)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace_callback($pattern, function ($matches) use ($iframe_val)
{return $matches[0]."'?$iframe_val&videodburl=https://www.imdb.com'+";
}, $js_file_data);
}
// add add title and show title for all except episodes
// add variables to data blob
if ($debug_trace)
{
preg_match('#(\<script id\="__NEXT_DATA__".*?\>)(.*?)(\<\/script\>)#',$html,$matches); // for debugging
file_put_contents($trace_dirs['srchlst'].'allBefore.json', $matches[2]); // for debugging
}
unset($matches);
preg_match('#(\<script id\="__NEXT_DATA__".*?)("titleResults"\:\{"results"\:.*?)(,"companyResults"\:)#',$html,$matches);
if ($debug_trace)
{
file_put_contents($trace_dirs['srchlst'].'part.json', $matches[2]); // for debugging
}
// Decode the JSON file - add { for syntax
$title_data = json_decode("{".$matches[2]."}",true);
$x = 0;
foreach ($title_data['titleResults']['results'] as $object)
{
$imdb_id = filter_var($object['id'], FILTER_SANITIZE_NUMBER_INT);
$title_data['titleResults']['results'][$x]['imdbid'] = $imdb_id;
$title_data['titleResults']['results'][$x]['videodbid'] = 0;
if (is_known_item('imdb:'.$imdb_id, $sp_id, $sp_diskid))
{
$diskid = "";
if ($sp_diskid <> "no_diskid")
{
$diskid = " (Diskid:".$sp_diskid.")";
}
// add videodb id and diskid to html json
$title_data['titleResults']['results'][$x]['videodbid'] = $sp_id;
$title_data['titleResults']['results'][$x]['videodbdiskid'] = $diskid;
}
$x = $x +1;
}
$title_data_new = json_encode($title_data, JSON_UNESCAPED_SLASHES );
// strip out added delimiters '{' '}' added in earlier
$title_data_new = substr($title_data_new, 1, -1);
if ($debug_trace)
{
file_put_contents($trace_dirs['srchlst'].'new_encoded.json', $title_data_new); // for debugging
file_put_contents($trace_dirs['srchlst'].'new_js.js', $matches[1].$title_data_new.$matches[3]); // for debugging
}
//update htlm with added ids in amended json
$html = preg_replace('#(\<script id\="__NEXT_DATA__".*?)("titleResults"\:\{"results"\:.*?)(,"companyResults"\:)#',
$matches[1].$title_data_new.$matches[3],
$html);
if ($debug_trace)
{
preg_match('#(\<script id\="__NEXT_DATA__".*?\>)(.*?)(\<\/script\>)#',$html,$matches); // for debugging
file_put_contents($trace_dirs['srchlst'].'allAfter.json', $matches[2]); // for debugging
}
// assign my fields to a var
// let{id:t,titleNameText:a,hasSearchType:i,index:r,
$pattern = '#(let{)(id:.,titleNameText:.,)#';
unset($matches);
if (preg_match($pattern, $js_file_data, $matches))
{
$js_file_data = preg_replace($pattern,
$matches[1]."imdbid:imdbid,videodbid:videodbid,videodbdiskid:videodbdiskid,".$matches[2],
$js_file_data);
}
// get place to insert js data
// pattern for all except episodes
//return n&&T.push({text:n}),l&&T.push({text:l}),(0,s.jsx)(c.MetaDataListSummaryItem
//1111111111111111111111111111112222222233333344455555555555555555555555555555555555
// code to insert XXXXXXXXXXXXXXXX
// pattern for episodes
//text:e.join(".")}),l&&T.push({text:l}),(0,s.jsx)(c.MetaDataListSummaryItem,
//111111111111111111111122222222333333444555555555555555555555555555555555555
$pattern = '#(return .&&..push\({text:.}\),.&&'
. '|'
. 'text:..join\("."\)}\),.&&)'
. '(..push\({)'
. '(text:.)'
. '(}\),)'
. '(\(.,..jsx\)\(..MetaDataListSummaryItem)#';
unset($matches);
preg_match($pattern,$js_file_data,$matches);
$add = $matches[2]."text:'Add Title',href:'edit.php?save=1&lookup=2&imdbID=imdb:'+imdbid}),";
$show = "videodbid != 0 &&".$matches[2]."text:'Show Title '+videodbdiskid,href:'show.php?id='+videodbid}),";
$js_file_data = preg_replace_callback($pattern, function ($matches) use($add, $show)
{return $matches[1].$matches[2].$matches[3].$matches[4].$add.$show.$matches[5];
}, $js_file_data);
return array($js_file_data,$html);
}
/**
* @param string $js_file_data imdb supplied javascript