]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/dir_inc.php
Release 6.2.0
[Github/sugarcrm.git] / include / dir_inc.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40 function copy_recursive( $source, $dest ){
41
42
43     if( is_file( $source ) ){
44         return( copy( $source, $dest ) );
45     }
46     if( !sugar_is_dir($dest, 'instance') ){
47         sugar_mkdir( $dest );
48     }
49
50     $status = true;
51
52     $d = dir( $source );
53     if($d === false) {
54         return false;
55     }
56     while(false !== ($f = $d->read())) {
57         if( $f == "." || $f == ".." ) {
58             continue;
59         }
60         $status &= copy_recursive( "$source/$f", "$dest/$f" );
61     }
62     $d->close();
63     return( $status );
64 }
65
66 function mkdir_recursive($path, $check_is_parent_dir = false) {
67         if(sugar_is_dir($path, 'instance')) {
68                 return(true);
69         }
70         if(sugar_is_file($path, 'instance')) {
71                 print("ERROR: mkdir_recursive(): argument $path is already a file.\n");
72                 return false;
73         }
74
75         $path = clean_path($path);
76         $path = str_replace(clean_path(getcwd()), '', $path);
77         $thePath = '';
78         $dirStructure = explode("/", $path);
79         $status = true;
80         foreach($dirStructure as $dirPath) {
81                 $thePath .= '/'.$dirPath;
82                 $mkPath = getcwd().'/'.$thePath;
83
84                 if(!is_dir($mkPath )) {
85                         $status = $status & sugar_mkdir($mkPath);
86                 }
87         }
88         return $status;
89
90 }
91
92 function rmdir_recursive( $path ){
93     if( is_file( $path ) ){
94         return( unlink( $path ) );
95     }
96     if( !is_dir( $path ) ){
97         $GLOBALS['log']->error( "ERROR: rmdir_recursive(): argument $path is not a file or a dir.\n" );
98         return( false );
99     }
100
101     $status = true;
102
103     $d = dir( $path );
104     while( $f = $d->read() ){
105         if( $f == "." || $f == ".." ){
106             continue;
107         }
108         $status &= rmdir_recursive( "$path/$f" );
109     }
110     $d->close();
111     rmdir( $path );
112     return( $status );
113 }
114
115 function findTextFiles( $the_dir, $the_array ){
116     if(!is_dir($the_dir)) {
117                 return $the_array;
118         }
119         $d = dir($the_dir);
120     while (false !== ($f = $d->read())) {
121         if( $f == "." || $f == ".." ){
122             continue;
123         }
124         if( is_dir( "$the_dir/$f" ) ){
125             // i think depth first is ok, given our cvs repo structure -Bob.
126             $the_array = findTextFiles( "$the_dir/$f", $the_array );
127         }
128         else {
129             switch( mime_content_type( "$the_dir/$f" ) ){
130                 // we take action on these cases
131                 case "text/html":
132                 case "text/plain":
133                     array_push( $the_array, "$the_dir/$f" );
134                     break;
135                 // we consciously skip these types
136                 case "application/pdf":
137                 case "application/x-zip":
138                 case "image/gif":
139                 case "image/jpeg":
140                 case "image/png":
141                 case "text/rtf":
142                     break;
143                 default:
144                     debug( "no type handler for $the_dir/$f with mime_content_type: " . mime_content_type( "$the_dir/$f" ) . "\n" );
145             }
146         }
147     }
148     return( $the_array );
149 }
150
151 function findAllFiles( $the_dir, $the_array, $include_dirs=false, $ext='', $exclude_dir=''){
152         // jchi  #24296
153         if(!empty($exclude_dir)){
154                 $exclude_dir = is_array($exclude_dir)?$exclude_dir:array($exclude_dir);
155                 foreach($exclude_dir as $ex_dir){
156                         if($the_dir == $ex_dir){
157                                   return $the_array;
158                         }
159                 }
160         }
161         //end
162     if(!is_dir($the_dir)) {
163                 return $the_array;
164         }
165         $d = dir($the_dir);
166     while (false !== ($f = $d->read())) {
167         if( $f == "." || $f == ".." ){
168             continue;
169         }
170
171         if( is_dir( "$the_dir/$f" ) ) {
172                         // jchi  #24296
173                         if(!empty($exclude_dir)){
174                                 //loop through array to compare directories..
175                                 foreach($exclude_dir as $ex_dir){
176                                         if("$the_dir/$f" == $ex_dir){
177                                                   continue 2;
178                                         }
179                                 }
180                         }
181                         //end
182
183                         if($include_dirs) {
184                                 $the_array[] = clean_path("$the_dir/$f");
185                         }
186             $the_array = findAllFiles( "$the_dir/$f/", $the_array, $include_dirs, $ext);
187         } else {
188                         if(empty($ext) || preg_match('/'.$ext.'$/i', $f)){
189                                 $the_array[] = clean_path("$the_dir/$f");
190                         }
191         }
192
193
194     }
195     rsort($the_array);
196     return $the_array;
197 }
198
199 function findAllFilesRelative( $the_dir, $the_array ){
200     if(!is_dir($the_dir)) {
201                 return $the_array;
202         }
203     $original_dir   = getCwd();
204     if(is_dir($the_dir)){
205         chdir( $the_dir );
206         $the_array = findAllFiles( ".", $the_array );
207         if(is_dir($original_dir)){
208                 chdir( $original_dir );
209         }
210     }
211     return( $the_array );
212 }
213
214 /*
215  * Obtain an array of files that have been modified after the $date_modified
216  *
217  * @param the_dir                       the directory to begin the search
218  * @param the_array                     array to hold the results
219  * @param date_modified         the date to use when searching for files that have
220  *                                                      been modified
221  * @param filter                        optional regular expression filter
222  *
223  * return                                       an array containing all of the files that have been
224  *                                                      modified since date_modified
225  */
226 function findAllTouchedFiles( $the_dir, $the_array, $date_modified, $filter=''){
227     if(!is_dir($the_dir)) {
228                 return $the_array;
229         }
230         $d = dir($the_dir);
231     while (false !== ($f = $d->read())) {
232         if( $f == "." || $f == ".." ){
233             continue;
234         }
235         if( is_dir( "$the_dir/$f" ) ){
236             // i think depth first is ok, given our cvs repo structure -Bob.
237             $the_array = findAllTouchedFiles( "$the_dir/$f", $the_array, $date_modified, $filter);
238         }
239         else {
240                 $file_date = date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s', filemtime("$the_dir/$f"))) - date('Z'));
241
242                 if(strtotime($file_date) > strtotime($date_modified) && (empty($filter) || preg_match($filter, $f))){
243                          array_push( $the_array, "$the_dir/$f");
244                 }
245         }
246     }
247     return $the_array;
248 }