Регулярка от пи....ов в дополнение к парсеру

Dr_Brown

Пользователь

Регулярка позволяет вырезать различные релиз группы из титла топика, и ссылки на их трекеры с поста топика, посредством замены на ваш текст или картинку, перед выгрузкой на сайт. Подходит для ручного или автоматического граберов с rutor...Также можете аналогичным образом прописать для граберов с других трекеров.

Открыть release.php....

Найти в функции по rutor:

Код:
preg_match_all ("#<h1>([\s\S]*?)</h1>#", $text, $source, PREG_SET_ORDER);
                $text = $source[0][1];

Ниже добавить:

Код:
$text = preg_replace("/(FREEISLAND|HQCLUB|HQ-ViDEO|HELLYWOOD|ExKinoRay|NewStudio|LostFilm|RiperAM|Generalfilm|Files-x|NovaLan|Scarabey|New-Team|HD-NET|MediaClub|Baibako)/si","UNITAZ",$text);

Найти:

Код:
$text = preg_replace('/<div class="hidewrap"><div class="hidehead" onclick="hideshow.*?">([\s\S]*?)<\/div><div class="hidebody"><\/div><textarea class="hidearea">([\s\S]*?)<\/textarea><\/div>/', "[spoiler=\"\\1\"]\\2[/spoiler]", $text);

Ниже добавить:

Код:
//Регулярка пидоров начало
                $text = str_replace('<b>HQ-ViDEO</b>', '<b>UNITAZ</b>', $text);
                $text = str_replace('HQCLUB', 'UNITAZ', $text);
                $text = str_replace('FREEISLAND', 'UNITAZ', $text);
         
                $text = preg_replace('#<a href="http://hellywood.ru/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://hq-video.org/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://hqclub.net/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://exkinoray.tv.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://riper.am/riperam.gif.*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://riper.am/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://www.generalfilm.ws.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://generalfilm.ws.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://s019.*******.host/i603/1209/87/535dfd778010.gif".*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#&amp; <img src="http://s017.*******.host/i412/1208/f2/bf3e5e3f51c8.gif.*?>#', ' ', $text);
                $text = preg_replace('#<img src="http://2.firepic.org/2/images/2012-03/07/tp2rxwtz8xl3.gif".*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://www.agrmusic.org/.*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://tracker.nova-lan.ru/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://nick-name.ru/.*?</a>#', ' ', $text);
                $text = preg_replace('#<img src="http://i50.fastpic.ru/big/2013/0803/58/6cd4a3d8ac226de81209cee3369dc458.gif.*?>#', ' ', $text);
                $text = preg_replace('#<img src="http://megarelizer.ru/.*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://i.imgur.com/1qnKU.gif.*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://www.freeisland.org/.*?>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://scarabey.org/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://new-team.org.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://i57.fastpic.ru/big/2013/1128/8e/0f1951eab7c36987190091c1d058ae8e.jpg.*?>#', ' ', $text);
                $text = preg_replace('#<img src="http://s019.*******.host/i622/1306/32/980d60bc4416.gif".*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#&amp; <a href="http://www.hd-net.org/.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<a href="http://mediaclub.tv.*?</a>#', '[img]http://unitaz.org.ua/images/unitaz.jpg[/img]', $text);
                $text = preg_replace('#<img src="http://i056.*******.host/1402/31/35cc79d56ba1.gif.*?>#', ' ', $text);
                //Регулярка пидоров конец

Заменить все что unitaz на ссылки своих картинок или текст.
 
Сверху