user = $user; $this->password = $password; $this->resource = $resource; if(!$server) $server = $host; $this->stream_start = ''; $this->stream_end = ''; $this->addHandler('features', 'http://etherx.jabber.org/streams', 'features_handler'); $this->addHandler('success', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_success_handler'); $this->addHandler('failure', 'urn:ietf:params:xml:ns:xmpp-sasl', 'sasl_failure_handler'); $this->addHandler('proceed', 'urn:ietf:params:xml:ns:xmpp-tls', 'tls_proceed_handler'); $this->default_ns = 'jabber:client'; $this->addHandler('message', 'jabber:client', 'message_handler'); $this->addHandler('presence', 'jabber:client', 'presence_handler'); $this->authed = false; $this->use_encryption = true; } public function message_handler($xml) { if(isset($xml->attrs['type'])) { $payload['type'] = $xml->attrs['type']; } else { $payload['type'] = 'chat'; } $payload['from'] = $xml->attrs['from']; $payload['body'] = $xml->sub('body')->data; $this->log->log("Message: {$xml->sub('body')->data}", Logging::LOG_DEBUG); $this->event('message', $payload); } public function message($to, $body, $type = 'chat', $subject = null) { $to = htmlspecialchars($to); $body = htmlspecialchars($body); $subject = htmlspecialchars($subject); $out = ""; if($subject) $out .= "$subject"; $out .= "$body"; $this->send($out); } public function presence($status = null, $show = 'available', $to = null) { $type = ''; $to = htmlspecialchars($to); $status = htmlspecialchars($status); if($show == 'unavailable') $type = 'unavailable'; $out = "send($out); } public function presence_handler($xml) { $payload['type'] = (isset($xml->attrs['type'])) ? $xml->attrs['type'] : 'available'; $payload['show'] = (isset($xml->sub('show')->data)) ? $xml->sub('show')->data : $payload['type']; $payload['from'] = $xml->attrs['from']; $payload['status'] = (isset($xml->sub('status')->data)) ? $xml->sub('status')->data : ''; $this->log->log("Presence: {$payload['from']} [{$payload['show']}] {$payload['status']}", Logging::LOG_DEBUG); $this->event('presence', $payload); } public function features_handler($xml) { if($xml->hassub('starttls') and $this->use_encryption) { $this->send(""); } elseif($xml->hassub('bind')) { $id = $this->getId(); $this->addIdHandler($id, 'resource_bind_handler'); $this->send("{$this->resource}"); } else { $this->log->log("Attempting Auth..."); $this->send("" . base64_encode("\x00" . $this->user . "\x00" . $this->password) . ""); } } public function sasl_success_handler($xml) { $this->log->log("Auth success!"); $this->authed = true; $this->reset(); } public function sasl_failure_handler($xml) { $this->log->log("Auth failed!", Logging::LOG_ERROR); $this->disconnect(); } public function resource_bind_handler($xml) { if($xml->attrs['type'] == 'result') { $this->log->log("Bound to " . $xml->sub('bind')->sub('jid')->data); $this->fulljid = $xml->sub('bind')->sub('jid')->data; } $id = $this->getId(); $this->addIdHandler($id, 'session_start_handler'); $this->send(""); } public function session_start_handler($xml) { $this->log->log("Session started"); $this->event('session_start'); } public function tls_proceed_handler($xml) { $this->log->log("Starting TLS encryption"); stream_socket_enable_crypto($this->socket, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT); $this->reset(); } } ?>