mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-19 21:58:08 +01:00
111 lines
4.0 KiB
Java
111 lines
4.0 KiB
Java
/*
|
|
* Copyright (C) 2014 Open WhisperSystems
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.whispersystems.websocket;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.eclipse.jetty.websocket.api.RemoteEndpoint;
|
|
import org.eclipse.jetty.websocket.api.Session;
|
|
import org.eclipse.jetty.websocket.api.WebSocketException;
|
|
import org.eclipse.jetty.websocket.api.WriteCallback;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.whispersystems.websocket.messages.WebSocketMessage;
|
|
import org.whispersystems.websocket.messages.WebSocketMessageFactory;
|
|
import org.whispersystems.websocket.messages.WebSocketResponseMessage;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.ByteBuffer;
|
|
import java.security.SecureRandom;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Optional;
|
|
import java.util.concurrent.CompletableFuture;
|
|
|
|
@SuppressWarnings("OptionalUsedAsFieldOrParameterType")
|
|
public class WebSocketClient {
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(WebSocketClient.class);
|
|
|
|
private final Session session;
|
|
private final RemoteEndpoint remoteEndpoint;
|
|
private final WebSocketMessageFactory messageFactory;
|
|
private final Map<Long, CompletableFuture<WebSocketResponseMessage>> pendingRequestMapper;
|
|
|
|
public WebSocketClient(Session session, RemoteEndpoint remoteEndpoint,
|
|
WebSocketMessageFactory messageFactory,
|
|
Map<Long, CompletableFuture<WebSocketResponseMessage>> pendingRequestMapper)
|
|
{
|
|
this.session = session;
|
|
this.remoteEndpoint = remoteEndpoint;
|
|
this.messageFactory = messageFactory;
|
|
this.pendingRequestMapper = pendingRequestMapper;
|
|
}
|
|
|
|
public CompletableFuture<WebSocketResponseMessage> sendRequest(String verb, String path,
|
|
List<String> headers,
|
|
Optional<byte[]> body)
|
|
{
|
|
final long requestId = generateRequestId();
|
|
final CompletableFuture<WebSocketResponseMessage> future = new CompletableFuture<>();
|
|
|
|
pendingRequestMapper.put(requestId, future);
|
|
|
|
WebSocketMessage requestMessage = messageFactory.createRequest(Optional.of(requestId), verb, path, headers, body);
|
|
|
|
try {
|
|
remoteEndpoint.sendBytes(ByteBuffer.wrap(requestMessage.toByteArray()), new WriteCallback() {
|
|
@Override
|
|
public void writeFailed(Throwable x) {
|
|
logger.debug("Write failed", x);
|
|
pendingRequestMapper.remove(requestId);
|
|
future.completeExceptionally(x);
|
|
}
|
|
|
|
@Override
|
|
public void writeSuccess() {}
|
|
});
|
|
} catch (WebSocketException e) {
|
|
logger.debug("Write", e);
|
|
pendingRequestMapper.remove(requestId);
|
|
future.completeExceptionally(e);
|
|
}
|
|
|
|
return future;
|
|
}
|
|
|
|
public String getUserAgent() {
|
|
return session.getUpgradeRequest().getHeader("User-Agent");
|
|
}
|
|
|
|
public void close(int code, String message) {
|
|
session.close(code, message);
|
|
}
|
|
|
|
public void hardDisconnectQuietly() {
|
|
try {
|
|
session.disconnect();
|
|
} catch (IOException e) {
|
|
// quietly we said
|
|
}
|
|
}
|
|
|
|
private long generateRequestId() {
|
|
return Math.abs(new SecureRandom().nextLong());
|
|
}
|
|
|
|
}
|