]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapidirect_messages.php
1ef543f814d3dad5961a349cf4b0d26d74c98a0e
[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 is_readonly() {
27
28                 static $write_methods = array(  'direct_messages',
29                                                                                 'sent');
30
31                 $cmdtext = explode('.', $this->arg('method'));
32
33                 if (in_array($cmdtext[0], $write_methods)) {
34                         return false;
35                 }
36
37                 return true;
38         }
39
40         function direct_messages($args, $apidata) {
41                 parent::handle($args);
42                 return $this->show_messages($args, $apidata, 'received');
43         }
44
45         function sent($args, $apidata) {
46                 parent::handle($args);
47                 return $this->show_messages($args, $apidata, 'sent');
48         }
49
50         function show_messages($args, $apidata, $type) {
51
52                 $user = $apidata['user'];
53
54                 $count = $this->arg('count');
55                 $since = $this->arg('since');
56                 $since_id = $this->arg('since_id');
57                 $page = $this->arg('page');
58
59                 if (!$page) {
60                         $page = 1;
61                 }
62
63                 if (!$count) {
64                         $count = 20;
65                 }
66
67                 $message = new Message();
68
69                 $title = null;
70                 $subtitle = null;
71                 $link = null;
72                 $server = common_root_url();
73
74                 if ($type == 'received') {
75                         $message->to_profile = $user->id;
76                         $title = sprintf(_("Direct messages to %s"), $user->nickname);
77                         $subtitle = sprintf(_("All the direct messages sent to %s"), $user->nickname);
78                         $link = $server . $user->nickname . '/inbox';
79                 } else {
80                         $message->from_profile = $user->id;
81                         $title = _('Direct Messages You\'ve Sent');
82                         $subtitle = sprintf(_("All the direct messages sent from %s"), $user->nickname);
83                         $link = $server . $user->nickname . '/outbox';
84                 }
85
86                 $message->orderBy('created DESC, id DESC');
87                 $message->limit((($page-1)*20), $count);
88                 $message->find();
89
90                 switch($apidata['content-type']) {
91                  case 'xml':
92                         $this->show_xml_dmsgs($message);
93                         break;
94                  case 'rss':
95                         $this->show_rss_dmsgs($message, $title, $link, $subtitle);
96                         break;
97                  case 'atom':
98                         $this->show_atom_dmsgs($message, $title, $link, $subtitle);
99                         break;
100                  case 'json':
101                         $this->show_json_dmsgs($message);
102                         break;
103                  default:
104                         common_user_error(_('API method not found!'), $code = 404);
105                 }
106
107                 exit();
108         }
109
110         // had to change this from "new" to "create" to avoid PHP reserved word
111         function create($args, $apidata) {
112                 parent::handle($args);
113
114                 if ($_SERVER['REQUEST_METHOD'] != 'POST') {
115                         $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
116                         exit();
117                 }
118
119                 $user = $apidata['user'];
120                 $source = $this->trimmed('source');  // Not supported by Twitter.
121
122                 if (!$source) {
123                         $source = 'api';
124                 }
125
126                 $content = $this->trimmed('text');
127
128                 if (!$content) {
129                         $this->client_error(_('No message text!'), $code = 406, $apidata['content-type']);
130                 } else if (mb_strlen($status) > 140) {
131                         $this->client_error(_('That\'s too long. Max message size is 140 chars.'),
132                                 $code = 406, $apidata['content-type']);
133                         exit();
134                 }
135
136                 $other = $this->get_user($this->trimmed('user'));
137
138                 if (!$other) {
139                         $this->client_error(_('Recipient user not found.'), $code = 403, $apidata['content-type']);
140                         exit();
141                 } else if (!$user->mutuallySubscribed($other)) {
142                         $this->client_error(_('Can\'t send direct messages to users who aren\'t your friend.'),
143                                 $code = 403, $apidata['content-type']);
144                         exit();
145                 } else if ($user->id == $other->id) {
146                         // Sending msgs to yourself is allowed by Twitter
147                         $this->client_error(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'),
148                                 $code = 403, $apidata['content-type']);
149                         exit();
150                 }
151
152                 $message = Message::saveNew($user->id, $other->id, $content, $source);
153
154                 if (is_string($message)) {
155                         $this->server_error($message);
156                         exit();
157                 }
158
159                 $this->notify($user, $other, $message);
160
161                 if ($apidata['content-type'] == 'xml') {
162                         $this->show_single_xml_dmsg($message);
163                 } elseif ($apidata['content-type'] == 'json') {
164                         $this->show_single_json_dmsg($message);
165                 }
166
167                 exit();
168         }
169
170         function destroy($args, $apidata) {
171                 parent::handle($args);
172                 common_server_error(_('API method under construction.'), $code=501);
173                 exit();
174         }
175
176         function show_xml_dmsgs($message) {
177
178                 $this->init_document('xml');
179                 common_element_start('direct-messages', array('type' => 'array'));
180
181                 if (is_array($messages)) {
182                         foreach ($message as $m) {
183                                 $twitter_dm = $this->twitter_dmsg_array($m);
184                                 $this->show_twitter_xml_dmsg($twitter_dm);
185                         }
186                 } else {
187                         while ($message->fetch()) {
188                                 $twitter_dm = $this->twitter_dmsg_array($message);
189                                 $this->show_twitter_xml_dmsg($twitter_dm);
190                         }
191                 }
192
193                 common_element_end('direct-messages');
194                 $this->end_document('xml');
195
196         }
197
198         function show_json_dmsgs($message) {
199
200                 $this->init_document('json');
201
202                 $dmsgs = array();
203
204                 if (is_array($message)) {
205                         foreach ($message as $m) {
206                                 $twitter_dm = $this->twitter_dmsg_array($m);
207                                 array_push($dmsgs, $twitter_dm);
208                         }
209                 } else {
210                         while ($message->fetch()) {
211                                 $twitter_dm = $this->twitter_dmsg_array($message);
212                                 array_push($dmsgs, $twitter_dm);
213                         }
214                 }
215
216                 $this->show_json_objects($dmsgs);
217                 $this->end_document('json');
218
219         }
220
221         function show_rss_dmsgs($message, $title, $link, $subtitle) {
222
223                 $this->init_document('rss');
224
225                 common_element_start('channel');
226                 common_element('title', NULL, $title);
227
228                 common_element('link', NULL, $link);
229                 common_element('description', NULL, $subtitle);
230                 common_element('language', NULL, 'en-us');
231                 common_element('ttl', NULL, '40');
232
233                 if (is_array($message)) {
234                         foreach ($message as $m) {
235                                 $entry = $this->twitter_rss_dmsg_array($m);
236                                 $this->show_twitter_rss_item($entry);
237                         }
238                 } else {
239                         while ($message->fetch()) {
240                                 $entry = $this->twitter_rss_dmsg_array($message);
241                                 $this->show_twitter_rss_item($entry);
242                         }
243                 }
244
245                 common_element_end('channel');
246                 $this->end_twitter_rss();
247
248         }
249
250         function show_atom_dmsgs($message, $title, $link, $subtitle) {
251
252                 $this->init_document('atom');
253
254                 common_element('title', NULL, $title);
255                 $siteserver = common_config('site', 'server');
256                 common_element('id', NULL, "tag:$siteserver,2008:DirectMessage");
257                 common_element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), NULL);
258                 common_element('updated', NULL, common_date_iso8601(strftime('%c')));
259                 common_element('subtitle', NULL, $subtitle);
260
261                 if (is_array($message)) {
262                         foreach ($message as $m) {
263                                 $entry = $this->twitter_rss_dmsg_array($m);
264                                 $this->show_twitter_atom_entry($entry);
265                         }
266                 } else {
267                         while ($message->fetch()) {
268                                 $entry = $this->twitter_rss_dmsg_array($message);
269                                 $this->show_twitter_atom_entry($entry);
270                         }
271                 }
272
273                 $this->end_document('atom');
274         }
275
276         // swiped from MessageAction. Should it be place in util.php?
277         function notify($from, $to, $message) {
278                 mail_notify_message($message, $from, $to);
279                 # XXX: Jabber, SMS notifications... probably queued
280         }
281
282 }