]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apidirectmessagenew.php
Merge branch '0.9.x'
[quix0rs-gnu-social.git] / actions / apidirectmessagenew.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Send a direct message via the API
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  API
23  * @package   StatusNet
24  * @author    Adrian Lang <mail@adrianlang.de>
25  * @author    Evan Prodromou <evan@status.net>
26  * @author    Robin Millette <robin@millette.info>
27  * @author    Zach Copley <zach@status.net>
28  * @copyright 2009 StatusNet, Inc.
29  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
30  * @link      http://status.net/
31  */
32
33 if (!defined('STATUSNET')) {
34     exit(1);
35 }
36
37 require_once INSTALLDIR . '/lib/apiauth.php';
38
39 /**
40  * Creates a new direct message from the authenticating user to
41  * the user specified by id.
42  *
43  * @category API
44  * @package  StatusNet
45  * @author   Adrian Lang <mail@adrianlang.de>
46  * @author   Evan Prodromou <evan@status.net>
47  * @author   Robin Millette <robin@millette.info>
48  * @author   Zach Copley <zach@status.net>
49  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50  * @link     http://status.net/
51  */
52
53 class ApiDirectMessageNewAction extends ApiAuthAction
54 {
55     var $other   = null;
56     var $content = null;
57
58     /**
59      * Take arguments for running
60      *
61      * @param array $args $_REQUEST args
62      *
63      * @return boolean success flag
64      *
65      */
66
67     function prepare($args)
68     {
69         parent::prepare($args);
70
71         $this->user = $this->auth_user;
72
73         if (empty($this->user)) {
74             $this->clientError(_('No such user.'), 404, $this->format);
75             return;
76         }
77
78         $this->content = $this->trimmed('text');
79
80         $this->user  = $this->auth_user;
81
82         $user_param  = $this->trimmed('user');
83         $user_id     = $this->arg('user_id');
84         $screen_name = $this->trimmed('screen_name');
85
86         if (isset($user_param) || isset($user_id) || isset($screen_name)) {
87             $this->other = $this->getTargetUser($user_param);
88         }
89
90         return true;
91     }
92
93     /**
94      * Handle the request
95      *
96      * Save the new message
97      *
98      * @param array $args $_REQUEST data (unused)
99      *
100      * @return void
101      */
102
103     function handle($args)
104     {
105         parent::handle($args);
106
107         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
108             $this->clientError(
109                 // TRANS: Client error. POST is a HTTP command. It should not be translated.
110                 _('This method requires a POST.'),
111                 400,
112                 $this->format
113             );
114             return;
115         }
116
117         if (empty($this->content)) {
118             $this->clientError(
119                 _('No message text!'),
120                 406,
121                 $this->format
122             );
123         } else {
124             $content_shortened = common_shorten_links($this->content);
125             if (Message::contentTooLong($content_shortened)) {
126                 $this->clientError(
127                     sprintf(
128                         _('That\'s too long. Max message size is %d chars.'),
129                         Message::maxContent()
130                     ),
131                     406,
132                     $this->format
133                 );
134                 return;
135             }
136         }
137
138         if (empty($this->other)) {
139             $this->clientError(_('Recipient user not found.'), 403, $this->format);
140             return;
141         } else if (!$this->user->mutuallySubscribed($this->other)) {
142             $this->clientError(
143                 _('Can\'t send direct messages to users who aren\'t your friend.'),
144                 403,
145                 $this->format
146             );
147             return;
148         } else if ($this->user->id == $this->other->id) {
149
150             // Note: sending msgs to yourself is allowed by Twitter
151
152             $errmsg = 'Don\'t send a message to yourself; ' .
153                    'just say it to yourself quietly instead.';
154
155             $this->clientError(_($errmsg), 403, $this->format);
156             return;
157         }
158
159         $message = Message::saveNew(
160             $this->user->id,
161             $this->other->id,
162             html_entity_decode($this->content, ENT_NOQUOTES, 'UTF-8'),
163             $this->source
164         );
165
166         if (is_string($message)) {
167             $this->serverError($message);
168             return;
169         }
170
171         $message->notify();
172
173         if ($this->format == 'xml') {
174             $this->showSingleXmlDirectMessage($message);
175         } elseif ($this->format == 'json') {
176             $this->showSingleJsondirectMessage($message);
177         }
178     }
179
180 }
181