vote up 0 vote down star

I got a javascript code like this to validate the file extension for my users when they upload pics on my server.It should allow both .jpg and .jpeg photos however only .jpg files are accepted and it invalidates if the photo ends with .jpeg.Here's the code:


function validate(x) {
    var extensions = new Array("jpg", "jpeg");
    var pos = x.lastIndexOf('.') + 1;
    var ext = x.substring(pos, x.length);
    var final_ext = ext.toLowerCase();

for (i = 0; i < extensions.length; i++) {
    if (extensions[i] != final_ext) {

        return 0;
        break;
    }
    return 1;

}

}

what do you think is the problem?

flag

29% accept rate
As soon as you compare the final_ext to an extensions[] where they don't match it returns 0. So as long as the first extension final_ext tests against is valid it would work. Otherwise, if final_ext does not match the first extension you test against it fails. – tvanover Nov 3 at 23:12

5 Answers

vote up 3 vote down check

Try a regular expression instead

function validate(x) {
    return /.(jpg|jpeg)$/ig.test(x);
}
link|flag
I was going to say to use the split method, but in this case a regular expression does indeed make more sense :) – AntonioCS Nov 3 at 23:39
Thanks for your help guys but matt's code work on my situation – jamal Nov 4 at 0:14
vote up 1 vote down

Looks to me like it is going to compare the file extension against the first item in the list (.jpeg != .jpg) and return 0. This means it won't get a chance to try the second extension in the list.

Probably best to set a flag in the comparison and not return until all items in the extension list have been compared against the file extension.

link|flag
vote up 6 vote down

Should be

for (i = 0; i < extensions.length; i++) {
    if (extensions[i] == final_ext) {
        return 1;
    }
}
return 0;

Note also that return immediately ends the current function, so putting a break after return is pointless.

Finally, if this Javascript is running on the client-side (i.e. in a web browser) keep in mind that the user may circumvent this (e.g. by using Firebug). You may wish to do checking at the server side too.

link|flag
+1 Yup, it should be this. Better answer than mine. – Corin Nov 3 at 23:10
yep I got server side checking too... – jamal Nov 3 at 23:16
vote up 1 vote down

Your logic is wrong. This is what the loop should look like:

for (i = 0; i < extensions.length; i++) {
    if (extensions[i] == final_ext) {
        return 1;
    }
}
return 0;
link|flag
Your logic is wrong also. See my post. – Artelius Nov 3 at 23:05
Oops. Error. Fixed it. – Franz Nov 3 at 23:05
Lol. You added the return 0 statement at the end, too. Voted yours up ;) – Franz Nov 3 at 23:07
Great minds and all that ... – tvanover Nov 3 at 23:14
@tvanover: Took the words out of my mouth. – Artelius Nov 3 at 23:45
vote up 0 vote down

Try something like this:

VALID_EXT = 'jpeg jpg';
function validate(x) {
  return +(VALID_EXT.split(/\s+/).indexOf(x.replace(/^.*\./,'').toLowerCase()) >= 0)
}
validate('file.jpeg');     // 1
validate('file.jpg');      // 1
validate('file.pic.jpg');  // 1
validate('file.gif');      // 0
link|flag

Your Answer

Get an OpenID
or

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