aboutsummaryrefslogtreecommitdiff
path: root/juick-ws/src/main/java/com/juick/ws/WebsocketComponent.java
blob: c73c50e50c202d8ee8b65dc8a34d3529aed93e73 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package com.juick.ws;

import com.juick.User;
import com.juick.service.MessagesService;
import com.juick.service.UserService;
import org.apache.commons.lang3.CharEncoding;
import org.apache.commons.lang3.math.NumberUtils;
import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URLEncodedUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpHeaders;
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.WebSocketSession;
import org.springframework.web.socket.handler.TextWebSocketHandler;

import javax.inject.Inject;
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Created by vitalyster on 28.06.2016.
 */
public class WebsocketComponent extends TextWebSocketHandler {
    private static final Logger logger = LoggerFactory.getLogger(WebsocketComponent.class);

    private final List<SocketSubscribed> clients = Collections.synchronizedList(new ArrayList<SocketSubscribed>());

    @Inject
    UserService userService;
    @Inject
    MessagesService messagesService;

    @Override
    public void afterConnectionEstablished(WebSocketSession session) throws Exception {
        URI hLocation;
        String hXRealIP = "";

        hLocation = session.getUri();
        HttpHeaders headers = session.getHandshakeHeaders();
        hXRealIP = headers.getOrDefault("X-Real-IP",
                Collections.singletonList(session.getRemoteAddress().toString())).get(0);

        // Auth
        User visitor = new User();
        List<NameValuePair> params = URLEncodedUtils.parse(hLocation, CharEncoding.UTF_8);
        for (NameValuePair param : params) {
            if (param.getName().equals("hash")) {
                String hash = param.getValue();
                if (hash.length() == 16) {
                    visitor = userService.getUserByHash(hash);
                } else {
                    try {
                        logger.info("wrong hash for {} from {}", visitor.getUid(), hXRealIP);
                        session.close(new CloseStatus(403, "Forbidden"));
                    } catch (IOException e) {
                        logger.warn("ws error", e);
                    }
                }
                break;
            }
        }
        logger.info("user {} connected to {} from {}", visitor.getUid(), hLocation.getPath(), hXRealIP);

        int MID = 0;
        SocketSubscribed sockSubscr = null;
        if (hLocation.getPath().equals("/")) {
            logger.info("user {} connected", visitor.getUid());
            sockSubscr = new SocketSubscribed(session, hXRealIP, visitor, false);
        } else if (hLocation.getPath().equals("/_all")) {
            logger.info("user {} connected to legacy _all ({})", visitor.getUid(), hLocation.getPath());
            sockSubscr = new SocketSubscribed(session, hXRealIP, visitor, true);
            sockSubscr.allMessages = true;
        } else if (hLocation.getPath().equals("/_replies")) {
            logger.info("user {} connected to legacy _replies ({})", visitor.getUid(), hLocation.getPath());
            sockSubscr = new SocketSubscribed(session, hXRealIP, visitor, true);
            sockSubscr.allReplies = true;
        } else if (hLocation.getPath().matches("/\\d+$")) {
            MID = NumberUtils.toInt(hLocation.getPath().substring(1), 0);
            if (MID > 0) {
                if (messagesService.canViewThread(MID, visitor.getUid())) {
                    logger.info("user {} connected to legacy thread ({}) from {}", visitor.getUid(), MID, hXRealIP);
                    sockSubscr = new SocketSubscribed(session, hXRealIP, visitor, true);
                    sockSubscr.MID = MID;
                } else {
                    try {
                        session.close(new CloseStatus(403, "Forbidden"));
                    } catch (IOException e) {
                        logger.warn("ws error", e);
                    }
                }
            }
        }
        if (sockSubscr != null) {
            synchronized (clients) {
                clients.add(sockSubscr);
                logger.info("{} clients connected", clients.size());
            }
        }
    }

    @Override
    public void afterConnectionClosed(WebSocketSession session, CloseStatus status) throws Exception {
        synchronized (clients) {
            logger.info("session closed with status {}: {}", status.getCode(), status.getReason());
            clients.removeIf(c -> {
                if (c.session.getId().equals(session.getId())) {
                    return true;
                }
                return false;
            });
            logger.info("{} clients connected", clients.size());
        }

    }

    public List<SocketSubscribed> getClients() {
        return clients;
    }

    class SocketSubscribed {
        WebSocketSession session;
        String clientName;
        User visitor;
        int MID;
        boolean allMessages;
        boolean allReplies;
        long tsConnected;
        long tsLastData;
        boolean legacy;

        public SocketSubscribed(WebSocketSession session, String clientName, User visitor, boolean legacy) {
            this.session = session;
            this.clientName = clientName;
            this.visitor = visitor;
            tsConnected = tsLastData = System.currentTimeMillis();
            this.legacy = legacy;
        }
    }
}