updated acknowledgments
[openemr.git] / library / sanitize.inc.php
blobbe1f2157436476c476ff98a003e4ce3db2dc5243
1 <?php
2 /**
3 * Function to check and/or sanitize things for security such as
4 * directories names, file names, etc.
6 * Copyright (C) 2012 by following Brady Miller <brady@sparmy.com>
8 * LICENSE: This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 3
11 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
19 * @package OpenEMR
20 * @author Brady Miller <brady@sparmy.com>
21 * @author Roberto Vasquez <robertogagliotta@gmail.com>
22 * @author Shachar Zilbershlag <shaharzi@matrix.co.il>
23 * @link http://www.open-emr.org
25 // If the label contains any illegal characters, then the script will die.
26 function check_file_dir_name($label) {
27 if (empty($label) || preg_match('/[^A-Za-z0-9_.-]/', $label))
28 die(xlt("ERROR: The following variable contains invalid characters").": ". attr($label));
31 // Convert all illegal characters to _
32 function convert_safe_file_dir_name($label) {
33 return preg_replace('/[^A-Za-z0-9_.-]/','_',$label);
36 //Basename functionality for nonenglish languages (without this, basename function ommits nonenglish characters).
37 function basename_international($path){
38 $parts = preg_split('~[\\\\/]~', $path);
39 foreach ($parts as $key => $value){
40 $encoded = urlencode($value);
41 $parts[$key] = $encoded;
43 $encoded_path = implode("/", $parts);
44 $encoded_file_name = basename($encoded_path);
45 $decoded_file_name = urldecode($encoded_file_name);
47 return $decoded_file_name;