]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdateprofileimage.php
Removing unnecessary require_once lines (autoload!)
[quix0rs-gnu-social.git] / actions / apiaccountupdateprofileimage.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Update the authenticating user's profile image
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    Zach Copley <zach@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Updates the authenticating user's profile image. Note that this API method
36  * expects raw multipart data, not a URL to an image.
37  *
38  * @category API
39  * @package  StatusNet
40  * @author   Zach Copley <zach@status.net>
41  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
42  * @link     http://status.net/
43  */
44 class ApiAccountUpdateProfileImageAction extends ApiAuthAction
45 {
46     /**
47      * Take arguments for running
48      *
49      * @param array $args $_REQUEST args
50      *
51      * @return boolean success flag
52      */
53     function prepare($args)
54     {
55         parent::prepare($args);
56
57         $this->user   = $this->auth_user;
58
59         return true;
60     }
61
62     /**
63      * Handle the request
64      *
65      * Check whether the credentials are valid and output the result
66      *
67      * @param array $args $_REQUEST data (unused)
68      *
69      * @return void
70      */
71     function handle($args)
72     {
73         parent::handle($args);
74
75         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
76             $this->clientError(
77                 // TRANS: Client error. POST is a HTTP command. It should not be translated.
78                 _('This method requires a POST.'),
79                 400, $this->format
80             );
81             return;
82         }
83
84         // Workaround for PHP returning empty $_POST and $_FILES when POST
85         // length > post_max_size in php.ini
86
87         if (empty($_FILES)
88             && empty($_POST)
89             && ($_SERVER['CONTENT_LENGTH'] > 0)
90         ) {
91             // TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
92             // TRANS: %s is the number of bytes of the CONTENT_LENGTH.
93             $msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.',
94                       'The server was unable to handle that much POST data (%s bytes) due to its current configuration.',
95                       intval($_SERVER['CONTENT_LENGTH']));
96             $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
97             return;
98         }
99
100         if (empty($this->user)) {
101             // TRANS: Client error displayed updating profile image without having a user object.
102             $this->clientError(_('No such user.'), 404, $this->format);
103             return;
104         }
105
106         try {
107             $imagefile = ImageFile::fromUpload('image');
108         } catch (Exception $e) {
109             $this->clientError($e->getMessage(), 400, $this->format);
110             return;
111         }
112
113         $type = $imagefile->preferredType();
114         $filename = Avatar::filename(
115             $user->id,
116             image_type_to_extension($type),
117             null,
118             'tmp'.common_timestamp()
119         );
120
121         $filepath = Avatar::path($filename);
122
123         $imagefile->copyTo($filepath);
124
125         $profile = $this->user->getProfile();
126
127         if (empty($profile)) {
128             // TRANS: Error message displayed when referring to a user without a profile.
129             $this->clientError(_('User has no profile.'));
130             return;
131         }
132
133         $profile->setOriginal($filename);
134
135         common_broadcast_profile($profile);
136
137         $twitter_user = $this->twitterUserArray($profile, true);
138
139         if ($this->format == 'xml') {
140             $this->initDocument('xml');
141             $this->showTwitterXmlUser($twitter_user, 'user', true);
142             $this->endDocument('xml');
143         } elseif ($this->format == 'json') {
144             $this->initDocument('json');
145             $this->showJsonObjects($twitter_user);
146             $this->endDocument('json');
147         }
148     }
149 }