]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/FBConnect/FBConnectPlugin.php
Merge branch '0.7.x' into 0.8.x
[quix0rs-gnu-social.git] / plugins / FBConnect / FBConnectPlugin.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Plugin to enable Facebook Connect
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   Laconica
24  * @author    Zach Copley <zach@controlyourself.ca>
25  * @copyright 2009 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/plugins/FBConnect/FBConnectLogin.php';
35 require_once INSTALLDIR . '/lib/facebookutil.php';
36
37 /**
38  * Plugin to enable Facebook Connect
39  *
40  * @category Plugin
41  * @package  Laconica
42  * @author   Zach Copley <zach@controlyourself.ca>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://laconi.ca/
45  */
46
47 class FBConnectPlugin extends Plugin
48 {
49
50     function __construct()
51     {
52         parent::__construct();
53     }
54
55     // Hook in new actions
56     function onRouterInitialized(&$m) {
57         $m->connect('main/facebookconnect', array('action' => 'fbconnectlogin'));
58      }
59
60     // Add in xmlns:fb
61     function onStartShowHTML($action)
62     {
63
64         // XXX: This is probably a bad place to do general processing
65         // so maybe I need to make some new events?  Maybe in
66         // Action::prepare?
67
68         $name = get_class($action);
69
70         // Avoid a redirect loop
71         if (!in_array($name, array('FBConnectloginAction', 'ClientErrorAction'))) {
72
73             $this->checkFacebookUser($action);
74
75         }
76
77         $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
78         $_SERVER['HTTP_ACCEPT'] : null;
79
80         // XXX: allow content negotiation for RDF, RSS, or XRDS
81
82         $cp = common_accept_to_prefs($httpaccept);
83         $sp = common_accept_to_prefs(PAGE_TYPE_PREFS);
84
85         $type = common_negotiate_type($cp, $sp);
86
87         if (!$type) {
88             throw new ClientException(_('This page is not available in a '.
89                                          'media type you accept'), 406);
90         }
91
92
93         header('Content-Type: '.$type);
94
95         $action->extraHeaders();
96
97         $action->startXML('html',
98                          '-//W3C//DTD XHTML 1.0 Strict//EN',
99                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
100
101         $language = $action->getLanguage();
102
103         $action->elementStart('html', array('xmlns'  => 'http://www.w3.org/1999/xhtml',
104                                             'xmlns:fb' => 'http://www.facebook.com/2008/fbml',
105                                             'xml:lang' => $language,
106                                             'lang'     => $language));
107
108         return false;
109
110     }
111
112     function onEndShowLaconicaScripts($action)
113     {
114
115         $action->element('script',
116             array('type' => 'text/javascript',
117                   'src'  => 'http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php'),
118                   ' ');
119
120         $apikey = common_config('facebook', 'apikey');
121         $plugin_path = common_path('plugins/FBConnect');
122
123         $login_url = common_get_returnto();
124
125         if ($login_url) {
126             // We don't have to return to it again
127             common_set_returnto(null);
128         } else {
129             $url = common_local_url('public');
130         }
131         
132         $logout_url = common_local_url('logout');
133
134         $html = sprintf('<script type="text/javascript">FB.init("%s", "%s/xd_receiver.htm");
135
136                             function goto_login() {
137                                 window.location = "%s";
138                             }
139                             
140                             function goto_logout() {
141                                 window.location = "%s";
142                             }
143
144                          </script>', $apikey, $plugin_path, $login_url, $logout_url);
145
146
147         $action->raw($html);
148     }
149
150     function onStartPrimaryNav($action)
151     {
152         $user = common_current_user();
153
154         if ($user) {
155              $action->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
156                              _('Home'), _('Personal profile and friends timeline'), false, 'nav_home');
157              $action->menuItem(common_local_url('profilesettings'),
158                              _('Account'), _('Change your email, avatar, password, profile'), false, 'nav_account');
159              if (common_config('xmpp', 'enabled')) {
160                  $action->menuItem(common_local_url('imsettings'),
161                                  _('Connect'), _('Connect to IM, SMS, Twitter'), false, 'nav_connect');
162              } else {
163                  $action->menuItem(common_local_url('smssettings'),
164                                  _('Connect'), _('Connect to SMS, Twitter'), false, 'nav_connect');
165              }
166              $action->menuItem(common_local_url('invite'),
167                               _('Invite'),
168                               sprintf(_('Invite friends and colleagues to join you on %s'),
169                               common_config('site', 'name')),
170                               false, 'nav_invitecontact');
171
172              // Need to override the Logout link to make it do FB stuff
173
174              $logout_url = common_local_url('logout');
175              $title =  _('Logout from the site');
176              $text = _('Logout');
177
178              $html = sprintf('<li id="nav_logout"><a href="%s" title="%s" ' .
179                  'onclick="FB.Connect.logout(function() { goto_logout() })">%s</a></li>',
180                     $logout_url, $title, $text);
181
182              $action->raw($html);
183
184          }
185          else {
186              if (!common_config('site', 'closed')) {
187                  $action->menuItem(common_local_url('register'),
188                                  _('Register'), _('Create an account'), false, 'nav_register');
189              }
190              $action->menuItem(common_local_url('openidlogin'),
191                              _('OpenID'), _('Login with OpenID'), false, 'nav_openid');
192              $action->menuItem(common_local_url('login'),
193                              _('Login'), _('Login to the site'), false, 'nav_login');
194          }
195
196          $action->menuItem(common_local_url('doc', array('title' => 'help')),
197                          _('Help'), _('Help me!'), false, 'nav_help');
198          $action->menuItem(common_local_url('peoplesearch'),
199                          _('Search'), _('Search for people or text'), false, 'nav_search');
200
201         // Tack on "Connect with Facebook" button
202
203         // XXX: Maybe this looks bad and should not go here.  Where should it go?
204
205         if (!$user) {
206              $action->elementStart('li');
207              $action->element('fb:login-button', array('onlogin' => 'goto_login()',
208                  'length' => 'long'));
209              $action->elementEnd('li');
210         }
211
212         return false;
213     }
214
215     function checkFacebookUser() {
216
217         $user = common_current_user();
218
219         if ($user) {
220             return;
221         }
222
223         try {
224
225             $facebook = getFacebook();
226             $fbuid = $facebook->get_loggedin_user();
227
228             // If you're a Facebook user and you're logged in do nothing
229
230             // If you're a Facebook user and you're not logged in
231             // redirect to Facebook connect login page because that means you have clicked
232             // the 'connect with Facebook' button and have cookies
233
234             if ($fbuid > 0) {
235
236                 if ($facebook->api_client->users_isAppUser($fbuid) ||
237                     $facebook->api_client->added) {
238
239                     // user should be connected...
240
241                     common_debug("Facebook user found: $fbuid");
242
243                     if ($user) {
244                         common_debug("Facebook user is logged in.");
245                         return;
246
247                     } else {
248                         common_debug("Facebook user is NOT logged in.");
249                         common_redirect(common_local_url('fbconnectlogin'), 303);
250                     }
251
252                 } else {
253                     common_debug("No Facebook connect user found.");
254                 }
255             }
256
257         } catch (Exception $e) {
258             common_debug('Expired FB session.');
259         }
260
261     }
262
263 }
264
265