HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/classes/formvalidate.php
<?php

class PeepSoFormValidate
{
	private $_error_message = '';

	protected $_error_messages = array();

	public $options = array();
	public $type = NULL;
	public $param = NULL;

	public function __construct($type, $options = array())
	{
		// Set default args
		$this->options = array_merge(
			array (
				'error_message' => '', // Custom error message for this validator, perhaps we should enable creation of custom validation classes
				'function' => null // callback function to be used for custom validation
			),
			$options
		);

		// Set message per type
		$this->_error_messages = array(
			'required' => __('This field is required.', 'peepso-core'),
			'numeric' => __('This field must be a number.', 'peepso-core'),
			'email' => __('This field must be an email.', 'peepso-core'),
			'alphanumeric' => __('This field only accepts alphanumeric characters.', 'peepso-core'),
			'alpha' => __('This field only accepts alpha letters.', 'peepso-core'),
			'name' => __('This field only accepts alpha letters, spaces, dashes(-), and apostrophes(\').', 'peepso-core'),
			'name-utf8' => __('This field accepts all letters and numbers except for HTML code.', 'peepso-core'),
			'username' => __('This field only accepts alpha letters, numbers, dashes(-), and underscores(_), or email addresses.', 'peepso-core'),
			'past' => __('Please enter a date in the past.', 'peepso-core'),
			'maxlen' => __('This field is too long, maximum length: %d.', 'peepso-core'),
			'minlen' => __('This field is too short, minimum length: %d.', 'peepso-core'),
			'website' => __('This field must be a valid website.', 'peepso-core'),
			'date' => __('This field must be a valid date.', 'peepso-core'),
			'positive' => __('This field must be positive.', 'peepso-core'),
			'int' => __('This field must an integer.', 'peepso-core'),
			'maxval' => __('This field value should be no more than %d.', 'peepso-core'),
			'minval' => __('This field value should be at least %d.', 'peepso-core'),
			'password' => sprintf(__('Password must be at least <b>%d characters</b>.', 'peepso-core'), PeepSo::get_option('minimum_password_length', 10)),
			'password_lowercase' => sprintf(
				__('Password must contain %s.', 'peepso-core'),
				'<b>' . sprintf(
					_n('%d lowercase letter', '%d lowercase letters', $count = intval(PeepSo::get_option('password_strength_lowercase')), 'peepso-core'),
					$count
				) . '</b>'
			),
			'password_uppercase' => sprintf(
				__('Password must contain %s.', 'peepso-core'),
				'<b>' . sprintf(
					_n('%d uppercase letter', '%d uppercase letters', $count = intval(PeepSo::get_option('password_strength_uppercase')), 'peepso-core'),
					$count
				) . '</b>'
			),
			'password_number' => sprintf(
				__('Password must contain %s.', 'peepso-core'),
				'<b>' . sprintf(
					_n('%d number', '%d numbers', $count = intval(PeepSo::get_option('password_strength_number')), 'peepso-core'),
					$count
				) . '</b>'
			),
			'password_special' => sprintf(
				__('Password must contain %s.', 'peepso-core'),
				'<b>' . sprintf(
					_n('%d special character', '%d special characters', $count = intval(PeepSo::get_option('password_strength_special')), 'peepso-core'),
					$count
				) . '</b>'
			),

			'custom' => $this->options['error_message']
		);

		if (FALSE !== strpos($type, ':'))
			list($this->type, $this->param) = explode(':', $type, 2);
		else
			$this->type = $type;
	}

	/**
	 * Validate value based on type
	 * @param  mixed $value The value to be validated
	 * @return boolean
	 */
	public function validate(&$value)
	{
		switch ($this->type)
		{
		case 'positive':
			return ($value > 0 ? TRUE : FALSE);
		case 'int':
			return (ctype_digit($value));
		case 'required':
			return (isset($value) && '' !== trim($value));
		case 'numeric':
			return (is_numeric($value));
		case 'email':
			if (empty($value))
				return (TRUE);
			return (is_email($value));
		case 'alphanumeric':
			$comp = str_replace('_', '', $value);
			return (empty($comp) ? TRUE : ctype_alnum($comp));
		case 'alpha':
			$comp = str_replace(' ', '', $value); // allow spaces
			return (empty($comp) ? TRUE : ctype_alpha($comp));
		case 'name':
			$comp = str_replace(array(' ', '-', '\''), '', $value); // allow spaces, dash and apostrophe
			return (empty($comp) ? TRUE : ctype_alpha($comp));
		case 'username':
			$comp = str_replace(array('-', '_','.','@'), '', $value); // allow dash, underscore and emails
			return (empty($comp) ? TRUE : ctype_alnum($comp));
		case 'name-utf8':
			$value = strip_tags(html_entity_decode($value));
			return (strlen($value) ? TRUE : FALSE);
		case 'maxlen':
			return (strlen($value) <= intval($this->param) ? TRUE : FALSE);
		case 'minlen':
			return (strlen($value) >= intval($this->param) ? TRUE : FALSE);
		case 'maxval':
			return (($value <= $this->param) ? TRUE : FALSE);
		case 'minval':
			return (($value >= $this->param) ? TRUE : FALSE);
		case 'past':
			return (strtotime($value) < time());
		case 'website':
			$v = trim($value);
			if (empty($v)) // accept empty values?
				return (TRUE);

			if (FALSE === strpos($value, '://'))
			    $value = 'http://' . $value;

			return (filter_var($value, FILTER_VALIDATE_URL));
		case 'date':
			$d = new PeepSoDate($value);
    		return ($d && $d->ToString('Y-m-d') == $value);
    	case 'password':
    		$v = trim($value);
    		if (empty($v)) return (TRUE);

    		return (strlen($value) >= intval(PeepSo::get_option('minimum_password_length', 10)) ? TRUE : FALSE);
		case 'password_lowercase':
			if(empty($value)) return (TRUE);
			$mincount = intval(PeepSo::get_option('password_strength_lowercase'));
			preg_match_all('/[a-z]/', $value, $matches);
			return (count($matches[0]) >= $mincount);
		case 'password_uppercase':
			if(empty($value)) return (TRUE);
			$mincount = intval(PeepSo::get_option('password_strength_uppercase'));
			preg_match_all('/[A-Z]/', $value, $matches);
			return (count($matches[0]) >= $mincount);
		case 'password_number':
			if(empty($value)) return (TRUE);
			$mincount = intval(PeepSo::get_option('password_strength_number'));
			preg_match_all('/[0-9]/', $value, $matches);
			return (count($matches[0]) >= $mincount);
		case 'password_special':
			if(empty($value)) return (TRUE);
			$mincount = intval(PeepSo::get_option('password_strength_special'));
			preg_match_all('/[^a-zA-Z0-9]/', $value, $matches);
			return (count($matches[0]) >= $mincount);
		case 'custom':
			if (!isset($this->options['error_message']))
				throw new Exception(esc_html(__('Error message must be set for custom validation', 'peepso-core')), 1);
			else
				return (call_user_func_array($this->options['function'], array($value)));
			break;
		default:
			return (TRUE);
			break;
		}
	}

	/**
	 * Return error messages from validation
	 * @return array
	 */
	public function get_error_message()
	{
		if (NULL !== $this->param)
			return (sprintf($this->_error_messages[$this->type], $this->param));
		return $this->_error_messages[$this->type];
	}
}

// EOF