]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/Async.php
Release 6.5.14
[Github/sugarcrm.git] / modules / Administration / Async.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  * Description:
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. All Rights
42  * Reserved. Contributor(s): ______________________________________..
43  *********************************************************************************/
44
45 require_once("include/entryPoint.php");
46
47 if (!is_admin($GLOBALS['current_user'])) {
48     sugar_die($GLOBALS['app_strings']['ERR_NOT_ADMIN']);
49 }
50
51 $json = getJSONObj();
52 $out = "";
53
54 switch($_REQUEST['adminAction']) {
55         ///////////////////////////////////////////////////////////////////////////
56         ////    REPAIRXSS
57         case "refreshEstimate":
58                 include("include/modules.php"); // provide $moduleList
59         $target = '';
60         if (!empty($_REQUEST['bean'])) {
61             $target = $_REQUEST['bean'];
62         }
63
64         $count = 0;
65                 $toRepair = array();
66                 
67                 if($target == 'all') {
68                         $hide = array('Activities', 'Home', 'iFrames', 'Calendar', 'Dashboard');
69                 
70                         sort($moduleList);
71                         $options = array();
72                         
73                         foreach($moduleList as $module) {
74                                 if(!in_array($module, $hide)) {
75                                         $options[$module] = $module;
76                                 }
77                         }
78
79                         foreach($options as $module) {
80                                 if(!isset($beanFiles[$beanList[$module]]))
81                                         continue;
82                                 
83                                 $file = $beanFiles[$beanList[$module]];
84                                 
85                                 if(!file_exists($file))
86                                         continue;
87                                         
88                                 require_once($file);
89                                 $bean = new $beanList[$module]();
90                                 
91                                 $q = "SELECT count(*) as count FROM {$bean->table_name}";
92                                 $r = $bean->db->query($q);
93                                 $a = $bean->db->fetchByAssoc($r);
94                                 
95                                 $count += $a['count'];
96                                 
97                                 // populate to_repair array
98                                 $q2 = "SELECT id FROM {$bean->table_name}";
99                                 $r2 = $bean->db->query($q2);
100                                 $ids = '';
101                                 while($a2 = $bean->db->fetchByAssoc($r2)) {
102                                         $ids[] = $a2['id'];
103                                 }
104                                 $toRepair[$module] = $ids;
105                         }
106                 } elseif(in_array($target, $moduleList)) {
107                         require_once($beanFiles[$beanList[$target]]);
108                         $bean = new $beanList[$target]();
109                         $q = "SELECT count(*) as count FROM {$bean->table_name}";
110                         $r = $bean->db->query($q);
111                         $a = $bean->db->fetchByAssoc($r);
112                         
113                         $count += $a['count'];
114                         
115                         // populate to_repair array
116                         $q2 = "SELECT id FROM {$bean->table_name}";
117                         $r2 = $bean->db->query($q2);
118                         $ids = '';
119                         while($a2 = $bean->db->fetchByAssoc($r2)) {
120                                 $ids[] = $a2['id'];
121                         }
122                         $toRepair[$target] = $ids;
123                 }
124                 
125                 $out = array('count' => $count, 'target' => $target, 'toRepair' => $toRepair);
126         break;
127         
128         case "repairXssExecute":
129                 if(isset($_REQUEST['bean']) && !empty($_REQUEST['bean']) && isset($_REQUEST['id']) && !empty($_REQUEST['id'])) {
130                         include("include/modules.php"); // provide $moduleList
131                         $target = $_REQUEST['bean'];
132                         require_once($beanFiles[$beanList[$target]]);
133                         
134                         $ids = $json->decode(from_html($_REQUEST['id']));
135                         $count = 0;
136                         foreach($ids as $id) {
137                                 if(!empty($id)) {
138                                         $bean = new $beanList[$target]();
139                                         $bean->retrieve($id,true,false);
140                                         $bean->new_with_id = false;
141                                         $bean->save(); // cleanBean() is called on save()
142                                         $count++;
143                                 }
144                         }
145                         
146                         $out = array('msg' => "success", 'count' => $count);
147                 } else {
148                         $out = array('msg' => "failure: bean or ID not defined");
149                 }
150         break;
151         ////    END REPAIRXSS
152         ///////////////////////////////////////////////////////////////////////////
153         
154         default:
155                 die();
156         break;  
157 }
158
159 $ret = $json->encode($out, true);
160 echo $ret;