vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need help with Regex (https://vborg.vbsupport.ru/showthread.php?t=196988)

h2ojunkie 11-23-2008 02:17 AM

Need help with Regex
 
I sware regex is the bain of my exsistance. The more I read on it, the more confused I get and the more my brain hurts.

If anyone is willing to help with this, I'd much appreciate it.

I'm trying to make a modification to the check4spam product to add some functionality.

Here's the original:
Code:

 
    if (($vbulletin->userinfo['posts'] < $vbulletin->options['check4spam_urlstop']) && ($vbulletin->options['check4spam_urlstoponoff'] == 1)) {

        $message = (strtolower($post['message'])) . ' ';       
        $message = preg_replace('/[\r\n]+/', ' ', $message);

        $allowedurls = preg_split('/[\r\n]+/', $vbulletin->options['check4spam_allowedurls'], -1, PREG_SPLIT_NO_EMPTY);

        foreach ($allowedurls as $allowedurl) {
        $message = (preg_replace('/(\[url=?"?\]?)(https?\:\/\/)?(www\.)?' . $allowedurl . '\/?"?\]?(.*?)?\[\/url\]/i', '', $message));
        }

        $message = str_replace($allowedurls, '', $message);
       
        $detecturl = explode('|', $vbulletin->options['check4spam_urlidentifiers']);
         
        foreach ($detecturl as $urlspam)
        {
         
            if (stripos($message, $urlspam) !== false)
            {
                   

                $dataman->set('visible', 0);
                $check4spam_error = 1;
               
            }
        }
    }

$allowedurls is a list of URL's stored one URL to a line as domain.com (no www)

Code:

$allowedurls = preg_split('/[\r\n]+/', $vbulletin->options['check4spam_allowedurls'], -1, PREG_SPLIT_NO_EMPTY);
Then, the part I'm trying to modify.

Right now, if you want to allow a subdomain, you must add it to the allowed list. so if you want to allow imageshack URL's, simply adding imageshack.us won't do the trick.

Instead you would need to list each subdomain seperatly as so:
i433.imageshack.us
i422.imageshack.us
i415.imageshack.us
etc....

As you can see, with the literally hundreds of subdomains used by a site like imageshack, it's just not possible to add them all to the allowedurls list.

The plugin performs the following on allowedurls
Code:

        foreach ($allowedurls as $allowedurl) {
        $message = (preg_replace('/(\[url=?"?\]?)(https?\:\/\/)?(www\.)?' . $allowedurl . '\/?"?\]?(.*?)?\[\/url\]/i', '', $message));
        }

This is where the part where my brain starts hurting. I just can't seem to understand what is going on there.

Let's say I have domain.com in my allowedurl list

If I post any of these

[url]http://www.domain.com[/url]
[url]www.domain.com[/url]
domain.com


It allows the url as it should

But if I post:
subdomain.domain.com

It does not allow the URL, and the only way to allow it would be to add subdomain.domain.com to the allowedurl list as described below.

Hopefully, someone can point me in the right direction of what I need to change in the preg_replace statement to allow subdomains by just adding the TLD to the allowedlist

Thanks


All times are GMT. The time now is 04:14 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01128 seconds
  • Memory Usage 1,715KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete