. */ /** * @package OStatusPlugin * @author James Walker */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class SalmonAction extends Action { function handle() { parent::handle(); if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->handlePost(); } } function handlePost() { $user_id = $this->arg('id'); common_log(LOG_DEBUG, 'Salmon: incoming post for user: '. $user_id); $xml = file_get_contents('php://input'); // TODO : Insert new $xml -> notice code } }