]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/facebookhome.php
More space for the counter
[quix0rs-gnu-social.git] / actions / facebookhome.php
index 8ee2d4cd36812392931078833652f4b86d9ebfc6..d2ac7617d1c76d0848bb4df0ab9e17c66a835781 100644 (file)
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
  * GNU Affero General Public License for more details.
  *
  * You should have received a copy of the GNU Affero General Public License
- * along with this program.     If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.     If not, see <http://www.gnu.org/licenses/>.
  */
 
 if (!defined('LACONICA')) { exit(1); }
 
 require_once(INSTALLDIR.'/lib/facebookaction.php');
 
-class FacebookhomeAction extends FacebookAction {
+class FacebookhomeAction extends FacebookAction
+{
 
-       function handle($args) {
-               parent::handle($args);
+    function handle($args)
+    {
+        parent::handle($args);
 
-               $this->login();
-       }
+        $facebook = get_facebook();
+        $fbuid = $facebook->require_login();
 
-       function login() {
+        // Check to see whether there's already a Facebook link for this user
+        $flink = Foreign_link::getByForeignID($fbuid, FACEBOOK_SERVICE);
 
-               $user = null;
+        if ($flink) {
+            $this->showHome($flink, null);
+        } else {
+            $this->login($fbuid);
+        }
 
-               $facebook = $this->get_facebook();
-               $fbuid = $facebook->require_login();
+    }
 
-               # check to see whether there's already a Facebook link for this user
-               $flink = Foreign_link::getByForeignID($fbuid, 2); // 2 == Facebook
+    function login($fbuid)
+    {
+        $nickname = common_canonical_nickname($this->trimmed('nickname'));
+        $password = $this->arg('password');
 
-               if ($flink) {
+        $msg = null;
 
-                       $user = $flink->getUser();
-                       $this->show_home($facebook, $fbuid, $user);
+        if ($nickname) {
 
-               } else {
+            if (common_check_user($nickname, $password)) {
 
-                       # Make the user put in her Laconica creds
-                       $nickname = common_canonical_nickname($this->trimmed('nickname'));
-                       $password = $this->arg('password');
+                $user = User::staticGet('nickname', $nickname);
 
-                       if ($nickname) {
+                if (!$user) {
+                    $this->showLoginForm(_("Server error - couldn't get user!"));
+                }
 
-                               if (common_check_user($nickname, $password)) {
+                $flink = DB_DataObject::factory('foreign_link');
+                $flink->user_id = $user->id;
+                $flink->foreign_id = $fbuid;
+                $flink->service = FACEBOOK_SERVICE;
+                $flink->created = common_sql_now();
+                $flink->set_flags(true, false, false);
 
+                $flink_id = $flink->insert();
 
-                                       $user = User::staticGet('nickname', $nickname);
+                // XXX: Do some error handling here
 
-                                       if (!$user) {
-                                               echo '<fb:error message="Coudln\'t get user!" />';
-                                               $this->show_login_form();
-                                       }
+                $this->setDefaults();
 
-                                       $flink = DB_DataObject::factory('foreign_link');
-                                       $flink->user_id = $user->id;
-                                       $flink->foreign_id = $fbuid;
-                                       $flink->service = 2; # Facebook
-                                       $flink->created = common_sql_now();
+                $this->showHome($flink, _('You can now use Identi.ca from Facebook!'));
 
-                                       # $this->set_flags($flink, $noticesync, $replysync, $friendsync);
+            } else {
+                $msg = _('Incorrect username or password.');
+            }
+        }
 
-                                       $flink_id = $flink->insert();
+        $this->showLoginForm($msg);
+    }
 
-                                       if ($flink_id) {
-                                               echo '<fb:success message="You can now use the Identi.ca from Facebook!" />';
-                                       }
+    function setDefaults()
+    {
+        $facebook = get_facebook();
 
-                                       $this->show_home($facebook, $fbuid, $user);
+        // A default prefix string for notices
+        $facebook->api_client->data_setUserPreference(1, 'dented: ');
+    }
 
-                                       return;
-                               } else {
-                                       echo '<fb:error message="Incorrect username or password." />';
-                               }
-                       }
+    function showHome($flink, $msg)
+    {
 
-                       $this->show_login_form();
-               }
+        $facebook = get_facebook();
+        $fbuid = $facebook->require_login();
 
-       }
+        $user = $flink->getUser();
 
-       function show_home($facebook, $fbuid, $user) {
+        $notice = $user->getCurrentNotice();
+        update_profile_box($facebook, $fbuid, $user, $notice);
 
-               $this->show_header('Home');
 
-               echo $this->show_notices($user);
-               $this->update_profile_box($facebook, $fbuid, $user);
+        $this->show_header('Home');
 
-               $this->show_footer();
-       }
+        if ($msg) {
+            $this->element('fb:success', array('message' => $msg));
+        }
 
-       function show_notices($user) {
+        echo $this->show_notices($user);
 
-               $page = $this->trimmed('page');
-               if (!$page) {
-                       $page = 1;
-               }
+        $this->show_footer();
+    }
 
-               $notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
+    function show_notices($user)
+    {
 
-               echo '<ul id="notices">';
+        $page = $this->trimmed('page');
+        if (!$page) {
+            $page = 1;
+        }
 
-               $cnt = 0;
+        $notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
 
-               while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
-                       $cnt++;
+        $cnt = $this->show_notice_list($notice);
 
-                       if ($cnt > NOTICES_PER_PAGE) {
-                               break;
-                       }
+        common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
+                          $page, 'all', array('nickname' => $user->nickname));
+    }
 
-                       echo $this->render_notice($notice);
-               }
-
-               echo '<ul>';
-
-               $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
-                                                 $page, 'index.php', array('nickname' => $user->nickname));
-
-       }
+    function show_notice_list($notice)
+    {
+        $nl = new NoticeList($notice);
+        return $nl->show();
+    }
 
 }