An error occurred while loading the file. Please try again.
-
Benoit Mortier authored621d135c
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011 FusionDirectory
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_tests.inc
* Source code for class tests
*/
/*!
* \brief This class provides various test functions
*
* This class provides various test functions. It enables to check
* if a given value is:
*
* - a phone numnber
* - a DNS name
* - an URL
* etc.
*
* The functions need to be handled with care, because they are not as strict
* as one might expect.
*/
class tests {
/*!
* \brief Test if the given string is a phone number
*
* \param string $nr The phone number to check
*/
public static function is_phone_nr($nr)
{
if ($nr == ""){
return (TRUE);
}
return preg_match ("/^[\/0-9 ()+*-]+$/", $nr);
}
/*!
* \brief Test if the given string contains characters allowed in a DNS record name
*
* \param string $str The DNS to check
*/
public static function is_dns_name($str)
{
return(preg_match("/^[a-z0-9\.\-_]*$/i",$str));
}
/*!
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
* \brief Test if the given string contains characters allowed in a hostname
*
* \param string $str The hostname to check
*/
public static function is_valid_hostname($str)
{
return(preg_match("/^[a-z0-9\.\-]*$/i",$str));
}
/*!
* \brief Test if the given string is an URL
*
* \param string $url The URL to check
*/
public static function is_url($url)
{
if ($url == "") {
return TRUE;
}
/* Using @stephenhay regexp from http://mathiasbynens.be/demo/url-regex (removed ftp through) */
return preg_match ("@^(https?)://[^\s/$.?#].[^\s]*$@i", $url);
}
/*!
* \brief Test if the given string is a DN
*
* \param string $dn The DN to check
*/
public static function is_dn($dn)
{
if ($dn == ""){
return (TRUE);
}
return preg_match ("/^[a-z0-9 _-]+$/i", $dn);
}
/*!
* \brief Test if the given string is an uid
*
* \param string $uid The UID to check
*/
public static function is_uid($uid)
{
if ($uid == ""){
return (TRUE);
}
/* STRICT adds spaces and case insenstivity to the uid check.
This is dangerous and should not be used. */
if (strict_uid_mode()){
return preg_match ("/^[a-z0-9_-]+$/", $uid);
} else {
return preg_match ("/^[a-z0-9 _.-]+$/i", $uid);
}
}
/*!
* \brief Test if the given string is an IPv4
*
* \param string $ip The IPv4 to check
*/
public static function is_ip($ip)
{
if(function_exists('filter_var')) {