]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/RepairUploadFolder.php
Release 6.5.15
[Github/sugarcrm.git] / modules / Administration / RepairUploadFolder.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-2013 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  * @var DirectoryIterator $node
41  * @var User $current_user
42  * @var SugarBean $bean
43  * @var DBManager $db
44  */
45 global $beanList, $current_user, $db, $mod_strings;
46 $validBeans = array();
47 if (!is_admin($current_user)) {
48     sugar_die($GLOBALS['app_strings']['ERR_NOT_ADMIN']);
49 }
50 set_time_limit(3600);
51
52 foreach ($beanList as $moduleName => $className) {
53     $bean = BeanFactory::getBean($moduleName);
54     if (!($bean instanceof SugarBean)) {
55         continue;
56     }
57     if (!$bean->haveFiles()) {
58         continue;
59     }
60
61     $validBeans[] = $bean;
62 }
63
64 echo '<pre>';
65 $directory = new DirectoryIterator('upload://');
66 $stat = array(
67     'total' => 0,
68     'removed' => 0
69 );
70 foreach ($directory as $node) {
71     if (!$node->isFile()) {
72         continue;
73     }
74     if (!is_guid($node->getFilename())) {
75         continue;
76     }
77     $stat['total'] ++;
78
79     $row = false;
80     foreach ($validBeans as $bean) {
81         $filter = array('deleted');
82         $where = array();
83         foreach ($bean->getFilesFields() as $fieldName) {
84             $where[] = $fieldName . '=' . $db->quoted($node->getFilename());
85             $filter[] = $fieldName;
86         }
87         $where = '(' . implode(' OR ', $where) . ')';
88
89         $row = $db->fetchOne($bean->create_new_list_query('', $where, $filter, array(), 0));
90         if (!empty($row)) {
91             break;
92         }
93         $row = $db->fetchOne($bean->create_new_list_query('', $where, $filter, array(), 1));
94         if (!empty($row)) {
95             break;
96         }
97     }
98
99     if ($row == false) {
100         if (unlink('upload://' . $node->getFilename())) {
101             $stat['removed'] ++;
102         }
103     } elseif ($row['deleted'] == 1) {
104         $bean->populateFromRow($row);
105         if ($bean->deleteFiles()) {
106             $stat['removed'] ++;
107         }
108     }
109
110     echo '.';
111     if ($stat['total'] % 100 == 0) {
112         echo '<br>';
113         ob_flush();
114         flush();
115     }
116 }
117 echo '</pre>';
118
119 echo $mod_strings['LBL_TOTAL_FILES'] . ': ' . $stat['total'] . '<br>';
120 echo $mod_strings['LBL_REMOVED_FILES'] . ': ' . $stat['removed'] . '<br>';