File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ class YoutubePlugin extends AbstractPlugin
13
13
// force old YouTube layout!
14
14
public function onBeforeRequest (ProxyEvent $ event )
15
15
{
16
- $ event ['request ' ]->headers ->set ('Cookie ' , 'PREF=f6=8 ' );
17
- $ event ['request ' ]->headers ->set ('User-Agent ' , 'Opera/7.50 (Windows XP; U ) ' );
16
+ // $event['request']->headers->set('Cookie', 'PREF=f6=8');
17
+ $ event ['request ' ]->headers ->set ('User-Agent ' , 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html ) ' );
18
18
}
19
19
20
20
public function onCompleted (ProxyEvent $ event )
@@ -23,6 +23,12 @@ public function onCompleted(ProxyEvent $event)
23
23
$ url = $ event ['request ' ]->getUrl ();
24
24
$ output = $ response ->getContent ();
25
25
26
+ // homepage will never work properly. Redirect to trending instead.
27
+ if (!preg_match ('/(watch|results|feed|channel|ombed|css)/i ' , $ url )) {
28
+ $ response ->headers ->set ('location ' , proxify_url ("https://www.youtube.com/feed/trending " , $ url ));
29
+ return ;
30
+ }
31
+
26
32
// remove top banner that's full of ads
27
33
$ output = Html::remove ("#header " , $ output );
28
34
You can’t perform that action at this time.
0 commit comments