Fields[$FieldName]['Type'] = strtolower($FieldType); $this->Fields[$FieldName]['Required'] = $Required; $this->Fields[$FieldName]['ErrorMessage'] = $ErrorMessage; if (!empty($Options['maxlength'])) { $this->Fields[$FieldName]['MaxLength'] = $Options['maxlength']; } if (!empty($Options['minlength'])) { $this->Fields[$FieldName]['MinLength'] = $Options['minlength']; } if (!empty($Options['comparefield'])) { $this->Fields[$FieldName]['CompareField'] = $Options['comparefield']; } if (!empty($Options['allowperiod'])) { $this->Fields[$FieldName]['AllowPeriod'] = $Options['allowperiod']; } if (!empty($Options['allowcomma'])) { $this->Fields[$FieldName]['AllowComma'] = $Options['allowcomma']; } if (!empty($Options['inarray'])) { $this->Fields[$FieldName]['InArray'] = $Options['inarray']; } if (!empty($Options['regex'])) { $this->Fields[$FieldName]['Regex'] = $Options['regex']; } } public function ValidateForm($ValidateArray) { reset($this->Fields); foreach ($this->Fields as $FieldKey => $Field) { $ValidateVar = $ValidateArray[$FieldKey]; # todo: Change this to a switch statement if ($ValidateVar !== '' || !empty($Field['Required']) || $Field['Type'] === 'date') { if ($Field['Type'] === 'string') { if (isset($Field['MaxLength'])) { $MaxLength = $Field['MaxLength']; } else { $MaxLength = 255; } if (isset($Field['MinLength'])) { $MinLength = $Field['MinLength']; } else { $MinLength = 1; } if (strlen($ValidateVar) > $MaxLength) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) < $MinLength) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'number') { if (isset($Field['MaxLength'])) { $MaxLength = $Field['MaxLength']; } else { $MaxLength = ''; } if (isset($Field['MinLength'])) { $MinLength = $Field['MinLength']; } else { $MinLength = 0; } $Match = '0-9'; if (isset($Field['AllowPeriod'])) { $Match .= '.'; } if (isset($Field['AllowComma'])) { $Match .= ','; } if (preg_match('/[^'.$Match.']/', $ValidateVar) || strlen($ValidateVar) < 1) { return $Field['ErrorMessage']; } elseif ($MaxLength !== '' && $ValidateVar > $MaxLength) { return $Field['ErrorMessage'].'!!'; } elseif ($ValidateVar < $MinLength) { return $Field['ErrorMessage']."$MinLength"; } } elseif ($Field['Type'] === 'email') { if (isset($Field['MaxLength'])) { $MaxLength = $Field['MaxLength']; } else { $MaxLength = 255; } if (isset($Field['MinLength'])) { $MinLength = $Field['MinLength']; } else { $MinLength = 6; } if (!preg_match("/^".EMAIL_REGEX."$/i", $ValidateVar)) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) > $MaxLength) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) < $MinLength) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'link') { if (isset($Field['MaxLength'])) { $MaxLength = $Field['MaxLength']; } else { $MaxLength = 255; } if (isset($Field['MinLength'])) { $MinLength = $Field['MinLength']; } else { $MinLength = 10; } if (!preg_match('/^'.URL_REGEX.'$/i', $ValidateVar)) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) > $MaxLength) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) < $MinLength) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'username') { if (isset($Field['MaxLength'])) { $MaxLength = $Field['MaxLength']; } else { $MaxLength = 20; } if (isset($Field['MinLength'])) { $MinLength = $Field['MinLength']; } else { $MinLength = 1; } if (!preg_match(USERNAME_REGEX, $ValidateVar)) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) > $MaxLength) { return $Field['ErrorMessage']; } elseif (strlen($ValidateVar) < $MinLength) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'checkbox') { if (!isset($ValidateArray[$FieldKey])) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'compare') { if ($ValidateArray[$Field['CompareField']] !== $ValidateVar) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'inarray') { if (array_search($ValidateVar, $Field['InArray']) === false) { return $Field['ErrorMessage']; } } elseif ($Field['Type'] === 'regex') { if (!preg_match($Field['Regex'], $ValidateVar)) { return $Field['ErrorMessage']; } } } } // while } // function /** * Extension Parser * * Takes an associative array of file types and extension, e.g., * $Archives = [ * '7z' => ['7z'], * 'bzip2' => ['bz2', 'bzip2'], * 'gzip' => ['gz', 'gzip', 'tgz', 'tpz'], * ... * ]; * * Then it finds all the extensions in a torrent file list, * organizes them by file size, and returns the "heaviest" match. * * That way, you can have, e.g., 5 GiB FASTQ sequence data in one file, * and 100 other small files, and get the format of the actual data. * * todo: Incorporate into the main function (remove if statements first) */ public function ParseExtensions($FileList, $Category, $FileTypes) { # Make $Tor->file_list() output manageable $UnNested = array_values($FileList[1]); $Sorted = (usort($UnNested, function ($a, $b) { return $b <=> $a; # Workaround because ↑ returns true }) === true) ? array_values($UnNested) : null; # Harvest the wheat $TopTen = array_slice($Sorted, 0, 10); $Result = []; foreach ($TopTen as $TopTen) { # How many extensions to keep $Extensions = array_slice(explode('.', strtolower($TopTen[1])), -2, 2); print_r('
'); var_dump($FileTypes); print_r(''); $Result = array_filter($Extensions, function ($a) { foreach ($FileTypes as $FileType) { in_array($a, $FileType); } }); /* foreach ($FileTypes as $k => $FileType) { var_dump(array_intersect($Extensions, $FileTypes)); } */ } print_r('
'); print_r('===== RESULTS ====='); print_r($Result); print_r(''); # To be continued } public function GenerateJS($FormID) { /* $ReturnJS = "\r\n"; return $ReturnJS; */ } }