]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - service/v4/SugarWebServiceImplv4.php
Release 6.3.0
[Github/sugarcrm.git] / service / v4 / SugarWebServiceImplv4.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-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  * This class is an implemenatation class for all the rest services
41  */
42 require_once('service/v3_1/SugarWebServiceImplv3_1.php');
43 require_once('SugarWebServiceUtilv4.php');
44
45
46 class SugarWebServiceImplv4 extends SugarWebServiceImplv3_1 {
47
48     public function __construct()
49     {
50         self::$helperObject = new SugarWebServiceUtilv4();
51     }
52
53         /**
54      * Log the user into the application
55      *
56      * @param UserAuth array $user_auth -- Set user_name and password (password needs to be
57      *      in the right encoding for the type of authentication the user is setup for.  For Base
58      *      sugar validation, password is the MD5 sum of the plain text password.
59      * @param String $application -- The name of the application you are logging in from.  (Currently unused).
60      * @param array $name_value_list -- Array of name value pair of extra parameters. As of today only 'language' and 'notifyonsave' is supported
61      * @return Array - id - String id is the session_id of the session that was created.
62      *                           - module_name - String - module name of user
63      *                           - name_value_list - Array - The name value pair of user_id, user_name, user_language, user_currency_id, user_currency_name,
64      *                                         - user_default_team_id, user_is_admin, user_default_dateformat, user_default_timeformat
65      * @exception 'SoapFault' -- The SOAP error, if any
66      */
67     public function login($user_auth, $application, $name_value_list = array()){
68         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->login');
69         global $sugar_config, $system_config;
70         $error = new SoapError();
71         $user = new User();
72         $success = false;
73         //rrs
74         $system_config = new Administration();
75         $system_config->retrieveSettings('system');
76         $authController = new AuthenticationController((!empty($sugar_config['authenticationClass'])? $sugar_config['authenticationClass'] : 'SugarAuthenticate'));
77         //rrs
78         if(!empty($user_auth['encryption']) && $user_auth['encryption'] === 'PLAIN' && $authController->authController->userAuthenticateClass != "LDAPAuthenticateUser")
79         {
80             $user_auth['password'] = md5($user_auth['password']);
81         }
82         $isLoginSuccess = $authController->login($user_auth['user_name'], $user_auth['password'], array('passwordEncrypted' => true));
83         $usr_id=$user->retrieve_user_id($user_auth['user_name']);
84         if($usr_id)
85             $user->retrieve($usr_id);
86
87         if ($isLoginSuccess)
88         {
89             if ($_SESSION['hasExpiredPassword'] =='1')
90             {
91                 $error->set_error('password_expired');
92                 $GLOBALS['log']->fatal('password expired for user ' . $user_auth['user_name']);
93                 LogicHook::initialize();
94                 $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
95                 self::$helperObject->setFaultObject($error);
96                 return;
97             }
98             if(!empty($user) && !empty($user->id) && !$user->is_group)
99             {
100                 $success = true;
101                 global $current_user;
102                 $current_user = $user;
103             }
104         }
105         else if($usr_id && isset($user->user_name) && ($user->getPreference('lockout') == '1'))
106         {
107             $error->set_error('lockout_reached');
108             $GLOBALS['log']->fatal('Lockout reached for user ' . $user_auth['user_name']);
109             LogicHook::initialize();
110             $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
111             self::$helperObject->setFaultObject($error);
112             return;
113         }
114                 else if(function_exists('mcrypt_cbc') && $authController->authController->userAuthenticateClass == "LDAPAuthenticateUser"
115                         && (empty($user_auth['encryption']) || $user_auth['encryption'] !== 'PLAIN' ) )
116         {
117             $password = self::$helperObject->decrypt_string($user_auth['password']);
118             $authController->loggedIn = false; // reset login attempt to try again with decrypted password
119             if($authController->login($user_auth['user_name'], $password) && isset($_SESSION['authenticated_user_id']))
120                 $success = true;
121         }
122         else if( $authController->authController->userAuthenticateClass == "LDAPAuthenticateUser"
123                  && (empty($user_auth['encryption']) || $user_auth['encryption'] == 'PLAIN' ) )
124         {
125
126                 $authController->loggedIn = false; // reset login attempt to try again with md5 password
127                 if($authController->login($user_auth['user_name'], md5($user_auth['password']), array('passwordEncrypted' => true))
128                         && isset($_SESSION['authenticated_user_id']))
129                 {
130                         $success = true;
131                 }
132                 else
133                 {
134
135                     $error->set_error('ldap_error');
136                     LogicHook::initialize();
137                     $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
138                     self::$helperObject->setFaultObject($error);
139                     return;
140                 }
141         }
142
143
144         if($success)
145         {
146             session_start();
147             global $current_user;
148             //$current_user = $user;
149             self::$helperObject->login_success($name_value_list);
150             $current_user->loadPreferences();
151             $_SESSION['is_valid_session']= true;
152             $_SESSION['ip_address'] = query_client_ip();
153             $_SESSION['user_id'] = $current_user->id;
154             $_SESSION['type'] = 'user';
155             $_SESSION['avail_modules']= self::$helperObject->get_user_module_list($current_user);
156             $_SESSION['authenticated_user_id'] = $current_user->id;
157             $_SESSION['unique_key'] = $sugar_config['unique_key'];
158             $current_user->call_custom_logic('after_login');
159             $GLOBALS['log']->info('End: SugarWebServiceImpl->login - succesful login');
160             $nameValueArray = array();
161             global $current_language;
162             $nameValueArray['user_id'] = self::$helperObject->get_name_value('user_id', $current_user->id);
163             $nameValueArray['user_name'] = self::$helperObject->get_name_value('user_name', $current_user->user_name);
164             $nameValueArray['user_language'] = self::$helperObject->get_name_value('user_language', $current_language);
165             $cur_id = $current_user->getPreference('currency');
166             $nameValueArray['user_currency_id'] = self::$helperObject->get_name_value('user_currency_id', $cur_id);
167             $nameValueArray['user_is_admin'] = self::$helperObject->get_name_value('user_is_admin', is_admin($current_user));
168             $nameValueArray['user_default_team_id'] = self::$helperObject->get_name_value('user_default_team_id', $current_user->default_team );
169             $nameValueArray['user_default_dateformat'] = self::$helperObject->get_name_value('user_default_dateformat', $current_user->getPreference('datef') );
170             $nameValueArray['user_default_timeformat'] = self::$helperObject->get_name_value('user_default_timeformat', $current_user->getPreference('timef') );
171
172             $num_grp_sep = $current_user->getPreference('num_grp_sep');
173             $dec_sep = $current_user->getPreference('dec_sep');
174             $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);
175             $nameValueArray['user_decimal_seperator'] = self::$helperObject->get_name_value('user_decimal_seperator', empty($dec_sep) ? $sugar_config['default_decimal_seperator'] : $dec_sep);
176
177             $nameValueArray['mobile_max_list_entries'] = self::$helperObject->get_name_value('mobile_max_list_entries', $sugar_config['wl_list_max_entries_per_page'] );
178             $nameValueArray['mobile_max_subpanel_entries'] = self::$helperObject->get_name_value('mobile_max_subpanel_entries', $sugar_config['wl_list_max_entries_per_subpanel'] );
179
180
181             $currencyObject = new Currency();
182             $currencyObject->retrieve($cur_id);
183             $nameValueArray['user_currency_name'] = self::$helperObject->get_name_value('user_currency_name', $currencyObject->name);
184             $_SESSION['user_language'] = $current_language;
185             return array('id'=>session_id(), 'module_name'=>'Users', 'name_value_list'=>$nameValueArray);
186         }
187         LogicHook::initialize();
188         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
189         $error->set_error('invalid_login');
190         self::$helperObject->setFaultObject($error);
191         $GLOBALS['log']->info('End: SugarWebServiceImpl->login - failed login');
192     }
193
194
195         /**
196          * Retrieve a list of SugarBean's based on provided IDs. This API will not wotk with report module
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 $ids -- An array of SugarBean IDs.
201          * @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.
202          * @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')))
203          * @return Array
204          *        'entry_list' -- Array - The records name value pair for the simple data types excluding link field data.
205          *           '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 ) ) ) ) )
206          * @exception 'SoapFault' -- The SOAP error, if any
207          */
208         public function get_entries($session, $module_name, $ids, $select_fields, $link_name_to_fields_array)
209         {
210             $result = parent::get_entries($session, $module_name, $ids, $select_fields, $link_name_to_fields_array);
211                 $relationshipList = $result['relationship_list'];
212                 $returnRelationshipList = array();
213                 foreach($relationshipList as $rel){
214                         $link_output = array();
215                         foreach($rel as $row){
216                                 $rowArray = array();
217                                 foreach($row['records'] as $record){
218                                         $rowArray[]['link_value'] = $record;
219                                 }
220                                 $link_output[] = array('name' => $row['name'], 'records' => $rowArray);
221                         }
222                         $returnRelationshipList[]['link_list'] = $link_output;
223                 }
224
225                 $result['relationship_list'] = $returnRelationshipList;
226                 return $result;
227         }
228
229             /**
230      * Retrieve a list of beans.  This is the primary method for getting list of SugarBeans from Sugar using the SOAP API.
231      *
232      * @param String $session -- Session ID returned by a previous call to login.
233      * @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)..
234      * @param String $query -- SQL where clause without the word 'where'
235      * @param String $order_by -- SQL order by clause without the phrase 'order by'
236      * @param integer $offset -- The record offset to start from.
237      * @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.
238      * @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')))
239     * @param integer $max_results -- The maximum number of records to return.  The default is the sugar configuration value for 'list_max_entries_per_page'
240      * @param integer $deleted -- false if deleted records should not be include, true if deleted records should be included.
241      * @return Array 'result_count' -- integer - The number of records returned
242      *               '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.
243      *               'entry_list' -- Array - The records that were retrieved
244      *                   '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 ) ) ) ) )
245     * @exception 'SoapFault' -- The SOAP error, if any
246     */
247     function get_entry_list($session, $module_name, $query, $order_by,$offset, $select_fields, $link_name_to_fields_array, $max_results, $deleted, $favorites = false ){
248
249         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->get_entry_list');
250         global  $beanList, $beanFiles;
251         $error = new SoapError();
252         $using_cp = false;
253         if($module_name == 'CampaignProspects'){
254             $module_name = 'Prospects';
255             $using_cp = true;
256         }
257         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'read', 'no_access', $error)) {
258             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
259             return;
260         } // if
261
262         // If the maximum number of entries per page was specified, override the configuration value.
263         if($max_results > 0){
264             global $sugar_config;
265             $sugar_config['list_max_entries_per_page'] = $max_results;
266         } // if
267
268         $class_name = $beanList[$module_name];
269         require_once($beanFiles[$class_name]);
270         $seed = new $class_name();
271
272         if (!self::$helperObject->checkACLAccess($seed, 'list', $error, 'no_access')) {
273             $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
274             return;
275         } // if
276
277         if($query == ''){
278             $where = '';
279         } // if
280         if($offset == '' || $offset == -1){
281             $offset = 0;
282         } // if
283         if($using_cp){
284             $response = $seed->retrieveTargetList($query, $select_fields, $offset,-1,-1,$deleted);
285         }else
286         {
287             $response = self::$helperObject->get_data_list($seed,$order_by, $query, $offset,-1,-1,$deleted,$favorites);
288         } // else
289         $list = $response['list'];
290
291         $output_list = array();
292         $linkoutput_list = array();
293
294         foreach($list as $value) {
295             if(isset($value->emailAddress)){
296                 $value->emailAddress->handleLegacyRetrieve($value);
297             } // if
298             $value->fill_in_additional_detail_fields();
299
300             $output_list[] = self::$helperObject->get_return_value_for_fields($value, $module_name, $select_fields);
301             if(!empty($link_name_to_fields_array)){
302                 $linkoutput_list[] = self::$helperObject->get_return_value_for_link_fields($value, $module_name, $link_name_to_fields_array);
303             }
304         } // foreach
305
306         // Calculate the offset for the start of the next page
307         $next_offset = $offset + sizeof($output_list);
308
309                 $returnRelationshipList = array();
310                 foreach($linkoutput_list as $rel){
311                         $link_output = array();
312                         foreach($rel as $row){
313                                 $rowArray = array();
314                                 foreach($row['records'] as $record){
315                                         $rowArray[]['link_value'] = $record;
316                                 }
317                                 $link_output[] = array('name' => $row['name'], 'records' => $rowArray);
318                         }
319                         $returnRelationshipList[]['link_list'] = $link_output;
320                 }
321
322                 $totalRecordCount = $response['row_count'];
323         if( !empty($sugar_config['disable_count_query']) )
324             $totalRecordCount = -1;
325
326         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_entry_list');
327         return array('result_count'=>sizeof($output_list), 'total_count' => $totalRecordCount, 'next_offset'=>$next_offset, 'entry_list'=>$output_list, 'relationship_list' => $returnRelationshipList);
328     } // fn
329
330         /**
331      * Retrieve the layout metadata for a given module given a specific type and view.
332      *
333      * @param String $session -- Session ID returned by a previous call to login.
334      * @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)..
335      * @return array $type The type(s) of views requested.  Current supported types are 'default' (for application) and 'wireless'
336      * @return array $view The view(s) requested.  Current supported types are edit, detail, list, and subpanel.
337      * @exception 'SoapFault' -- The SOAP error, if any
338      */
339     function get_module_layout($session, $a_module_names, $a_type, $a_view,$acl_check = TRUE, $md5 = FALSE){
340         $GLOBALS['log']->fatal('Begin: SugarWebServiceImpl->get_module_layout');
341
342         global  $beanList, $beanFiles;
343         $error = new SoapError();
344         $results = array();
345         foreach ($a_module_names as $module_name)
346         {
347             if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', $module_name, 'read', 'no_access', $error))
348             {
349                 $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_layout');
350                 continue;
351             }
352
353             if( empty($module_name) )
354                 continue;
355
356             $class_name = $beanList[$module_name];
357             require_once($beanFiles[$class_name]);
358             $seed = new $class_name();
359
360             foreach ($a_view as $view)
361             {
362                 $aclViewCheck = (strtolower($view) == 'subpanel') ? 'DetailView' : ucfirst(strtolower($view)) . 'View';
363                 if(!$acl_check || $seed->ACLAccess($aclViewCheck, true) )
364                 {
365                     foreach ($a_type as $type)
366                     {
367                         $a_vardefs = self::$helperObject->get_module_view_defs($module_name, $type, $view);
368                         if($md5)
369                             $results[$module_name][$type][$view] = md5(serialize($a_vardefs));
370                         else
371                             $results[$module_name][$type][$view] = $a_vardefs;
372                     }
373                 }
374             }
375         }
376
377         $GLOBALS['log']->info('End: SugarWebServiceImpl->get_module_layout');
378
379         return $results;
380     }
381
382
383         /**
384      * Given a list of modules to search and a search string, return the id, module_name, along with the fields
385      * We will support Accounts, Bug Tracker, Cases, Contacts, Leads, Opportunities, Project, ProjectTask, Quotes
386      *
387      * @param string $session                   - Session ID returned by a previous call to login.
388      * @param string $search_string     - string to search
389      * @param string[] $modules                 - array of modules to query
390      * @param int $offset                               - a specified offset in the query
391      * @param int $max_results                  - max number of records to return
392      * @param string $assigned_user_id  - a user id to filter all records by, leave empty to exclude the filter
393      * @param string[] $select_fields   - An array of fields to return.  If empty the default return fields will be from the active list view defs.
394      * @param bool $unified_search_only - A boolean indicating if we should only search against those modules participating in the unified search.
395      * @param bool $favorites           - A boolean indicating if we should only search against records marked as favorites.
396      * @return Array return_search_result       - Array('Accounts' => array(array('name' => 'first_name', 'value' => 'John', 'name' => 'last_name', 'value' => 'Do')))
397      * @exception 'SoapFault' -- The SOAP error, if any
398      */
399     function search_by_module($session, $search_string, $modules, $offset, $max_results,$assigned_user_id = '', $select_fields = array(), $unified_search_only = TRUE, $favorites = FALSE){
400         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->search_by_module');
401         global  $beanList, $beanFiles;
402         global $sugar_config,$current_language;
403
404         $error = new SoapError();
405         $output_list = array();
406         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', '', '', '', $error)) {
407                 $error->set_error('invalid_login');
408                 $GLOBALS['log']->info('End: SugarWebServiceImpl->search_by_module');
409                 return;
410         }
411         global $current_user;
412         if($max_results > 0){
413                 $sugar_config['list_max_entries_per_page'] = $max_results;
414         }
415
416         require_once('modules/Home/UnifiedSearchAdvanced.php');
417         require_once 'include/utils.php';
418         $usa = new UnifiedSearchAdvanced();
419         if(!file_exists($GLOBALS['sugar_config']['cache_dir'].'modules/unified_search_modules.php')) {
420             $usa->buildCache();
421         }
422
423         include($GLOBALS['sugar_config']['cache_dir'].'modules/unified_search_modules.php');
424         $modules_to_search = array();
425         $unified_search_modules['Users'] =   array('fields' => array());
426
427         $unified_search_modules['ProjectTask'] =   array('fields' => array());
428
429         //If we are ignoring the unified search flag within the vardef we need to re-create the search fields.  This allows us to search
430         //against a specific module even though it is not enabled for the unified search within the application.
431         if( !$unified_search_only )
432         {
433             foreach ($modules as $singleModule)
434             {
435                 if( !isset($unified_search_modules[$singleModule]) )
436                 {
437                     $newSearchFields = array('fields' => self::$helperObject->generateUnifiedSearchFields($singleModule) );
438                     $unified_search_modules[$singleModule] = $newSearchFields;
439                 }
440             }
441         }
442
443
444         foreach($unified_search_modules as $module=>$data) {
445                 if (in_array($module, $modules)) {
446                 $modules_to_search[$module] = $beanList[$module];
447                 } // if
448         } // foreach
449
450         $GLOBALS['log']->info('SugarWebServiceImpl->search_by_module - search string = ' . $search_string);
451
452         if(!empty($search_string) && isset($search_string)) {
453                 $search_string = trim($GLOBALS['db']->quote(securexss(from_html(clean_string($search_string, 'UNIFIED_SEARCH')))));
454                 foreach($modules_to_search as $name => $beanName) {
455                         $where_clauses_array = array();
456                         $unifiedSearchFields = array () ;
457                         foreach ($unified_search_modules[$name]['fields'] as $field=>$def ) {
458                                 $unifiedSearchFields[$name] [ $field ] = $def ;
459                                 $unifiedSearchFields[$name] [ $field ]['value'] = $search_string;
460                         }
461
462                         require_once $beanFiles[$beanName] ;
463                         $seed = new $beanName();
464                         require_once 'include/SearchForm/SearchForm2.php' ;
465                         if ($beanName == "User"
466                             || $beanName == "ProjectTask"
467                             ) {
468                                 if(!self::$helperObject->check_modules_access($current_user, $seed->module_dir, 'read')){
469                                         continue;
470                                 } // if
471                                 if(!$seed->ACLAccess('ListView')) {
472                                         continue;
473                                 } // if
474                         }
475
476                         if ($beanName != "User"
477                             && $beanName != "ProjectTask"
478                             ) {
479                                 $searchForm = new SearchForm ($seed, $name ) ;
480
481                                 $searchForm->setup(array ($name => array()) ,$unifiedSearchFields , '' , 'saved_views' /* hack to avoid setup doing further unwanted processing */ ) ;
482                                 $where_clauses = $searchForm->generateSearchWhere() ;
483                                 require_once 'include/SearchForm/SearchForm2.php' ;
484                                 $searchForm = new SearchForm ($seed, $name ) ;
485
486                                 $searchForm->setup(array ($name => array()) ,$unifiedSearchFields , '' , 'saved_views' /* hack to avoid setup doing further unwanted processing */ ) ;
487                                 $where_clauses = $searchForm->generateSearchWhere() ;
488                                 $emailQuery = false;
489
490                                 $where = '';
491                                 if (count($where_clauses) > 0 ) {
492                                         $where = '('. implode(' ) OR ( ', $where_clauses) . ')';
493                                 }
494
495                                 $mod_strings = return_module_language($current_language, $seed->module_dir);
496
497                                 if(count($select_fields) > 0)
498                                     $filterFields = $select_fields;
499                                 else {
500                                     if(file_exists('custom/modules/'.$seed->module_dir.'/metadata/listviewdefs.php'))
501                                            require_once('custom/modules/'.$seed->module_dir.'/metadata/listviewdefs.php');
502                                         else
503                                                 require_once('modules/'.$seed->module_dir.'/metadata/listviewdefs.php');
504
505                                         $filterFields = array();
506                                         foreach($listViewDefs[$seed->module_dir] as $colName => $param) {
507                                 if(!empty($param['default']) && $param['default'] == true)
508                                     $filterFields[] = strtolower($colName);
509                             }
510                             if (!in_array('id', $filterFields))
511                                 $filterFields[] = 'id';
512                                 }
513
514                                 //Pull in any db fields used for the unified search query so the correct joins will be added
515                                 $selectOnlyQueryFields = array();
516                                 foreach ($unifiedSearchFields[$name] as $field => $def){
517                                     if( isset($def['db_field']) && !in_array($field,$filterFields) ){
518                                         $filterFields[] = $field;
519                                         $selectOnlyQueryFields[] = $field;
520                                     }
521                                 }
522
523                     //Add the assigned user filter if applicable
524                     if (!empty($assigned_user_id) && isset( $seed->field_defs['assigned_user_id']) ) {
525                        $ownerWhere = $seed->getOwnerWhere($assigned_user_id);
526                        $where = "($where) AND $ownerWhere";
527                     }
528
529                     if( $beanName == "Employee" )
530                     {
531                         $where = "($where) AND users.deleted = 0 AND users.is_group = 0 AND users.employee_status = 'Active'";
532                     }
533
534                     $list_params = array();
535
536                                 $ret_array = $seed->create_new_list_query('', $where, $filterFields, $list_params, 0, '', true, $seed, true);
537                         if(empty($params) or !is_array($params)) $params = array();
538                         if(!isset($params['custom_select'])) $params['custom_select'] = '';
539                         if(!isset($params['custom_from'])) $params['custom_from'] = '';
540                         if(!isset($params['custom_where'])) $params['custom_where'] = '';
541                         if(!isset($params['custom_order_by'])) $params['custom_order_by'] = '';
542                                 $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'];
543                         } else {
544                                 if ($beanName == "User") {
545                                         $filterFields = array('id', 'user_name', 'first_name', 'last_name', 'email_address');
546                                         $main_query = "select users.id, ea.email_address, users.user_name, first_name, last_name from users ";
547                                         $main_query = $main_query . " LEFT JOIN email_addr_bean_rel eabl ON eabl.bean_module = '{$seed->module_dir}'
548     LEFT JOIN email_addresses ea ON (ea.id = eabl.email_address_id) ";
549                                         $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'";
550                                 } // if
551                                 if ($beanName == "ProjectTask") {
552                                         $filterFields = array('id', 'name', 'project_id', 'project_name');
553                                         $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} ";
554                                         $seed->add_team_security_where_clause($main_query);
555                                         $main_query .= "LEFT JOIN teams ON $seed->table_name.team_id=teams.id AND (teams.deleted=0) ";
556                             $main_query .= "LEFT JOIN project ON $seed->table_name.project_id = project.id ";
557                             $main_query .= "where {$seed->table_name}.name like '{$search_string}%'";
558                                 } // if
559                         } // else
560
561                         $GLOBALS['log']->info('SugarWebServiceImpl->search_by_module - query = ' . $main_query);
562                         if($max_results < -1) {
563                                 $result = $seed->db->query($main_query);
564                         }
565                         else {
566                                 if($max_results == -1) {
567                                         $limit = $sugar_config['list_max_entries_per_page'];
568                     } else {
569                         $limit = $max_results;
570                     }
571                     $result = $seed->db->limitQuery($main_query, $offset, $limit + 1);
572                         }
573
574                         $rowArray = array();
575                         while($row = $seed->db->fetchByAssoc($result)) {
576                                 $nameValueArray = array();
577                                 foreach ($filterFields as $field) {
578                                     if(in_array($field, $selectOnlyQueryFields))
579                                         continue;
580                                         $nameValue = array();
581                                         if (isset($row[$field])) {
582                                                 $nameValueArray[$field] = self::$helperObject->get_name_value($field, $row[$field]);
583                                         } // if
584                                 } // foreach
585                                 $rowArray[] = $nameValueArray;
586                         } // while
587                         $output_list[] = array('name' => $name, 'records' => $rowArray);
588                 } // foreach
589
590         $GLOBALS['log']->info('End: SugarWebServiceImpl->search_by_module');
591         return array('entry_list'=>$output_list);
592         } // if
593         return array('entry_list'=>$output_list);
594     } // fn
595
596
597
598     public function oauth_request_token()
599     {
600         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->oauth_request_token');
601         require_once "include/SugarOAuthServer.php";
602         try {
603                 $oauth = new SugarOAuthServer($GLOBALS['sugar_config']['site_url'].'service/v4/rest.php');
604                 $result = $oauth->requestToken()."&oauth_callback_confirmed=true&authorize_url=".$oauth->authURL();
605         } catch(OAuthException $e) {
606             $GLOBALS['log']->debug("OAUTH Exception: $e");
607             $errorObject = new SoapError();
608             $errorObject->set_error('invalid_login');
609                         self::$helperObject->setFaultObject($errorObject);
610             $result = null;
611         }
612         $GLOBALS['log']->info('End: SugarWebServiceImpl->oauth_request_token');
613         return $result;
614     }
615
616     public function oauth_access_token()
617     {
618         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->oauth_access_token');
619         require_once "include/SugarOAuthServer.php";
620         try {
621                 $oauth = new SugarOAuthServer();
622                 $result = $oauth->accessToken();
623         } catch(OAuthException $e) {
624             $GLOBALS['log']->debug("OAUTH Exception: $e");
625             $errorObject = new SoapError();
626             $errorObject->set_error('invalid_login');
627                         self::$helperObject->setFaultObject($errorObject);
628             $result = null;
629         }
630         $GLOBALS['log']->info('End: SugarWebServiceImpl->oauth_access_token');
631         return $result;
632     }
633
634     public function oauth_access($session)
635     {
636         $GLOBALS['log']->info('Begin: SugarWebServiceImpl->oauth_access');
637         $error = new SoapError();
638         $output_list = array();
639         if (!self::$helperObject->checkSessionAndModuleAccess($session, 'invalid_session', '', '', '', $error)) {
640                 $error->set_error('invalid_login');
641                 $GLOBALS['log']->info('End: SugarWebServiceImpl->oauth_access');
642                 $result = $error;
643         } else {
644             $result = array('id'=>session_id());
645         }
646         $GLOBALS['log']->info('End: SugarWebServiceImpl->oauth_access');
647         return $result;
648     }
649
650 }
651
652 SugarWebServiceImplv4::$helperObject = new SugarWebServiceUtilv4();