From 1d4f1f6bf6bd8313cbb51dbf61d675408171d1b8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 6 May 2008 11:17:29 -0400 Subject: add standard directories Added some of the standard directories darcs-hash:20080506151729-84dde-563da8505e06a7302041c93ab157ced31165876c.gz --- _darcs/pristine/actions/facebookhome.php | 132 +++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 _darcs/pristine/actions/facebookhome.php (limited to '_darcs/pristine/actions/facebookhome.php') diff --git a/_darcs/pristine/actions/facebookhome.php b/_darcs/pristine/actions/facebookhome.php new file mode 100644 index 000000000..8ee2d4cd3 --- /dev/null +++ b/_darcs/pristine/actions/facebookhome.php @@ -0,0 +1,132 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +require_once(INSTALLDIR.'/lib/facebookaction.php'); + +class FacebookhomeAction extends FacebookAction { + + function handle($args) { + parent::handle($args); + + $this->login(); + } + + function login() { + + $user = null; + + $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 + + if ($flink) { + + $user = $flink->getUser(); + $this->show_home($facebook, $fbuid, $user); + + } else { + + # Make the user put in her Laconica creds + $nickname = common_canonical_nickname($this->trimmed('nickname')); + $password = $this->arg('password'); + + if ($nickname) { + + if (common_check_user($nickname, $password)) { + + + $user = User::staticGet('nickname', $nickname); + + if (!$user) { + echo ''; + $this->show_login_form(); + } + + $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->set_flags($flink, $noticesync, $replysync, $friendsync); + + $flink_id = $flink->insert(); + + if ($flink_id) { + echo ''; + } + + $this->show_home($facebook, $fbuid, $user); + + return; + } else { + echo ''; + } + } + + $this->show_login_form(); + } + + } + + function show_home($facebook, $fbuid, $user) { + + $this->show_header('Home'); + + echo $this->show_notices($user); + $this->update_profile_box($facebook, $fbuid, $user); + + $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 '
    '; + + $cnt = 0; + + while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) { + $cnt++; + + if ($cnt > NOTICES_PER_PAGE) { + break; + } + + echo $this->render_notice($notice); + } + + echo '
      '; + + $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE, + $page, 'index.php', array('nickname' => $user->nickname)); + + } + +} -- cgit v1.2.3-54-g00ecf