summaryrefslogtreecommitdiffstats
path: root/digest.php
blob: 4426bc2b05ecb66f601a3a4ddca3ff921bf51bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arun Persaud <arun@nubati.net>
 *
 *   This file is part of e-DoKo.
 *
 *   e-DoKo is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   e-DoKo is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

error_reporting(E_ALL);

include_once("config.php");                /* needs to be first in list, since other includes use this */
include_once("./include/output.php");      /* html output only */
include_once("./include/db.php");          /* database only */
include_once("./include/functions.php");   /* the rest */

/* make sure that user has set all variables in config.php */
config_check();

/* open the database */
if(DB_open()<0)
  exit();

/* only callable via cron or CLI */
if(isset($_SERVER['REMOTE_ADDR']))
  exit();

/* get userid for users that have digest set != digest-off */
$users = DB_get_digest_users();

global $WIKI;

global $defaulttimezone;
foreach($users as $uid)
  {
    // get local time

    $zone  = DB_get_user_timezone($uid);
    date_default_timezone_set($zone);
    $time = (int)(date("H"));

    // calculate mod by digest-time
    $PREF = DB_get_PREF($uid);
    switch($PREF['digest'])
      {
      case 'digest-off':
	break;
      case 'digest-1h':
	$every = 1;
	break;
      case 'digest-2h':
	$every = 2;
	break;
      case 'digest-3h':
	$every = 3;
	break;
      case 'digest-4h':
	$every = 4;
	break;
      case 'digest-6h':
	$every = 6;
	break;
      case 'digest-12h':
	$every = 12;
	break;
      case 'digest-24h':
	$every = 24;
	break;
      }

    // make default time to send email 18:00
    if( ( ($time-18) % $every) == 0 )
      {
	$email = DB_get_email('userid',$uid);

	// get messages
	$messages = DB_get_digest_message_by_email($email);

	// add them together
	if(sizeof($messages))
	  {
	    $text = array();
	    $i=0;
	    foreach($messages as $mess )
	      {
		$text[$i] = $mess[1]."\n++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
		$i++;
	      }

	    $text = implode("\n",$text);

	    // add header, footer, sent out
	    $name    = DB_get_name('userid',$uid);
	    $header  = "Hello $name\n\nHere is a digest of the latest emails:\n\n";

	    $footer  = "\nHave a nice day\n".
	      "   your E-Doko digester\n\n".
	      "-- \n".
	      "You can change your mail delivery mode in the preference menu.\n".
	      'web: http://doko.nubati.net   '.
	      "help, bugs, etc.: $WIKI";

	    $subject = "$EmailName Digest";

	    sendmail($email,$subject,$header.$text.$footer);
	  }

	// delete all messages
	foreach($messages as $mess )
	  DB_digest_delete_message($mess[0]);
      }
  } /* end foreach users */
?>