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) * todo: Make this work with a more robust object than $Tor->file_list() */ public function ParseExtensions($FileList, $FileTypes) { # Make $Tor->file_list() output manageable $UnNested = array_values($FileList[1]); /* $Sorted = usort($UnNested, function ($a, $b) { return $b[0] <=> $a[0]; }); */ $TopTen = array_slice($UnNested, 0, 10); # Good $Result = []; print_r('
');
        var_dump($TopTen);
        print_r('
'); foreach ($TopTen as $TopTen) { $Extensions = explode('.', strtolower($TopTen[1])); $Result = array_filter($Extensions, function ($a) { foreach ($FileTypes as $FileType) { in_array($a, $FileType); } }); /* foreach ($FileTypes as $Key => $FileTypes) { print_r('
');

            var_dump($UnNested);
            var_dump( $FileTypes[$Key]);
            print_r('
'); } */ } /* foreach ($TopTen as $TopTen) { $Extensions = explode('.', strtolower($TopTen[1])); #foreach ($FileTypes as $Key => $FileTypes) { print_r('
');
                #$Result = (in_array($Extensions, $FileTypes)) ? $FileTypes[$Key] : false;
                var_dump($Extensions);
                var_dump(array_intersect($Extensions, $FileTypes));
                print_r('
'); #} print_r('
');
            //var_dump(array_intersect($Extensions, $FileTypes));
            //var_dump($Extensions);
            print_r('
'); } */ print_r('
');
        #var_dump(array_intersect($UnNested, $FileTypes));
        #print_r($Sorted);
        print_r($Result);
        print_r('
'); /* while ($Result === false) { foreach ($UnNested as $Key => $UnNested) { $Exploded = explode('.', strtolower($UnNested[1])); foreach ($Needles as $Key => $Needle) { $ID = array_search($Exploded, $Needle); var_dump($Needle[$ID]); } $dump = array_filter($Exploded, function($s){ foreach ($Needles as $Type => $Extension) { return array_search($s, $Extension); } }); #var_dump($dump); /* if (array_search($Needle, $Exploded, true)) { $Result = $Needles; #break; } } } */ #var_dump($Result); /* #do { foreach ($UnNested as $UnNested) { $Exploded = explode('.', strtolower($UnNested[1])); #var_dump(in_array(vals($names), $Explode)); } /* if (array_intersect($names, $Exploded)) { $result = array_search($Exploded, $names); } * } #} while ($result !== false); print_r($result); */ } public function GenerateJS($FormID) { /* $ReturnJS = "\r\n"; return $ReturnJS; */ } }