]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/imsettings.php
836c473fcb58f842d44d3d3025f4719662e4502c
[quix0rs-gnu-social.git] / actions / imsettings.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/settingsaction.php');
23 require_once(INSTALLDIR.'/lib/jabber.php');
24
25 class ImsettingsAction extends SettingsAction {
26
27         function show_top($arr) {
28                 $msg = $arr[0];
29                 $success = $arr[1];
30                 if ($msg) {
31                         $this->message($msg, $success);
32                 } else {
33                         common_element('div', 'instructions',
34                                                    _t('You can send and receive notices through '.
35                                                           'Jabber/GTalk instant messages. Configure '.
36                                                           'your address and settings below.'));
37                 }
38                 $this->settings_menu();
39         }
40
41         function show_form($msg=NULL, $success=false) {
42                 $user = common_current_user();
43                 common_show_header(_t('IM settings'), NULL, array($msg, $success),
44                                                    array($this, 'show_top'));
45
46                 common_element_start('form', array('method' => 'POST',
47                                                                                    'id' => 'imsettings',
48                                                                                    'action' =>
49                                                                                    common_local_url('imsettings')));
50
51                 common_element('h2', NULL, _t('Address'));
52
53                 if ($user->jabber) {
54                         common_element_start('p');
55                         common_element('span', 'address confirmed', $user->jabber);
56                         common_element('span', 'input_instructions',
57                                        _t('Current confirmed Jabber/GTalk address.'));
58                         common_hidden('jabber', $user->jabber);
59                         common_element_end('p');
60                         common_submit('remove', 'Remove');
61                 } else {
62                         $confirm = $this->get_confirmation();
63                         if ($confirm) {
64                                 common_element_start('p');
65                                 common_element('span', 'address unconfirmed', $confirm->address);
66                                 common_element('span', 'input_instructions',
67                                              _t('Current confirmed Jabber/GTalk address.'));
68                                 common_hidden('jabber', $confirm->address);
69                                 common_element_end('p');
70                                 common_submit('cancel', _t('Cancel'));
71                         } else {
72                                 common_input('jabber', _t('IM Address'),
73                                                         ($this->arg('jabber')) ? $this->arg('jabber') : NULL,
74                                                  _t('Jabber or GTalk address, like "UserName@example.org"'));
75                                 common_submit('add', 'Add');
76                         }
77                 }
78
79                 common_element('h2', NULL, _t('Preferences'));
80
81                 common_checkbox('jabbernotify',
82                                 _t('Send me notices through Jabber/GTalk.'),
83                                 $user->jabbernotify);
84                 common_checkbox('updatefrompresence',
85                                 _t('Post a notice when my Jabber/GTalk status changes.'),
86                                 $user->updatefrompresence);
87                 common_submit('save', _t('Save'));
88
89                 common_element_end('form');
90                 common_show_footer();
91         }
92
93         function get_confirmation() {
94                 $user = common_current_user();
95                 $confirm = new Confirm_address();
96                 $confirm->user_id = $user->id;
97                 $confirm->address_type = 'jabber';
98                 if ($confirm->find(TRUE)) {
99                         return $confirm;
100                 } else {
101                         return NULL;
102                 }
103         }
104
105         function handle_post() {
106
107                 if ($this->arg('save')) {
108                         $this->save_preferences();
109                 } else if ($this->arg('add')) {
110                         $this->add_address();
111                 } else if ($this->arg('cancel')) {
112                         $this->cancel_confirmation();
113                 } else if ($this->arg('remove')) {
114                         $this->remove_address();
115                 } else {
116                         $this->show_form(_t('Unexpected form submission.'));
117                 }
118         }
119
120         function save_preferences() {
121
122                 $jabbernotify = $this->boolean('jabbernotify');
123                 $updatefrompresence = $this->boolean('updatefrompresence');
124
125                 $user = common_current_user();
126
127                 assert(!is_null($user)); # should already be checked
128
129                 $user->query('BEGIN');
130
131                 $original = clone($user);
132
133                 $user->jabbernotify = $jabbernotify;
134                 $user->updatefrompresence = $updatefrompresence;
135
136                 $result = $user->update($original);
137
138                 if ($result === FALSE) {
139                         common_log_db_error($user, 'UPDATE', __FILE__);
140                         common_server_error(_t('Couldnt update user.'));
141                         return;
142                 }
143
144                 $user->query('COMMIT');
145
146                 $this->show_form(_t('Preferences saved.'), true);
147         }
148
149         function add_address() {
150
151                 $user = common_current_user();
152
153                 $jabber = $this->trimmed('jabber');
154
155                 # Some validation
156
157                 if (!$jabber) {
158                         $this->show_form(_t('No Jabber ID.'));
159                         return;
160                 }
161
162                 $jabber = jabber_normalize_jid($jabber);
163
164                 if (!$jabber) {
165                     $this->show_form(_('Cannot normalize that Jabber ID'));
166                     return;
167                 }
168                 if (!jabber_valid_base_jid($jabber)) {
169                     $this->show_form(_('Not a valid Jabber ID'));
170                     return;
171                 } else if ($user->jabber == $jabber) {
172                     $this->show_form(_('That is already your Jabber ID.'));
173                     return;
174                 } else if ($this->jabber_exists($jabber)) {
175                     $this->show_form(_('Jabber ID already belongs to another user.'));
176                     return;
177                 }
178
179                 $confirm = new Confirm_address();
180                 $confirm->address = $jabber;
181                 $confirm->address_type = 'jabber';
182                 $confirm->user_id = $user->id;
183                 $confirm->code = common_confirmation_code(64);
184
185                 $result = $confirm->insert();
186
187                 if ($result === FALSE) {
188                         common_log_db_error($confirm, 'INSERT', __FILE__);
189                         common_server_error(_t('Couldnt insert confirmation code.'));
190                         return;
191                 }
192
193                 # XXX: optionally queue for offline sending
194
195                 if (!jabber_is_subscribed($jabber)) {
196                         jabber_special_presence('subscribe', $jabber);
197                 } else {
198                         jabber_confirm_address($confirm->code,
199                                                                    $user->nickname,
200                                                                    $jabber);
201                 }
202
203                 $this->show_form(_t('A confirmation code was ' .
204                                     ' sent to the IM address you added. ' .
205                                     ' You must approve ' . jabber_daemon_address() .
206                                     ' for sending messages to you.'),
207                                     TRUE);
208         }
209
210         function cancel_confirmation() {
211                 $jabber = $this->arg('jabber');
212                 $confirm = $this->get_confirmation();
213                 if (!$confirm) {
214                         $this->show_form(_t('No pending confirmation to cancel.'));
215                         return;
216                 }
217                 if ($confirm->address != $jabber) {
218                         $this->show_form(_t('That is the wrong IM address.'));
219                         return;
220                 }
221
222         $result = $confirm->delete();
223
224         if (!$result) {
225                         common_log_db_error($confirm, 'DELETE', __FILE__);
226             $this->server_error(_t('Couldn\'t delete email confirmation.'));
227             return;
228         }
229
230         $this->show_form(_t('Confirmation cancelled.'), TRUE);
231         }
232
233         function remove_address() {
234
235                 $user = common_current_user();
236                 $jabber = $this->arg('jabber');
237
238                 # Maybe an old tab open...?
239
240                 if ($user->jabber != $jabber) {
241                     $this->show_form(_t('That is not your Jabber ID.'));
242                     return;
243                 }
244
245                 $user->query('BEGIN');
246                 $original = clone($user);
247                 $user->jabber = NULL;
248                 $result = $user->updateKeys($original);
249                 if (!$result) {
250                         common_log_db_error($user, 'UPDATE', __FILE__);
251                         common_server_error(_t('Couldnt update user.'));
252                         return;
253                 }
254                 $user->query('COMMIT');
255
256                 # Unsubscribe to the old address
257
258                 jabber_special_presence('unsubscribe', $jabber);
259
260                 $this->show_form(_t('The address was removed.'), TRUE);
261         }
262
263         function jabber_exists($jabber) {
264                 $user = common_current_user();
265                 $other = User::staticGet('jabber', $jabber);
266                 if (!$other) {
267                         return false;
268                 } else {
269                         return $other->id != $user->id;
270                 }
271         }
272 }