73 lines
2.6 KiB
Java
73 lines
2.6 KiB
Java
|
package com.luminiasoft.bitshares.ws;
|
||
|
|
||
|
import com.google.gson.Gson;
|
||
|
import com.google.gson.reflect.TypeToken;
|
||
|
import com.luminiasoft.bitshares.RPC;
|
||
|
import com.luminiasoft.bitshares.interfaces.WitnessResponseListener;
|
||
|
import com.luminiasoft.bitshares.models.AccountProperties;
|
||
|
import com.luminiasoft.bitshares.models.ApiCall;
|
||
|
import com.luminiasoft.bitshares.models.BaseResponse;
|
||
|
import com.luminiasoft.bitshares.models.WitnessResponse;
|
||
|
import com.neovisionaries.ws.client.WebSocket;
|
||
|
import com.neovisionaries.ws.client.WebSocketAdapter;
|
||
|
import com.neovisionaries.ws.client.WebSocketException;
|
||
|
import com.neovisionaries.ws.client.WebSocketFrame;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.lang.reflect.Type;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* Created by nelson on 11/15/16.
|
||
|
*/
|
||
|
public class GetAccountsByAddress extends WebSocketAdapter {
|
||
|
|
||
|
private byte[] publicKey;
|
||
|
private WitnessResponseListener mListener;
|
||
|
|
||
|
public GetAccountsByAddress(byte[] publicKey, WitnessResponseListener listener) {
|
||
|
this.publicKey = publicKey;
|
||
|
this.mListener = listener;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onConnected(WebSocket websocket, Map<String, List<String>> headers) throws Exception {
|
||
|
ArrayList<Serializable> accountParams = new ArrayList();
|
||
|
accountParams.add(this.publicKey);
|
||
|
ApiCall getAccountByAddress = new ApiCall(0, RPC.CALL_GET_KEY_REFERENCES, accountParams, "2.1", 1);
|
||
|
websocket.sendText(getAccountByAddress.toJsonString());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onTextFrame(WebSocket websocket, WebSocketFrame frame) throws Exception {
|
||
|
String response = frame.getPayloadText();
|
||
|
Gson gson = new Gson();
|
||
|
|
||
|
Type GetAccountByAddressResponse = new TypeToken<WitnessResponse<List<List<Object>>>>() {
|
||
|
}.getType();
|
||
|
WitnessResponse<WitnessResponse<List<List<Object>>>> witnessResponse = gson.fromJson(response, GetAccountByAddressResponse);
|
||
|
|
||
|
if (witnessResponse.error != null) {
|
||
|
this.mListener.onError(witnessResponse.error);
|
||
|
} else {
|
||
|
this.mListener.onSuccess(witnessResponse);
|
||
|
}
|
||
|
|
||
|
websocket.disconnect();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onError(WebSocket websocket, WebSocketException cause) throws Exception {
|
||
|
mListener.onError(new BaseResponse.Error(cause.getMessage()));
|
||
|
websocket.disconnect();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void handleCallbackError(WebSocket websocket, Throwable cause) throws Exception {
|
||
|
mListener.onError(new BaseResponse.Error(cause.getMessage()));
|
||
|
websocket.disconnect();
|
||
|
}
|
||
|
}
|