]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - service/v3/SugarWebServiceUtilv3.php
Release 6.4.0
[Github/sugarcrm.git] / service / v3 / SugarWebServiceUtilv3.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 require_once('service/core/SoapHelperWebService.php');
38 class SugarWebServiceUtilv3 extends SoapHelperWebServices {
39
40     function get_name_value($field,$value)
41     {
42         if($value instanceof Link2 && !method_exists($value, '__toString'))
43             $value = '';
44                 return array('name'=>$field, 'value'=>$value);
45         }
46
47     function filter_fields($value, $fields)
48     {
49         $GLOBALS['log']->info('Begin: SoapHelperWebServices->filter_fields');
50         global $invalid_contact_fields;
51         $filterFields = array();
52         foreach($fields as $field)
53         {
54             if (is_array($invalid_contact_fields))
55             {
56                 if (in_array($field, $invalid_contact_fields))
57                 {
58                     continue;
59                 }
60             }
61             if (isset($value->field_defs[$field]))
62             {
63                 $var = $value->field_defs[$field];
64                 if($var['type'] == 'link') continue;
65                 if( isset($var['source'])
66                     && ($var['source'] != 'db' && $var['source'] != 'custom_fields' && $var['source'] != 'non-db')
67                     && $var['name'] != 'email1' && $var['name'] != 'email2'
68                     && (!isset($var['type'])|| $var['type'] != 'relate')) {
69
70                     if( $value->module_dir == 'Emails'
71                         && (($var['name'] == 'description') || ($var['name'] == 'description_html') || ($var['name'] == 'from_addr_name')
72                             || ($var['name'] == 'reply_to_addr') || ($var['name'] == 'to_addrs_names') || ($var['name'] == 'cc_addrs_names')
73                             || ($var['name'] == 'bcc_addrs_names') || ($var['name'] == 'raw_source')))
74                     {
75
76                     }
77                     else
78                     {
79                         continue;
80                     }
81                 }
82             }
83             $filterFields[] = $field;
84         }
85         $GLOBALS['log']->info('End: SoapHelperWebServices->filter_fields');
86         return $filterFields;
87     }
88
89     function getRelationshipResults($bean, $link_field_name, $link_module_fields, $optional_where = '', $order_by = '') {
90                 $GLOBALS['log']->info('Begin: SoapHelperWebServices->getRelationshipResults');
91                 require_once('include/TimeDate.php');
92                 global  $beanList, $beanFiles, $current_user;
93                 global $disable_date_format, $timedate;
94
95                 $bean->load_relationship($link_field_name);
96                 if (isset($bean->$link_field_name)) {
97                         //First get all the related beans
98             $related_beans = $bean->$link_field_name->getBeans();
99                         //Create a list of field/value rows based on $link_module_fields
100                         $list = array();
101             $filterFields = array();
102             if (!empty($order_by) && !empty($related_beans))
103             {
104                 $related_beans = order_beans($related_beans, $order_by);
105             }
106             foreach($related_beans as $id => $bean)
107             {
108                 if (empty($filterFields) && !empty($link_module_fields))
109                 {
110                     $filterFields = $this->filter_fields($bean, $link_module_fields);
111                 }
112                 $row = array();
113                 foreach ($filterFields as $field) {
114                     if (isset($bean->$field))
115                     {
116                         if (isset($bean->field_defs[$field]['type']) && $bean->field_defs[$field]['type'] == 'date') {
117                             $row[$field] = $timedate->to_display_date_time($bean->$field);
118                         }
119                         $row[$field] = $bean->$field;
120                     }
121                     else
122                     {
123                         $row[$field] = "";
124                     }
125                 }
126                 //Users can't see other user's hashes
127                 if(is_a($bean, 'User') && $current_user->id != $bean->id && isset($row['user_hash'])) {
128                     $row['user_hash'] = "";
129                 }
130                 $list[] = $row;
131             }
132             $GLOBALS['log']->info('End: SoapHelperWebServices->getRelationshipResults');
133             return array('rows' => $list, 'fields_set_on_rows' => $filterFields);
134                 } else {
135                         $GLOBALS['log']->info('End: SoapHelperWebServices->getRelationshipResults - ' . $link_field_name . ' relationship does not exists');
136                         return false;
137                 } // else
138
139         } // fn
140
141         function get_field_list($value, $fields, $translate=true) {
142
143             $GLOBALS['log']->info('Begin: SoapHelperWebServices->get_field_list');
144                 $module_fields = array();
145                 $link_fields = array();
146                 if(!empty($value->field_defs)){
147
148                         foreach($value->field_defs as $var){
149                                 if(!empty($fields) && !in_array( $var['name'], $fields))continue;
150                                 if(isset($var['source']) && ($var['source'] != 'db' && $var['source'] != 'non-db' &&$var['source'] != 'custom_fields') && $var['name'] != 'email1' && $var['name'] != 'email2' && (!isset($var['type'])|| $var['type'] != 'relate'))continue;
151                                 if ((isset($var['source']) && $var['source'] == 'non_db') || (isset($var['type']) && $var['type'] == 'link')) {
152                                         continue;
153                                 }
154                                 $required = 0;
155                                 $options_dom = array();
156                                 $options_ret = array();
157                                 // Apparently the only purpose of this check is to make sure we only return fields
158                                 //   when we've read a record.  Otherwise this function is identical to get_module_field_list
159                                 if( isset($var['required']) && ($var['required'] || $var['required'] == 'true' ) ){
160                                         $required = 1;
161                                 }
162
163                                 if(isset($var['options'])){
164                                         $options_dom = translate($var['options'], $value->module_dir);
165                                         if(!is_array($options_dom)) $options_dom = array();
166                                         foreach($options_dom as $key=>$oneOption)
167                                                 $options_ret[$key] = $this->get_name_value($key,$oneOption);
168                                 }
169
170                     if(!empty($var['dbType']) && $var['type'] == 'bool') {
171                         $options_ret['type'] = $this->get_name_value('type', $var['dbType']);
172                     }
173
174                     $entry = array();
175                     $entry['name'] = $var['name'];
176                     $entry['type'] = $var['type'];
177                     $entry['group'] = isset($var['group']) ? $var['group'] : '';
178                     $entry['id_name'] = isset($var['id_name']) ? $var['id_name'] : '';
179
180                     if ($var['type'] == 'link') {
181                             $entry['relationship'] = (isset($var['relationship']) ? $var['relationship'] : '');
182                             $entry['module'] = (isset($var['module']) ? $var['module'] : '');
183                             $entry['bean_name'] = (isset($var['bean_name']) ? $var['bean_name'] : '');
184                                         $link_fields[$var['name']] = $entry;
185                     } else {
186                             if($translate) {
187                                 $entry['label'] = isset($var['vname']) ? translate($var['vname'], $value->module_dir) : $var['name'];
188                             } else {
189                                 $entry['label'] = isset($var['vname']) ? $var['vname'] : $var['name'];
190                             }
191                             $entry['required'] = $required;
192                             $entry['options'] = $options_ret;
193                             $entry['related_module'] = (isset($var['id_name']) && isset($var['module'])) ? $var['module'] : '';
194                                         if(isset($var['default'])) {
195                                            $entry['default_value'] = $var['default'];
196                                         }
197                                         $module_fields[$var['name']] = $entry;
198                     } // else
199                         } //foreach
200                 } //if
201
202                 if($value->module_dir == 'Bugs'){
203                         require_once('modules/Releases/Release.php');
204                         $seedRelease = new Release();
205                         $options = $seedRelease->get_releases(TRUE, "Active");
206                         $options_ret = array();
207                         foreach($options as $name=>$value){
208                                 $options_ret[] =  array('name'=> $name , 'value'=>$value);
209                         }
210                         if(isset($module_fields['fixed_in_release'])){
211                                 $module_fields['fixed_in_release']['type'] = 'enum';
212                                 $module_fields['fixed_in_release']['options'] = $options_ret;
213                         }
214                         if(isset($module_fields['release'])){
215                                 $module_fields['release']['type'] = 'enum';
216                                 $module_fields['release']['options'] = $options_ret;
217                         }
218                         if(isset($module_fields['release_name'])){
219                                 $module_fields['release_name']['type'] = 'enum';
220                                 $module_fields['release_name']['options'] = $options_ret;
221                         }
222                 }
223
224                 if(isset($value->assigned_user_name) && isset($module_fields['assigned_user_id'])) {
225                         $module_fields['assigned_user_name'] = $module_fields['assigned_user_id'];
226                         $module_fields['assigned_user_name']['name'] = 'assigned_user_name';
227                 }
228                 if(isset($value->assigned_name) && isset($module_fields['team_id'])) {
229                         $module_fields['team_name'] = $module_fields['team_id'];
230                         $module_fields['team_name']['name'] = 'team_name';
231                 }
232                 if(isset($module_fields['modified_user_id'])) {
233                         $module_fields['modified_by_name'] = $module_fields['modified_user_id'];
234                         $module_fields['modified_by_name']['name'] = 'modified_by_name';
235                 }
236                 if(isset($module_fields['created_by'])) {
237                         $module_fields['created_by_name'] = $module_fields['created_by'];
238                         $module_fields['created_by_name']['name'] = 'created_by_name';
239                 }
240
241                 $GLOBALS['log']->info('End: SoapHelperWebServices->get_field_list');
242                 return array('module_fields' => $module_fields, 'link_fields' => $link_fields);
243         }
244
245         function get_subpanel_defs($module, $type)
246         {
247             global $beanList, $beanFiles;
248             $results = array();
249             switch ($type)
250             {
251                 case 'wireless':
252                     if (file_exists('custom/modules/'.$module.'/metadata/wireless.subpaneldefs.php'))
253                          require_once('custom/modules/'.$module.'/metadata/wireless.subpaneldefs.php');
254                     else if (file_exists('modules/'.$module.'/metadata/wireless.subpaneldefs.php'))
255                          require_once('modules/'.$module.'/metadata/wireless.subpaneldefs.php');
256                     break;
257
258                 case 'default':
259                 default:
260                     if (file_exists ('modules/'.$module.'/metadata/subpaneldefs.php' ))
261                         require ('modules/'.$module.'/metadata/subpaneldefs.php');
262                     if ( file_exists('custom/modules/'.$module.'/Ext/Layoutdefs/layoutdefs.ext.php' ))
263                         require ('custom/modules/'.$module.'/Ext/Layoutdefs/layoutdefs.ext.php');
264             }
265
266             //Filter results for permissions
267             foreach ($layout_defs[$module]['subpanel_setup'] as $subpanel => $subpaneldefs)
268             {
269                 $moduleToCheck = $subpaneldefs['module'];
270                 if(!isset($beanList[$moduleToCheck]))
271                    continue;
272                 $class_name = $beanList[$moduleToCheck];
273                 $bean = new $class_name();
274                 if($bean->ACLAccess('list'))
275                     $results[$subpanel] = $subpaneldefs;
276             }
277
278             return $results;
279
280         }
281
282     function get_module_view_defs($module_name, $type, $view){
283         require_once('include/MVC/View/SugarView.php');
284         $metadataFile = null;
285         $results = array();
286         $view = strtolower($view);
287         switch (strtolower($type)){
288             case 'wireless':
289                 if( $view == 'list'){
290                     require_once('include/SugarWireless/SugarWirelessListView.php');
291                     $GLOBALS['module'] = $module_name; //WirelessView keys off global variable not instance variable...
292                     $v = new SugarWirelessListView();
293                     $results = $v->getMetaDataFile();
294                 }
295                 elseif ($view == 'subpanel')
296                     $results = $this->get_subpanel_defs($module_name, $type);
297                 else{
298                     require_once('include/SugarWireless/SugarWirelessView.php');
299                     $v = new SugarWirelessView();
300                     $v->module = $module_name;
301                     $fullView = ucfirst($view) . 'View';
302                     $meta = $v->getMetaDataFile('Wireless' . $fullView);
303                     $metadataFile = $meta['filename'];
304                     require_once($metadataFile);
305                     //Wireless detail metadata may actually be just edit metadata.
306                     $results = isset($viewdefs[$meta['module_name']][$fullView] ) ? $viewdefs[$meta['module_name']][$fullView] : $viewdefs[$meta['module_name']]['EditView'];
307                 }
308
309                 break;
310             case 'default':
311             default:
312                 if ($view == 'subpanel')
313                     $results = $this->get_subpanel_defs($module_name, $type);
314                 else
315                 {
316                     $v = new SugarView(null,array());
317                     $v->module = $module_name;
318                     $v->type = $view;
319                     $fullView = ucfirst($view) . 'View';
320                     $metadataFile = $v->getMetaDataFile();
321                     require_once($metadataFile);
322                     if($view == 'list')
323                         $results = $listViewDefs[$module_name];
324                     else
325                         $results = $viewdefs[$module_name][$fullView];
326                 }
327         }
328
329         return $results;
330     }
331
332     /**
333      * Examine the wireless_module_registry to determine which modules have been enabled for the mobile view.
334      *
335      * @param array $availModules An array of all the modules the user already has access to.
336      * @return array Modules enalbed for mobile view.
337      */
338     function get_visible_mobile_modules($availModules){
339         $enabled_modules = array();
340         $availModulesKey = array_flip($availModules);
341         foreach ( array ( '','custom/') as $prefix)
342         {
343                 if(file_exists($prefix.'include/MVC/Controller/wireless_module_registry.php'))
344                         require $prefix.'include/MVC/Controller/wireless_module_registry.php' ;
345         }
346
347         foreach ( $wireless_module_registry as $e => $def )
348         {
349                 if( isset($availModulesKey[$e]) )
350                 $enabled_modules[] = $e;
351         }
352
353         return $enabled_modules;
354     }
355
356     /**
357      * Examine the application to determine which modules have been enabled..
358      *
359      * @param array $availModules An array of all the modules the user already has access to.
360      * @return array Modules enabled within the application.
361      */
362     function get_visible_modules($availModules) {
363         require_once("modules/MySettings/TabController.php");
364         $controller = new TabController();
365         $tabs = $controller->get_tabs_system();
366         $enabled_modules= array();
367         $availModulesKey = array_flip($availModules);
368         foreach ($tabs[0] as $key=>$value)
369         {
370             if( isset($availModulesKey[$key]) )
371                 $enabled_modules[] = $key;
372         }
373
374         return $enabled_modules;
375     }
376
377     /**
378      * Retrieve all of the upcoming activities for a particular user.
379      *
380      * @return array
381      */
382     function get_upcoming_activities()
383     {
384         global $beanList;
385         $maxCount = 10;
386
387         $activityModules = array('Meetings' => array('date_field' => 'date_start','status' => 'Planned','status_field' => 'status', 'status_opp' => '='),
388                                  'Calls' => array('date_field' => 'date_start','status' => 'Planned','status_field' => 'status', 'status_opp' => '='),
389                                  'Tasks' => array('date_field' =>'date_due','status' => 'Not Started','status_field' => 'status','status_opp' => '='),
390                                  'Opportunities' => array('date_field' => 'date_closed','status' => array('Closed Won','Closed Lost'), 'status_field' => 'sales_stage', 'status_opp' => '!=') );
391         $results = array();
392         foreach ($activityModules as $module => $meta)
393         {
394             if(!self::check_modules_access($GLOBALS['current_user'], $module, 'read'))
395             {
396                 $GLOBALS['log']->debug("SugarWebServiceImpl->get_last_viewed: NO ACCESS to $module");
397                 continue;
398             }
399
400             $class_name = $beanList[$module];
401                 $seed = new $class_name();
402             $query = $this->generateUpcomingActivitiesWhereClause($seed, $meta);
403
404             $response = $seed->get_list(/* Order by date field */"{$meta['date_field']} ASC",  /*Where clause */$query, /* No Offset */ 0,
405                                         /* No limit */-1, /* Max 10 items */10, /*No Deleted */ 0 );
406
407             $result = array();
408
409             if( isset($response['list']) )
410                 $result = $this->format_upcoming_activities_entries($response['list'],$meta['date_field']);
411
412             $results = array_merge($results,$result);
413         }
414
415         //Sort the result list by the date due flag in ascending order
416         usort( $results, array( $this , "cmp_datedue" ) ) ;
417
418         //Only return a subset of the results.
419         $results = array_slice($results, 0, $maxCount);
420
421         return $results;
422     }
423
424     function generateUpcomingActivitiesWhereClause($seed,$meta)
425     {
426         $query = array();
427         $query_date = TimeDate::getInstance()->nowDb();
428         $query[] = " {$seed->table_name}.{$meta['date_field']} > '$query_date'"; //Add date filter
429         $query[] = "{$seed->table_name}.assigned_user_id = '{$GLOBALS['current_user']->id}' "; //Add assigned user filter
430         if(is_array($meta['status_field']))
431         {
432             foreach ($meta['status'] as $field)
433                 $query[] = "{$seed->table_name}.{$meta['status_field']} {$meta['status_opp']} '".$GLOBALS['db']->quote($field)."' ";
434         }
435         else
436             $query[] = "{$seed->table_name}.{$meta['status_field']} {$meta['status_opp']} '".$GLOBALS['db']->quote($meta['status'])."' ";
437
438         return implode(" AND ",$query);
439     }
440     /**
441      * Given a list of bean entries, format the expected response.
442      *
443      * @param array $list An array containing a bean list.
444      * @param string $date_field Name of the field storing the date field we are examining
445      * @return array The results.
446      */
447     function format_upcoming_activities_entries($list,$date_field)
448     {
449         $results = array();
450         foreach ($list as $bean)
451         {
452             $results[] = array('id' => $bean->id, 'module' => $bean->module_dir,'date_due' => $bean->$date_field,
453                                 'summary' => $bean->get_summary_text() );
454         }
455
456         return $results;
457     }
458
459     /**
460      * Sort the array for upcoming activities based on the date due flag ascending.
461      *
462      * @param array $a
463      * @param array $b
464      * @return int Indicates equality for date due flag
465      */
466     static function cmp_datedue( $a, $b )
467     {
468         $a_date = strtotime( $a['date_due'] ) ;
469         $b_date = strtotime( $b['date_due'] ) ;
470
471         if( $a_date == $b_date ) return 0 ;
472         return ($a_date > $b_date ) ? 1 : -1;
473   }
474
475 }