From c7d06519f05e8013fcafd5efc44fa095b4c9e5c3 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 29 Jan 2009 05:58:27 +0000 Subject: trac750 update Facebook status when posting to Identi.ca from Facebook --- actions/facebookhome.php | 49 +----------------------------------------------- 1 file changed, 1 insertion(+), 48 deletions(-) (limited to 'actions') diff --git a/actions/facebookhome.php b/actions/facebookhome.php index 4eaf0b4f7..7f9c942ea 100644 --- a/actions/facebookhome.php +++ b/actions/facebookhome.php @@ -89,7 +89,7 @@ class FacebookhomeAction extends FacebookAction } } - + function login() { @@ -232,53 +232,6 @@ class FacebookhomeAction extends FacebookAction $this->elementEnd('div'); } - - function saveNewNotice() - { - - $user = $this->flink->getUser(); - - $content = $this->trimmed('status_textarea'); - - if (!$content) { - $this->showPage(_('No notice content!')); - return; - } else { - $content_shortened = common_shorten_links($content); - - if (mb_strlen($content_shortened) > 140) { - common_debug("Content = '$content_shortened'", __FILE__); - common_debug("mb_strlen(\$content) = " . mb_strlen($content_shortened), __FILE__); - $this->showPage(_('That\'s too long. Max notice size is 140 chars.')); - return; - } - } - - $inter = new CommandInterpreter(); - - $cmd = $inter->handle_command($user, $content_shortened); - - if ($cmd) { - - // XXX fix this - - $cmd->execute(new WebChannel()); - return; - } - - $replyto = $this->trimmed('inreplyto'); - - $notice = Notice::saveNew($user->id, $content, - 'Facebook', 1, ($replyto == 'false') ? null : $replyto); - - if (is_string($notice)) { - $this->showPage($notice); - return; - } - - common_broadcast_notice($notice); - - } /** * Generate pagination links -- cgit v1.2.3-54-g00ecf