I have an input box that tells uers to enter a link from imgur.com I want a script to check the link is for the specified site but I'm not sue how to do it?

The links are as follows: http://i.imgur.com/He9hD.jpg Please note that after the /, the text may vary e.g. not be a jpg but the main domain is always http://i.imgur.com/.

Any help appreciated. Thanks, Josh.(Novice)

link|improve this question

feedback

6 Answers

up vote 1 down vote accepted

Try this:

<?php
if(preg_match('#^http\:\/\/i\.imgur.com\/#', $_POST['url']))
    echo 'Valid img!';
else
    echo 'Img not valid...';
?>

Where $_POST['url'] is the user input.

I haven't tested this code.

link|improve this answer
feedback

Try parse_url()

try {
    if (!preg_match('/^(https?|ftp)://', $_POST['url']) AND !substr_count($_POST['url'], '://')) {
        // Handle URLs that do not have a scheme
        $url = sprintf("%s://%s", 'http', $_POST['url']);
    } else {
        $url = $_POST['url'];
    }

    $input = parse_url($url);

    if (!$input OR !isset($input['host'])) {
        // Either the parsing has failed, or the URL was not absolute
        throw new Exception("Invalid URL");
    } elseif ($input['host'] != 'i.imgur.com') {
        // The host does not match
        throw new Exception("Invalid domain");
    }

    // Prepend URL with scheme, e.g. http://domain.tld
    $host = sprintf("%s://%s", $input['scheme'], $input['host']);
} catch (Exception $e) {
    // Handle error
}
link|improve this answer
parse_url() can fail, therefore you need to make sure it !== false before checking $input['host'] – simshaun Feb 23 at 23:30
@simshaun That is true, but not in the "quick" answer. I've enhanced the answer for you – Cez Feb 23 at 23:31
??? Quick answer or not, it's necessary or else you've introduced a potential bug in your code. – simshaun Feb 23 at 23:35
Is there anyway to get this to insert http:// dependent on whether its been provided or not? – Josh Luke Blease Feb 23 at 23:40
@JoshLukeBlease parse_url will only work in full if the URL is absolute, but I have added a sanity check for http/https/ftp – Cez Feb 24 at 12:04
show 2 more comments
feedback
substr($input, 0, strlen('http://i.imgur.com/')) === 'http://i.imgur.com/'
link|improve this answer
feedback

Check this, using stripos

if(stripos(trim($url), "http://i.imgur.com")===0){
 // the link is from imgur.com
}
link|improve this answer
feedback
$url_input = $_POST['input_box_name'];
if ( strpos($url_input, 'http://i.imgur.com/') !== 0 )

...

link|improve this answer
Needs to be !== FALSE or == 0. I'd opt for the latter since you would expect it to be act the beginning of the string. – simshaun Feb 23 at 23:25
!== FALSE won't give us the position check, just the presence one. ) And ==0 is just not right, as it'd the same response for FALSE as well. – raina77ow Feb 23 at 23:31
I hinted the position check, and that the latter would be better. But yes you are right, it needs to be === 0. Edit: Just realized you probably meant the condition for throwing an error. Ignore me. – simshaun Feb 23 at 23:33
feedback

Several ways of doing it.. Here's one:

if ('http://i.imgur.com/' == substr($link, 0, 19)) {
    ...
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.