summaryrefslogtreecommitdiff
path: root/src/F2M.php
blob: d06a2ec74b1b5b2826e08416ec0f30f5c1375370 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php

try {
  send_to_lists($user, $mode, $data, $post_data);
}
catch (Exception $e) {
  trigger_error($e, E_USER_ERROR);
}

# TODO: wrap long lines
# TODO: handle attachments

function send_to_lists($user, $mode, $data, $post_data) {

/*
  print '<p>';
  var_dump($data);
  var_dump($post_data);
  print '</p>';
*/

  set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ . '/..');
  require_once('HTML/BBCodeParser.php');

  require_once('Mail.php');
  require_once('Mail/mime.php');

  require_once(__DIR__ . '/Bridge.php');
  require_once(__DIR__ . '/PhpBB3.php');
  require_once(__DIR__ . '/Util.php');

  $postId = $data['post_id'];
  $forumId = $data['forum_id'];
 
  $bridge = new Bridge();

  $to = $bridge->getLists($forumId);
  if (count($to) == 0) {
    # No lists to send to, bail out.
    return;    
  }
  $to = implode(', ', $to);

  $userName = $user->data['username'];
  $userEmail = $user->data['user_email'];

  $from = utf8_quote($userName) . ' <' . $userEmail . '>';
  $sender = 'forum@test.nomic.net';
  $subject = utf8_quote($post_data['post_subject']);

  $phpbb = new PhpBB3();

  $time = $phpbb->getPostTime($postId);
  if ($time === false) {
    throw new Exception('no post time: ' . $postId);
  }

  $date = date(DATE_RFC2822, $time);
  $messageId = build_message_id($time, $postId, $_SERVER['SERVER_NAME']);

  $inReplyTo = null;
  $references = null;
  
  if ($mode == 'reply') {
    $firstId = $data['topic_first_post_id']; 
    $firstMessageId = $bridge->getMessageId($firstId);
    if ($firstMessageId === null) {
      throw new Exception('unrecognized post id: ' . $firstId);
    }

# FIXME: try to build better References by matching, maybe?
    $inReplyTo = $references = $firstMessageId;
  }

  $forumURL = 'http://' . $_SERVER['SERVER_NAME'] .
                  dirname($_SERVER['SCRIPT_NAME']);

  # Assemble the message headers
  $headers = array(
    'To'                       => $to,
    'From'                     => $from,
    'Subject'                  => $subject,
    'Date'                     => $date,
    'Message-Id'               => $messageId,
    'X-BeenThere'              => $forumURL,
#    'Content-Type'             => 'text/plain; charset=UTF-8; format=flowed',
#    'MIME-Version'             => '1.0',
#    'Conten-Transfer-Encoding' => '8bit'
  );

  if ($inReplyTo !== null) {
    $headers['In-Reply-To'] = $inReplyTo;
  }
  
  if ($references !== null) {
    $headers['References'] = $references;
  }

  # Build the message body
  $text = $data['message'];
  strip_bbcode($text, $data['bbcode_uid']);
  $text = htmlspecialchars_decode($text);
  $text = wordwrap($text);

  $msg = $data['message'];
  $msg = nl2br($msg);
  $msg = str_replace(':' . $data['bbcode_uid'], '', $msg);

  $parser = new HTML_BBCodeParser();
  $parser->setText($msg);
  $parser->parse();
  $html = $parser->getParsed();

  $mime = new Mail_mime("\n");
  $mime->setTXTBody($text);
  $mime->setHTMLBody($html);

  $body = $mime->get(array(
    'text_encoding' => '8bit',
    'html_encoding' => 'quoted-printable',
    'head_charset'  => 'iso-8859-1',
    'text_charset'  => 'utf-8',
    'html_charset'  => 'iso-8859-1'
  ));

  $headers = $mime->headers($headers);

  $mailer = Mail::factory('sendmail');

  # Register the message
  $seen = !$bridge->registerMessage($postId, $messageId,
                                    $inReplyTo, $references);
  if ($seen) {
    throw new Exception('message id already seen: ' . $messageId);
  }

  try {
    # Send the message
    $err = $mailer->send($to, $headers, $body);
    if (PEAR::isError($err)) {
      throw new Exception('Mail::send error: ' . $err->toString());
    }
  }
  catch (Exception $e) {
    # Bridging failed, unregister message.
    $bridge->unregisterMessage($messageId);
    throw $e;
  }
}

?>