From 75d80dc433348435c1f8e11fafb0d1deda1ca793 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 26 Jan 2016 20:09:27 +0300 Subject: import s2s component --- src/main/java/com/juick/xmpp/s2s/Connection.java | 99 ++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 src/main/java/com/juick/xmpp/s2s/Connection.java (limited to 'src/main/java/com/juick/xmpp/s2s/Connection.java') diff --git a/src/main/java/com/juick/xmpp/s2s/Connection.java b/src/main/java/com/juick/xmpp/s2s/Connection.java new file mode 100644 index 00000000..699e52bf --- /dev/null +++ b/src/main/java/com/juick/xmpp/s2s/Connection.java @@ -0,0 +1,99 @@ +package com.juick.xmpp.s2s; + +import java.io.FileWriter; +import java.io.IOException; +import java.io.OutputStreamWriter; +import java.net.Socket; +import java.util.Date; +import javax.crypto.Mac; +import javax.crypto.spec.SecretKeySpec; +import org.xmlpull.mxp1.MXParser; +import org.xmlpull.v1.XmlPullParser; + +/** + * + * @author ugnich + */ +public class Connection { + + public String streamID; + public long tsCreated = 0; + public long tsLocalData = 0; + public long bytesLocal = 0; + public long packetsLocal = 0; + Socket socket; + final XmlPullParser parser = new MXParser(); + OutputStreamWriter writer; + + public Connection() { + tsCreated = System.currentTimeMillis(); + } + + public void logXml(String xml) { + try { + FileWriter logFile = new FileWriter(XMPPComponent.LOGFILE, true); + logFile.write(new Date().toString() + "\t" + streamID + "\t" + xml); + logFile.close(); + } catch (IOException e) { + } + } + + public void logParser() { + if (streamID == null) { + return; + } + String tag = "IN: <" + parser.getName(); + for (int i = 0; i < parser.getAttributeCount(); i++) { + tag += " " + parser.getAttributeName(i) + "=\"" + parser.getAttributeValue(i) + "\""; + } + tag += ">...\n"; + logXml(tag); + } + + public void sendStanza(String xml) throws IOException { + if (XMPPComponent.LOGFILE != null && streamID != null) { + logXml("OUT: " + xml + "\n"); + } + writer.write(xml); + writer.flush(); + tsLocalData = System.currentTimeMillis(); + bytesLocal += xml.length(); + packetsLocal++; + } + + void closeConnection() { + if (XMPPComponent.LOGFILE != null && streamID != null) { + logXml("CLOSING STREAM\n"); + } + + try { + writer.write(""); + } catch (Exception e) { + } + + try { + writer.close(); + } catch (Exception e) { + } + + try { + socket.close(); + } catch (Exception e) { + } + } + + static String generateDialbackKey(String to, String from, String id) throws Exception { + Mac hmacSha256 = Mac.getInstance("hmacSHA256"); + + SecretKeySpec secret_key = new SecretKeySpec("$UppPerSeCCret4".getBytes(), "SHA-256"); + hmacSha256.init(secret_key); + byte key[] = hmacSha256.doFinal((to + " " + from + " " + id).getBytes()); + + StringBuilder hexkey = new StringBuilder(); + for (int i = 0; i < key.length; i++) { + hexkey.append(Integer.toHexString(0xFF & key[i])); + } + + return hexkey.toString(); + } +} -- cgit v1.2.3