]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/jsAlerts.php
Release 6.5.12
[Github/sugarcrm.git] / include / javascript / jsAlerts.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 require_once("include/utils/db_utils.php");
40
41 class jsAlerts{
42         var $script;
43
44         function jsAlerts(){
45                 global $app_strings;
46                 $this->script .= <<<EOQ
47                 if (!alertsTimeoutId) {
48                     checkAlerts();
49                 }
50
51 EOQ;
52                 $this->addActivities();
53                 if(!empty($GLOBALS['sugar_config']['enable_timeout_alerts'])){
54                         $this->addAlert($app_strings['ERROR_JS_ALERT_SYSTEM_CLASS'], $app_strings['ERROR_JS_ALERT_TIMEOUT_TITLE'],'', $app_strings['ERROR_JS_ALERT_TIMEOUT_MSG_1'], (session_cache_expire() - 2) * 60 );
55                         $this->addAlert($app_strings['ERROR_JS_ALERT_SYSTEM_CLASS'], $app_strings['ERROR_JS_ALERT_TIMEOUT_TITLE'],'', $app_strings['ERROR_JS_ALERT_TIMEOUT_MSG_2'], (session_cache_expire()) * 60 , 'index.php');
56                 }
57         }
58         function addAlert($type, $name, $subtitle, $description, $countdown, $redirect=''){
59                 $this->script .= 'addAlert("' . addslashes($type) .'", "' . addslashes($name). '","' . addslashes($subtitle). '", "'. addslashes(str_replace(array("\r", "\n"), array('','<br>'),$description)) . '",' . $countdown . ',"'.addslashes($redirect).'")' . "\n";
60         }
61
62     function getScript()
63     {
64         return "<script>secondsSinceLoad = 0; alertList = [];" . $this->script . "</script>";
65     }
66
67     /*
68      * To return the name of parent bean.
69      * @param $parentType string parent type
70      * @param $parentId string parent id
71      */
72     function getRelatedName($parentType, $parentId)
73     {
74         if (!empty($parentType) && !empty($parentId)) {
75             $parentBean = BeanFactory::getBean($parentType, $parentId);
76             if (($parentBean instanceof SugarBean) && isset($parentBean->name)) {
77                 return $parentBean->name;
78             }
79         }
80         return '';
81     }
82
83     function addActivities(){
84                 global $app_list_strings, $timedate, $current_user, $app_strings;
85                 global $sugar_config;
86
87                 if (empty($current_user->id)) {
88             return;
89                 }
90
91         //Create separate variable to hold timedate value
92         $alertDateTimeNow = $timedate->nowDb();
93
94                 // cn: get a boundary limiter
95                 $dateTimeMax = $timedate->getNow()->modify("+{$app_list_strings['reminder_max_time']} seconds")->asDb();
96                 $dateTimeNow = $timedate->nowDb();
97
98                 global $db;
99                 $dateTimeNow = $db->convert($db->quoted($dateTimeNow), 'datetime');
100                 $dateTimeMax = $db->convert($db->quoted($dateTimeMax), 'datetime');
101                 $desc = $db->convert("description", "text2char");
102                 if($desc != "description") {
103                     $desc .= " description";
104                 }
105
106                 // Prep Meetings Query
107         $selectMeetings = "SELECT meetings.id, name,reminder_time, $desc,location, status, parent_type, parent_id, date_start, assigned_user_id
108                         FROM meetings LEFT JOIN meetings_users ON meetings.id = meetings_users.meeting_id
109                         WHERE meetings_users.user_id ='".$current_user->id."'
110                                 AND meetings_users.accept_status != 'decline'
111                                 AND meetings.reminder_time != -1
112                                 AND meetings_users.deleted != 1
113                                 AND meetings.status = 'Planned'
114                             AND date_start >= $dateTimeNow
115                             AND date_start <= $dateTimeMax";
116                 $result = $db->query($selectMeetings);
117
118                 ///////////////////////////////////////////////////////////////////////
119                 ////    MEETING INTEGRATION
120                 $meetingIntegration = null;
121                 if(isset($sugar_config['meeting_integration']) && !empty($sugar_config['meeting_integration'])) {
122                         if(!class_exists($sugar_config['meeting_integration'])) {
123                                 require_once("modules/{$sugar_config['meeting_integration']}/{$sugar_config['meeting_integration']}.php");
124                         }
125                         $meetingIntegration = new $sugar_config['meeting_integration']();
126                 }
127                 ////    END MEETING INTEGRATION
128                 ///////////////////////////////////////////////////////////////////////
129
130                 while($row = $db->fetchByAssoc($result)) {
131                         // need to concatenate since GMT times can bridge two local days
132                         $timeStart = strtotime($db->fromConvert($row['date_start'], 'datetime'));
133                         $timeRemind = $row['reminder_time'];
134                         $timeStart -= $timeRemind;
135
136                         $url = 'index.php?action=DetailView&module=Meetings&record=' . $row['id'];
137                         $instructions = $app_strings['MSG_JS_ALERT_MTG_REMINDER_MEETING_MSG'];
138
139                         ///////////////////////////////////////////////////////////////////
140                         ////    MEETING INTEGRATION
141                         if(!empty($meetingIntegration) && $meetingIntegration->isIntegratedMeeting($row['id'])) {
142                                 $url = $meetingIntegration->miUrlGetJsAlert($row);
143                                 $instructions = $meetingIntegration->miGetJsAlertInstructions();
144                         }
145                         ////    END MEETING INTEGRATION
146                         ///////////////////////////////////////////////////////////////////
147
148                         // sanitize topic
149                         $meetingName = '';
150                         if(!empty($row['name'])) {
151                                 $meetingName = from_html($row['name']);
152                                 // addAlert() uses double-quotes to pass to popup - escape double-quotes
153                                 //$meetingName = str_replace('"', '\"', $meetingName);
154                         }
155
156                         // sanitize agenda
157                         $desc1 = '';
158                         if(!empty($row['description'])) {
159                                 $desc1 = from_html($row['description']);
160                                 // addAlert() uses double-quotes to pass to popup - escape double-quotes
161                                 //$desc = str_replace('"', '\"', $desc);
162                         }
163
164             $relatedToMeeting = $this->getRelatedName($row['parent_type'], $row['parent_id']);
165
166                         $description = empty($desc1) ? '' : $app_strings['MSG_JS_ALERT_MTG_REMINDER_AGENDA'].$desc1."\n";
167             $description = $description  ."\n" .$app_strings['MSG_JS_ALERT_MTG_REMINDER_STATUS'] . $row['status'] ."\n". $app_strings['MSG_JS_ALERT_MTG_REMINDER_RELATED_TO']. $relatedToMeeting;
168
169
170                         // standard functionality
171                         $this->addAlert($app_strings['MSG_JS_ALERT_MTG_REMINDER_MEETING'], $meetingName,
172                                 $app_strings['MSG_JS_ALERT_MTG_REMINDER_TIME'].$timedate->to_display_date_time($db->fromConvert($row['date_start'], 'datetime')),
173                                 $app_strings['MSG_JS_ALERT_MTG_REMINDER_LOC'].$row['location'].
174                                 $description.
175                                 $instructions,
176                                 $timeStart - strtotime($alertDateTimeNow),
177                                 $url
178                         );
179                 }
180
181                 // Prep Calls Query
182                 $selectCalls = "
183                                 SELECT calls.id, name, reminder_time, $desc, date_start, status, parent_type, parent_id
184                                 FROM calls LEFT JOIN calls_users ON calls.id = calls_users.call_id
185                                 WHERE calls_users.user_id ='".$current_user->id."'
186                                     AND calls_users.accept_status != 'decline'
187                                     AND calls.reminder_time != -1
188                                         AND calls_users.deleted != 1
189                                         AND calls.status = 'Planned'
190                                     AND date_start >= $dateTimeNow
191                                     AND date_start <= $dateTimeMax";
192
193                 $result = $db->query($selectCalls);
194
195                 while($row = $db->fetchByAssoc($result)){
196                         // need to concatenate since GMT times can bridge two local days
197                         $timeStart = strtotime($db->fromConvert($row['date_start'], 'datetime'));
198                         $timeRemind = $row['reminder_time'];
199                         $timeStart -= $timeRemind;
200                         $row['description'] = (isset($row['description'])) ? $row['description'] : '';
201
202             $relatedToCall = $this->getRelatedName($row['parent_type'], $row['parent_id']);
203
204             $callDescription = $row['description'] ."\n" .$app_strings['MSG_JS_ALERT_MTG_REMINDER_STATUS'] . $row['status'] ."\n". $app_strings['MSG_JS_ALERT_MTG_REMINDER_RELATED_TO']. $relatedToCall;
205
206
207             $this->addAlert($app_strings['MSG_JS_ALERT_MTG_REMINDER_CALL'], $row['name'], $app_strings['MSG_JS_ALERT_MTG_REMINDER_TIME'].$timedate->to_display_date_time($db->fromConvert($row['date_start'], 'datetime')) , $app_strings['MSG_JS_ALERT_MTG_REMINDER_DESC'].$callDescription. $app_strings['MSG_JS_ALERT_MTG_REMINDER_CALL_MSG'] , $timeStart - strtotime($alertDateTimeNow), 'index.php?action=DetailView&module=Calls&record=' . $row['id']);
208                 }
209         }
210
211
212 }