]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Schedulers/_AddJobsHere.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Schedulers / _AddJobsHere.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-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 /**
40  * Set up an array of Jobs with the appropriate metadata
41  * 'jobName' => array (
42  *              'X' => 'name',
43  * )
44  * 'X' should be an increment of 1
45  * 'name' should be the EXACT name of your function
46  *
47  * Your function should not be passed any parameters
48  * Always  return a Boolean. If it does not the Job will not terminate itself
49  * after completion, and the webserver will be forced to time-out that Job instance.
50  * DO NOT USE sugar_cleanup(); in your function flow or includes.  this will
51  * break Schedulers.  That function is called at the foot of cron.php
52  */
53
54 /**
55  * This array provides the Schedulers admin interface with values for its "Job"
56  * dropdown menu.
57  */
58 $job_strings = array (
59         0 => 'refreshJobs',
60         1 => 'pollMonitoredInboxes',
61         2 => 'runMassEmailCampaign',
62     5 => 'pollMonitoredInboxesForBouncedCampaignEmails',
63         3 => 'pruneDatabase',
64         4 => 'trimTracker',
65         /*4 => 'securityAudit()',*/
66
67 );
68
69 /**
70  * Job 0 refreshes all job schedulers at midnight
71  * DEPRECATED
72  */
73 function refreshJobs() {
74         return true;
75 }
76
77
78 /**
79  * Job 1
80  */
81 function pollMonitoredInboxes() {
82
83         $GLOBALS['log']->info('----->Scheduler fired job of type pollMonitoredInboxes()');
84         global $dictionary;
85         global $app_strings;
86
87
88         require_once('modules/Emails/EmailUI.php');
89
90         $ie = new InboundEmail();
91         $emailUI = new EmailUI();
92         $r = $ie->db->query('SELECT id, name FROM inbound_email WHERE is_personal = 0 AND deleted=0 AND status=\'Active\' AND mailbox_type != \'bounce\'');
93         $GLOBALS['log']->debug('Just got Result from get all Inbounds of Inbound Emails');
94
95         while($a = $ie->db->fetchByAssoc($r)) {
96                 $GLOBALS['log']->debug('In while loop of Inbound Emails');
97                 $ieX = new InboundEmail();
98                 $ieX->retrieve($a['id']);
99                 $mailboxes = $ieX->mailboxarray;
100                 foreach($mailboxes as $mbox) {
101                         $ieX->mailbox = $mbox;
102                         $newMsgs = array();
103                         $msgNoToUIDL = array();
104                         $connectToMailServer = false;
105                         if ($ieX->isPop3Protocol()) {
106                                 $msgNoToUIDL = $ieX->getPop3NewMessagesToDownloadForCron();
107                                 // get all the keys which are msgnos;
108                                 $newMsgs = array_keys($msgNoToUIDL);
109                         }
110                         if($ieX->connectMailserver() == 'true') {
111                                 $connectToMailServer = true;
112                         } // if
113
114                         $GLOBALS['log']->debug('Trying to connect to mailserver for [ '.$a['name'].' ]');
115                         if($connectToMailServer) {
116                                 $GLOBALS['log']->debug('Connected to mailserver');
117                                 if (!$ieX->isPop3Protocol()) {
118                                         $newMsgs = $ieX->getNewMessageIds();
119                                 }
120                                 if(is_array($newMsgs)) {
121                                         $current = 1;
122                                         $total = count($newMsgs);
123                                         require_once("include/SugarFolders/SugarFolders.php");
124                                         $sugarFolder = new SugarFolder();
125                                         $groupFolderId = $ieX->groupfolder_id;
126                                         $isGroupFolderExists = false;
127                                         $users = array();
128                                         if ($groupFolderId != null && $groupFolderId != "") {
129                                                 $sugarFolder->retrieve($groupFolderId);
130                                                 $isGroupFolderExists = true;
131                                         } // if
132                                         $messagesToDelete = array();
133                                         if ($ieX->isMailBoxTypeCreateCase()) {
134                                                 $users[] = $sugarFolder->assign_to_id;
135                                                 $distributionMethod = $ieX->get_stored_options("distrib_method", "");
136                                                 if ($distributionMethod != 'roundRobin') {
137                                                         $counts = $emailUI->getAssignedEmailsCountForUsers($users);
138                                                 } else {
139                                                         $lastRobin = $emailUI->getLastRobin($ieX);
140                                                 }
141                                                 $GLOBALS['log']->debug('distribution method id [ '.$distributionMethod.' ]');
142                                         }
143                                         foreach($newMsgs as $k => $msgNo) {
144                                                 $uid = $msgNo;
145                                                 if ($ieX->isPop3Protocol()) {
146                                                         $uid = $msgNoToUIDL[$msgNo];
147                                                 } else {
148                                                         $uid = imap_uid($ieX->conn, $msgNo);
149                                                 } // else
150                                                 if ($isGroupFolderExists) {
151                                                         if ($ieX->importOneEmail($msgNo, $uid)) {
152                                                                 // add to folder
153                                                                 $sugarFolder->addBean($ieX->email);
154                                                                 if ($ieX->isPop3Protocol()) {
155                                                                         $messagesToDelete[] = $msgNo;
156                                                                 } else {
157                                                                         $messagesToDelete[] = $uid;
158                                                                 }
159                                                                 if ($ieX->isMailBoxTypeCreateCase()) {
160                                                                         $userId = "";
161                                                                         if ($distributionMethod == 'roundRobin') {
162                                                                                 if (sizeof($users) == 1) {
163                                                                                         $userId = $users[0];
164                                                                                         $lastRobin = $users[0];
165                                                                                 } else {
166                                                                                         $userIdsKeys = array_flip($users); // now keys are values
167                                                                                         $thisRobinKey = $userIdsKeys[$lastRobin] + 1;
168                                                                                         if(!empty($users[$thisRobinKey])) {
169                                                                                                 $userId = $users[$thisRobinKey];
170                                                                                                 $lastRobin = $users[$thisRobinKey];
171                                                                                         } else {
172                                                                                                 $userId = $users[0];
173                                                                                                 $lastRobin = $users[0];
174                                                                                         }
175                                                                                 } // else
176                                                                         } else {
177                                                                                 if (sizeof($users) == 1) {
178                                                                                         foreach($users as $k => $value) {
179                                                                                                 $userId = $value;
180                                                                                         } // foreach
181                                                                                 } else {
182                                                                                         asort($counts); // lowest to highest
183                                                                                         $countsKeys = array_flip($counts); // keys now the 'count of items'
184                                                                                         $leastBusy = array_shift($countsKeys); // user id of lowest item count
185                                                                                         $userId = $leastBusy;
186                                                                                         $counts[$leastBusy] = $counts[$leastBusy] + 1;
187                                                                                 }
188                                                                         } // else
189                                                                         $GLOBALS['log']->debug('userId [ '.$userId.' ]');
190                                                                         $ieX->handleCreateCase($ieX->email, $userId);
191                                                                 } // if
192                                                         } // if
193                                                 } else {
194                                                                 if($ieX->isAutoImport()) {
195                                                                         $ieX->importOneEmail($msgNo, $uid);
196                                                                 } else {
197                                                                         /*If the group folder doesn't exist then download only those messages
198                                                                          which has caseid in message*/
199                                                                         $ieX->getMessagesInEmailCache($msgNo, $uid);
200                                                                         $email = new Email();
201                                                                         $header = imap_headerinfo($ieX->conn, $msgNo);
202                                                                         $email->name = $ieX->handleMimeHeaderDecode($header->subject);
203                                                                         $email->from_addr = $ieX->convertImapToSugarEmailAddress($header->from);
204                                                                         $email->reply_to_email  = $ieX->convertImapToSugarEmailAddress($header->reply_to);
205                                                                         if(!empty($email->reply_to_email)) {
206                                                                                 $contactAddr = $email->reply_to_email;
207                                                                         } else {
208                                                                                 $contactAddr = $email->from_addr;
209                                                                         }
210                                                                         $mailBoxType = $ieX->mailbox_type;
211                                                                                 $ieX->handleAutoresponse($email, $contactAddr);
212                                                                 } // else
213                                                 } // else
214                                                 $GLOBALS['log']->debug('***** On message [ '.$current.' of '.$total.' ] *****');
215                                                 $current++;
216                                         } // foreach
217                                         // update Inbound Account with last robin
218                                         if ($ieX->isMailBoxTypeCreateCase() && $distributionMethod == 'roundRobin') {
219                                                 $emailUI->setLastRobin($ieX, $lastRobin);
220                                         } // if
221
222                                 } // if
223                                 if ($isGroupFolderExists)        {
224                                         $leaveMessagesOnMailServer = $ieX->get_stored_options("leaveMessagesOnMailServer", 0);
225                                         if (!$leaveMessagesOnMailServer) {
226                                                 if ($ieX->isPop3Protocol()) {
227                                                         $ieX->deleteMessageOnMailServerForPop3(implode(",", $messagesToDelete));
228                                                 } else {
229                                                         $ieX->deleteMessageOnMailServer(implode($app_strings['LBL_EMAIL_DELIMITER'], $messagesToDelete));
230                                                 }
231                                         }
232                                 }
233                         } else {
234                                 $GLOBALS['log']->fatal("SCHEDULERS: could not get an IMAP connection resource for ID [ {$a['id']} ]. Skipping mailbox [ {$a['name']} ].");
235                                 // cn: bug 9171 - continue while
236                         } // else
237                 } // foreach
238                 imap_expunge($ieX->conn);
239                 imap_close($ieX->conn, CL_EXPUNGE);
240         } // while
241
242         return true;
243 }
244
245 /**
246  * Job 2
247  */
248 function runMassEmailCampaign() {
249         if (!class_exists('LoggerManager')){
250
251         }
252         $GLOBALS['log'] = LoggerManager::getLogger('emailmandelivery');
253         $GLOBALS['log']->debug('Called:runMassEmailCampaign');
254
255         if (!class_exists('DBManagerFactory')){
256                 require('include/database/DBManagerFactory.php');
257         }
258
259         global $beanList;
260         global $beanFiles;
261         require("config.php");
262         require('include/modules.php');
263         if(!class_exists('AclController')) {
264                 require('modules/ACL/ACLController.php');
265         }
266
267         require('modules/EmailMan/EmailManDelivery.php');
268         return true;
269 }
270
271 /**
272  *  Job 3
273  */
274 function pruneDatabase() {
275         $GLOBALS['log']->info('----->Scheduler fired job of type pruneDatabase()');
276         $backupDir      = sugar_cached('backups');
277         $backupFile     = 'backup-pruneDatabase-GMT0_'.gmdate('Y_m_d-H_i_s', strtotime('now')).'.php';
278
279         $db = DBManagerFactory::getInstance();
280         $tables = $db->getTablesArray();
281
282 //_ppd($tables);
283         if(!empty($tables)) {
284                 foreach($tables as $kTable => $table) {
285                         // find tables with deleted=1
286                         $columns = $db->get_columns($table);
287                         // no deleted - won't delete
288                         if(empty($columns['deleted'])) continue;
289
290                         $custom_columns = array();
291                         if(array_search($table.'_cstm', $tables)) {
292                             $custom_columns = $db->get_columns($table.'_cstm');
293                             if(empty($custom_columns['id_c'])) {
294                                 $custom_columns = array();
295                             }
296                         }
297
298                         $qDel = "SELECT * FROM $table WHERE deleted = 1";
299                         $rDel = $db->query($qDel);
300                         $queryString = array();
301                         // make a backup INSERT query if we are deleting.
302                         while($aDel = $db->fetchByAssoc($rDel, false)) {
303                                 // build column names
304
305                                 $queryString[] = $db->insertParams($table, $columns, $rDel, null, false);
306
307                                 if(!empty($custom_columns) && !empty($rDel['id'])) {
308                     $qDelCstm = 'SELECT * FROM '.$table.'_cstm WHERE id_c = '.$db->quoted($aDel['id']);
309                     $rDelCstm = $db->query($qDelCstm);
310
311                     // make a backup INSERT query if we are deleting.
312                     while($aDelCstm = $db->fetchByAssoc($rDelCstm)) {
313                         $queryString[] = $db->insertParams($table, $custom_columns, $aDelCstm, null, false);
314                     } // end aDel while()
315
316                     $db->query('DELETE FROM '.$table.'_cstm WHERE id_c = '.$db->quoted($aDel['id']));
317                 }
318                         } // end aDel while()
319                         // now do the actual delete
320                         $db->query('DELETE FROM '.$table.' WHERE deleted = 1');
321                 } // foreach() tables
322
323                 if(!file_exists($backupDir) || !file_exists($backupDir.'/'.$backupFile)) {
324                         // create directory if not existent
325                         mkdir_recursive($backupDir, false);
326                 }
327                 // write cache file
328
329                 write_array_to_file('pruneDatabase', $queryString, $backupDir.'/'.$backupFile);
330                 return true;
331         }
332         return false;
333 }
334
335
336 ///**
337 // * Job 4
338 // */
339
340 //function securityAudit() {
341 //      // do something
342 //      return true;
343 //}
344
345 function trimTracker()
346 {
347     global $sugar_config, $timedate;
348         $GLOBALS['log']->info('----->Scheduler fired job of type trimTracker()');
349         $db = DBManagerFactory::getInstance();
350
351         $admin = new Administration();
352         $admin->retrieveSettings('tracker');
353         require('modules/Trackers/config.php');
354         $trackerConfig = $tracker_config;
355
356     require_once('include/utils/db_utils.php');
357     $prune_interval = !empty($admin->settings['tracker_prune_interval']) ? $admin->settings['tracker_prune_interval'] : 30;
358         foreach($trackerConfig as $tableName=>$tableConfig) {
359
360                 //Skip if table does not exist
361                 if(!$db->tableExists($tableName)) {
362                    continue;
363                 }
364
365             $timeStamp = db_convert("'". $timedate->asDb($timedate->getNow()->get("+"+$prune_interval+" days")) ."'" ,"datetime");
366                 if($tableName == 'tracker_sessions') {
367                    $query = "DELETE FROM $tableName WHERE date_end < $timeStamp";
368                 } else {
369                    $query = "DELETE FROM $tableName WHERE date_modified < $timeStamp";
370                 }
371
372             $GLOBALS['log']->info("----->Scheduler is about to trim the $tableName table by running the query $query");
373                 $db->query($query);
374         } //foreach
375     return true;
376 }
377
378 /* Job 5
379  *
380  */
381 function pollMonitoredInboxesForBouncedCampaignEmails() {
382         $GLOBALS['log']->info('----->Scheduler job of type pollMonitoredInboxesForBouncedCampaignEmails()');
383         global $dictionary;
384
385
386         $ie = new InboundEmail();
387         $r = $ie->db->query('SELECT id FROM inbound_email WHERE deleted=0 AND status=\'Active\' AND mailbox_type=\'bounce\'');
388
389         while($a = $ie->db->fetchByAssoc($r)) {
390                 $ieX = new InboundEmail();
391                 $ieX->retrieve($a['id']);
392                 $ieX->connectMailserver();
393         $GLOBALS['log']->info("Bounced campaign scheduler connected to mail server id: {$a['id']} ");
394                 $newMsgs = array();
395                 if ($ieX->isPop3Protocol()) {
396                         $newMsgs = $ieX->getPop3NewMessagesToDownload();
397                 } else {
398                         $newMsgs = $ieX->getNewMessageIds();
399                 }
400
401                 //$newMsgs = $ieX->getNewMessageIds();
402                 if(is_array($newMsgs)) {
403                         foreach($newMsgs as $k => $msgNo) {
404                                 $uid = $msgNo;
405                                 if ($ieX->isPop3Protocol()) {
406                                         $uid = $ieX->getUIDLForMessage($msgNo);
407                                 } else {
408                                         $uid = imap_uid($ieX->conn, $msgNo);
409                                 } // else
410                  $GLOBALS['log']->info("Bounced campaign scheduler will import message no: $msgNo");
411                                 $ieX->importOneEmail($msgNo, $uid, false,false);
412                         }
413                 }
414                 imap_expunge($ieX->conn);
415                 imap_close($ieX->conn);
416         }
417
418         return true;
419 }
420
421
422
423
424
425 if (file_exists('custom/modules/Schedulers/_AddJobsHere.php')) {
426         require('custom/modules/Schedulers/_AddJobsHere.php');
427 }
428
429 if (file_exists('custom/modules/Schedulers/Ext/ScheduledTasks/scheduledtasks.ext.php'))
430 {
431         require('custom/modules/Schedulers/Ext/ScheduledTasks/scheduledtasks.ext.php');
432 }
433 ?>