]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - soap/SoapSugarUsers.php
Release 6.5.13
[Github/sugarcrm.git] / soap / SoapSugarUsers.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 require_once('soap/SoapHelperFunctions.php');
39 require_once('soap/SoapTypes.php');
40
41 /*************************************************************************************
42
43 THIS IS FOR SUGARCRM USERS
44
45
46 *************************************************************************************/
47 $disable_date_format = true;
48
49 $server->register(
50     'is_user_admin',
51     array('session'=>'xsd:string'),
52     array('return'=>'xsd:int'),
53     $NAMESPACE);
54
55 /**
56  * Return if the user is an admin or not
57  *
58  * @param String $session -- Session ID returned by a previous call to login.
59  * @return int 1 or 0 depending on if the user is an admin
60  */
61 function is_user_admin($session){
62         if(validate_authenticated($session)){
63                 global $current_user;
64                 return is_admin($current_user);
65
66         }else{
67                 return 0;
68         }
69 }
70
71
72 $server->register(
73         'login',
74         array('user_auth'=>'tns:user_auth', 'application_name'=>'xsd:string'),
75         array('return'=>'tns:set_entry_result'),
76         $NAMESPACE);
77
78 /**
79  * Log the user into the application
80  *
81  * @param UserAuth array $user_auth -- Set user_name and password (password needs to be
82  *      in the right encoding for the type of authentication the user is setup for.  For Base
83  *      sugar validation, password is the MD5 sum of the plain text password.
84  * @param String $application -- The name of the application you are logging in from.  (Currently unused).
85  * @return Array(session_id, error) -- session_id is the id of the session that was
86  *      created.  Error is set if there was any error during creation.
87  */
88 function login($user_auth, $application){
89         global $sugar_config, $system_config;
90
91         $error = new SoapError();
92         $user = new User();
93         $success = false;
94         //rrs
95                 $system_config = new Administration();
96         $system_config->retrieveSettings('system');
97         $authController = new AuthenticationController();
98         //rrs
99         $isLoginSuccess = $authController->login($user_auth['user_name'], $user_auth['password'], array('passwordEncrypted' => true));
100         $usr_id=$user->retrieve_user_id($user_auth['user_name']);
101         if($usr_id) {
102                 $user->retrieve($usr_id);
103         }
104
105         if ($isLoginSuccess) {
106                 if ($_SESSION['hasExpiredPassword'] =='1') {
107                         $error->set_error('password_expired');
108                         $GLOBALS['log']->fatal('password expired for user ' . $user_auth['user_name']);
109                         LogicHook::initialize();
110                         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
111                         return array('id'=>-1, 'error'=>$error);
112                 } // if
113                 if(!empty($user) && !empty($user->id) && !$user->is_group) {
114                         $success = true;
115                         global $current_user;
116                         $current_user = $user;
117                 } // if
118         } else if($usr_id && isset($user->user_name) && ($user->getPreference('lockout') == '1')) {
119                         $error->set_error('lockout_reached');
120                         $GLOBALS['log']->fatal('Lockout reached for user ' . $user_auth['user_name']);
121                         LogicHook::initialize();
122                         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
123                         return array('id'=>-1, 'error'=>$error);
124         } else if(function_exists('mcrypt_cbc')){
125                 $password = decrypt_string($user_auth['password']);
126                 $authController = new AuthenticationController();
127                 if($authController->login($user_auth['user_name'], $password) && isset($_SESSION['authenticated_user_id'])){
128                         $success = true;
129                 } // if
130         } // else if
131
132         if($success){
133                 session_start();
134                 global $current_user;
135                 //$current_user = $user;
136                 login_success();
137                 $current_user->loadPreferences();
138                 $_SESSION['is_valid_session']= true;
139                 $_SESSION['ip_address'] = query_client_ip();
140                 $_SESSION['user_id'] = $current_user->id;
141                 $_SESSION['type'] = 'user';
142                 $_SESSION['avail_modules']= get_user_module_list($current_user);
143                 $_SESSION['authenticated_user_id'] = $current_user->id;
144                 $_SESSION['unique_key'] = $sugar_config['unique_key'];
145
146                 $current_user->call_custom_logic('after_login');
147                 return array('id'=>session_id(), 'error'=>$error);
148         }
149         $error->set_error('invalid_login');
150         $GLOBALS['log']->fatal('SECURITY: User authentication for '. $user_auth['user_name']. ' failed');
151         LogicHook::initialize();
152         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
153         return array('id'=>-1, 'error'=>$error);
154
155 }
156
157 //checks if the soap server and client are running on the same machine
158 $server->register(
159         'is_loopback',
160         array(),
161         array('return'=>'xsd:int'),
162         $NAMESPACE);
163
164 /**
165  * Check to see if the soap server and client are on the same machine.
166  * We don't allow a server to sync to itself.
167  *
168  * @return true -- if the SOAP server and client are on the same machine
169  * @return false -- if the SOAP server and client are not on the same machine.
170  */
171 function is_loopback(){
172         if(query_client_ip() == $_SERVER['SERVER_ADDR'])
173                 return 1;
174         return 0;
175 }
176
177 /**
178  * Validate the provided session information is correct and current.  Load the session.
179  *
180  * @param String $session_id -- The session ID that was returned by a call to login.
181  * @return true -- If the session is valid and loaded.
182  * @return false -- if the session is not valid.
183  */
184 function validate_authenticated($session_id){
185         if(!empty($session_id)){
186                 session_id($session_id);
187                 session_start();
188
189                 if(!empty($_SESSION['is_valid_session']) && is_valid_ip_address('ip_address') && $_SESSION['type'] == 'user'){
190
191                         global $current_user;
192
193                         $current_user = new User();
194                         $current_user->retrieve($_SESSION['user_id']);
195                         login_success();
196                         return true;
197                 }
198
199                 session_destroy();
200         }
201         LogicHook::initialize();
202         $GLOBALS['log']->fatal('SECURITY: The session ID is invalid');
203         $GLOBALS['logic_hook']->call_custom_logic('Users', 'login_failed');
204         return false;
205 }
206
207 /**
208  * Use the same logic as in SugarAuthenticate to validate the ip address
209  *
210  * @param string $session_var
211  * @return bool - true if the ip address is valid, false otherwise.
212  */
213 function is_valid_ip_address($session_var){
214         global $sugar_config;
215         // grab client ip address
216         $clientIP = query_client_ip();
217         $classCheck = 0;
218         // check to see if config entry is present, if not, verify client ip
219         if (!isset ($sugar_config['verify_client_ip']) || $sugar_config['verify_client_ip'] == true) {
220                 // check to see if we've got a current ip address in $_SESSION
221                 // and check to see if the session has been hijacked by a foreign ip
222                 if (isset ($_SESSION[$session_var])) {
223                         $session_parts = explode(".", $_SESSION[$session_var]);
224                         $client_parts = explode(".", $clientIP);
225             if(count($session_parts) < 4) {
226                 $classCheck = 0;
227             }else {
228                         // match class C IP addresses
229                         for ($i = 0; $i < 3; $i ++) {
230                                 if ($session_parts[$i] == $client_parts[$i]) {
231                                         $classCheck = 1;
232                                                 continue;
233                                 } else {
234                                         $classCheck = 0;
235                                         break;
236                                         }
237                                 }
238                 }
239                                 // we have a different IP address
240                                 if ($_SESSION[$session_var] != $clientIP && empty ($classCheck)) {
241                                         $GLOBALS['log']->fatal("IP Address mismatch: SESSION IP: {$_SESSION[$session_var]} CLIENT IP: {$clientIP}");
242                                         return false;
243                                 }
244                         } else {
245                                 return false;
246                         }
247         }
248         return true;
249 }
250
251 $server->register(
252     'seamless_login',
253     array('session'=>'xsd:string'),
254     array('return'=>'xsd:int'),
255     $NAMESPACE);
256
257 /**
258  * Perform a seamless login.  This is used internally during the sync process.
259  *
260  * @param String $session -- Session ID returned by a previous call to login.
261  * @return true -- if the session was authenticated
262  * @return false -- if the session could not be authenticated
263  */
264 function seamless_login($session){
265                 if(!validate_authenticated($session)){
266                         return 0;
267                 }
268                 
269                 return 1;
270 }
271
272 $server->register(
273     'get_entry_list',
274     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'query'=>'xsd:string', 'order_by'=>'xsd:string','offset'=>'xsd:int', 'select_fields'=>'tns:select_fields', 'max_results'=>'xsd:int', 'deleted'=>'xsd:int'),
275     array('return'=>'tns:get_entry_list_result'),
276     $NAMESPACE);
277
278 /**
279  * Retrieve a list of beans.  This is the primary method for getting list of SugarBeans from Sugar using the SOAP API.
280  *
281  * @param String $session -- Session ID returned by a previous call to login.
282  * @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)..
283  * @param String $query -- SQL where clause without the word 'where'
284  * @param String $order_by -- SQL order by clause without the phrase 'order by'
285  * @param String $offset -- The record offset to start from.
286  * @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.
287  * @param String $max_results -- The maximum number of records to return.  The default is the sugar configuration value for 'list_max_entries_per_page'
288  * @param Number $deleted -- false if deleted records should not be include, true if deleted records should be included.
289  * @return Array 'result_count' -- The number of records returned
290  *               'next_offset' -- 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.
291  *               'field_list' -- The vardef information on the selected fields.
292  *                      Array -- 'field'=>  'name' -- the name of the field
293  *                                          'type' -- the data type of the field
294  *                                          'label' -- the translation key for the label of the field
295  *                                          'required' -- Is the field required?
296  *                                          'options' -- Possible values for a drop down field
297  *               'entry_list' -- The records that were retrieved
298  *               'error' -- The SOAP error, if any
299  */
300 function get_entry_list($session, $module_name, $query, $order_by,$offset, $select_fields, $max_results, $deleted ){
301         global  $beanList, $beanFiles, $current_user;
302         $error = new SoapError();
303         if(!validate_authenticated($session)){
304                 $error->set_error('invalid_login');
305                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
306         }
307     $using_cp = false;
308     if($module_name == 'CampaignProspects'){
309         $module_name = 'Prospects';
310         $using_cp = true;
311     }
312         if(empty($beanList[$module_name])){
313                 $error->set_error('no_module');
314                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
315         }
316         global $current_user;
317         if(!check_modules_access($current_user, $module_name, 'read')){
318                 $error->set_error('no_access');
319                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
320         }
321
322         // If the maximum number of entries per page was specified, override the configuration value.
323         if($max_results > 0){
324                 global $sugar_config;
325                 $sugar_config['list_max_entries_per_page'] = $max_results;
326         }
327
328
329         $class_name = $beanList[$module_name];
330         require_once($beanFiles[$class_name]);
331         $seed = new $class_name();
332         if(! ($seed->ACLAccess('Export') && $seed->ACLAccess('list')))
333         {
334                 $error->set_error('no_access');
335                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
336         }
337
338         require_once 'include/SugarSQLValidate.php';
339         $valid = new SugarSQLValidate();
340         if(!$valid->validateQueryClauses($query, $order_by)) {
341         $GLOBALS['log']->error("Bad query: $query $order_by");
342             $error->set_error('no_access');
343             return array(
344                         'result_count' => -1,
345                         'error' => $error->get_soap_array()
346         );
347         }
348         if($query == ''){
349                 $where = '';
350         }
351         if($offset == '' || $offset == -1){
352                 $offset = 0;
353         }
354     if($using_cp){
355         $response = $seed->retrieveTargetList($query, $select_fields, $offset,-1,-1,$deleted);
356     }else{
357         $response = $seed->get_list($order_by, $query, $offset,-1,-1,$deleted,true);
358     }
359         $list = $response['list'];
360
361
362         $output_list = array();
363
364     $isEmailModule = false;
365     if($module_name == 'Emails'){
366         $isEmailModule = true;
367     }
368         // retrieve the vardef information on the bean's fields.
369         $field_list = array();
370     
371     require_once 'modules/Currencies/Currency.php';
372
373     $userCurrencyId = $current_user->getPreference('currency');
374     $userCurrency = new Currency;
375     $userCurrency->retrieve($userCurrencyId);
376
377         foreach($list as $value)
378         {
379                 if(isset($value->emailAddress)){
380                         $value->emailAddress->handleLegacyRetrieve($value);
381                 }
382         if($isEmailModule){
383             $value->retrieveEmailText();
384         }
385                 $value->fill_in_additional_detail_fields();
386
387         // bug 55129 - populate currency from user settings
388         if (property_exists($value, 'currency_id') && $userCurrency->deleted != 1)
389         {
390             // walk through all currency-related fields
391             foreach ($value->field_defs as $temp_field)
392             {
393                 if (isset($temp_field['type']) && 'relate' == $temp_field['type']
394                     && isset($temp_field['module'])  && 'Currencies' == $temp_field['module']
395                     && isset($temp_field['id_name']) && 'currency_id' == $temp_field['id_name'])
396                 {
397                     // populate related properties manually
398                     $temp_property     = $temp_field['name'];
399                     $currency_property = $temp_field['rname'];
400                     $value->$temp_property = $userCurrency->$currency_property;
401                 }
402                 else if ($value->currency_id != $userCurrency->id
403                          && isset($temp_field['type'])
404                          && 'currency' == $temp_field['type']
405                          && substr($temp_field['name'], -9) != '_usdollar')
406                 {
407                     $temp_property = $temp_field['name'];
408                     $value->$temp_property *= $userCurrency->conversion_rate;
409                 }
410             }
411
412             $value->currency_id = $userCurrencyId;
413         }
414         // end of bug 55129
415
416                 $output_list[] = get_return_value($value, $module_name);
417                 if(empty($field_list)){
418                         $field_list = get_field_list($value);
419                 }
420         }
421
422         // Filter the search results to only include the requested fields.
423         $output_list = filter_return_list($output_list, $select_fields, $module_name);
424
425         // Filter the list of fields to only include information on the requested fields.
426         $field_list = filter_return_list($field_list,$select_fields, $module_name);
427
428         // Calculate the offset for the start of the next page
429         $next_offset = $offset + sizeof($output_list);
430
431         return array('result_count'=>sizeof($output_list), 'next_offset'=>$next_offset,'field_list'=>$field_list, 'entry_list'=>$output_list, 'error'=>$error->get_soap_array());
432 }
433
434 $server->register(
435     'get_entry',
436     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'id'=>'xsd:string', 'select_fields'=>'tns:select_fields'),
437     array('return'=>'tns:get_entry_result'),
438     $NAMESPACE);
439
440 /**
441  * Retrieve a single SugarBean based on ID.
442  *
443  * @param String $session -- Session ID returned by a previous call to login.
444  * @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)..
445  * @param String $id -- The SugarBean's ID value.
446  * @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.
447  * @return unknown
448  */
449 function get_entry($session, $module_name, $id,$select_fields ){
450         return get_entries($session, $module_name, array($id), $select_fields);
451 }
452
453 $server->register(
454     'get_entries',
455     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'ids'=>'tns:select_fields', 'select_fields'=>'tns:select_fields'),
456     array('return'=>'tns:get_entry_result'),
457     $NAMESPACE);
458
459 /**
460  * Retrieve a list of SugarBean's based on provided IDs.
461  *
462  * @param String $session -- Session ID returned by a previous call to login.
463  * @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)..
464  * @param Array $ids -- An array of SugarBean IDs.
465  * @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.
466  * @return Array 'field_list' -- Var def information about the returned fields
467  *               'entry_list' -- The records that were retrieved
468  *               'error' -- The SOAP error, if any
469  */
470 function get_entries($session, $module_name, $ids,$select_fields ){
471         global  $beanList, $beanFiles;
472         $error = new SoapError();
473         $field_list = array();
474         $output_list = array();
475         if(!validate_authenticated($session)){
476                 $error->set_error('invalid_login');
477                 return array('field_list'=>$field_list, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
478         }
479     $using_cp = false;
480     if($module_name == 'CampaignProspects'){
481         $module_name = 'Prospects';
482         $using_cp = true;
483     }
484         if(empty($beanList[$module_name])){
485                 $error->set_error('no_module');
486                 return array('field_list'=>$field_list, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
487         }
488         global $current_user;
489         if(!check_modules_access($current_user, $module_name, 'read')){
490                 $error->set_error('no_access');
491                 return array('field_list'=>$field_list, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
492         }
493
494         $class_name = $beanList[$module_name];
495         require_once($beanFiles[$class_name]);
496
497         //todo can modify in there to call bean->get_list($order_by, $where, 0, -1, -1, $deleted);
498         //that way we do not have to call retrieve for each bean
499         //perhaps also add a select_fields to this, so we only get the fields we need
500         //and not do a select *
501         foreach($ids as $id){
502                 $seed = new $class_name();
503
504     if($using_cp){
505         $seed = $seed->retrieveTarget($id);
506     }else{
507                 if ($seed->retrieve($id) == null)
508                         $seed->deleted = 1;
509     }
510
511     if ($seed->deleted == 1) {
512         $list = array();
513         $list[] = array('name'=>'warning', 'value'=>'Access to this object is denied since it has been deleted or does not exist');
514                 $list[] = array('name'=>'deleted', 'value'=>'1');
515         $output_list[] = Array('id'=>$id,
516                                                                 'module_name'=> $module_name,
517                                                         'name_value_list'=>$list,
518                                                         );
519                 continue;
520     }
521         if(! $seed->ACLAccess('DetailView')){
522                 $error->set_error('no_access');
523                 return array('field_list'=>$field_list, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
524         }
525                 $output_list[] = get_return_value($seed, $module_name);
526
527                 if(empty($field_list)){
528                                 $field_list = get_field_list($seed);
529
530                 }
531         }
532
533                 $output_list = filter_return_list($output_list, $select_fields, $module_name);
534                 $field_list = filter_field_list($field_list,$select_fields, $module_name);
535
536         return array( 'field_list'=>$field_list, 'entry_list'=>$output_list, 'error'=>$error->get_soap_array());
537 }
538
539 $server->register(
540     'set_entry',
541     array('session'=>'xsd:string', 'module_name'=>'xsd:string',  'name_value_list'=>'tns:name_value_list'),
542     array('return'=>'tns:set_entry_result'),
543     $NAMESPACE);
544
545 /**
546  * Update or create a single SugarBean.
547  *
548  * @param String $session -- Session ID returned by a previous call to login.
549  * @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)..
550  * @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.
551  * @return Array    'id' -- the ID of the bean that was written to (-1 on error)
552  *                  'error' -- The SOAP error if any.
553  */
554 function set_entry($session,$module_name, $name_value_list){
555         global  $beanList, $beanFiles;
556
557         $error = new SoapError();
558         if(!validate_authenticated($session)){
559                 $error->set_error('invalid_login');
560                 return array('id'=>-1, 'error'=>$error->get_soap_array());
561         }
562         if(empty($beanList[$module_name])){
563                 $error->set_error('no_module');
564                 return array('id'=>-1, 'error'=>$error->get_soap_array());
565         }
566         global $current_user;
567         if(!check_modules_access($current_user, $module_name, 'write')){
568                 $error->set_error('no_access');
569                 return array('id'=>-1, 'error'=>$error->get_soap_array());
570         }
571
572         $class_name = $beanList[$module_name];
573         require_once($beanFiles[$class_name]);
574         $seed = new $class_name();
575
576         foreach($name_value_list as $value){
577         if($value['name'] == 'id' && isset($value['value']) && strlen($value['value']) > 0){
578                         $result = $seed->retrieve($value['value']);
579             //bug: 44680 - check to ensure the user has access before proceeding.
580             if(is_null($result))
581             {
582                 $error->set_error('no_access');
583                         return array('id'=>-1, 'error'=>$error->get_soap_array());
584             }
585             else
586             {
587                 break;
588             }
589
590                 }
591         }
592         foreach($name_value_list as $value){
593         $GLOBALS['log']->debug($value['name']." : ".$value['value']);
594                 $seed->$value['name'] = $value['value'];
595         }
596         if(! $seed->ACLAccess('Save') || ($seed->deleted == 1  &&  !$seed->ACLAccess('Delete')))
597         {
598                 $error->set_error('no_access');
599                 return array('id'=>-1, 'error'=>$error->get_soap_array());
600         }
601         $seed->save();
602         if($seed->deleted == 1){
603                         $seed->mark_deleted($seed->id);
604         }
605         return array('id'=>$seed->id, 'error'=>$error->get_soap_array());
606
607 }
608
609 $server->register(
610     'set_entries',
611     array('session'=>'xsd:string', 'module_name'=>'xsd:string',  'name_value_lists'=>'tns:name_value_lists'),
612     array('return'=>'tns:set_entries_result'),
613     $NAMESPACE);
614
615 /**
616  * Update or create a list of SugarBeans
617  *
618  * @param String $session -- Session ID returned by a previous call to login.
619  * @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)..
620  * @param Array $name_value_lists -- Array of Bean specific Arrays where the keys of the array are the SugarBean attributes, the values of the array are the values the attributes should have.
621  * @return Array    'ids' -- Array of the IDs of the beans that was written to (-1 on error)
622  *                  'error' -- The SOAP error if any.
623  */
624 function set_entries($session,$module_name, $name_value_lists){
625         $error = new SoapError();
626
627         if(!validate_authenticated($session)){
628                 $error->set_error('invalid_login');
629
630                 return array(
631                         'ids' => array(),
632                         'error' => $error->get_soap_array()
633                 );
634         }
635
636         return handle_set_entries($module_name, $name_value_lists, FALSE);
637 }
638
639 /*
640 NOTE SPECIFIC CODE
641 */
642 $server->register(
643         'set_note_attachment',
644         array('session'=>'xsd:string','note'=>'tns:note_attachment'),
645         array('return'=>'tns:set_entry_result'),
646         $NAMESPACE);
647
648 /**
649  * Add or replace the attachment on a Note.
650  *
651  * @param String $session -- Session ID returned by a previous call to login.
652  * @param Binary $note -- The flie contents of the attachment.
653  * @return Array 'id' -- The ID of the new note or -1 on error
654  *               'error' -- The SOAP error if any.
655  */
656 function set_note_attachment($session,$note)
657 {
658
659         $error = new SoapError();
660         if(!validate_authenticated($session)){
661                 $error->set_error('invalid_login');
662                 return array('id'=>-1, 'error'=>$error->get_soap_array());
663         }
664
665         require_once('modules/Notes/NoteSoap.php');
666         $ns = new NoteSoap();
667         return array('id'=>$ns->saveFile($note), 'error'=>$error->get_soap_array());
668
669 }
670
671 $server->register(
672     'get_note_attachment',
673     array('session'=>'xsd:string', 'id'=>'xsd:string'),
674     array('return'=>'tns:return_note_attachment'),
675     $NAMESPACE);
676
677 /**
678  * Retrieve an attachment from a note
679  * @param String $session -- Session ID returned by a previous call to login.
680  * @param Binary $note -- The flie contents of the attachment.
681  * @return Array 'id' -- The ID of the new note or -1 on error
682  *               'error' -- The SOAP error if any.
683  *
684  * @param String $session -- Session ID returned by a previous call to login.
685  * @param String $id -- The ID of the appropriate Note.
686  * @return Array 'note_attachment' -- Array String 'id' -- The ID of the Note containing the attachment
687  *                                          String 'filename' -- The file name of the attachment
688  *                                          Binary 'file' -- The binary contents of the file.
689  *               'error' -- The SOAP error if any.
690  */
691 function get_note_attachment($session,$id)
692 {
693         $error = new SoapError();
694         if(!validate_authenticated($session)){
695                 $error->set_error('invalid_login');
696                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
697         }
698
699         $note = new Note();
700
701         $note->retrieve($id);
702         if(!$note->ACLAccess('DetailView')){
703                 $error->set_error('no_access');
704                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
705         }
706         require_once('modules/Notes/NoteSoap.php');
707         $ns = new NoteSoap();
708         if(!isset($note->filename)){
709                 $note->filename = '';
710         }
711         $file= $ns->retrieveFile($id,$note->filename);
712         if($file == -1){
713                 $error->set_error('no_file');
714                 $file = '';
715         }
716
717         return array('note_attachment'=>array('id'=>$id, 'filename'=>$note->filename, 'file'=>$file), 'error'=>$error->get_soap_array());
718
719 }
720 $server->register(
721     'relate_note_to_module',
722     array('session'=>'xsd:string', 'note_id'=>'xsd:string', 'module_name'=>'xsd:string', 'module_id'=>'xsd:string'),
723     array('return'=>'tns:error_value'),
724     $NAMESPACE);
725
726 /**
727  * Attach a note to another bean.  Once you have created a note to store an
728  * attachment, the note needs to be related to the bean.
729  *
730  * @param String $session -- Session ID returned by a previous call to login.
731  * @param String $note_id -- The ID of the note that you want to associate with a bean
732  * @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)..
733  * @param String $module_id -- The ID of the bean that you want to associate the note with
734  * @return no error for success, error for failure
735  */
736 function relate_note_to_module($session,$note_id, $module_name, $module_id){
737         global  $beanList, $beanFiles;
738         $error = new SoapError();
739         if(!validate_authenticated($session)){
740                 $error->set_error('invalid_login');
741                 return $error->get_soap_array();
742         }
743         if(empty($beanList[$module_name])){
744                 $error->set_error('no_module');
745                 return $error->get_soap_array();
746         }
747         global $current_user;
748         if(!check_modules_access($current_user, $module_name, 'read')){
749                 $error->set_error('no_access');
750                 return $error->get_soap_array();
751         }
752         $class_name = $beanList['Notes'];
753         require_once($beanFiles[$class_name]);
754         $seed = new $class_name();
755         $seed->retrieve($note_id);
756         if(!$seed->ACLAccess('ListView')){
757                 $error->set_error('no_access');
758                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
759         }
760
761         if($module_name != 'Contacts'){
762                 $seed->parent_type=$module_name;
763                 $seed->parent_id = $module_id;
764
765         }else{
766
767                 $seed->contact_id=$module_id;
768
769         }
770
771         $seed->save();
772
773         return $error->get_soap_array();
774
775 }
776 $server->register(
777     'get_related_notes',
778     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'module_id'=>'xsd:string', 'select_fields'=>'tns:select_fields'),
779     array('return'=>'tns:get_entry_result'),
780     $NAMESPACE);
781
782 /**
783  * Retrieve the collection of notes that are related to a bean.
784  *
785  * @param String $session -- Session ID returned by a previous call to login.
786  * @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)..
787  * @param String $module_id -- The ID of the bean that you want to associate the note with
788  * @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.
789  * @return Array    'result_count' -- The number of records returned (-1 on error)
790  *                  'next_offset' -- 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.
791  *                  'field_list' -- The vardef information on the selected fields.
792  *                  'entry_list' -- The records that were retrieved
793  *                  'error' -- The SOAP error, if any
794  */
795 function get_related_notes($session,$module_name, $module_id, $select_fields){
796         global  $beanList, $beanFiles;
797         $error = new SoapError();
798         if(!validate_authenticated($session)){
799                 $error->set_error('invalid_login');
800                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
801         }
802         if(empty($beanList[$module_name])){
803                 $error->set_error('no_module');
804                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
805         }
806         global $current_user;
807         if(!check_modules_access($current_user, $module_name, 'read')){
808                 $error->set_error('no_access');
809                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
810         }
811
812         $class_name = $beanList[$module_name];
813         require_once($beanFiles[$class_name]);
814         $seed = new $class_name();
815         $seed->retrieve($module_id);
816         if(!$seed->ACLAccess('DetailView')){
817                 $error->set_error('no_access');
818                 return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
819         }
820         $list = $seed->get_linked_beans('notes','Note', array(), 0, -1, 0);
821
822         $output_list = Array();
823         $field_list = Array();
824         foreach($list as $value)
825         {
826                 $output_list[] = get_return_value($value, 'Notes');
827         if(empty($field_list))
828         {
829                         $field_list = get_field_list($value);
830                 }
831         }
832         $output_list = filter_return_list($output_list, $select_fields, $module_name);
833         $field_list = filter_field_list($field_list,$select_fields, $module_name);
834
835         return array('result_count'=>sizeof($output_list), 'next_offset'=>0,'field_list'=>$field_list, 'entry_list'=>$output_list, 'error'=>$error->get_soap_array());
836 }
837
838 $server->register(
839         'logout',
840         array('session'=>'xsd:string'),
841         array('return'=>'tns:error_value'),
842         $NAMESPACE);
843
844 /**
845  * Log out of the session.  This will destroy the session and prevent other's from using it.
846  *
847  * @param String $session -- Session ID returned by a previous call to login.
848  * @return Empty error on success, Error on failure
849  */
850 function logout($session){
851         global $current_user;
852
853         $error = new SoapError();
854         LogicHook::initialize();
855         if(validate_authenticated($session)){
856                 $current_user->call_custom_logic('before_logout');
857                 session_destroy();
858                 $GLOBALS['logic_hook']->call_custom_logic('Users', 'after_logout');
859                 return $error->get_soap_array();
860         }
861         $error->set_error('no_session');
862         $GLOBALS['logic_hook']->call_custom_logic('Users', 'after_logout');
863         return $error->get_soap_array();
864 }
865
866 $server->register(
867     'get_module_fields',
868     array('session'=>'xsd:string', 'module_name'=>'xsd:string'),
869     array('return'=>'tns:module_fields'),
870     $NAMESPACE);
871
872 /**
873  * Retrieve vardef information on the fields of the specified bean.
874  *
875  * @param String $session -- Session ID returned by a previous call to login.
876  * @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)..
877  * @return Array    'module_fields' -- The vardef information on the selected fields.
878  *                  'error' -- The SOAP error, if any
879  */
880 function get_module_fields($session, $module_name){
881         global  $beanList, $beanFiles;
882         $error = new SoapError();
883         $module_fields = array();
884         if(! validate_authenticated($session)){
885                 $error->set_error('invalid_session');
886                 return array('module_fields'=>$module_fields, 'error'=>$error->get_soap_array());
887         }
888         if(empty($beanList[$module_name])){
889                 $error->set_error('no_module');
890                 return array('module_fields'=>$module_fields, 'error'=>$error->get_soap_array());
891         }
892         global $current_user;
893         if(!check_modules_access($current_user, $module_name, 'read')){
894                 $error->set_error('no_access');
895                 return array('module_fields'=>$module_fields, 'error'=>$error->get_soap_array());
896         }
897         $class_name = $beanList[$module_name];
898
899         if(empty($beanFiles[$class_name]))
900         {
901        $error->set_error('no_file');
902        return array('module_fields'=>$module_fields, 'error'=>$error->get_soap_array());
903         }
904
905         require_once($beanFiles[$class_name]);
906         $seed = new $class_name();
907         if($seed->ACLAccess('ListView', true) || $seed->ACLAccess('DetailView', true) ||        $seed->ACLAccess('EditView', true) )
908     {
909         return get_return_module_fields($seed, $module_name, $error);
910     }
911     else
912     {
913         $error->set_error('no_access');
914         return array('module_fields'=>$module_fields, 'error'=>$error->get_soap_array());
915     }
916 }
917
918 $server->register(
919     'get_available_modules',
920     array('session'=>'xsd:string'),
921     array('return'=>'tns:module_list'),
922     $NAMESPACE);
923
924 /**
925  * Retrieve the list of available modules on the system available to the currently logged in user.
926  *
927  * @param String $session -- Session ID returned by a previous call to login.
928  * @return Array    'modules' -- An array of module names
929  *                  'error' -- The SOAP error, if any
930  */
931 function get_available_modules($session){
932         $error = new SoapError();
933         $modules = array();
934         if(! validate_authenticated($session)){
935                 $error->set_error('invalid_session');
936                 return array('modules'=> $modules, 'error'=>$error->get_soap_array());
937         }
938         $modules = array_keys($_SESSION['avail_modules']);
939
940         return array('modules'=> $modules, 'error'=>$error->get_soap_array());
941 }
942
943
944 $server->register(
945     'update_portal_user',
946     array('session'=>'xsd:string', 'portal_name'=>'xsd:string', 'name_value_list'=>'tns:name_value_list'),
947     array('return'=>'tns:error_value'),
948     $NAMESPACE);
949
950 /**
951  * Update the properties of a contact that is portal user.  Add the portal user name to the user's properties.
952  *
953  * @param String $session -- Session ID returned by a previous call to login.
954  * @param String $portal_name -- The portal user_name of the contact
955  * @param Array $name_value_list -- collection of 'name'=>'value' pairs for finding the contact
956  * @return Empty error on success, Error on failure
957  */
958 function update_portal_user($session,$portal_name, $name_value_list){
959         global  $beanList, $beanFiles;
960         $error = new SoapError();
961         if(! validate_authenticated($session)){
962                 $error->set_error('invalid_session');
963                 return $error->get_soap_array();
964         }
965         $contact = new Contact();
966
967         $searchBy = array('deleted'=>0);
968         foreach($name_value_list as $name_value){
969                         $searchBy[$name_value['name']] = $name_value['value'];
970         }
971         if($contact->retrieve_by_string_fields($searchBy) != null){
972                 if(!$contact->duplicates_found){
973                         $contact->portal_name = $portal_name;
974                         $contact->portal_active = 1;
975                         if($contact->ACLAccess('Save')){
976                                 $contact->save();
977                         }else{
978                                 $error->set_error('no_access');
979                         }
980                         return $error->get_soap_array();
981                 }
982                 $error->set_error('duplicates');
983                 return $error->get_soap_array();
984         }
985         $error->set_error('no_records');
986         return $error->get_soap_array();
987 }
988
989 $server->register(
990     'get_user_id',
991     array('session'=>'xsd:string'),
992     array('return'=>'xsd:string'),
993     $NAMESPACE);
994
995 /**
996  * Return the user_id of the user that is logged into the current session.
997  *
998  * @param String $session -- Session ID returned by a previous call to login.
999  * @return String -- the User ID of the current session
1000  *                  -1 on error.
1001  */
1002 function get_user_id($session){
1003         if(validate_authenticated($session)){
1004                 global $current_user;
1005                 return $current_user->id;
1006
1007         }else{
1008                 return '-1';
1009         }
1010 }
1011
1012 $server->register(
1013     'get_user_team_id',
1014     array('session'=>'xsd:string'),
1015     array('return'=>'xsd:string'),
1016     $NAMESPACE);
1017
1018 /**
1019  * Return the ID of the default team for the user that is logged into the current session.
1020  *
1021  * @param String $session -- Session ID returned by a previous call to login.
1022  * @return String -- the Team ID of the current user's default team
1023  *                  1 for Community Edition
1024  *                  -1 on error.
1025  */
1026 function get_user_team_id($session){
1027         if(validate_authenticated($session))
1028         {
1029                  return 1;
1030         }else{
1031                 return '-1';
1032         }
1033 }
1034
1035 $server->register(
1036     'get_server_time',
1037     array(),
1038     array('return'=>'xsd:string'),
1039     $NAMESPACE);
1040
1041 /**
1042  * Return the current time on the server in the format 'Y-m-d H:i:s'.  This time is in the server's default timezone.
1043  *
1044  * @return String -- The current date/time 'Y-m-d H:i:s'
1045  */
1046 function get_server_time(){
1047         return date('Y-m-d H:i:s');
1048 }
1049
1050 $server->register(
1051     'get_gmt_time',
1052     array(),
1053     array('return'=>'xsd:string'),
1054     $NAMESPACE);
1055
1056 /**
1057  * Return the current time on the server in the format 'Y-m-d H:i:s'.  This time is in GMT.
1058  *
1059  * @return String -- The current date/time 'Y-m-d H:i:s'
1060  */
1061 function get_gmt_time(){
1062         return TimeDate::getInstance()->nowDb();
1063 }
1064
1065 $server->register(
1066     'get_sugar_flavor',
1067     array(),
1068     array('return'=>'xsd:string'),
1069     $NAMESPACE);
1070
1071 /**
1072  * Retrieve the specific flavor of sugar.
1073  *
1074  * @return String   'CE' -- For Community Edition
1075  *                  'PRO' -- For Professional
1076  *                  'ENT' -- For Enterprise
1077  */
1078 function get_sugar_flavor(){
1079  global $sugar_flavor;
1080
1081  return $sugar_flavor;
1082 }
1083
1084
1085 $server->register(
1086     'get_server_version',
1087     array(),
1088     array('return'=>'xsd:string'),
1089     $NAMESPACE);
1090
1091 /**
1092  * Retrieve the version number of Sugar that the server is running.
1093  *
1094  * @return String -- The current sugar version number.
1095  *                   '1.0' on error.
1096  */
1097 function get_server_version(){
1098
1099         $admin  = new Administration();
1100         $admin->retrieveSettings('info');
1101         if(isset($admin->settings['info_sugar_version'])){
1102                 return $admin->settings['info_sugar_version'];
1103         }else{
1104                 return '1.0';
1105         }
1106
1107 }
1108
1109 $server->register(
1110     'get_relationships',
1111     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'module_id'=>'xsd:string', 'related_module'=>'xsd:string', 'related_module_query'=>'xsd:string', 'deleted'=>'xsd:int'),
1112     array('return'=>'tns:get_relationships_result'),
1113     $NAMESPACE);
1114
1115 /**
1116  * Retrieve a collection of beans tha are related to the specified bean.
1117  * As of 4.5.1c, all combinations of related modules are supported
1118  *
1119  * @param String $session -- Session ID returned by a previous call to login.
1120  * @param String $module_name -- The name of the module that the primary record is 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)..
1121  * @param String $module_id -- The ID of the bean in the specified module
1122  * @param String $related_module -- The name of the related 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)..
1123  * @param String $related_module_query -- A portion of the where clause of the SQL statement to find the related items.  The SQL query will already be filtered to only include the beans that are related to the specified bean.
1124  * @param Number $deleted -- false if deleted records should not be include, true if deleted records should be included.
1125  * @return unknown
1126  */
1127 function get_relationships($session, $module_name, $module_id, $related_module, $related_module_query, $deleted){
1128                 $error = new SoapError();
1129         $ids = array();
1130         if(!validate_authenticated($session)){
1131                 $error->set_error('invalid_login');
1132                 return array('ids'=>$ids,'error'=> $error->get_soap_array());
1133         }
1134         global  $beanList, $beanFiles;
1135         $error = new SoapError();
1136
1137         if(empty($beanList[$module_name]) || empty($beanList[$related_module])){
1138                 $error->set_error('no_module');
1139                 return array('ids'=>$ids, 'error'=>$error->get_soap_array());
1140         }
1141         $class_name = $beanList[$module_name];
1142         require_once($beanFiles[$class_name]);
1143         $mod = new $class_name();
1144         $mod->retrieve($module_id);
1145         if(!$mod->ACLAccess('DetailView')){
1146                 $error->set_error('no_access');
1147                 return array('ids'=>$ids, 'error'=>$error->get_soap_array());
1148         }
1149
1150         require_once 'include/SugarSQLValidate.php';
1151         $valid = new SugarSQLValidate();
1152         if(!$valid->validateQueryClauses($related_module_query)) {
1153         $GLOBALS['log']->error("Bad query: $related_module_query");
1154         $error->set_error('no_access');
1155             return array(
1156                         'result_count' => -1,
1157                         'error' => $error->get_soap_array()
1158                 );
1159     }
1160
1161     $id_list = get_linked_records($related_module, $module_name, $module_id);
1162
1163         if ($id_list === FALSE) {
1164                 $error->set_error('no_relationship_support');
1165                 return array('ids'=>$ids, 'error'=>$error->get_soap_array());
1166         }
1167         elseif (count($id_list) == 0) {
1168                 return array('ids'=>$ids, 'error'=>$error->get_soap_array());
1169         }
1170
1171         $list = array();
1172
1173         $in = "'".implode("', '", $id_list)."'";
1174
1175         $related_class_name = $beanList[$related_module];
1176         require_once($beanFiles[$related_class_name]);
1177         $related_mod = new $related_class_name();
1178
1179         $sql = "SELECT {$related_mod->table_name}.id FROM {$related_mod->table_name} ";
1180
1181
1182     if (isset($related_mod->custom_fields)) {
1183         $customJoin = $related_mod->custom_fields->getJOIN();
1184         $sql .= $customJoin ? $customJoin['join'] : '';
1185     }
1186
1187         $sql .= " WHERE {$related_mod->table_name}.id IN ({$in}) ";
1188
1189         if (!empty($related_module_query)) {
1190                 $sql .= " AND ( {$related_module_query} )";
1191         }
1192
1193         $result = $related_mod->db->query($sql);
1194         while ($row = $related_mod->db->fetchByAssoc($result)) {
1195                 $list[] = $row['id'];
1196         }
1197
1198         $return_list = array();
1199
1200         foreach($list as $id) {
1201                 $related_class_name = $beanList[$related_module];
1202                 $related_mod = new $related_class_name();
1203                 $related_mod->retrieve($id);
1204
1205                 $return_list[] = array(
1206                         'id' => $id,
1207                         'date_modified' => $related_mod->date_modified,
1208                         'deleted' => $related_mod->deleted
1209                 );
1210         }
1211
1212         return array('ids' => $return_list, 'error' => $error->get_soap_array());
1213 }
1214
1215
1216 $server->register(
1217     'set_relationship',
1218     array('session'=>'xsd:string','set_relationship_value'=>'tns:set_relationship_value'),
1219     array('return'=>'tns:error_value'),
1220     $NAMESPACE);
1221
1222 /**
1223  * Set a single relationship between two beans.  The items are related by module name and id.
1224  *
1225  * @param String $session -- Session ID returned by a previous call to login.
1226  * @param Array $set_relationship_value --
1227  *      'module1' -- The name of the module that the primary record is 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)..
1228  *      'module1_id' -- The ID of the bean in the specified module
1229  *      'module2' -- The name of the module that the related record is 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)..
1230  *      'module2_id' -- The ID of the bean in the specified module
1231  * @return Empty error on success, Error on failure
1232  */
1233 function set_relationship($session, $set_relationship_value){
1234         $error = new SoapError();
1235         if(!validate_authenticated($session)){
1236                 $error->set_error('invalid_login');
1237                 return $error->get_soap_array();
1238         }
1239         return handle_set_relationship($set_relationship_value, $session);
1240 }
1241
1242 $server->register(
1243     'set_relationships',
1244     array('session'=>'xsd:string','set_relationship_list'=>'tns:set_relationship_list'),
1245     array('return'=>'tns:set_relationship_list_result'),
1246     $NAMESPACE);
1247
1248 /**
1249  * Setup several relationships between pairs of beans.  The items are related by module name and id.
1250  *
1251  * @param String $session -- Session ID returned by a previous call to login.
1252  * @param Array $set_relationship_list -- One for each relationship to setup.  Each entry is itself an array.
1253  *      'module1' -- The name of the module that the primary record is 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)..
1254  *      'module1_id' -- The ID of the bean in the specified module
1255  *      'module2' -- The name of the module that the related record is 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)..
1256  *      'module2_id' -- The ID of the bean in the specified module
1257  * @return Empty error on success, Error on failure
1258  */
1259 function set_relationships($session, $set_relationship_list){
1260         $error = new SoapError();
1261         if(!validate_authenticated($session)){
1262                 $error->set_error('invalid_login');
1263                 return -1;
1264         }
1265         $count = 0;
1266         $failed = 0;
1267         foreach($set_relationship_list as $set_relationship_value){
1268                 $reter = handle_set_relationship($set_relationship_value, $session);
1269                 if($reter['number'] == 0){
1270                         $count++;
1271                 }else{
1272                         $failed++;
1273                 }
1274         }
1275         return array('created'=>$count , 'failed'=>$failed, 'error'=>$error);
1276 }
1277
1278
1279
1280 //INTERNAL FUNCTION NOT EXPOSED THROUGH SOAP
1281 /**
1282  * (Internal) Create a relationship between two beans.
1283  *
1284  * @param Array $set_relationship_value --
1285  *      'module1' -- The name of the module that the primary record is 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)..
1286  *      'module1_id' -- The ID of the bean in the specified module
1287  *      'module2' -- The name of the module that the related record is 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)..
1288  *      'module2_id' -- The ID of the bean in the specified module
1289  * @return Empty error on success, Error on failure
1290  */
1291 function handle_set_relationship($set_relationship_value, $session='')
1292 {
1293     global  $beanList, $beanFiles;
1294     $error = new SoapError();
1295
1296     $module1 = $set_relationship_value['module1'];
1297     $module1_id = $set_relationship_value['module1_id'];
1298     $module2 = $set_relationship_value['module2'];
1299     $module2_id = $set_relationship_value['module2_id'];
1300
1301     if(empty($beanList[$module1]) || empty($beanList[$module2]) )
1302     {
1303         $error->set_error('no_module');
1304         return $error->get_soap_array();
1305     }
1306     $class_name = $beanList[$module1];
1307     require_once($beanFiles[$class_name]);
1308     $mod = new $class_name();
1309     $mod->retrieve($module1_id);
1310         if(!$mod->ACLAccess('DetailView')){
1311                 $error->set_error('no_access');
1312                 return $error->get_soap_array();
1313         }
1314         if($module1 == "Contacts" && $module2 == "Users"){
1315                 $key = 'contacts_users_id';
1316         }
1317         else{
1318         $key = array_search(strtolower($module2),$mod->relationship_fields);
1319         if(!$key) {
1320             $key = Relationship::retrieve_by_modules($module1, $module2, $GLOBALS['db']);
1321
1322             // BEGIN SnapLogic fix for bug 32064
1323             if ($module1 == "Quotes" && $module2 == "ProductBundles") {
1324                 // Alternative solution is perhaps to
1325                 // do whatever Sugar does when the same
1326                 // request is received from the web:
1327                 $pb_cls = $beanList[$module2];
1328                 $pb = new $pb_cls();
1329                 $pb->retrieve($module2_id);
1330
1331                 // Check if this relationship already exists
1332                 $query = "SELECT count(*) AS count FROM product_bundle_quote WHERE quote_id = '{$module1_id}' AND bundle_id = '{$module2_id}' AND deleted = '0'";
1333                 $result = $GLOBALS['db']->query($query, true, "Error checking for previously existing relationship between quote and product_bundle");
1334                 $row = $GLOBALS['db']->fetchByAssoc($result);
1335                 if(isset($row['count']) && $row['count'] > 0){
1336                     return $error->get_soap_array();
1337                 }
1338
1339                 $query = "SELECT MAX(bundle_index)+1 AS idx FROM product_bundle_quote WHERE quote_id = '{$module1_id}' AND deleted='0'";
1340                 $result = $GLOBALS['db']->query($query, true, "Error getting bundle_index");
1341                 $GLOBALS['log']->debug("*********** Getting max bundle_index");
1342                 $GLOBALS['log']->debug($query);
1343                 $row = $GLOBALS['db']->fetchByAssoc($result);
1344
1345                 $idx = 0;
1346                 if ($row) {
1347                     $idx = $row['idx'];
1348                 }
1349
1350                 $pb->set_productbundle_quote_relationship($module1_id,$module2_id,$idx);
1351                 $pb->save();
1352                 return $error->get_soap_array();
1353
1354             } else if ($module1 == "ProductBundles" && $module2 == "Products") {
1355                 // And, well, similar things apply in this case
1356                 $pb_cls = $beanList[$module1];
1357                 $pb = new $pb_cls();
1358                 $pb->retrieve($module1_id);
1359
1360                 // Check if this relationship already exists
1361                 $query = "SELECT count(*) AS count FROM product_bundle_product WHERE bundle_id = '{$module1_id}' AND product_id = '{$module2_id}' AND deleted = '0'";
1362                 $result = $GLOBALS['db']->query($query, true, "Error checking for previously existing relationship between quote and product_bundle");
1363                 $row = $GLOBALS['db']->fetchByAssoc($result);
1364                 if(isset($row['count']) && $row['count'] > 0){
1365                     return $error->get_soap_array();
1366                 }
1367
1368                 $query = "SELECT MAX(product_index)+1 AS idx FROM product_bundle_product WHERE bundle_id='{$module1_id}'";
1369                 $result = $GLOBALS['db']->query($query, true, "Error getting bundle_index");
1370                 $GLOBALS['log']->debug("*********** Getting max bundle_index");
1371                 $GLOBALS['log']->debug($query);
1372                 $row = $GLOBALS['db']->fetchByAssoc($result);
1373
1374                 $idx = 0;
1375                 if ($row) {
1376                     $idx = $row['idx'];
1377                 }
1378                 $pb->set_productbundle_product_relationship($module2_id,$idx,$module1_id);
1379                 $pb->save();
1380
1381                 $prod_cls = $beanList[$module2];
1382                 $prod = new $prod_cls();
1383                 $prod->retrieve($module2_id);
1384                 $prod->quote_id = $pb->quote_id;
1385                 $prod->save();
1386                 return $error->get_soap_array();
1387             }
1388             // END SnapLogic fix for bug 32064
1389
1390                 if (!empty($key)) {
1391                         $mod->load_relationship($key);
1392                         $mod->$key->add($module2_id);
1393                         return $error->get_soap_array();
1394                 } // if
1395         }
1396     }
1397
1398     if(!$key)
1399     {
1400         $error->set_error('no_module');
1401         return $error->get_soap_array();
1402     }
1403
1404     if(($module1 == 'Meetings' || $module1 == 'Calls') && ($module2 == 'Contacts' || $module2 == 'Users')){
1405         $key = strtolower($module2);
1406         $mod->load_relationship($key);
1407         $mod->$key->add($module2_id);
1408     }
1409     else if ($module1 == 'Contacts' && ($module2 == 'Notes' || $module2 == 'Calls' || $module2 == 'Meetings' || $module2 == 'Tasks') && !empty($session)){
1410         $mod->$key = $module2_id;
1411         $mod->save_relationship_changes(false);
1412         if (!empty($mod->account_id)) {
1413             // when setting a relationship from a Contact to these activities, if the Contacts is related to an Account,
1414             // we want to associate that Account to the activity as well
1415             $ret = set_relationship($session, array('module1'=>'Accounts', 'module1_id'=>$mod->account_id, 'module2'=>$module2, 'module2_id'=>$module2_id));
1416         }
1417     }
1418     else{
1419         $mod->$key = $module2_id;
1420         $mod->save_relationship_changes(false);
1421     }
1422
1423     return $error->get_soap_array();
1424 }
1425
1426
1427 $server->register(
1428         'set_document_revision',
1429         array('session'=>'xsd:string','note'=>'tns:document_revision'),
1430         array('return'=>'tns:set_entry_result'),
1431         $NAMESPACE);
1432
1433 /**
1434  * Enter description here...
1435  *
1436  * @param String $session -- Session ID returned by a previous call to login.
1437  * @param unknown_type $document_revision
1438  * @return unknown
1439  */
1440 function set_document_revision($session,$document_revision)
1441 {
1442
1443         $error = new SoapError();
1444         if(!validate_authenticated($session)){
1445                 $error->set_error('invalid_login');
1446                 return array('id'=>-1, 'error'=>$error->get_soap_array());
1447         }
1448
1449         require_once('modules/Documents/DocumentSoap.php');
1450         $dr = new DocumentSoap();
1451         return array('id'=>$dr->saveFile($document_revision), 'error'=>$error->get_soap_array());
1452
1453 }
1454
1455 $server->register(
1456         'search_by_module',
1457         array('user_name'=>'xsd:string','password'=>'xsd:string','search_string'=>'xsd:string', 'modules'=>'tns:select_fields', 'offset'=>'xsd:int', 'max_results'=>'xsd:int'),
1458         array('return'=>'tns:get_entry_list_result'),
1459         $NAMESPACE);
1460
1461 /**
1462  * Given a list of modules to search and a search string, return the id, module_name, along with the fields
1463  * as specified in the $query_array
1464  *
1465  * @param string $user_name             - username of the Sugar User
1466  * @param string $password                      - password of the Sugar User
1467  * @param string $search_string         - string to search
1468  * @param string[] $modules                     - array of modules to query
1469  * @param int $offset                           - a specified offset in the query
1470  * @param int $max_results                      - max number of records to return
1471  * @return get_entry_list_result        - id, module_name, and list of fields from each record
1472  */
1473 function search_by_module($user_name, $password, $search_string, $modules, $offset, $max_results){
1474         global  $beanList, $beanFiles;
1475
1476         $error = new SoapError();
1477     $hasLoginError = false;
1478
1479     if(empty($user_name) && !empty($password))
1480     {
1481         if(!validate_authenticated($password))
1482         {
1483             $hasLoginError = true;
1484         }
1485     } else if(!validate_user($user_name, $password)) {
1486                 $hasLoginError = true;
1487         }
1488
1489     //If there is a login error, then return the error here
1490     if($hasLoginError)
1491     {
1492         $error->set_error('invalid_login');
1493         return array('result_count'=>-1, 'entry_list'=>array(), 'error'=>$error->get_soap_array());
1494     }
1495
1496         global $current_user;
1497         if($max_results > 0){
1498                 global $sugar_config;
1499                 $sugar_config['list_max_entries_per_page'] = $max_results;
1500         }
1501         //  MRF - BUG:19552 - added a join for accounts' emails below
1502         $query_array = array('Accounts'=>array('where'=>array('Accounts' => array(0 => "accounts.name like '{0}%'"), 'EmailAddresses' => array(0 => "ea.email_address like '{0}%'")),'fields'=>"accounts.id, accounts.name"),
1503                                 'Bugs'=>array('where'=>array('Bugs' => array(0 => "bugs.name like '{0}%'", 1 => "bugs.bug_number = {0}")),'fields'=>"bugs.id, bugs.name, bugs.bug_number"),
1504                                                         'Cases'=>array('where'=>array('Cases' => array(0 => "cases.name like '{0}%'", 1 => "cases.case_number = {0}")),'fields'=>"cases.id, cases.name, cases.case_number"),
1505                                                         'Leads'=>array('where'=>array('Leads' => array(0 => "leads.first_name like '{0}%'",1 => "leads.last_name like '{0}%'"), 'EmailAddresses' => array(0 => "ea.email_address like '{0}%'")), 'fields'=>"leads.id, leads.first_name, leads.last_name, leads.status"),
1506                                                         'Project'=>array('where'=>array('Project' => array(0 => "project.name like '{0}%'")), 'fields'=>"project.id, project.name"),
1507                             'ProjectTask'=>array('where'=>array('ProjectTask' => array(0 => "project.id = '{0}'")), 'fields'=>"project_task.id, project_task.name"),
1508                                                         'Contacts'=>array('where'=>array('Contacts' => array(0 => "contacts.first_name like '{0}%'", 1 => "contacts.last_name like '{0}%'"), 'EmailAddresses' => array(0 => "ea.email_address like '{0}%'")),'fields'=>"contacts.id, contacts.first_name, contacts.last_name"),
1509                                                         'Opportunities'=>array('where'=>array('Opportunities' => array(0 => "opportunities.name like '{0}%'")), 'fields'=>"opportunities.id, opportunities.name"),
1510                                                         'Users'=>array('where'=>array('EmailAddresses' => array(0 => "ea.email_address like '{0}%'")),'fields'=>"users.id, users.user_name, users.first_name, ea.email_address"),
1511                                                 );
1512
1513         $more_query_array = array();
1514         foreach($modules as $module) {
1515             if (!array_key_exists($module, $query_array)) {
1516                 $lc_module = strtolower($module);
1517                 $more_query_array[$module] = array('where'=>array($module => array(0 => "$lc_module.name like '{0}%'")), 'fields'=>"$lc_module.id, $lc_module.name");
1518             }
1519         }
1520
1521         if (!empty($more_query_array)) {
1522             $query_array = array_merge($query_array, $more_query_array);
1523         }
1524
1525         if(!empty($search_string) && isset($search_string)){
1526                 foreach($modules as $module_name){
1527                         $class_name = $beanList[$module_name];
1528                         require_once($beanFiles[$class_name]);
1529                         $seed = new $class_name();
1530                         if(empty($beanList[$module_name])){
1531                                 continue;
1532                         }
1533                         if(!check_modules_access($current_user, $module_name, 'read')){
1534                                 continue;
1535                         }
1536                         if(! $seed->ACLAccess('ListView'))
1537                         {
1538                                 continue;
1539                         }
1540
1541                         if(isset($query_array[$module_name])){
1542                                 $query = '';
1543                                 $tmpQuery = '';
1544                                 //split here to do while loop
1545                                 foreach($query_array[$module_name]['where'] as $key => $value){
1546                                         foreach($value as $where_clause){
1547                                                 $addQuery = true;
1548                                                 if(!empty($query))
1549                                                         $tmpQuery = ' UNION ';
1550                                                 $tmpQuery .= "SELECT ".$query_array[$module_name]['fields']." FROM $seed->table_name ";
1551                                                 // We need to confirm that the user is a member of the team of the item.
1552
1553
1554                                 if($module_name == 'ProjectTask'){
1555                                     $tmpQuery .= "INNER JOIN project ON $seed->table_name.project_id = project.id ";
1556                                 }
1557
1558                                 if(isset($seed->emailAddress) && $key == 'EmailAddresses'){
1559                                         $tmpQuery .= " INNER JOIN email_addr_bean_rel eabl  ON eabl.bean_id = $seed->table_name.id and eabl.deleted=0";
1560                                         $tmpQuery .= " INNER JOIN email_addresses ea ON (ea.id = eabl.email_address_id) ";
1561                                 }
1562                                                 $where = "WHERE (";
1563                                                 $search_terms = explode(", ", $search_string);
1564                                                 $termCount = count($search_terms);
1565                                                 $count = 1;
1566                                                 if($key != 'EmailAddresses'){
1567                                                         foreach($search_terms as $term){
1568                                                                 if(!strpos($where_clause, 'number')){
1569                                                                         $where .= string_format($where_clause,array($GLOBALS['db']->quote($term)));
1570                                                                 }elseif(is_numeric($term)){
1571                                                                         $where .= string_format($where_clause,array($GLOBALS['db']->quote($term)));
1572                                                                 }else{
1573                                                                         $addQuery = false;
1574                                                                 }
1575                                                                 if($count < $termCount){
1576                                                                         $where .= " OR ";
1577                                                                 }
1578                                                                 $count++;
1579                                                         }
1580                                                 }else{
1581                             $where .= '(';
1582                             foreach ($search_terms as $term)
1583                             {
1584                                 $where .= "ea.email_address LIKE '".$GLOBALS['db']->quote($term)."'";
1585                                 if ($count < $termCount)
1586                                 {
1587                                     $where .= " OR ";
1588                                 }
1589                                 $count++;
1590                             }
1591                             $where .= ')';
1592                                                 }
1593                                                 $tmpQuery .= $where;
1594                                                 $tmpQuery .= ") AND $seed->table_name.deleted = 0";
1595                                                 if($addQuery)
1596                                                         $query .= $tmpQuery;
1597                                         }
1598                                 }
1599                                 //grab the items from the db
1600                                 $result = $seed->db->query($query, $offset, $max_results);
1601
1602                                 while(($row = $seed->db->fetchByAssoc($result)) != null){
1603                                         $list = array();
1604                                         $fields = explode(", ", $query_array[$module_name]['fields']);
1605                                         foreach($fields as $field){
1606                                                 $field_names = explode(".", $field);
1607                                                 $list[$field] = array('name'=>$field_names[1], 'value'=>$row[$field_names[1]]);
1608                                         }
1609
1610                                         $output_list[] = array('id'=>$row['id'],
1611                                                                            'module_name'=>$module_name,
1612                                                                            'name_value_list'=>$list);
1613                                         if(empty($field_list)){
1614                                                 $field_list = get_field_list($row);
1615                                         }
1616                                 }//end while
1617                         }
1618                 }//end foreach
1619         }
1620
1621         $next_offset = $offset + sizeof($output_list);
1622
1623         return array('result_count'=>sizeof($output_list), 'next_offset'=>$next_offset,'field_list'=>$field_list, 'entry_list'=>$output_list, 'error'=>$error->get_soap_array());
1624
1625 }//end function
1626
1627
1628 $server->register(
1629 'get_mailmerge_document',
1630 array('session'=>'xsd:string','file_name'=>'xsd:string', 'fields' => 'tns:select_fields'),
1631 array('return'=>'tns:get_sync_result_encoded'),
1632 $NAMESPACE);
1633
1634 /**
1635  * Get MailMerge document
1636  *
1637  * @param String $session -- Session ID returned by a previous call to login.
1638  * @param unknown_type $file_name
1639  * @param unknown_type $fields
1640  * @return unknown
1641  */
1642 function get_mailmerge_document($session, $file_name, $fields)
1643 {
1644     global  $beanList, $beanFiles, $app_list_strings;
1645     $error = new SoapError();
1646     if(!validate_authenticated($session))
1647     {
1648         $error->set_error('invalid_login');
1649         return array('result'=>'', 'error'=>$error->get_soap_array());
1650     }
1651     if(!preg_match('/^sugardata[\.\d\s]+\.php$/', $file_name)) {
1652         $error->set_error('no_records');
1653         return array('result'=>'', 'error'=>$error->get_soap_array());
1654     }
1655     $html = '';
1656
1657     $file_name = sugar_cached('MergedDocuments/').pathinfo($file_name, PATHINFO_BASENAME);
1658
1659     $master_fields = array();
1660     $related_fields = array();
1661
1662     if(file_exists($file_name))
1663     {
1664         include($file_name);
1665
1666         $class1 = $merge_array['master_module'];
1667         $beanL = $beanList[$class1];
1668         $bean1 = $beanFiles[$beanL];
1669         require_once($bean1);
1670         $seed1 = new $beanL();
1671
1672         if(!empty($merge_array['related_module']))
1673         {
1674             $class2 = $merge_array['related_module'];
1675             $beanR = $beanList[$class2];
1676             $bean2 = $beanFiles[$beanR];
1677             require_once($bean2);
1678             $seed2 = new $beanR();
1679         }
1680
1681         //parse fields
1682         //$token1 = strtolower($class1);
1683         if($class1 == 'Prospects'){
1684             $class1 = 'CampaignProspects';
1685         }
1686         foreach($fields as $field)
1687         {
1688             $pos = strpos(strtolower($field), strtolower($class1));
1689             $pos2 = strpos(strtolower($field), strtolower($class2));
1690             if($pos !== false){
1691                 $fieldName = str_replace(strtolower($class1).'_', '', strtolower($field));
1692                 array_push($master_fields, $fieldName);
1693             }else if($pos2 !== false){
1694                 $fieldName = str_replace(strtolower($class2).'_', '', strtolower($field));
1695                 array_push($related_fields, $fieldName);
1696             }
1697         }
1698
1699         $html = '<html ' . get_language_header() .'><body><table border = 1><tr>';
1700
1701         foreach($master_fields as $master_field){
1702             $html .= '<td>'.$class1.'_'.$master_field.'</td>';
1703         }
1704         foreach($related_fields as $related_field){
1705             $html .= '<td>'.$class2.'_'.$related_field.'</td>';
1706         }
1707         $html .= '</tr>';
1708
1709         $ids = $merge_array['ids'];
1710         $is_prospect_merge = ($seed1->object_name == 'Prospect');
1711         foreach($ids as $key=>$value){
1712             if($is_prospect_merge){
1713                 $seed1 = $seed1->retrieveTarget($key);
1714             }else{
1715                 $seed1->retrieve($key);
1716             }
1717             $html .= '<tr>';
1718             foreach($master_fields as $master_field){
1719                 if(isset($seed1->$master_field)){
1720                     if($seed1->field_name_map[$master_field]['type'] == 'enum'){
1721                         //pull in the translated dom
1722                          $html .='<td>'.$app_list_strings[$seed1->field_name_map[$master_field]['options']][$seed1->$master_field].'</td>';
1723                     }else{
1724                         $html .='<td>'.$seed1->$master_field.'</td>';
1725                     }
1726                 }
1727                 else{
1728                     $html .= '<td></td>';
1729                     }
1730             }
1731             if(isset($value) && !empty($value)){
1732                 $seed2->retrieve($value);
1733                 foreach($related_fields as $related_field){
1734                     if(isset($seed2->$related_field)){
1735                         if($seed2->field_name_map[$related_field]['type'] == 'enum'){
1736                             //pull in the translated dom
1737                             $html .='<td>'.$app_list_strings[$seed2->field_name_map[$related_field]['options']][$seed2->$related_field].'</td>';
1738                         }else{
1739                             $html .= '<td>'.$seed2->$related_field.'</td>';
1740                         }
1741                     }
1742                     else{
1743                         $html .= '<td></td>';
1744                     }
1745                 }
1746             }
1747             $html .= '</tr>';
1748         }
1749         $html .= "</table></body></html>";
1750      }
1751
1752     $result = base64_encode($html);
1753     return array('result' => $result, 'error' => $error);
1754 }
1755
1756 $server->register(
1757 'get_mailmerge_document2',
1758 array('session'=>'xsd:string','file_name'=>'xsd:string', 'fields' => 'tns:select_fields'),
1759 array('return'=>'tns:get_mailmerge_document_result'),
1760 $NAMESPACE);
1761
1762 /**
1763  * Enter description here...
1764  *
1765  * @param String $session -- Session ID returned by a previous call to login.
1766  * @param unknown_type $file_name
1767  * @param unknown_type $fields
1768  * @return unknown
1769  */
1770 function get_mailmerge_document2($session, $file_name, $fields)
1771 {
1772     global  $beanList, $beanFiles, $app_list_strings, $app_strings;
1773
1774     $error = new SoapError();
1775     if(!validate_authenticated($session))
1776     {
1777         $GLOBALS['log']->error('invalid_login');
1778         $error->set_error('invalid_login');
1779         return array('result'=>'', 'error'=>$error->get_soap_array());
1780     }
1781     if(!preg_match('/^sugardata[\.\d\s]+\.php$/', $file_name)) {
1782         $GLOBALS['log']->error($app_strings['ERR_NO_SUCH_FILE'] . " ({$file_name})");
1783         $error->set_error('no_records');
1784         return array('result'=>'', 'error'=>$error->get_soap_array());
1785     }
1786     $html = '';
1787
1788     $file_name = sugar_cached('MergedDocuments/').pathinfo($file_name, PATHINFO_BASENAME);
1789
1790     $master_fields = array();
1791     $related_fields = array();
1792
1793     if(file_exists($file_name))
1794     {
1795         include($file_name);
1796
1797         $class1 = $merge_array['master_module'];
1798         $beanL = $beanList[$class1];
1799         $bean1 = $beanFiles[$beanL];
1800         require_once($bean1);
1801         $seed1 = new $beanL();
1802
1803         if(!empty($merge_array['related_module']))
1804         {
1805             $class2 = $merge_array['related_module'];
1806             $beanR = $beanList[$class2];
1807             $bean2 = $beanFiles[$beanR];
1808             require_once($bean2);
1809             $seed2 = new $beanR();
1810         }
1811
1812         //parse fields
1813         //$token1 = strtolower($class1);
1814         if($class1 == 'Prospects'){
1815             $class1 = 'CampaignProspects';
1816         }
1817         foreach($fields as $field)
1818         {
1819                 $pos = strpos(strtolower($field), strtolower($class1));
1820             $pos2 = strpos(strtolower($field), strtolower($class2));
1821             if($pos !== false){
1822                 $fieldName = str_replace(strtolower($class1).'_', '', strtolower($field));
1823                 array_push($master_fields, $fieldName);
1824             }else if($pos2 !== false){
1825                 $fieldName = str_replace(strtolower($class2).'_', '', strtolower($field));
1826                 array_push($related_fields, $fieldName);
1827             }
1828         }
1829
1830         $html = '<html ' . get_language_header() . '><body><table border = 1><tr>';
1831
1832         foreach($master_fields as $master_field){
1833             $html .= '<td>'.$class1.'_'.$master_field.'</td>';
1834         }
1835         foreach($related_fields as $related_field){
1836             $html .= '<td>'.$class2.'_'.$related_field.'</td>';
1837         }
1838         $html .= '</tr>';
1839
1840         $ids = $merge_array['ids'];
1841         $resultIds = array();
1842         $is_prospect_merge = ($seed1->object_name == 'Prospect');
1843         if($is_prospect_merge){
1844                 $pSeed = $seed1;
1845         }
1846         foreach($ids as $key=>$value){
1847
1848             if($is_prospect_merge){
1849                 $seed1 = $pSeed->retrieveTarget($key);
1850             }else{
1851                 $seed1->retrieve($key);
1852             }
1853              $resultIds[] = array('name' => $seed1->module_name, 'value' => $key);
1854             $html .= '<tr>';
1855             foreach($master_fields as $master_field){
1856                 if(isset($seed1->$master_field)){
1857                     if($seed1->field_name_map[$master_field]['type'] == 'enum'){
1858                         //pull in the translated dom
1859                          $html .='<td>'.$app_list_strings[$seed1->field_name_map[$master_field]['options']][$seed1->$master_field].'</td>';
1860                     } else if ($seed1->field_name_map[$master_field]['type'] == 'multienum') {
1861
1862                         if(isset($app_list_strings[$seed1->field_name_map[$master_field]['options']]) )
1863                         {
1864                             $items = unencodeMultienum($seed1->$master_field);
1865                             $output = array();
1866                             foreach($items as $item) {
1867                                 if ( !empty($app_list_strings[$seed1->field_name_map[$master_field]['options']][$item]) )
1868                                 {
1869                                     array_push($output, $app_list_strings[$seed1->field_name_map[$master_field]['options']][$item]);
1870
1871                                 }
1872
1873                             } // foreach
1874
1875                             $encoded_output = encodeMultienumValue($output);
1876                             $html .= "<td>$encoded_output</td>";
1877
1878                         }
1879                     } else {
1880                        $html .='<td>'.$seed1->$master_field.'</td>';
1881                     }
1882                 }
1883                 else{
1884                     $html .= '<td></td>';
1885                     }
1886             }
1887             if(isset($value) && !empty($value)){
1888                 $resultIds[] = array('name' => $seed2->module_name, 'value' => $value);
1889                                 $seed2->retrieve($value);
1890                 foreach($related_fields as $related_field){
1891                     if(isset($seed2->$related_field)){
1892                         if($seed2->field_name_map[$related_field]['type'] == 'enum'){
1893                             //pull in the translated dom
1894                             $html .='<td>'.$app_list_strings[$seed2->field_name_map[$related_field]['options']][$seed2->$related_field].'</td>';
1895                         }else{
1896                             $html .= '<td>'.$seed2->$related_field.'</td>';
1897                         }
1898                     }
1899                     else{
1900                         $html .= '<td></td>';
1901                     }
1902                 }
1903             }
1904             $html .= '</tr>';
1905         }
1906         $html .= "</table></body></html>";
1907      }
1908     $result = base64_encode($html);
1909
1910     return array('html' => $result, 'name_value_list' => $resultIds, 'error' => $error);
1911 }
1912
1913 $server->register(
1914         'get_document_revision',
1915         array('session'=>'xsd:string','i'=>'xsd:string'),
1916         array('return'=>'tns:return_document_revision'),
1917         $NAMESPACE);
1918
1919 /**
1920  * This method is used as a result of the .htaccess lock down on the cache directory. It will allow a
1921  * properly authenticated user to download a document that they have proper rights to download.
1922  *
1923  * @param String $session -- Session ID returned by a previous call to login.
1924  * @param String $id      -- ID of the document revision to obtain
1925  * @return return_document_revision - this is a complex type as defined in SoapTypes.php
1926  */
1927 function get_document_revision($session,$id)
1928 {
1929     global $sugar_config;
1930
1931     $error = new SoapError();
1932     if(!validate_authenticated($session)){
1933         $error->set_error('invalid_login');
1934         return array('id'=>-1, 'error'=>$error->get_soap_array());
1935     }
1936
1937
1938     $dr = new DocumentRevision();
1939     $dr->retrieve($id);
1940     if(!empty($dr->filename)){
1941         $filename = "upload://{$dr->id}";
1942         $contents = base64_encode(sugar_file_get_contents($filename));
1943         return array('document_revision'=>array('id' => $dr->id, 'document_name' => $dr->document_name, 'revision' => $dr->revision, 'filename' => $dr->filename, 'file' => $contents), 'error'=>$error->get_soap_array());
1944     }else{
1945         $error->set_error('no_records');
1946         return array('id'=>-1, 'error'=>$error->get_soap_array());
1947     }
1948
1949 }
1950 $server->register(
1951     'set_campaign_merge',
1952     array('session'=>'xsd:string', 'targets'=>'tns:select_fields', 'campaign_id'=>'xsd:string'),
1953     array('return'=>'tns:error_value'),
1954     $NAMESPACE);
1955 /**
1956 *   Once we have successfuly done a mail merge on a campaign, we need to notify Sugar of the targets
1957 *   and the campaign_id for tracking purposes
1958 *
1959 * @param session        the session id of the authenticated user
1960 * @param targets        a string array of ids identifying the targets used in the merge
1961 * @param campaign_id    the campaign_id used for the merge
1962 *
1963 * @return error_value
1964 */
1965 function set_campaign_merge($session,$targets, $campaign_id){
1966     $error = new SoapError();
1967     if(!validate_authenticated($session)){
1968         $error->set_error('invalid_login');
1969         return $error->get_soap_array();
1970     }
1971     if (empty($campaign_id) or !is_array($targets) or count($targets) == 0) {
1972         $GLOBALS['log']->debug('set_campaign_merge: Merge action status will not be updated, because, campaign_id is null or no targets were selected.');
1973     } else {
1974         require_once('modules/Campaigns/utils.php');
1975         campaign_log_mail_merge($campaign_id,$targets);
1976     }
1977
1978     return $error->get_soap_array();
1979 }
1980 $server->register(
1981     'get_entries_count',
1982     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'query'=>'xsd:string', 'deleted' => 'xsd:int'),
1983     array('return'=>'tns:get_entries_count_result'),
1984     $NAMESPACE);
1985
1986 /**
1987 *   Retrieve number of records in a given module
1988 *
1989 * @param session        the session id of the authenticated user
1990 * @param module_name    module to retrieve number of records from
1991 * @param query          allows webservice user to provide a WHERE clause
1992 * @param deleted        specify whether or not to include deleted records
1993 *
1994 @return get_entries_count_result - this is a complex type as defined in SoapTypes.php
1995 */
1996 function get_entries_count($session, $module_name, $query, $deleted) {
1997         global $beanList, $beanFiles, $current_user;
1998
1999         $error = new SoapError();
2000
2001         if (!validate_authenticated($session)) {
2002                 $error->set_error('invalid_login');
2003                 return array(
2004                         'result_count' => -1,
2005                         'error' => $error->get_soap_array()
2006                 );
2007         }
2008
2009         if (empty($beanList[$module_name])) {
2010                 $error->set_error('no_module');
2011                 return array(
2012                         'result_count' => -1,
2013                         'error' => $error->get_soap_array()
2014                 );
2015         }
2016
2017         if(!check_modules_access($current_user, $module_name, 'list')){
2018                 $error->set_error('no_access');
2019                 return array(
2020                         'result_count' => -1,
2021                         'error' => $error->get_soap_array()
2022                 );
2023         }
2024
2025         $class_name = $beanList[$module_name];
2026         require_once($beanFiles[$class_name]);
2027         $seed = new $class_name();
2028
2029         if (!$seed->ACLAccess('ListView')) {
2030                 $error->set_error('no_access');
2031                 return array(
2032                         'result_count' => -1,
2033                         'error' => $error->get_soap_array()
2034                 );
2035         }
2036
2037         $sql = 'SELECT COUNT(*) result_count FROM ' . $seed->table_name . ' ';
2038
2039
2040     $customJoin = $seed->getCustomJoin();
2041     $sql .= $customJoin['join'];
2042
2043         // build WHERE clauses, if any
2044         $where_clauses = array();
2045         if (!empty($query)) {
2046             require_once 'include/SugarSQLValidate.php';
2047             $valid = new SugarSQLValidate();
2048             if(!$valid->validateQueryClauses($query)) {
2049             $GLOBALS['log']->error("Bad query: $query");
2050                 $error->set_error('no_access');
2051                 return array(
2052                         'result_count' => -1,
2053                         'error' => $error->get_soap_array()
2054                 );
2055             }
2056                 $where_clauses[] = $query;
2057         }
2058         if ($deleted == 0) {
2059                 $where_clauses[] = $seed->table_name . '.deleted = 0';
2060         }
2061
2062         // if WHERE clauses exist, add them to query
2063         if (!empty($where_clauses)) {
2064                 $sql .= ' WHERE ' . implode(' AND ', $where_clauses);
2065         }
2066
2067         $res = $GLOBALS['db']->query($sql);
2068         $row = $GLOBALS['db']->fetchByAssoc($res);
2069
2070         return array(
2071                 'result_count' => $row['result_count'],
2072                 'error' => $error->get_soap_array()
2073         );
2074 }
2075
2076 $server->register(
2077     'set_entries_details',
2078     array('session'=>'xsd:string', 'module_name'=>'xsd:string',  'name_value_lists'=>'tns:name_value_lists', 'select_fields' => 'tns:select_fields'),
2079     array('return'=>'tns:set_entries_detail_result'),
2080     $NAMESPACE);
2081
2082 /**
2083  * Update or create a list of SugarBeans, returning details about the records created/updated
2084  *
2085  * @param String $session -- Session ID returned by a previous call to login.
2086  * @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)..
2087  * @param Array $name_value_lists -- Array of Bean specific Arrays where the keys of the array are the SugarBean attributes, the values of the array are the values the attributes should have.
2088  * @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.
2089  * @return Array    'name_value_lists' --  Array of Bean specific Arrays where the keys of the array are the SugarBean attributes, the values of the array are the values the attributes should have.
2090  *                  'error' -- The SOAP error if any.
2091  */
2092 function set_entries_details($session, $module_name, $name_value_lists, $select_fields) {
2093         $error = new SoapError();
2094
2095         if(!validate_authenticated($session)){
2096                 $error->set_error('invalid_login');
2097
2098                 return array(
2099                         'ids' => array(),
2100                         'error' => $error->get_soap_array()
2101                 );
2102         }
2103
2104         return handle_set_entries($module_name, $name_value_lists, $select_fields);
2105 }
2106
2107 // INTERNAL FUNCTION NOT EXPOSED THROUGH API
2108 function handle_set_entries($module_name, $name_value_lists, $select_fields = FALSE) {
2109         global $beanList, $beanFiles, $app_list_strings, $current_user;
2110
2111         $error = new SoapError();
2112         $ret_values = array();
2113
2114         if(empty($beanList[$module_name])){
2115                 $error->set_error('no_module');
2116                 return array('ids'=>array(), 'error'=>$error->get_soap_array());
2117         }
2118
2119     if(!check_modules_access($current_user, $module_name, 'write')){
2120                 $error->set_error('no_access');
2121                 return array('ids'=>-1, 'error'=>$error->get_soap_array());
2122         }
2123
2124         $class_name = $beanList[$module_name];
2125         require_once($beanFiles[$class_name]);
2126         $ids = array();
2127         $count = 1;
2128         $total = sizeof($name_value_lists);
2129
2130         foreach($name_value_lists as $name_value_list){
2131                 $seed = new $class_name();
2132
2133                 $seed->update_vcal = false;
2134
2135         //See if we can retrieve the seed by a given id value
2136                 foreach($name_value_list as $value)
2137         {
2138                         if($value['name'] == 'id')
2139             {
2140                                 $seed->retrieve($value['value']);
2141                                 break;
2142                         }
2143                 }
2144
2145
2146         $dataValues = array();
2147
2148                 foreach($name_value_list as $value)
2149         {
2150                         $val = $value['value'];
2151
2152                         if($seed->field_name_map[$value['name']]['type'] == 'enum' || $seed->field_name_map[$value['name']]['type'] == 'radioenum')
2153             {
2154                                 $vardef = $seed->field_name_map[$value['name']];
2155                                 if(isset($app_list_strings[$vardef['options']]) && !isset($app_list_strings[$vardef['options']][$val]) )
2156                 {
2157                             if ( in_array($val,$app_list_strings[$vardef['options']]) )
2158                     {
2159                                 $val = array_search($val,$app_list_strings[$vardef['options']]);
2160                             }
2161                         }
2162
2163                         } else if($seed->field_name_map[$value['name']]['type'] == 'multienum') {
2164
2165                 $vardef = $seed->field_name_map[$value['name']];
2166
2167                 if(isset($app_list_strings[$vardef['options']]) && !isset($app_list_strings[$vardef['options']][$value]) )
2168                 {
2169                                         $items = explode(",", $val);
2170                                         $parsedItems = array();
2171                                         foreach ($items as $item)
2172                     {
2173                                                 if ( in_array($item, $app_list_strings[$vardef['options']]) )
2174                         {
2175                                                         $keyVal = array_search($item,$app_list_strings[$vardef['options']]);
2176                                                         array_push($parsedItems, $keyVal);
2177                                                 }
2178                                         }
2179
2180                                 if (!empty($parsedItems))
2181                     {
2182                                                 $val = encodeMultienumValue($parsedItems);
2183                                 }
2184                         }
2185                         }
2186
2187             //Apply the non-empty values now since this will be used for duplicate checks
2188             //allow string or int of 0 to be updated if set.
2189             if(!empty($val) || ($val==='0' || $val===0))
2190             {
2191                 $seed->$value['name'] = $val;
2192             }
2193             //Store all the values in dataValues Array to apply later
2194             $dataValues[$value['name']] = $val;
2195                 }
2196
2197                 if($count == $total)
2198         {
2199                         $seed->update_vcal = false;
2200                 }
2201                 $count++;
2202
2203                 //Add the account to a contact
2204                 if($module_name == 'Contacts'){
2205                         $GLOBALS['log']->debug('Creating Contact Account');
2206                         add_create_account($seed);
2207                         $duplicate_id = check_for_duplicate_contacts($seed);
2208                         if($duplicate_id == null)
2209             {
2210                                 if($seed->ACLAccess('Save') && ($seed->deleted != 1 || $seed->ACLAccess('Delete')))
2211                 {
2212                     //Now apply the values, since this is not a duplicate we can just pass false for the $firstSync argument
2213                     apply_values($seed, $dataValues, false);
2214                                         $seed->save();
2215                                         if($seed->deleted == 1){
2216                                                 $seed->mark_deleted($seed->id);
2217                                         }
2218                                         $ids[] = $seed->id;
2219                                 }
2220                         }else{
2221                                 //since we found a duplicate we should set the sync flag
2222                                 if( $seed->ACLAccess('Save'))
2223                 {
2224                     //Determine if this is a first time sync.  We find out based on whether or not a contacts_users relationship exists
2225                     $seed->id = $duplicate_id;
2226                     $seed->load_relationship("user_sync");
2227                     $beans = $seed->user_sync->getBeans();
2228                     $first_sync = empty($beans);
2229
2230                     //Now apply the values and indicate whether or not this is a first time sync
2231                     apply_values($seed, $dataValues, $first_sync);
2232                                         $seed->contacts_users_id = $current_user->id;
2233                                         $seed->save();
2234                                         $ids[] = $duplicate_id;//we have a conflict
2235                                 }
2236                         }
2237
2238         } else if($module_name == 'Meetings' || $module_name == 'Calls'){
2239                         //we are going to check if we have a meeting in the system
2240                         //with the same outlook_id. If we do find one then we will grab that
2241                         //id and save it
2242                         if( $seed->ACLAccess('Save') && ($seed->deleted != 1 || $seed->ACLAccess('Delete'))){
2243                                 if(empty($seed->id) && !isset($seed->id)){
2244                                         if(!empty($seed->outlook_id) && isset($seed->outlook_id)){
2245                                                 //at this point we have an object that does not have
2246                                                 //the id set, but does have the outlook_id set
2247                                                 //so we need to query the db to find if we already
2248                                                 //have an object with this outlook_id, if we do
2249                                                 //then we can set the id, otherwise this is a new object
2250                                                 $order_by = "";
2251                                                 $query = $seed->table_name.".outlook_id = '".$seed->outlook_id."'";
2252                                                 $response = $seed->get_list($order_by, $query, 0,-1,-1,0);
2253                                                 $list = $response['list'];
2254                                                 if(count($list) > 0){
2255                                                         foreach($list as $value)
2256                                                         {
2257                                                                 $seed->id = $value->id;
2258                                                                 break;
2259                                                         }
2260                                                 }//fi
2261                                         }//fi
2262                                 }//fi
2263                                 if (empty($seed->reminder_time)) {
2264                     $seed->reminder_time = -1;
2265                 }
2266                                 if($seed->reminder_time == -1){
2267                                         $defaultRemindrTime = $current_user->getPreference('reminder_time');
2268                                         if ($defaultRemindrTime != -1){
2269                         $seed->reminder_checked = '1';
2270                         $seed->reminder_time = $defaultRemindrTime;
2271                                         }
2272                                 }
2273                                 $seed->save();
2274                                 if ($seed->deleted == 1) {
2275                                         $seed->mark_deleted($seed->id);
2276                                 }
2277                                 $ids[] = $seed->id;
2278                         }//fi
2279                 }
2280                 else
2281                 {
2282                         if( $seed->ACLAccess('Save') && ($seed->deleted != 1 || $seed->ACLAccess('Delete'))){
2283                                 $seed->save();
2284                                 $ids[] = $seed->id;
2285                         }
2286                 }
2287
2288                 // if somebody is calling set_entries_detail() and wants fields returned...
2289                 if ($select_fields !== FALSE) {
2290                         $ret_values[$count] = array();
2291
2292                         foreach ($select_fields as $select_field) {
2293                                 if (isset($seed->$select_field)) {
2294                                         $ret_values[$count][] = get_name_value($select_field, $seed->$select_field);
2295                                 }
2296                         }
2297                 }
2298         }
2299
2300         // handle returns for set_entries_detail() and set_entries()
2301         if ($select_fields !== FALSE) {
2302                 return array(
2303                         'name_value_lists' => $ret_values,
2304                         'error' => $error->get_soap_array()
2305                 );
2306         }
2307         else {
2308                 return array(
2309                         'ids' => $ids,
2310                         'error' => $error->get_soap_array()
2311                 );
2312         }
2313 }
2314