]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - service/v3_1/SugarWebServiceImplv3_1.php
Release 6.5.10
[Github/sugarcrm.git] / service / v3_1 / SugarWebServiceImplv3_1.php
1 <?php
2 if(!defined('sugarEntry'))define('sugarEntry', true);
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  * This class is an implemenatation class for all the rest services
41  */
42 require_once('service/v3/SugarWebServiceImplv3.php');
43 require_once('SugarWebServiceUtilv3_1.php');
44
45
46 class SugarWebServiceImplv3_1 extends SugarWebServiceImplv3 {
47
48     public function __construct()
49     {
50         self::$helperObject = new SugarWebServiceUtilv3_1();
51     }
52
53    /**
54     * Retrieve a single SugarBean based on ID.
55     *
56     * @param String $session -- Session ID returned by a previous call to login.
57     * @param String $module_name -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
58     * @param String $id -- The SugarBean's ID value.
59     * @param Array  $select_fields -- A list of the fields to be included in the results. This optional parameter allows for only needed fields to be retrieved.
60     * @param Array $link_name_to_fields_array -- A list of link_names and for each link_name, what fields value to be returned. For ex.'link_name_to_fields_array' => array(array('name' =>  'email_addresses', 'value' => array('id', 'email_address', 'opt_out', 'primary_address')))
61     * @param bool $trackView -- Should we track the record accessed.
62     * @return Array
63     *        'entry_list' -- Array - The records name value pair for the simple data types excluding link field data.
64     *        'relationship_list' -- Array - The records link field data. The example is if asked about accounts email address then return data would look like Array ( [0] => Array ( [name] => email_addresses [records] => Array ( [0] => Array ( [0] => Array ( [name] => id [value] => 3fb16797-8d90-0a94-ac12-490b63a6be67 ) [1] => Array ( [name] => email_address [value] => hr.kid.qa@example.com ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 1 ) ) [1] => Array ( [0] => Array ( [name] => id [value] => 403f8da1-214b-6a88-9cef-490b63d43566 ) [1] => Array ( [name] => email_address [value] => kid.hr@example.name ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 0 ) ) ) ) )
65     * @exception 'SoapFault' -- The SOAP error, if any
66     */
67     function get_entry($session, $module_name, $id,$select_fields, $link_name_to_fields_array,$track_view = FALSE)
68     {
69         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_entry');
70         return self::get_entries($session, $module_name, array($id), $select_fields, $link_name_to_fields_array, $track_view);
71         $GLOBALS['log']->info('end: SugarWebServiceImpl->get_entry');
72     }
73
74     /**
75      * Retrieve the md5 hash of the vardef entries for a particular module.
76      *
77      * @param String $session -- Session ID returned by a previous call to login.
78      * @param String $module_name -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
79      * @return String The md5 hash of the vardef definition.
80      * @exception 'SoapFault' -- The SOAP error, if any
81      */
82     function get_module_fields_md5($session, $module_name){
83
84         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_module_fields_md5(v3_1) for module: '. print_r($module_name, true));
85
86         $results = array();
87         if( is_array($module_name) )
88         {
89             foreach ($module_name as $module)
90                 $results[$module] = md5(serialize(self::get_module_fields($session, $module)));
91         }
92         else
93             $results[$module_name] = md5(serialize(self::get_module_fields($session, $module_name)));
94
95         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_fields_md5 (v3_1) for module: ' . print_r($module_name, true));
96
97         return $results;
98     }
99
100     /**
101      * Retrieve the md5 hash of a layout metadata for a given module given a specific type and view.
102      *
103      * @param String $session -- Session ID returned by a previous call to login.
104      * @param array $module_name(s) -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
105      * @return array $type(s) The type of view requested.  Current supported types are 'default' (for application) and 'wireless'
106      * @return array $view(s) The view requested.  Current supported types are edit, detail, and list.
107      * @exception 'SoapFault' -- The SOAP error, if any
108      */
109     function get_module_layout_md5($session, $module_name, $type, $view, $acl_check = TRUE){
110         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_module_layout_md5');
111         $results = self::get_module_layout($session, $module_name, $type, $view, $acl_check, TRUE);
112             return array('md5'=> $results);
113         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_layout_md5');
114     }
115
116
117     /**
118     * Retrieve a list of SugarBean's based on provided IDs. This API will not wotk with report module
119     *
120     * @param String $session -- Session ID returned by a previous call to login.
121     * @param String $module_name -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
122     * @param Array $ids -- An array of SugarBean IDs.
123     * @param Array $select_fields -- A list of the fields to be included in the results. This optional parameter allows for only needed fields to be retrieved.
124     * @param Array $link_name_to_fields_array -- A list of link_names and for each link_name, what fields value to be returned. For ex.'link_name_to_fields_array' => array(array('name' =>  'email_addresses', 'value' => array('id', 'email_address', 'opt_out', 'primary_address')))
125     * @param bool $trackView -- Should we track the record accessed.
126     * @return Array
127     *        'entry_list' -- Array - The records name value pair for the simple data types excluding link field data.
128     *        'relationship_list' -- Array - The records link field data. The example is if asked about accounts email address then return data would look like Array ( [0] => Array ( [name] => email_addresses [records] => Array ( [0] => Array ( [0] => Array ( [name] => id [value] => 3fb16797-8d90-0a94-ac12-490b63a6be67 ) [1] => Array ( [name] => email_address [value] => hr.kid.qa@example.com ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 1 ) ) [1] => Array ( [0] => Array ( [name] => id [value] => 403f8da1-214b-6a88-9cef-490b63d43566 ) [1] => Array ( [name] => email_address [value] => kid.hr@example.name ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 0 ) ) ) ) )
129     * @exception 'SoapFault' -- The SOAP error, if any
130     */
131     function get_entries($session, $module_name, $ids, $select_fields, $link_name_to_fields_array, $track_view = FALSE)
132     {
133         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_entries');
134         global  $beanList, $beanFiles;
135         $error = new SoapError();
136
137         $linkoutput_list = array();
138         $output_list = array();
139         $using_cp = false;
140         if($module_name == 'CampaignProspects')
141         {
142             $module_name = 'Prospects';
143             $using_cp = true;
144         }
145         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'read', 'no_access', $error))
146         {
147             $GLOBALS['log']->info('No Access: SugarWebServiceImpl->get_entries');
148             return;
149         } // if
150
151         $class_name = $beanList[$module_name];
152         require_once($beanFiles[$class_name]);
153
154         $temp = new $class_name();
155         foreach($ids as $id)
156         {
157             $seed = @clone($temp);
158             if($using_cp)
159                 $seed = $seed->retrieveTarget($id);
160             else
161             {
162                 if ($seed->retrieve($id) == null)
163                     $seed->deleted = 1;
164             }
165
166             if ($seed->deleted == 1)
167             {
168                 $list = array();
169                 $list[] = array('name'=>'warning', 'value'=>'Access to this object is denied since it has been deleted or does not exist');
170                 $list[] = array('name'=>'deleted', 'value'=>'1');
171                 $output_list[] = Array('id'=>$id,'module_name'=> $module_name,'name_value_list'=>$list,);
172                 continue;
173             }
174             if (!self::$helperObject->checkACLAccess($seed, 'DetailView', $error, 'no_access'))
175             {
176                 return;
177             }
178             $output_list[] = self::$helperObject->get_return_value_for_fields($seed, $module_name, $select_fields);
179             if (!empty($link_name_to_fields_array))
180             {
181                 $linkoutput_list[] = self::$helperObject->get_return_value_for_link_fields($seed, $module_name, $link_name_to_fields_array);
182             }
183
184             $GLOBALS['log']->info('Should we track view: ' . $track_view);
185             if($track_view)
186             {
187                 self::$helperObject->trackView($seed, 'detailview');
188             }
189         }
190
191         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entries');
192         return array('entry_list'=>$output_list, 'relationship_list' => $linkoutput_list);
193     }
194
195     /**
196      * Update or create a single SugarBean.
197      *
198      * @param String $session -- Session ID returned by a previous call to login.
199      * @param String $module_name -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
200      * @param Array $name_value_list -- The keys of the array are the SugarBean attributes, the values of the array are the values the attributes should have.
201      * @param Bool $track_view -- Should the tracker be notified that the action was performed on the bean.
202      * @return Array    'id' -- the ID of the bean that was written to (-1 on error)
203      * @exception 'SoapFault' -- The SOAP error, if any
204      */
205     function set_entry($session,$module_name, $name_value_list, $track_view = FALSE){
206         global  $beanList, $beanFiles, $current_user;
207
208         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->set_entry');
209         if (self::$helperObject->isLogLevelDebug()) {
210             $GLOBALS['log']->debug('SoapHelperWebServices->set_entry - input data is ' . var_export($name_value_list, true));
211         } // if
212         $error = new SoapError();
213         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'write', 'no_access', $error)) {
214             $GLOBALS['log']->info('End: SugarWebServiceImpl->set_entry');
215             return;
216         } // if
217         $class_name = $beanList[$module_name];
218         require_once($beanFiles[$class_name]);
219         $seed = new $class_name();
220         foreach($name_value_list as $name=>$value){
221             if(is_array($value) &&  $value['name'] == 'id'){
222                 $seed->retrieve($value['value']);
223                 break;
224             }else if($name === 'id' ){
225
226                 $seed->retrieve($value);
227             }
228         }
229
230         $return_fields = array();
231         foreach($name_value_list as $name=>$value){
232             if($module_name == 'Users' && !empty($seed->id) && ($seed->id != $current_user->id) && $name == 'user_hash'){
233                 continue;
234             }
235             if(!empty($seed->field_name_map[$name]['sensitive'])) {
236                     continue;
237             }
238
239             if(!is_array($value)){
240                 $seed->$name = $value;
241                 $return_fields[] = $name;
242             }else{
243                 $seed->$value['name'] = $value['value'];
244                 $return_fields[] = $value['name'];
245             }
246         }
247         if (!self::$helperObject->checkACLAccess($seed, 'Save', $error, 'no_access') || ($seed->deleted == 1  && !self::$helperObject->checkACLAccess($seed, 'Delete', $error, 'no_access'))) {
248             $GLOBALS['log']->info('End: SugarWebServiceImpl->set_entry');
249             return;
250         } // if
251
252         $seed->save(self::$helperObject->checkSaveOnNotify());
253
254         $return_entry_list = self::$helperObject->get_name_value_list_for_fields($seed, $return_fields );
255
256         if($seed->deleted == 1){
257             $seed->mark_deleted($seed->id);
258         }
259
260         if($track_view){
261             self::$helperObject->trackView($seed, 'editview');
262         }
263
264         $GLOBALS['log']->info('End: SugarWebServiceImpl->set_entry');
265         return array('id'=>$seed->id, 'entry_list' => $return_entry_list);
266     } // fn
267
268
269     /**
270      * Log the user into the application
271      *
272      * @param UserAuth array $user_auth -- Set user_name and password (password needs to be
273      *      in the right encoding for the type of authentication the user is setup for.  For Base
274      *      sugar validation, password is the MD5 sum of the plain text password.
275      * @param String $application -- The name of the application you are logging in from.  (Currently unused).
276      * @param array $name_value_list -- Array of name value pair of extra parameters. As of today only 'language' and 'notifyonsave' is supported
277      * @return Array - id - String id is the session_id of the session that was created.
278      *                           - module_name - String - module name of user
279      *                           - name_value_list - Array - The name value pair of user_id, user_name, user_language, user_currency_id, user_currency_name,
280      *                                         - user_default_team_id, user_is_admin, user_default_dateformat, user_default_timeformat
281      * @exception 'SoapFault' -- The SOAP error, if any
282      */
283     public function login($user_auth, $application, $name_value_list = array()){
284         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->login');
285         global $sugar_config, $system_config;
286         $error = new SoapError();
287         $user = new User();
288         $success = false;
289         //rrs
290         $system_config = new Administration();
291         $system_config->retrieveSettings('system');
292         $authController = new AuthenticationController((!empty($sugar_config['authenticationClass'])? $sugar_config['authenticationClass'] : 'SugarAuthenticate'));
293         //rrs
294         if(!empty($user_auth['encryption']) && $user_auth['encryption'] === 'PLAIN' && $authController->authController->userAuthenticateClass != "LDAPAuthenticateUser")
295         {
296             $user_auth['password'] = md5($user_auth['password']);
297         }
298         $isLoginSuccess = $authController->login($user_auth['user_name'], $user_auth['password'], array('passwordEncrypted' => true));
299         $usr_id=$user->retrieve_user_id($user_auth['user_name']);
300         if($usr_id)
301             $user->retrieve($usr_id);
302
303         if ($isLoginSuccess)
304         {
305             if ($_SESSION['hasExpiredPassword'] =='1')
306             {
307                 $error->set_error('password_expired');
308                 $GLOBALS['log']->fatal('password expired for user ' . $user_auth['user_name']);
309                 LogicHook::initialize();
310                 $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
311                 self::$helperObject->setFaultObject($error);
312                 return;
313             }
314             if(!empty($user) && !empty($user->id) && !$user->is_group)
315             {
316                 $success = true;
317                 global $current_user;
318                 $current_user = $user;
319             }
320         }
321         else if($usr_id && isset($user->user_name) && ($user->getPreference('lockout') == '1'))
322         {
323             $error->set_error('lockout_reached');
324             $GLOBALS['log']->fatal('Lockout reached for user ' . $user_auth['user_name']);
325             LogicHook::initialize();
326             $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
327             self::$helperObject->setFaultObject($error);
328             return;
329         }
330         else if( $authController->authController->userAuthenticateClass == "LDAPAuthenticateUser"
331                  && (empty($user_auth['encryption']) || $user_auth['encryption'] !== 'PLAIN' ) )
332         {
333             $error->set_error('ldap_error');
334             LogicHook::initialize();
335             $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
336             self::$helperObject->setFaultObject($error);
337             return;
338         }
339         else if(function_exists('mcrypt_cbc'))
340         {
341             $password = self::$helperObject->decrypt_string($user_auth['password']);
342             if($authController->login($user_auth['user_name'], $password) && isset($_SESSION['authenticated_user_id']))
343                 $success = true;
344         }
345
346         if($success)
347         {
348             session_start();
349             global $current_user;
350             //$current_user = $user;
351             self::$helperObject->login_success($name_value_list);
352             $current_user->loadPreferences();
353             $_SESSION['is_valid_session']= true;
354             $_SESSION['ip_address'] = query_client_ip();
355             $_SESSION['user_id'] = $current_user->id;
356             $_SESSION['type'] = 'user';
357             $_SESSION['avail_modules']= self::$helperObject->get_user_module_list($current_user);
358             $_SESSION['authenticated_user_id'] = $current_user->id;
359             $_SESSION['unique_key'] = $sugar_config['unique_key'];
360             $current_user->call_custom_logic('after_login');
361             $GLOBALS['log']->info('End: SugarWebServiceImpl->login - succesful login');
362             $nameValueArray = array();
363             global $current_language;
364             $nameValueArray['user_id'] = self::$helperObject->get_name_value('user_id', $current_user->id);
365             $nameValueArray['user_name'] = self::$helperObject->get_name_value('user_name', $current_user->user_name);
366             $nameValueArray['user_language'] = self::$helperObject->get_name_value('user_language', $current_language);
367             $cur_id = $current_user->getPreference('currency');
368             $nameValueArray['user_currency_id'] = self::$helperObject->get_name_value('user_currency_id', $cur_id);
369             $nameValueArray['user_is_admin'] = self::$helperObject->get_name_value('user_is_admin', is_admin($current_user));
370             $nameValueArray['user_default_team_id'] = self::$helperObject->get_name_value('user_default_team_id', $current_user->default_team );
371             $nameValueArray['user_default_dateformat'] = self::$helperObject->get_name_value('user_default_dateformat', $current_user->getPreference('datef') );
372             $nameValueArray['user_default_timeformat'] = self::$helperObject->get_name_value('user_default_timeformat', $current_user->getPreference('timef') );
373
374             $num_grp_sep = $current_user->getPreference('num_grp_sep');
375             $dec_sep = $current_user->getPreference('dec_sep');
376             $nameValueArray['user_number_seperator'] = self::$helperObject->get_name_value('user_number_seperator', empty($num_grp_sep) ? $sugar_config['default_number_grouping_seperator'] : $num_grp_sep);
377             $nameValueArray['user_decimal_seperator'] = self::$helperObject->get_name_value('user_decimal_seperator', empty($dec_sep) ? $sugar_config['default_decimal_seperator'] : $dec_sep);
378
379             $nameValueArray['mobile_max_list_entries'] = self::$helperObject->get_name_value('mobile_max_list_entries', $sugar_config['wl_list_max_entries_per_page'] );
380             $nameValueArray['mobile_max_subpanel_entries'] = self::$helperObject->get_name_value('mobile_max_subpanel_entries', $sugar_config['wl_list_max_entries_per_subpanel'] );
381
382
383             $currencyObject = new Currency();
384             $currencyObject->retrieve($cur_id);
385             $nameValueArray['user_currency_name'] = self::$helperObject->get_name_value('user_currency_name', $currencyObject->name);
386             $_SESSION['user_language'] = $current_language;
387             return array('id'=>session_id(), 'module_name'=>'Users', 'name_value_list'=>$nameValueArray);
388         }
389         LogicHook::initialize();
390         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
391         $error->set_error('invalid_login');
392         self::$helperObject->setFaultObject($error);
393         $GLOBALS['log']->info('End: SugarWebServiceImpl->login - failed login');
394     }
395
396     /**
397      * Retrieve the list of available modules on the system available to the currently logged in user.
398      *
399      * @param String $session -- Session ID returned by a previous call to login.
400      * @param String $filter --  Valid values are: all     - Return all modules,
401      *                                             default - Return all visible modules for the application
402      *                                             mobile  - Return all visible modules for the mobile view
403      * @return Array    'modules' -- Array - An array of module names
404      * @exception 'SoapFault' -- The SOAP error, if any
405      */
406     function get_available_modules($session,$filter='all'){
407         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_available_modules');
408
409         $error = new SoapError();
410         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', '', '', '', $error)) {
411                 $error->set_error('invalid_login');
412                 $GLOBALS['log']->info('End: SugarWebServiceImpl->get_available_modules');
413                 return;
414         } // if
415
416         $modules = array();
417         $availModules = array_keys($_SESSION['avail_modules']); //ACL check already performed.
418         switch ($filter){
419             case 'default':
420                 $modules = self::$helperObject->get_visible_modules($availModules);
421                break;
422             case 'all':
423             default:
424                 $modules = self::$helperObject->getModulesFromList(array_flip($availModules), $availModules);
425         }
426
427         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_available_modules');
428         return array('modules'=> $modules);
429     } // fn
430
431
432     /**
433      * Enter description here...
434      *
435      * @param string $session   - Session ID returned by a previous call to login.
436      * @param array $modules Array of modules to return
437      * @param bool $MD5 Should the results be md5d
438      */
439     function get_language_definition($session, $modules, $MD5 = FALSE)
440     {
441         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_language_file');
442         global  $beanList, $beanFiles;
443         global $sugar_config,$current_language;
444
445         $error = new SoapError();
446         $output_list = array();
447         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', '', '', '', $error))
448         {
449             $error->set_error('invalid_login');
450             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_report_pdf');
451             return;
452         }
453
454         if( is_string($modules) )
455             $modules = array($modules);
456
457         $results = array();
458         foreach ($modules as $mod)
459         {
460             if( strtolower($mod) == 'app_strings' )
461             {
462                 $values = return_application_language($current_language);
463                 $key = 'app_strings';
464             }
465             else if ( strtolower($mod) == 'app_list_strings' )
466             {
467                 $values = return_app_list_strings_language($current_language);
468                 $key = 'app_list_strings';
469             }
470             else
471             {
472                 $values = return_module_language($current_language, $mod);
473                 $key = $mod;
474             }
475
476             if( $MD5 )
477                 $values = md5(serialize($values));
478
479             $results[$key] = $values;
480         }
481
482         return $results;
483     }
484
485
486     /**
487      * Retrieve the layout metadata for a given module given a specific type and view.
488      *
489      * @param String $session -- Session ID returned by a previous call to login.
490      * @param array $module_name(s) -- The name of the module(s) to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
491      * @return array $type The type(s) of views requested.  Current supported types are 'default' (for application) and 'wireless'
492      * @return array $view The view(s) requested.  Current supported types are edit, detail, list, and subpanel.
493      * @exception 'SoapFault' -- The SOAP error, if any
494      */
495     function get_module_layout($session, $a_module_names, $a_type, $a_view,$acl_check = TRUE, $md5 = FALSE){
496         $GLOBALS['log']->fatal('Begin: SugarWebServiceImpl->get_module_layout');
497
498         global  $beanList, $beanFiles;
499         $error = new SoapError();
500         $results = array();
501         foreach ($a_module_names as $module_name)
502         {
503             if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'read', 'no_access', $error))
504             {
505                 $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_layout');
506                 continue;
507             }
508
509             $class_name = $beanList[$module_name];
510             require_once($beanFiles[$class_name]);
511             $seed = new $class_name();
512
513             foreach ($a_view as $view)
514             {
515                 $aclViewCheck = (strtolower($view) == 'subpanel') ? 'DetailView' : ucfirst(strtolower($view)) . 'View';
516                 if(!$acl_check || $seed->ACLAccess($aclViewCheck, true) )
517                 {
518                     foreach ($a_type as $type)
519                     {
520                         $a_vardefs = self::$helperObject->get_module_view_defs($module_name, $type, $view);
521                         if($md5)
522                             $results[$module_name][$type][$view] = md5(serialize($a_vardefs));
523                         else
524                             $results[$module_name][$type][$view] = $a_vardefs;
525                     }
526                 }
527             }
528         }
529
530         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_layout');
531
532         return $results;
533     }
534
535     /**
536      * Retrieve a list of beans.  This is the primary method for getting list of SugarBeans from Sugar using the SOAP API.
537      *
538      * @param String $session -- Session ID returned by a previous call to login.
539      * @param String $module_name -- The name of the module to return records from.  This name should be the name the module was developed under (changing a tab name is studio does not affect the name that should be passed into this method)..
540      * @param String $query -- SQL where clause without the word 'where'
541      * @param String $order_by -- SQL order by clause without the phrase 'order by'
542      * @param integer $offset -- The record offset to start from.
543      * @param Array  $select_fields -- A list of the fields to be included in the results. This optional parameter allows for only needed fields to be retrieved.
544      * @param Array $link_name_to_fields_array -- A list of link_names and for each link_name, what fields value to be returned. For ex.'link_name_to_fields_array' => array(array('name' =>  'email_addresses', 'value' => array('id', 'email_address', 'opt_out', 'primary_address')))
545     * @param integer $max_results -- The maximum number of records to return.  The default is the sugar configuration value for 'list_max_entries_per_page'
546      * @param integer $deleted -- false if deleted records should not be include, true if deleted records should be included.
547      * @return Array 'result_count' -- integer - The number of records returned
548      *               'next_offset' -- integer - The start of the next page (This will always be the previous offset plus the number of rows returned.  It does not indicate if there is additional data unless you calculate that the next_offset happens to be closer than it should be.
549      *               'entry_list' -- Array - The records that were retrieved
550      *                   'relationship_list' -- Array - The records link field data. The example is if asked about accounts email address then return data would look like Array ( [0] => Array ( [name] => email_addresses [records] => Array ( [0] => Array ( [0] => Array ( [name] => id [value] => 3fb16797-8d90-0a94-ac12-490b63a6be67 ) [1] => Array ( [name] => email_address [value] => hr.kid.qa@example.com ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 1 ) ) [1] => Array ( [0] => Array ( [name] => id [value] => 403f8da1-214b-6a88-9cef-490b63d43566 ) [1] => Array ( [name] => email_address [value] => kid.hr@example.name ) [2] => Array ( [name] => opt_out [value] => 0 ) [3] => Array ( [name] => primary_address [value] => 0 ) ) ) ) )
551     * @exception 'SoapFault' -- The SOAP error, if any
552     */
553     function get_entry_list($session, $module_name, $query, $order_by,$offset, $select_fields, $link_name_to_fields_array, $max_results, $deleted, $favorites = false ){
554
555         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_entry_list');
556         global  $beanList, $beanFiles;
557         $error = new SoapError();
558         $using_cp = false;
559         if($module_name == 'CampaignProspects'){
560             $module_name = 'Prospects';
561             $using_cp = true;
562         }
563         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'read', 'no_access', $error)) {
564             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
565             return;
566         } // if
567
568         if (!self::$helperObject->checkQuery($error, $query, $order_by)) {
569                 $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
570                 return;
571         } // if
572
573         // If the maximum number of entries per page was specified, override the configuration value.
574         if($max_results > 0){
575             global $sugar_config;
576             $sugar_config['list_max_entries_per_page'] = $max_results;
577         } // if
578
579         $class_name = $beanList[$module_name];
580         require_once($beanFiles[$class_name]);
581         $seed = new $class_name();
582
583         if (!self::$helperObject->checkACLAccess($seed, 'Export', $error, 'no_access')) {
584             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
585             return;
586         } // if
587
588         if (!self::$helperObject->checkACLAccess($seed, 'list', $error, 'no_access')) {
589             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
590             return;
591         } // if
592
593         if($query == ''){
594             $where = '';
595         } // if
596         if($offset == '' || $offset == -1){
597             $offset = 0;
598         } // if
599         if($using_cp){
600             $response = $seed->retrieveTargetList($query, $select_fields, $offset,-1,-1,$deleted);
601         }else
602         {
603             $response = self::$helperObject->get_data_list($seed,$order_by, $query, $offset,-1,-1,$deleted,$favorites);
604         } // else
605         $list = $response['list'];
606
607         $output_list = array();
608         $linkoutput_list = array();
609
610         foreach($list as $value) {
611             if(isset($value->emailAddress)){
612                 $value->emailAddress->handleLegacyRetrieve($value);
613             } // if
614             $value->fill_in_additional_detail_fields();
615
616             $output_list[] = self::$helperObject->get_return_value_for_fields($value, $module_name, $select_fields);
617             if(!empty($link_name_to_fields_array)){
618                 $linkoutput_list[] = self::$helperObject->get_return_value_for_link_fields($value, $module_name, $link_name_to_fields_array);
619             }
620         } // foreach
621
622         // Calculate the offset for the start of the next page
623         $next_offset = $offset + sizeof($output_list);
624
625                 $returnRelationshipList = array();
626                 foreach($linkoutput_list as $rel){
627                         $link_output = array();
628                         foreach($rel as $row){
629                                 $rowArray = array();
630                                 foreach($row['records'] as $record){
631                                         $rowArray[]['link_value'] = $record;
632                                 }
633                                 $link_output[] = array('name' => $row['name'], 'records' => $rowArray);
634                         }
635                         $returnRelationshipList[]['link_list'] = $link_output;
636                 }
637
638                 $totalRecordCount = $response['row_count'];
639         if( !empty($sugar_config['disable_count_query']) )
640             $totalRecordCount = -1;
641
642         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
643         return array('result_count'=>sizeof($output_list), 'total_count' => $totalRecordCount, 'next_offset'=>$next_offset, 'entry_list'=>$output_list, 'relationship_list' => $returnRelationshipList);
644     } // fn
645
646
647
648     /**
649      * Given a list of modules to search and a search string, return the id, module_name, along with the fields
650      * We will support Accounts, Bug Tracker, Cases, Contacts, Leads, Opportunities, Project, ProjectTask, Quotes
651      *
652      * @param string $session                   - Session ID returned by a previous call to login.
653      * @param string $search_string     - string to search
654      * @param string[] $modules                 - array of modules to query
655      * @param int $offset                               - a specified offset in the query
656      * @param int $max_results                  - max number of records to return
657      * @param string $assigned_user_id  - a user id to filter all records by, leave empty to exclude the filter
658      * @param string[] $select_fields   - An array of fields to return.  If empty the default return fields will be from the active list view defs.
659      * @param bool $unified_search_only - A boolean indicating if we should only search against those modules participating in the unified search.
660      * @return Array return_search_result       - Array('Accounts' => array(array('name' => 'first_name', 'value' => 'John', 'name' => 'last_name', 'value' => 'Do')))
661      * @exception 'SoapFault' -- The SOAP error, if any
662      */
663     function search_by_module($session, $search_string, $modules, $offset, $max_results,$assigned_user_id = '', $select_fields = array(), $unified_search_only = TRUE){
664         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->search_by_module');
665         global  $beanList, $beanFiles;
666         global $sugar_config,$current_language;
667
668         $error = new SoapError();
669         $output_list = array();
670         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', '', '', '', $error)) {
671                 $error->set_error('invalid_login');
672                 $GLOBALS['log']->info('End: SugarWebServiceImpl->search_by_module');
673                 return;
674         }
675         global $current_user;
676         if($max_results > 0){
677                 $sugar_config['list_max_entries_per_page'] = $max_results;
678         }
679
680         require_once('modules/Home/UnifiedSearchAdvanced.php');
681         require_once 'include/utils.php';
682         $usa = new UnifiedSearchAdvanced();
683         if(!file_exists($cachedfile = sugar_cached('modules/unified_search_modules.php'))) {
684             $usa->buildCache();
685         }
686
687         include($cachedfile);
688         $modules_to_search = array();
689         $unified_search_modules['Users'] =   array('fields' => array());
690
691         $unified_search_modules['ProjectTask'] =   array('fields' => array());
692
693         //If we are ignoring the unified search flag within the vardef we need to re-create the search fields.  This allows us to search
694         //against a specific module even though it is not enabled for the unified search within the application.
695         if( !$unified_search_only )
696         {
697             foreach ($modules as $singleModule)
698             {
699                 if( !isset($unified_search_modules[$singleModule]) )
700                 {
701                     $newSearchFields = array('fields' => self::$helperObject->generateUnifiedSearchFields($singleModule) );
702                     $unified_search_modules[$singleModule] = $newSearchFields;
703                 }
704             }
705         }
706
707
708         foreach($unified_search_modules as $module=>$data) {
709                 if (in_array($module, $modules)) {
710                 $modules_to_search[$module] = $beanList[$module];
711                 } // if
712         } // foreach
713
714         $GLOBALS['log']->info('SugarWebServiceImpl->search_by_module - search string = ' . $search_string);
715
716         if(!empty($search_string) && isset($search_string)) {
717                 $search_string = trim($GLOBALS['db']->quote(securexss(from_html(clean_string($search_string, 'UNIFIED_SEARCH')))));
718                 foreach($modules_to_search as $name => $beanName) {
719                         $where_clauses_array = array();
720                         $unifiedSearchFields = array () ;
721                         foreach ($unified_search_modules[$name]['fields'] as $field=>$def ) {
722                                 $unifiedSearchFields[$name] [ $field ] = $def ;
723                                 $unifiedSearchFields[$name] [ $field ]['value'] = $search_string;
724                         }
725
726                         require_once $beanFiles[$beanName] ;
727                         $seed = new $beanName();
728                         require_once 'include/SearchForm/SearchForm2.php' ;
729                         if ($beanName == "User"
730                             || $beanName == "ProjectTask"
731                             ) {
732                                 if(!self::$helperObject->check_modules_access($current_user, $seed->module_dir, 'read')){
733                                         continue;
734                                 } // if
735                                 if(!$seed->ACLAccess('ListView')) {
736                                         continue;
737                                 } // if
738                         }
739
740                         if ($beanName != "User"
741                             && $beanName != "ProjectTask"
742                             ) {
743                                 $searchForm = new SearchForm ($seed, $name ) ;
744
745                                 $searchForm->setup(array ($name => array()) ,$unifiedSearchFields , '' , 'saved_views' /* hack to avoid setup doing further unwanted processing */ ) ;
746                                 $where_clauses = $searchForm->generateSearchWhere() ;
747                                 require_once 'include/SearchForm/SearchForm2.php' ;
748                                 $searchForm = new SearchForm ($seed, $name ) ;
749
750                                 $searchForm->setup(array ($name => array()) ,$unifiedSearchFields , '' , 'saved_views' /* hack to avoid setup doing further unwanted processing */ ) ;
751                                 $where_clauses = $searchForm->generateSearchWhere() ;
752                                 $emailQuery = false;
753
754                                 $where = '';
755                                 if (count($where_clauses) > 0 ) {
756                                         $where = '('. implode(' ) OR ( ', $where_clauses) . ')';
757                                 }
758
759                                 $mod_strings = return_module_language($current_language, $seed->module_dir);
760
761                                 if(count($select_fields) > 0)
762                                     $filterFields = $select_fields;
763                                 else {
764                                     if(file_exists('custom/modules/'.$seed->module_dir.'/metadata/listviewdefs.php'))
765                                            require_once('custom/modules/'.$seed->module_dir.'/metadata/listviewdefs.php');
766                                         else
767                                                 require_once('modules/'.$seed->module_dir.'/metadata/listviewdefs.php');
768
769                                         $filterFields = array();
770                                         foreach($listViewDefs[$seed->module_dir] as $colName => $param) {
771                                 if(!empty($param['default']) && $param['default'] == true)
772                                     $filterFields[] = strtolower($colName);
773                             }
774                             if (!in_array('id', $filterFields))
775                                 $filterFields[] = 'id';
776                                 }
777
778                                 //Pull in any db fields used for the unified search query so the correct joins will be added
779                                 $selectOnlyQueryFields = array();
780                                 foreach ($unifiedSearchFields[$name] as $field => $def){
781                                     if( isset($def['db_field']) && !in_array($field,$filterFields) ){
782                                         $filterFields[] = $field;
783                                         $selectOnlyQueryFields[] = $field;
784                                     }
785                                 }
786
787                     //Add the assigned user filter if applicable
788                     if (!empty($assigned_user_id) && isset( $seed->field_defs['assigned_user_id']) ) {
789                        $ownerWhere = $seed->getOwnerWhere($assigned_user_id);
790                        $where = "($where) AND $ownerWhere";
791                     }
792
793                     if( $beanName == "Employee" )
794                     {
795                         $where = "($where) AND users.deleted = 0 AND users.is_group = 0 AND users.employee_status = 'Active'";
796                     }
797
798                                 $ret_array = $seed->create_new_list_query('', $where, $filterFields, array(), 0, '', true, $seed, true);
799                         if(empty($params) or !is_array($params)) $params = array();
800                         if(!isset($params['custom_select'])) $params['custom_select'] = '';
801                         if(!isset($params['custom_from'])) $params['custom_from'] = '';
802                         if(!isset($params['custom_where'])) $params['custom_where'] = '';
803                         if(!isset($params['custom_order_by'])) $params['custom_order_by'] = '';
804                                 $main_query = $ret_array['select'] . $params['custom_select'] . $ret_array['from'] . $params['custom_from'] . $ret_array['where'] . $params['custom_where'] . $ret_array['order_by'] . $params['custom_order_by'];
805                         } else {
806                                 if ($beanName == "User") {
807                                         $filterFields = array('id', 'user_name', 'first_name', 'last_name', 'email_address');
808                                         $main_query = "select users.id, ea.email_address, users.user_name, first_name, last_name from users ";
809                                         $main_query = $main_query . " LEFT JOIN email_addr_bean_rel eabl ON eabl.bean_module = '{$seed->module_dir}'
810     LEFT JOIN email_addresses ea ON (ea.id = eabl.email_address_id) ";
811                                         $main_query = $main_query . "where ((users.first_name like '{$search_string}') or (users.last_name like '{$search_string}') or (users.user_name like '{$search_string}') or (ea.email_address like '{$search_string}')) and users.deleted = 0 and users.is_group = 0 and users.employee_status = 'Active'";
812                                 } // if
813                                 if ($beanName == "ProjectTask") {
814                                         $filterFields = array('id', 'name', 'project_id', 'project_name');
815                                         $main_query = "select {$seed->table_name}.project_task_id id,{$seed->table_name}.project_id, {$seed->table_name}.name, project.name project_name from {$seed->table_name} ";
816                                         $seed->add_team_security_where_clause($main_query);
817                                         $main_query .= "LEFT JOIN teams ON $seed->table_name.team_id=teams.id AND (teams.deleted=0) ";
818                             $main_query .= "LEFT JOIN project ON $seed->table_name.project_id = project.id ";
819                             $main_query .= "where {$seed->table_name}.name like '{$search_string}%'";
820                                 } // if
821                         } // else
822
823                         $GLOBALS['log']->info('SugarWebServiceImpl->search_by_module - query = ' . $main_query);
824                         if($max_results < -1) {
825                                 $result = $seed->db->query($main_query);
826                         }
827                         else {
828                                 if($max_results == -1) {
829                                         $limit = $sugar_config['list_max_entries_per_page'];
830                     } else {
831                         $limit = $max_results;
832                     }
833                     $result = $seed->db->limitQuery($main_query, $offset, $limit + 1);
834                         }
835
836                         $rowArray = array();
837                         while($row = $seed->db->fetchByAssoc($result)) {
838                                 $nameValueArray = array();
839                                 foreach ($filterFields as $field) {
840                                     if(in_array($field, $selectOnlyQueryFields))
841                                         continue;
842                                         $nameValue = array();
843                                         if (isset($row[$field])) {
844                                                 $nameValueArray[$field] = self::$helperObject->get_name_value($field, $row[$field]);
845                                         } // if
846                                 } // foreach
847                                 $rowArray[] = $nameValueArray;
848                         } // while
849                         $output_list[] = array('name' => $name, 'records' => $rowArray);
850                 } // foreach
851
852         $GLOBALS['log']->info('End: SugarWebServiceImpl->search_by_module');
853         return array('entry_list'=>$output_list);
854         } // if
855         return array('entry_list'=>$output_list);
856     } // fn
857 }
858
859 SugarWebServiceImplv3_1::$helperObject = new SugarWebServiceUtilv3_1();