| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |  * along with this program.     If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-21 22:02:10 +00:00
										 |  |  | require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class FacebooksettingsAction extends FacebookAction | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         parent::handle($args); | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         $this->showPage(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the page content | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Either shows the registration form or, if registration was successful, | 
					
						
							|  |  |  |      * instructions for using the site. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     function showContent() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  |         if ($this->arg('save')) { | 
					
						
							| 
									
										
										
										
											2009-01-18 01:31:39 +00:00
										 |  |  |             $this->saveSettings(); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-01-18 01:31:39 +00:00
										 |  |  |             $this->showForm(); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-18 01:31:39 +00:00
										 |  |  |     function saveSettings() { | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-25 01:36:17 +00:00
										 |  |  |         $noticesync = $this->boolean('noticesync'); | 
					
						
							|  |  |  |         $replysync  = $this->boolean('replysync'); | 
					
						
							|  |  |  |         $prefix     = $this->trimmed('prefix'); | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         $original = clone($this->flink); | 
					
						
							| 
									
										
										
										
											2009-11-25 01:36:17 +00:00
										 |  |  |         $this->flink->set_flags($noticesync, false, $replysync, false); | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         $result = $this->flink->update($original); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-12 22:36:17 +00:00
										 |  |  |         if ($prefix == '' || $prefix == '0') { | 
					
						
							| 
									
										
										
										
											2009-11-25 01:36:17 +00:00
										 |  |  |             // Facebook bug: saving empty strings to prefs now fails
 | 
					
						
							|  |  |  |             // http://bugs.developers.facebook.com/show_bug.cgi?id=7110
 | 
					
						
							|  |  |  |             $trimmed = $prefix . ' '; | 
					
						
							| 
									
										
										
										
											2009-10-12 22:36:17 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-11-25 01:36:17 +00:00
										 |  |  |             $trimmed = substr($prefix, 0, 128); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         $this->facebook->api_client->data_setUserPreference(FACEBOOK_NOTICE_PREFIX, | 
					
						
							| 
									
										
										
										
											2009-10-12 22:36:17 +00:00
										 |  |  |             $trimmed); | 
					
						
							| 
									
										
										
										
											2009-01-12 05:25:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         if ($result === false) { | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->showForm(_m('There was a problem saving your sync preferences!')); | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->showForm(_m('Sync preferences saved.'), true); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-18 01:31:39 +00:00
										 |  |  |     function showForm($msg = null, $success = false) { | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         if ($msg) { | 
					
						
							|  |  |  |             if ($success) { | 
					
						
							|  |  |  |                 $this->element('fb:success', array('message' => $msg)); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $this->element('fb:error', array('message' => $msg)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-06 15:57:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-09 18:42:19 -04:00
										 |  |  |         if ($this->facebook->api_client->users_hasAppPermission('publish_stream')) { | 
					
						
							| 
									
										
										
										
											2009-01-04 20:04:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementStart('form', array('method' => 'post', | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  |                                                'id' => 'facebook_settings')); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementStart('ul', 'form_data'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->checkbox('noticesync', _m('Automatically update my Facebook status with my notices.'), | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |                                 ($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND) : true); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementEnd('li'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->checkbox('replysync', _m('Send "@" replies to Facebook.'), | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |                              ($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true); | 
					
						
							| 
									
										
										
										
											2009-01-04 23:02:12 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementEnd('li'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->elementStart('li'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-12 22:36:17 +00:00
										 |  |  |             $prefix = trim($this->facebook->api_client->data_getUserPreference(FACEBOOK_NOTICE_PREFIX)); | 
					
						
							| 
									
										
										
										
											2009-01-12 05:25:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->input('prefix', _m('Prefix'), | 
					
						
							| 
									
										
										
										
											2009-01-12 05:25:07 +00:00
										 |  |  |                          ($prefix) ? $prefix : null, | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |                          _m('A string to prefix notices with.')); | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             $this->elementEnd('li'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->submit('save', _m('Save')); | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->elementEnd('li'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->elementEnd('ul'); | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementEnd('form'); | 
					
						
							| 
									
										
										
										
											2009-01-06 15:57:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 00:50:45 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $instructions = sprintf(_m('If you would like %s to automatically update ' . | 
					
						
							| 
									
										
										
										
											2009-01-19 00:50:45 +00:00
										 |  |  |                 'your Facebook status with your latest notice, you need ' . | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |                 'to give it permission.'), $this->app_name); | 
					
						
							| 
									
										
										
										
											2009-01-19 00:50:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 13:44:10 +00:00
										 |  |  |             $this->elementStart('p'); | 
					
						
							|  |  |  |             $this->element('span', array('id' => 'permissions_notice'), $instructions); | 
					
						
							|  |  |  |             $this->elementEnd('p'); | 
					
						
							| 
									
										
										
										
											2009-01-19 00:50:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 13:44:10 +00:00
										 |  |  |             $this->elementStart('ul', array('id' => 'fb-permissions-list')); | 
					
						
							|  |  |  |             $this->elementStart('li', array('id' => 'fb-permissions-item')); | 
					
						
							| 
									
										
										
										
											2009-07-09 18:42:19 -04:00
										 |  |  |             $this->elementStart('fb:prompt-permission', array('perms' => 'publish_stream', | 
					
						
							| 
									
										
										
										
											2009-01-23 06:02:41 +00:00
										 |  |  |                 'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')')); | 
					
						
							| 
									
										
										
										
											2009-01-19 13:44:10 +00:00
										 |  |  |             $this->element('span', array('class' => 'facebook-button'), | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |                 sprintf(_m('Allow %s to update my Facebook status'), common_config('site', 'name'))); | 
					
						
							| 
									
										
										
										
											2009-01-19 13:44:10 +00:00
										 |  |  |             $this->elementEnd('fb:prompt-permission'); | 
					
						
							|  |  |  |             $this->elementEnd('li'); | 
					
						
							|  |  |  |             $this->elementEnd('ul'); | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function title() | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         return _m('Sync preferences'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |