]> 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 b261e6a8c3634eff82cd2592b99a431300c4284b..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();
+    function login($fbuid)
+    {
+        $nickname = common_canonical_nickname($this->trimmed('nickname'));
+        $password = $this->arg('password');
 
-               # check to see whether there's already a Facebook link for this user
-               $flink = Foreign_link::getByForeignID($fbuid, 2); // 2 == Facebook
+        $msg = null;
 
-               if ($flink) {
+        if ($nickname) {
 
-                       $this->display($facebook, $fbuid);
+            if (common_check_user($nickname, $password)) {
 
-                       $user = $flink->getUser();
+                $user = User::staticGet('nickname', $nickname);
 
+                if (!$user) {
+                    $this->showLoginForm(_("Server error - couldn't get user!"));
+                }
 
-                       $notice = $user->getCurrentNotice();
+                $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);
 
-                       echo $this->show_notices($user);
+                $flink_id = $flink->insert();
 
+                // XXX: Do some error handling here
 
-                       $this->update_profile_box($facebook, $fbuid, $user);
+                $this->setDefaults();
 
+                $this->showHome($flink, _('You can now use Identi.ca from Facebook!'));
 
-               } else {
+            } else {
+                $msg = _('Incorrect username or password.');
+            }
+        }
 
-                       $nickname = common_canonical_nickname($this->trimmed('nickname'));
-                       $password = $this->arg('password');
+        $this->showLoginForm($msg);
+    }
 
-                       if ($nickname) {
+    function setDefaults()
+    {
+        $facebook = get_facebook();
 
-                               if (common_check_user($nickname, $password)) {
+        // A default prefix string for notices
+        $facebook->api_client->data_setUserPreference(1, 'dented: ');
+    }
 
-                                       echo '<h2>Successful authentication!</h2>';
+    function showHome($flink, $msg)
+    {
 
-                                       $user = User::staticGet('nickname', $nickname);
+        $facebook = get_facebook();
+        $fbuid = $facebook->require_login();
 
-                                       if (!$user) {
-                                               echo '<h2>Couldn\'t get user!</h2>';
-                                               $this->show_login_form();
-                                       }
+        $user = $flink->getUser();
 
-                                       $flink = DB_DataObject::factory('foreign_link');
-                                       $flink->user_id = $user->id;
-                                       $flink->foreign_id = $fbuid;
-                                       $flink->service = 2; # Facebook
-                                       $flink->created = common_sql_now();
+        $notice = $user->getCurrentNotice();
+        update_profile_box($facebook, $fbuid, $user, $notice);
 
-                                       # $this->set_flags($flink, $noticesync, $replysync, $friendsync);
 
-                                       $flink_id = $flink->insert();
+        $this->show_header('Home');
 
-                                       if ($flink_id) {
-                                               echo '<h2>Successfully made Identi.ca -> Facebook link</h2>';
-                                       }
+        if ($msg) {
+            $this->element('fb:success', array('message' => $msg));
+        }
 
-                                       $this->display($facebook, $fbuid);
+        echo $this->show_notices($user);
 
-                                       return;
-                               } else {
-                                       echo '<h2>Fail!</h2>';
-                               }
+        $this->show_footer();
+    }
 
-                       }
+    function show_notices($user)
+    {
 
-                       $this->show_login_form();
-               }
+        $page = $this->trimmed('page');
+        if (!$page) {
+            $page = 1;
+        }
 
-       }
+        $notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
 
-       function display($facebook, $fbuid) {
+        $cnt = $this->show_notice_list($notice);
 
-               $this->show_header('Home');
+        common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
+                          $page, 'all', array('nickname' => $user->nickname));
+    }
 
-               // Greet the currently logged-in user!
-               echo "<p>Hello, <fb:name uid=\"$fbuid\" useyou=\"false\" />!</p>";
-
-               $this->show_footer();
-       }
-
-
-       function show_notices($user) {
-
-               $page = $this->trimmed('page');
-               if (!$page) {
-                       $page = 1;
-               }
-
-               $notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
-
-               echo '<ul id="notices">';
-
-               $cnt = 0;
-
-               while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
-                       $cnt++;
-
-                       if ($cnt > NOTICES_PER_PAGE) {
-                               break;
-                       }
-
-                       echo $this->render_notice($notice);
-               }
-
-               echo '<ul>';
-
-               $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
-                                                 $page, 'index.php', array('nickname' => $user->nickname));
-
-       }
-
-
-
-       function update_profile_box($facebook, $fbuid, $user) {
-
-               $notice = $user->getCurrentNotice();
-
-               # Need to include CSS for styling the Profile box
-
-               $style = '<style>
-               #notices {
-               clear: both;
-               margin: 0 auto;
-               padding: 0;
-               list-style-type: none;
-               width: 600px;
-               border-top: 1px solid #dec5b5;
-               }
-               #notices a:hover {
-               text-decoration: underline;
-               }
-               .notice_single {
-               clear: both;
-               display: block;
-               margin: 0;
-               padding: 5px 5px 5px 0;
-               min-height: 48px;
-               font-family: Georgia, "Times New Roman", Times, serif;
-               font-size: 13px;
-               line-height: 16px;
-               border-bottom: 1px solid #dec5b5;
-               background-color:#FCFFF5;
-               opacity:1;
-               }
-               .notice_single:hover {
-               background-color: #f7ebcc;
-               }
-               .notice_single p {
-               display: inline;
-               margin: 0;
-               padding: 0;
-               }
-               </style>';
-
-               $html = $this->render_notice($notice);
-
-               $fbml = "<fb:wide>$content $html</fb:wide>";
-               $fbml .= "<fb:narrow>$content $html</fb:narrow>";
-
-               $fbml_main = "<fb:narrow>$content $html</fb:narrow>";
-
-               $facebook->api_client->profile_setFBML(NULL, $fbuid, $fbml, NULL, NULL, $fbml_main);
-
-       }
+    function show_notice_list($notice)
+    {
+        $nl = new NoticeList($notice);
+        return $nl->show();
+    }
 
 }