aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/xmpp/s2s/Connection.java
blob: 6d32abbec2ae8a6f1d6cd37368b5170dccaa6811 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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 java.util.logging.Logger;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import org.xmlpull.mxp1.MXParser;
import org.xmlpull.v1.XmlPullParser;

/**
 *
 * @author ugnich
 */
public class Connection {

    protected static final Logger LOGGER = Logger.getLogger(Connection.class.getName());

    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 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 += ">...</" + parser.getName() + ">\n";
        LOGGER.fine(tag);
    }

    public void sendStanza(String xml) throws IOException {
        if (streamID != null) {
            LOGGER.fine("OUT: " + xml + "\n");
        }
        writer.write(xml);
        writer.flush();
        tsLocalData = System.currentTimeMillis();
        bytesLocal += xml.length();
        packetsLocal++;
    }

    void closeConnection() {
        if (streamID != null) {
            LOGGER.info(String.format("CLOSING STREAM %s", streamID));
        }

        try {
            writer.write("</stream:stream>");
        } 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();
    }
}