123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- class ImsettingsAction extends SettingsAction
- {
-
- function title()
- {
-
- return _('IM settings');
- }
-
- function getInstructions()
- {
-
-
-
- return _('You can send and receive notices through '.
- '[instant messaging](%%doc.im%%). '.
- 'Configure your addresses and settings below.');
- }
-
- function showContent()
- {
- $transports = array();
- Event::handle('GetImTransports', array(&$transports));
- if (! $transports) {
- $this->element('div', array('class' => 'error'),
-
- _('IM is not available.'));
- return;
- }
- $user = common_current_user();
- $user_im_prefs_by_transport = array();
-
- foreach($transports as $transport=>$transport_info)
- {
- $this->elementStart('form', array('method' => 'post',
- 'id' => 'form_settings_im',
- 'class' => 'form_settings',
- 'action' =>
- common_local_url('imsettings')));
- $this->elementStart('fieldset', array('id' => 'settings_im_address'));
-
- $this->element('legend', null, $transport_info['display']);
- $this->hidden('token', common_session_token());
- $this->hidden('transport', $transport);
- if ($user_im_prefs = User_im_prefs::pkeyGet( array('transport' => $transport, 'user_id' => $user->id) )) {
- $user_im_prefs_by_transport[$transport] = $user_im_prefs;
- $this->element('p', 'form_confirmed', $user_im_prefs->screenname);
- $this->element('p', 'form_note',
-
- sprintf(_('Current confirmed %s address.'),$transport_info['display']));
- $this->hidden('screenname', $user_im_prefs->screenname);
-
- $this->submit('remove', _m('BUTTON','Remove'));
- } else {
- $confirm = $this->getConfirmation($transport);
- if ($confirm) {
- $this->element('p', 'form_unconfirmed', $confirm->address);
-
- $this->element('p', 'form_note',
-
-
- sprintf(_('Awaiting confirmation on this address. '.
- 'Check your %1$s account for a '.
- 'message with further instructions. '.
- '(Did you add %2$s to your buddy list?)'),
- $transport_info['display'],
- $transport_info['daemonScreenname']));
- $this->hidden('screenname', $confirm->address);
-
- $this->submit('cancel', _m('BUTTON','Cancel'));
- } else {
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
-
- $this->input('screenname', _('IM address'),
- ($this->arg('screenname')) ? $this->arg('screenname') : null,
-
- sprintf(_('%s screenname.'),
- $transport_info['display']));
- $this->elementEnd('li');
- $this->elementEnd('ul');
-
- $this->submit('add', _m('BUTTON','Add'));
- }
- }
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- }
- if($user_im_prefs_by_transport)
- {
- $this->elementStart('form', array('method' => 'post',
- 'id' => 'form_settings_im',
- 'class' => 'form_settings',
- 'action' =>
- common_local_url('imsettings')));
- $this->elementStart('fieldset', array('id' => 'settings_im_preferences'));
-
- $this->element('legend', null, _('IM Preferences'));
- $this->hidden('token', common_session_token());
- $this->elementStart('table');
- $this->elementStart('tr');
- foreach($user_im_prefs_by_transport as $transport=>$user_im_prefs)
- {
- $this->element('th', null, $transports[$transport]['display']);
- }
- $this->elementEnd('tr');
- $preferences = array(
-
- array('name'=>'notify', 'description'=>_('Send me notices')),
-
- array('name'=>'updatefrompresence', 'description'=>_('Post a notice when my status changes.')),
-
- array('name'=>'replies', 'description'=>_('Send me replies '.
- 'from people I\'m not subscribed to.')),
-
- array('name'=>'microid', 'description'=>_('Publish a MicroID'))
- );
- foreach($preferences as $preference)
- {
- $this->elementStart('tr');
- foreach($user_im_prefs_by_transport as $transport=>$user_im_prefs)
- {
- $preference_name = $preference['name'];
- $this->elementStart('td');
- $this->checkbox($transport . '_' . $preference['name'],
- $preference['description'],
- $user_im_prefs->$preference_name);
- $this->elementEnd('td');
- }
- $this->elementEnd('tr');
- }
- $this->elementEnd('table');
-
- $this->submit('save', _m('BUTTON','Save'));
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- }
- }
-
- function getConfirmation($transport)
- {
- $user = common_current_user();
- $confirm = new Confirm_address();
- $confirm->user_id = $user->id;
- $confirm->address_type = $transport;
- if ($confirm->find(true)) {
- return $confirm;
- } else {
- return null;
- }
- }
-
- function handlePost()
- {
-
- $token = $this->trimmed('token');
- if (!$token || $token != common_session_token()) {
-
- $this->showForm(_('There was a problem with your session token. '.
- 'Try again, please.'));
- return;
- }
- if ($this->arg('save')) {
- $this->savePreferences();
- } else if ($this->arg('add')) {
- $this->addAddress();
- } else if ($this->arg('cancel')) {
- $this->cancelConfirmation();
- } else if ($this->arg('remove')) {
- $this->removeAddress();
- } else {
-
- $this->showForm(_('Unexpected form submission.'));
- }
- }
-
- function savePreferences()
- {
- $user = common_current_user();
- $user_im_prefs = new User_im_prefs();
- $user_im_prefs->query('BEGIN');
- $user_im_prefs->user_id = $user->id;
- if($user_im_prefs->find() && $user_im_prefs->fetch())
- {
- $preferences = array('notify', 'updatefrompresence', 'replies', 'microid');
- do
- {
- $original = clone($user_im_prefs);
- $new = clone($user_im_prefs);
- foreach($preferences as $preference)
- {
- $new->$preference = $this->boolean($new->transport . '_' . $preference);
- }
- $result = $new->update($original);
- if ($result === false) {
- common_log_db_error($user, 'UPDATE', __FILE__);
-
- $this->serverError(_('Could not update IM preferences.'));
- }
- }while($user_im_prefs->fetch());
- }
- $user_im_prefs->query('COMMIT');
-
- $this->showForm(_('Preferences saved.'), true);
- }
-
- function addAddress()
- {
- $user = common_current_user();
- $screenname = $this->trimmed('screenname');
- $transport = $this->trimmed('transport');
-
- if (!$screenname) {
-
- $this->showForm(_('No screenname.'));
- return;
- }
- if (!$transport) {
-
- $this->showForm(_('No transport.'));
- return;
- }
- Event::handle('NormalizeImScreenname', array($transport, &$screenname));
- if (!$screenname) {
-
- $this->showForm(_('Cannot normalize that screenname.'));
- return;
- }
- $valid = false;
- Event::handle('ValidateImScreenname', array($transport, $screenname, &$valid));
- if (!$valid) {
-
- $this->showForm(_('Not a valid screenname.'));
- return;
- } else if ($this->screennameExists($transport, $screenname)) {
-
- $this->showForm(_('Screenname already belongs to another user.'));
- return;
- }
- $confirm = new Confirm_address();
- $confirm->address = $screenname;
- $confirm->address_type = $transport;
- $confirm->user_id = $user->id;
- $confirm->code = common_confirmation_code(64);
- $confirm->sent = common_sql_now();
- $confirm->claimed = common_sql_now();
- $result = $confirm->insert();
- if ($result === false) {
- common_log_db_error($confirm, 'INSERT', __FILE__);
-
- $this->serverError(_('Could not insert confirmation code.'));
- }
- Event::handle('SendImConfirmationCode', array($transport, $screenname, $confirm->code, $user));
-
- $msg = _('A confirmation code was sent '.
- 'to the IM address you added.');
- $this->showForm($msg, true);
- }
-
- function cancelConfirmation()
- {
- $screenname = $this->trimmed('screenname');
- $transport = $this->trimmed('transport');
- $confirm = $this->getConfirmation($transport);
- if (!$confirm) {
-
- $this->showForm(_('No pending confirmation to cancel.'));
- return;
- }
- if ($confirm->address != $screenname) {
-
- $this->showForm(_('That is the wrong IM address.'));
- return;
- }
- $result = $confirm->delete();
- if (!$result) {
- common_log_db_error($confirm, 'DELETE', __FILE__);
-
- $this->serverError(_('Could not delete confirmation.'));
- }
-
- $this->showForm(_('IM confirmation cancelled.'), true);
- }
-
- function removeAddress()
- {
- $user = common_current_user();
- $screenname = $this->trimmed('screenname');
- $transport = $this->trimmed('transport');
-
- $user_im_prefs = new User_im_prefs();
- $user_im_prefs->user_id = $user->id;
- if(! ($user_im_prefs->find() && $user_im_prefs->fetch())) {
-
-
- $this->showForm(_('That is not your screenname.'));
- return;
- }
- $result = $user_im_prefs->delete();
- if (!$result) {
- common_log_db_error($user, 'UPDATE', __FILE__);
-
- $this->serverError(_('Could not update user IM preferences.'));
- }
-
-
- $this->showForm(_('The IM address was removed.'), true);
- }
-
- function screennameExists($transport, $screenname)
- {
- $user = common_current_user();
- $user_im_prefs = new User_im_prefs();
- $user_im_prefs->transport = $transport;
- $user_im_prefs->screenname = $screenname;
- if($user_im_prefs->find() && $user_im_prefs->fetch()){
- return true;
- }else{
- return false;
- }
- }
- }
|