]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapidirect_messages.php
e9f7aa0bf11f6a939c1210f035b3566c6d12985f
[quix0rs-gnu-social.git] / actions / twitapidirect_messages.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/twitterapi.php');
23
24 class Twitapidirect_messagesAction extends TwitterapiAction {
25
26     function direct_messages($args, $apidata)
27     {
28         parent::handle($args);
29         return $this->show_messages($args, $apidata, 'received');
30     }
31
32     function sent($args, $apidata)
33     {
34         parent::handle($args);
35         return $this->show_messages($args, $apidata, 'sent');
36     }
37
38     function show_messages($args, $apidata, $type)
39     {
40
41         $user = $apidata['user'];
42
43         $count = $this->arg('count');
44         $since = $this->arg('since');
45         $since_id = $this->arg('since_id');
46         $before_id = $this->arg('before_id');
47
48         $page = $this->arg('page');
49
50         if (!$page) {
51             $page = 1;
52         }
53
54         if (!$count) {
55             $count = 20;
56         }
57
58         $message = new Message();
59
60         $title = null;
61         $subtitle = null;
62         $link = null;
63         $server = common_root_url();
64
65         if ($type == 'received') {
66             $message->to_profile = $user->id;
67             $title = sprintf(_("Direct messages to %s"), $user->nickname);
68             $subtitle = sprintf(_("All the direct messages sent to %s"), $user->nickname);
69             $link = $server . $user->nickname . '/inbox';
70         } else {
71             $message->from_profile = $user->id;
72             $title = _('Direct Messages You\'ve Sent');
73             $subtitle = sprintf(_("All the direct messages sent from %s"), $user->nickname);
74             $link = $server . $user->nickname . '/outbox';
75         }
76
77         if ($before_id) {
78             $message->whereAdd("id < $before_id");
79         }
80
81         if ($since_id) {
82             $message->whereAdd("id > $since_id");
83         }
84
85         $since = strtotime($this->arg('since'));
86
87         if ($since) {
88             $d = date('Y-m-d H:i:s', $since);
89             $message->whereAdd("created > '$d'");
90         }
91
92         $message->orderBy('created DESC, id DESC');
93         $message->limit((($page-1)*20), $count);
94         $message->find();
95
96         switch($apidata['content-type']) {
97          case 'xml':
98             $this->show_xml_dmsgs($message);
99             break;
100          case 'rss':
101             $this->show_rss_dmsgs($message, $title, $link, $subtitle);
102             break;
103          case 'atom':
104             $this->show_atom_dmsgs($message, $title, $link, $subtitle);
105             break;
106          case 'json':
107             $this->show_json_dmsgs($message);
108             break;
109          default:
110             common_user_error(_('API method not found!'), $code = 404);
111         }
112
113     }
114
115     // had to change this from "new" to "create" to avoid PHP reserved word
116     function create($args, $apidata)
117     {
118         parent::handle($args);
119
120         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
121             $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
122             return;
123         }
124
125         $user = $apidata['user'];
126         $source = $this->trimmed('source');     // Not supported by Twitter.
127
128         $reserved_sources = array('web', 'omb', 'mail', 'xmpp', 'api');
129         if (!$source || in_array($source, $reserved_sources)) {
130             $source = 'api';
131         }
132
133         $content = $this->trimmed('text');
134
135         if (!$content) {
136             $this->client_error(_('No message text!'), $code = 406, $apidata['content-type']);
137         } else {
138             $content_shortened = common_shorten_links($content);
139             if (mb_strlen($content_shortened) > 140) {
140                 $this->client_error(_('That\'s too long. Max message size is 140 chars.'),
141                     $code = 406, $apidata['content-type']);
142                 return;
143             }
144         }
145
146         $other = $this->get_user($this->trimmed('user'));
147
148         if (!$other) {
149             $this->client_error(_('Recipient user not found.'), $code = 403, $apidata['content-type']);
150             return;
151         } else if (!$user->mutuallySubscribed($other)) {
152             $this->client_error(_('Can\'t send direct messages to users who aren\'t your friend.'),
153                 $code = 403, $apidata['content-type']);
154             return;
155         } else if ($user->id == $other->id) {
156             // Sending msgs to yourself is allowed by Twitter
157             $this->client_error(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'),
158                 $code = 403, $apidata['content-type']);
159             return;
160         }
161
162         $message = Message::saveNew($user->id, $other->id,
163             html_entity_decode($content, ENT_NOQUOTES, 'UTF-8'), $source);
164
165         if (is_string($message)) {
166             $this->server_error($message);
167             return;
168         }
169
170         $this->notify($user, $other, $message);
171
172         if ($apidata['content-type'] == 'xml') {
173             $this->show_single_xml_dmsg($message);
174         } elseif ($apidata['content-type'] == 'json') {
175             $this->show_single_json_dmsg($message);
176         }
177
178     }
179
180     function destroy($args, $apidata)
181     {
182         parent::handle($args);
183         common_server_error(_('API method under construction.'), $code=501);
184     }
185
186     function show_xml_dmsgs($message)
187     {
188
189         $this->init_document('xml');
190         common_element_start('direct-messages', array('type' => 'array'));
191
192         if (is_array($messages)) {
193             foreach ($message as $m) {
194                 $twitter_dm = $this->twitter_dmsg_array($m);
195                 $this->show_twitter_xml_dmsg($twitter_dm);
196             }
197         } else {
198             while ($message->fetch()) {
199                 $twitter_dm = $this->twitter_dmsg_array($message);
200                 $this->show_twitter_xml_dmsg($twitter_dm);
201             }
202         }
203
204         common_element_end('direct-messages');
205         $this->end_document('xml');
206
207     }
208
209     function show_json_dmsgs($message)
210     {
211
212         $this->init_document('json');
213
214         $dmsgs = array();
215
216         if (is_array($message)) {
217             foreach ($message as $m) {
218                 $twitter_dm = $this->twitter_dmsg_array($m);
219                 array_push($dmsgs, $twitter_dm);
220             }
221         } else {
222             while ($message->fetch()) {
223                 $twitter_dm = $this->twitter_dmsg_array($message);
224                 array_push($dmsgs, $twitter_dm);
225             }
226         }
227
228         $this->show_json_objects($dmsgs);
229         $this->end_document('json');
230
231     }
232
233     function show_rss_dmsgs($message, $title, $link, $subtitle)
234     {
235
236         $this->init_document('rss');
237
238         common_element_start('channel');
239         common_element('title', null, $title);
240
241         common_element('link', null, $link);
242         common_element('description', null, $subtitle);
243         common_element('language', null, 'en-us');
244         common_element('ttl', null, '40');
245
246         if (is_array($message)) {
247             foreach ($message as $m) {
248                 $entry = $this->twitter_rss_dmsg_array($m);
249                 $this->show_twitter_rss_item($entry);
250             }
251         } else {
252             while ($message->fetch()) {
253                 $entry = $this->twitter_rss_dmsg_array($message);
254                 $this->show_twitter_rss_item($entry);
255             }
256         }
257
258         common_element_end('channel');
259         $this->end_twitter_rss();
260
261     }
262
263     function show_atom_dmsgs($message, $title, $link, $subtitle)
264     {
265
266         $this->init_document('atom');
267
268         common_element('title', null, $title);
269         $siteserver = common_config('site', 'server');
270         common_element('id', null, "tag:$siteserver,2008:DirectMessage");
271         common_element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
272         common_element('updated', null, common_date_iso8601(strftime('%c')));
273         common_element('subtitle', null, $subtitle);
274
275         if (is_array($message)) {
276             foreach ($message as $m) {
277                 $entry = $this->twitter_rss_dmsg_array($m);
278                 $this->show_twitter_atom_entry($entry);
279             }
280         } else {
281             while ($message->fetch()) {
282                 $entry = $this->twitter_rss_dmsg_array($message);
283                 $this->show_twitter_atom_entry($entry);
284             }
285         }
286
287         $this->end_document('atom');
288     }
289
290     // swiped from MessageAction. Should it be place in util.php?
291     function notify($from, $to, $message)
292     {
293         mail_notify_message($message, $from, $to);
294         # XXX: Jabber, SMS notifications... probably queued
295     }
296
297 }