]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Twitter/Account/UpdateProfile.php
Happy New Year 2023!
[friendica.git] / src / Module / Api / Twitter / Account / UpdateProfile.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Api\Twitter\Account;
23
24 use Friendica\Database\DBA;
25 use Friendica\Module\BaseApi;
26 use Friendica\DI;
27 use Friendica\Model\Contact;
28 use Friendica\Model\Profile;
29
30 /**
31  * Update user profile
32  */
33 class UpdateProfile extends BaseApi
34 {
35         protected function post(array $request = [])
36         {
37                 BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE);
38                 $uid = BaseApi::getCurrentUserID();
39
40                 $api_user = DI::twitterUser()->createFromUserId($uid, true)->toArray();
41
42                 if (!empty($request['name'])) {
43                         DBA::update('profile', ['name' => $request['name']], ['uid' => $uid]);
44                         DBA::update('user', ['username' => $request['name']], ['uid' => $uid]);
45                         Contact::update(['name' => $request['name']], ['uid' => $uid, 'self' => 1]);
46                         Contact::update(['name' => $request['name']], ['id' => $api_user['id']]);
47                 }
48
49                 if (isset($request['description'])) {
50                         DBA::update('profile', ['about' => $request['description']], ['uid' => $uid]);
51                         Contact::update(['about' => $request['description']], ['uid' => $uid, 'self' => 1]);
52                         Contact::update(['about' => $request['description']], ['id' => $api_user['id']]);
53                 }
54
55                 Contact::updateSelfFromUserID($uid, true);
56
57                 Profile::publishUpdate($uid);
58
59                 $skip_status = $this->getRequestValue($request, 'skip_status', false);
60
61                 $user_info = DI::twitterUser()->createFromUserId($uid, $skip_status)->toArray();
62
63                 // "verified" isn't used here in the standard
64                 unset($user_info["verified"]);
65
66                 // "uid" is only needed for some internal stuff, so remove it from here
67                 unset($user_info['uid']);
68
69                 $this->response->exit('user', ['user' => $user_info], $this->parameters['extension'] ?? null);
70         }
71 }