]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - maildaemon.php
Adds Opensearch description
[quix0rs-gnu-social.git] / maildaemon.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * Laconica - a distributed open-source microblogging tool
5  * Copyright (C) 2008, Controlez-Vous, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 # Abort if called from a web server
22 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
23         print "This script must be run from the command line\n";
24         exit();
25 }
26
27 define('INSTALLDIR', dirname(__FILE__));
28 define('LACONICA', true);
29
30 require_once(INSTALLDIR . '/lib/common.php');
31 require_once(INSTALLDIR . '/lib/mail.php');
32 require_once('Mail/mimeDecode.php');
33
34 # FIXME: we use both Mail_mimeDecode and mailparse
35 # Need to move everything to mailparse
36
37 class MailerDaemon {
38
39         function __construct() {
40         }
41
42         function handle_message($fname='php://stdin') {
43                 list($from, $to, $msg) = $this->parse_message($fname);
44                 if (!$from || !$to || !$msg) {
45                         $this->error(NULL, _t('Could not parse message.'));
46                 }
47                 common_log(LOG_INFO, "Mail from $from to $to: " .substr($msg, 0, 20));
48                 $user = $this->user_from($from);
49                 if (!$user) {
50                         $this->error($from, _('Not a registered user.'));
51                         return false;
52                 }
53                 if (!$this->user_match_to($user, $to)) {
54                         $this->error($from, _('Sorry, that is not your incoming email address.'));
55                         return false;
56                 }
57                 if (!$user->emailpost) {
58                         $this->error($from, _('Sorry, no incoming email allowed.'));
59                         return false;
60                 }
61                 $response = $this->handle_command($user, $msg);
62                 if ($response) {
63                         $this->respond($from, $to, $response);
64                         return true;
65                 }
66                 $msg = $this->cleanup_msg($msg);
67                 $this->add_notice($user, $msg);
68         }
69
70         function error($from, $msg) {
71                 file_put_contents("php://stderr", $msg . "\n");
72                 exit(1);
73         }
74
75         function user_from($from_hdr) {
76                 $froms = mailparse_rfc822_parse_addresses($from_hdr);
77                 if (!$froms) {
78                         return NULL;
79                 }
80                 $from = $froms[0];
81                 $addr = common_canonical_email($from['address']);
82                 $user = User::staticGet('email', $addr);
83                 if (!$user) {
84                         $user = User::staticGet('smsemail', $addr);
85                 }
86                 return $user;
87         }
88
89         function user_match_to($user, $to_hdr) {
90                 $incoming = $user->incomingemail;
91                 $tos = mailparse_rfc822_parse_addresses($to_hdr);
92                 foreach ($tos as $to) {
93                         if (strcasecmp($incoming, $to['address']) == 0) {
94                                 return true;
95                         }
96                 }
97                 return false;
98         }
99
100         function handle_command($user, $msg) {
101                 return false;
102         }
103
104         function respond($from, $to, $response) {
105
106                 $headers['From'] = $to;
107                 $headers['To'] = $from;
108                 $headers['Subject'] = "Command complete";
109
110                 return mail_send(array($from), $headers, $response);
111         }
112
113         function log($level, $msg) {
114                 common_log($level, 'MailDaemon: '.$msg);
115         }
116
117         function add_notice($user, $msg) {
118                 $notice = new Notice();
119                 $notice->is_local = 1;
120                 $notice->profile_id = $user->id;
121                 $notice->content = trim(substr($msg, 0, 140));
122                 $notice->rendered = common_render_content($notice->content, $notice);
123                 $notice->created = DB_DataObject_Cast::dateTime();
124                 $notice->query('BEGIN');
125                 $id = $notice->insert();
126                 if (!$id) {
127                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
128                         $this->log(LOG_ERR,
129                                            'Could not insert ' . common_log_objstring($notice) .
130                                            ' for user ' . common_log_objstring($user) .
131                                            ': ' . $last_error->message);
132                         return;
133                 }
134                 $orig = clone($notice);
135                 $notice->uri = common_notice_uri($notice);
136                 $result = $notice->update($orig);
137                 if (!$result) {
138                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
139                         $this->log(LOG_ERR,
140                                            'Could not add URI to ' . common_log_objstring($notice) .
141                                            ' for user ' . common_log_objstring($user) .
142                                            ': ' . $last_error->message);
143                         return;
144                 }
145                 $notice->query('COMMIT');
146         common_save_replies($notice);
147                 common_broadcast_notice($notice);
148                 $this->log(LOG_INFO,
149                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
150         }
151
152         function parse_message($fname) {
153                 $contents = file_get_contents($fname);
154                 $parsed = Mail_mimeDecode::decode(array('input' => $contents,
155                                                                                                 'include_bodies' => true,
156                                                                                                 'decode_headers' => true,
157                                                                                                 'decode_bodies' => true));
158                 if (!$parsed) {
159                         return NULL;
160                 }
161
162                 $from = $parsed->headers['from'];
163
164                 $to = $parsed->headers['to'];
165
166                 $type = $parsed->ctype_primary . '/' . $parsed->ctype_secondary;
167
168                 if ($parsed->ctype_primary == 'multipart') {
169                         foreach ($parsed->parts as $part) {
170                                 if ($part->ctype_primary == 'text' &&
171                                         $part->ctype_secondary == 'plain') {
172                                         $msg = $part->body;
173                                         break;
174                                 }
175                         }
176                 } else if ($type == 'text/plain') {
177                         $msg = $parsed->body;
178                 } else {
179                         $this->unsupported_type($type);
180                 }
181
182                 return array($from, $to, $msg);
183         }
184
185         function unsupported_type($type) {
186                 $this->error(NULL, "Unsupported message type: " . $type);
187         }
188
189         function cleanup_msg($msg) {
190                 $lines = explode("\n", $msg);
191
192                 $output = '';
193
194                 foreach ($lines as $line) {
195                         // skip quotes
196                         if (preg_match('/^\s*>.*$/', $line)) {
197                                 continue;
198                         }
199                         // skip start of quote
200                         if (preg_match('/^\s*On.*wrote:\s*$/', $line)) {
201                                 continue;
202                         }
203                         // probably interesting to someone, not us
204                         if (preg_match('/^\s*Sent via/', $line)) {
205                                 continue;
206                         }
207                         // skip everything after a sig
208                         if (preg_match('/^\s*--+\s*$/', $line) ||
209                                 preg_match('/^\s*__+\s*$/', $line))
210                         {
211                                 break;
212                         }
213                         // skip everything after Outlook quote
214                         if (preg_match('/^\s*-+\s*Original Message\s*-+\s*$/', $line)) {
215                                 break;
216                         }
217                         // skip everything after weird forward
218                         if (preg_match('/^\s*Begin\s+forward/', $line)) {
219                                 break;
220                         }
221
222                         $output .= ' ' . $line;
223                 }
224
225                 preg_replace('/\s+/', ' ', $output);
226                 return trim($output);
227         }
228 }
229
230 $md = new MailerDaemon();
231 $md->handle_message('php://stdin');