]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapiaccount.php
start conversation action
[quix0rs-gnu-social.git] / actions / twitapiaccount.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 TwitapiaccountAction extends TwitterapiAction
25 {
26
27     function verify_credentials($args, $apidata)
28     {
29         if ($apidata['content-type'] == 'xml') {
30             header('Content-Type: application/xml; charset=utf-8');
31             print '<authorized>true</authorized>';
32         } elseif ($apidata['content-type'] == 'json') {
33             header('Content-Type: application/json; charset=utf-8');
34             print '{"authorized":true}';
35         } else {
36             header('Content-Type: text/html; charset=utf-8');
37             print 'Authorized';
38         }
39     }
40
41     function end_session($args, $apidata)
42     {
43         parent::handle($args);
44         $this->serverError(_('API method under construction.'), $code=501);
45     }
46
47     function update_location($args, $apidata)
48     {
49         parent::handle($args);
50
51         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
52             $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
53             return;
54         }
55
56         $location = trim($this->arg('location'));
57
58         if (!is_null($location) && mb_strlen($location) > 255) {
59
60             // XXX: But Twitter just truncates and runs with it. -- Zach
61             $this->clientError(_('That\'s too long. Max notice size is 255 chars.'), 406, $apidate['content-type']);
62             return;
63         }
64
65         $user = $apidata['user'];
66         $profile = $user->getProfile();
67
68         if (!$profile) {
69             $this->serverError(_('User has no profile.'));
70             return;
71         }
72
73         $orig_profile = clone($profile);
74         $profile->location = $location;
75
76         $result = $profile->update($orig_profile);
77
78         if (!$result) {
79             common_log_db_error($profile, 'UPDATE', __FILE__);
80             $this->serverError(_('Couldn\'t save profile.'));
81             return;
82         }
83
84         common_broadcast_profile($profile);
85         $type = $apidata['content-type'];
86
87         $this->init_document($type);
88         $this->show_profile($profile, $type);
89         $this->end_document($type);
90     }
91
92
93     function update_delivery_device($args, $apidata)
94     {
95         parent::handle($args);
96         $this->serverError(_('API method under construction.'), $code=501);
97     }
98
99     function rate_limit_status($args, $apidata)
100     {
101         parent::handle($args);
102         $this->serverError(_('API method under construction.'), $code=501);
103     }
104 }