From dccf8374cf7e4673cbc83f695e1665031bdf6539 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Dec 2008 22:01:32 -0500 Subject: trac750 - Exoskeleton of a nascent Facebook app darcs-hash:20081206030132-7b5ce-96c38ab67edd3d58f8722ef25852a6143f05a86b.gz --- actions/facebookhome.php | 162 +++++++++++++++++++++++++++++++++++++ actions/facebookinvite.php | 46 +++++++++++ actions/facebooksettings.php | 46 +++++++++++ classes/Foreign_link.php | 6 +- config.php.sample | 12 --- db/foreign_services.sql | 5 +- htaccess.sample | 5 ++ lib/facebookaction.php | 185 +++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 453 insertions(+), 14 deletions(-) create mode 100644 actions/facebookhome.php create mode 100644 actions/facebookinvite.php create mode 100644 actions/facebooksettings.php create mode 100644 lib/facebookaction.php diff --git a/actions/facebookhome.php b/actions/facebookhome.php new file mode 100644 index 000000000..b58110bcc --- /dev/null +++ b/actions/facebookhome.php @@ -0,0 +1,162 @@ +. + */ + +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) { + + $this->display($facebook, $fbuid); + + $user = $flink->getUser(); + + + $notice = $user->getCurrentNotice(); + + echo $this->show_notices($user); + + + $this->update_profile_box($facebook, $fbuid, $user); + + + } else { + + $nickname = common_canonical_nickname($this->trimmed('nickname')); + $password = $this->arg('password'); + + if ($nickname) { + + if (common_check_user($nickname, $password)) { + + echo '

Successful authentication!

'; + + $user = User::staticGet('nickname', $nickname); + + if (!$user) { + echo '

Couldn\'t get user!

'; + $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 '

Successfully made Identi.ca -> Facebook link

'; + } + + $this->display($facebook, $fbuid); + + return; + } else { + echo '

Fail!

'; + } + + } + + $this->show_login_form(); + } + + } + + function display($facebook, $fbuid) { + + $this->show_header('Home'); + + // Greet the currently logged-in user! + echo "

Hello, !

"; + + $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 '