Make the grapheneapi multi account compatible
This commit is contained in:
parent
3b66b91807
commit
594bd4b816
1 changed files with 280 additions and 278 deletions
|
@ -79,36 +79,36 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* This is used for manager each listener in the subscription thread
|
||||
*/
|
||||
private static HashMap<Long,SubscriptionListener> currentBitsharesListener = new HashMap<>();
|
||||
private static HashMap<Long, SubscriptionListener> currentBitsharesListener = new HashMap<>();
|
||||
|
||||
/**
|
||||
* Retrieves the data of an account searching by it's id
|
||||
*
|
||||
* @param accountId The accountId to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountById(String accountId, final ApiRequest request){
|
||||
public static void getAccountById(String accountId, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccounts(accountId,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
if (response.result.getClass() == ArrayList.class) {
|
||||
List list = (List) response.result;
|
||||
if (list.size() > 0) {
|
||||
if (list.get(0).getClass() == AccountProperties.class) {
|
||||
request.getListener().success(list.get(0),request.getId());
|
||||
return;
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
if (response.result.getClass() == ArrayList.class) {
|
||||
List list = (List) response.result;
|
||||
if (list.size() > 0) {
|
||||
if (list.get(0).getClass() == AccountProperties.class) {
|
||||
request.getListener().success(list.get(0), request.getId());
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -118,79 +118,55 @@ public abstract class GrapheneApiGenerator {
|
|||
* @param address The address to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountByOwnerOrActiveAddress(Address address, final ApiRequest request){
|
||||
public static void getAccountByOwnerOrActiveAddress(Address address, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetKeyReferences(address, true,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
final List<List<UserAccount>> resp = (List<List<UserAccount>>) response.result;
|
||||
if(resp.size() > 0){
|
||||
List<UserAccount> accounts = resp.get(0);
|
||||
if(accounts.size() > 0){
|
||||
for(UserAccount account : accounts) {
|
||||
request.getListener().success(account,request.getId());}}}
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
final List<List<UserAccount>> resp = (List<List<UserAccount>>) response.result;
|
||||
if (resp.size() > 0) {
|
||||
List<UserAccount> accounts = resp.get(0);
|
||||
if (accounts.size() > 0) {
|
||||
for (UserAccount account : accounts) {
|
||||
request.getListener().success(account, request.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
|
||||
thread.start();
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the Transaction for an Account
|
||||
*
|
||||
* @param accountGrapheneId The account id to search
|
||||
* @param start The start index of the transaction list
|
||||
* @param stop The stop index of the transaction list
|
||||
* @param limit the maximun transactions to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param start The start index of the transaction list
|
||||
* @param stop The stop index of the transaction list
|
||||
* @param limit the maximun transactions to retrieve
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountTransaction(String accountGrapheneId, int start, int stop,
|
||||
int limit, final ApiRequest request){
|
||||
int limit, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetRelativeAccountHistory(new UserAccount(accountGrapheneId),
|
||||
start, limit, stop, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
request.getListener().success(response.result,request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the account id by the name of the account
|
||||
*
|
||||
* @param accountName The account Name to find
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountByName(String accountName, final ApiRequest request){
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccountByName(accountName,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties)response.result;
|
||||
if(accountProperties == null){
|
||||
request.getListener().fail(request.getId());
|
||||
}else{
|
||||
request.getListener().success(accountProperties,request.getId());
|
||||
}
|
||||
request.getListener().success(response.result, request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -198,26 +174,53 @@ public abstract class GrapheneApiGenerator {
|
|||
* Retrieves the account id by the name of the account
|
||||
*
|
||||
* @param accountName The account Name to find
|
||||
* @param request The Api request object, to answer this petition
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountIdByName(String accountName, final ApiRequest request){
|
||||
public static void getAccountByName(String accountName, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccountByName(accountName,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties)response.result;
|
||||
if(accountProperties == null){
|
||||
request.getListener().success(null,request.getId());
|
||||
}else{
|
||||
request.getListener().success(accountProperties.id,request.getId());
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties) response.result;
|
||||
if (accountProperties == null) {
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
request.getListener().success(accountProperties, request.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the account id by the name of the account
|
||||
*
|
||||
* @param accountName The account Name to find
|
||||
* @param request The Api request object, to answer this petition
|
||||
*/
|
||||
public static void getAccountIdByName(String accountName, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetAccountByName(accountName,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
AccountProperties accountProperties = (AccountProperties) response.result;
|
||||
if (accountProperties == null) {
|
||||
request.getListener().success(null, request.getId());
|
||||
} else {
|
||||
request.getListener().success(accountProperties.id, request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -225,23 +228,23 @@ public abstract class GrapheneApiGenerator {
|
|||
* Broadcast a transaction, this is use for sending funds
|
||||
*
|
||||
* @param transaction The graphene transaction
|
||||
* @param feeAsset The feeAseet, this needs only the id of the asset
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param feeAsset The feeAseet, this needs only the id of the asset
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void broadcastTransaction(Transaction transaction, Asset feeAsset,
|
||||
final ApiRequest request){
|
||||
final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new TransactionBroadcastSequence(transaction,
|
||||
feeAsset, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
request.getListener().success(true,request.getId());
|
||||
request.getListener().success(true, request.getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
@ -249,22 +252,22 @@ public abstract class GrapheneApiGenerator {
|
|||
* This gets the asset information using only the asset name
|
||||
*
|
||||
* @param assetNames The list of the names of the assets to be retrieve
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getAssetByName(ArrayList<String> assetNames, final ApiRequest request){
|
||||
public static void getAssetByName(ArrayList<String> assetNames, final ApiRequest request) {
|
||||
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assetNames,true,
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assetNames, true,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<Asset> assets = (List<Asset>) response.result;
|
||||
if(assets.size() <= 0){
|
||||
request.getListener().fail(request.getId());
|
||||
}else{
|
||||
ArrayList<BitsharesAsset> responseAssets = new ArrayList<>();
|
||||
for(Asset asset: assets){
|
||||
//TODO asset type
|
||||
BitsharesAsset.Type assetType = BitsharesAsset.Type.UIA;
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<Asset> assets = (List<Asset>) response.result;
|
||||
if (assets.size() <= 0) {
|
||||
request.getListener().fail(request.getId());
|
||||
} else {
|
||||
ArrayList<BitsharesAsset> responseAssets = new ArrayList<>();
|
||||
for (Asset asset : assets) {
|
||||
//TODO asset type
|
||||
BitsharesAsset.Type assetType = BitsharesAsset.Type.UIA;
|
||||
/*if(asset.getAssetType().equals(Asset.AssetType.CORE_ASSET)){
|
||||
assetType = BitsharesAsset.Type.CORE;
|
||||
}else if(asset.getAssetType().equals(Asset.AssetType.SMART_COIN)){
|
||||
|
@ -274,43 +277,44 @@ public abstract class GrapheneApiGenerator {
|
|||
}else if(asset.getAssetType().equals(Asset.AssetType.PREDICTION_MARKET)){
|
||||
assetType = BitsharesAsset.Type.PREDICTION_MARKET;
|
||||
}*/
|
||||
BitsharesAsset responseAsset = new BitsharesAsset(asset.getSymbol(),
|
||||
asset.getPrecision(),asset.getObjectId(),assetType);
|
||||
responseAssets.add(responseAsset);
|
||||
BitsharesAsset responseAsset = new BitsharesAsset(asset.getSymbol(),
|
||||
asset.getPrecision(), asset.getObjectId(), assetType);
|
||||
responseAssets.add(responseAsset);
|
||||
}
|
||||
request.getListener().success(responseAssets, request.getId());
|
||||
}
|
||||
}
|
||||
request.getListener().success(responseAssets,request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the asset ifnormation using the id of the net
|
||||
*
|
||||
* @param assetIds The list of the ids to retrieve
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getAssetById(ArrayList<String> assetIds, final ApiRequest request){
|
||||
public static void getAssetById(ArrayList<String> assetIds, final ApiRequest request) {
|
||||
ArrayList<Asset> assets = new ArrayList<>();
|
||||
for(String assetId : assetIds){
|
||||
for (String assetId : assetIds) {
|
||||
Asset asset = new Asset(assetId);
|
||||
assets.add(asset);
|
||||
}
|
||||
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assets,true, new WitnessResponseListener() {
|
||||
WebSocketThread thread = new WebSocketThread(new LookupAssetSymbols(assets, true, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<Asset> assets = (List<Asset>) response.result;
|
||||
if(assets.size() <= 0){
|
||||
if (assets.size() <= 0) {
|
||||
request.getListener().fail(request.getId());
|
||||
}else{
|
||||
} else {
|
||||
ArrayList<BitsharesAsset> responseAssets = new ArrayList<>();
|
||||
for(Asset asset: assets){
|
||||
for (Asset asset : assets) {
|
||||
//TODO asset type
|
||||
BitsharesAsset.Type assetType = BitsharesAsset.Type.UIA;
|
||||
/*if(asset.getAssetType().equals(Asset.AssetType.CORE_ASSET)){
|
||||
|
@ -323,10 +327,10 @@ public abstract class GrapheneApiGenerator {
|
|||
assetType = BitsharesAsset.Type.PREDICTION_MARKET;
|
||||
}*/
|
||||
BitsharesAsset responseAsset = new BitsharesAsset(asset.getSymbol(),
|
||||
asset.getPrecision(),asset.getObjectId(),assetType);
|
||||
asset.getPrecision(), asset.getObjectId(), assetType);
|
||||
responseAssets.add(responseAsset);
|
||||
}
|
||||
request.getListener().success(responseAssets,request.getId());
|
||||
request.getListener().success(responseAssets, request.getId());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -334,140 +338,138 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscribe a bitshares account to receive real time updates
|
||||
*
|
||||
* @param accountId The id opf the database of the account
|
||||
* @param accountBitsharesId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
* @param accountId The id opf the database of the account
|
||||
* @param accountBitsharesId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void subscribeBitsharesAccount(final long accountId, final String accountBitsharesId,
|
||||
final Context context){
|
||||
if(!currentBitsharesListener.containsKey(accountId)){
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final BitsharesAssetDao bitsharesAssetDao = db.bitsharesAssetDao();
|
||||
final CryptoCurrencyDao cryptoCurrencyDao = db.cryptoCurrencyDao();
|
||||
SubscriptionListener balanceListener = new SubscriptionListener() {
|
||||
@Override
|
||||
public ObjectType getInterestObjectType() {
|
||||
return ObjectType.TRANSACTION_OBJECT;
|
||||
}
|
||||
final Context context) {
|
||||
if (!currentBitsharesListener.containsKey(accountId)) {
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final BitsharesAssetDao bitsharesAssetDao = db.bitsharesAssetDao();
|
||||
final CryptoCurrencyDao cryptoCurrencyDao = db.cryptoCurrencyDao();
|
||||
SubscriptionListener balanceListener = new SubscriptionListener() {
|
||||
@Override
|
||||
public ObjectType getInterestObjectType() {
|
||||
return ObjectType.TRANSACTION_OBJECT;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSubscriptionUpdate(SubscriptionResponse response) {
|
||||
List<Serializable> updatedObjects = (List<Serializable>) response.params.get(1);
|
||||
if(updatedObjects.size() > 0){
|
||||
for(Serializable update : updatedObjects){
|
||||
if(update instanceof BroadcastedTransaction){
|
||||
BroadcastedTransaction transactionUpdate = (BroadcastedTransaction) update;
|
||||
for(BaseOperation operation : transactionUpdate.getTransaction().getOperations()){
|
||||
if(operation instanceof TransferOperation){
|
||||
final TransferOperation tOperation = (TransferOperation) operation;
|
||||
if(tOperation.getFrom().getObjectId().equals(accountBitsharesId) || tOperation.getTo().getObjectId().equals(accountBitsharesId)){
|
||||
GrapheneApiGenerator.getAccountBalance(accountId,accountBitsharesId,context);
|
||||
final CryptoCoinTransaction transaction = new CryptoCoinTransaction();
|
||||
transaction.setAccountId(accountId);
|
||||
transaction.setAmount(tOperation.getAssetAmount().getAmount().longValue());
|
||||
BitsharesAssetInfo info = bitsharesAssetDao.getBitsharesAssetInfoById(tOperation.getAssetAmount().getAsset().getObjectId());
|
||||
if (info == null) {
|
||||
//The cryptoCurrency is not in the database, queringfor its data
|
||||
ApiRequest assetRequest = new ApiRequest(0, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
ArrayList<BitsharesAsset> assets = (ArrayList<BitsharesAsset>) answer;
|
||||
for(BitsharesAsset asset : assets){
|
||||
long idCryptoCurrency = cryptoCurrencyDao.insertCryptoCurrency(asset)[0];
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
info.setCryptoCurrencyId(idCryptoCurrency);
|
||||
asset.setId((int)idCryptoCurrency);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
saveTransaction(transaction,cryptoCurrencyDao.getById(info.getCryptoCurrencyId()),accountBitsharesId,tOperation,context);
|
||||
@Override
|
||||
public void onSubscriptionUpdate(SubscriptionResponse response) {
|
||||
List<Serializable> updatedObjects = (List<Serializable>) response.params.get(1);
|
||||
if (updatedObjects.size() > 0) {
|
||||
for (Serializable update : updatedObjects) {
|
||||
if (update instanceof BroadcastedTransaction) {
|
||||
BroadcastedTransaction transactionUpdate = (BroadcastedTransaction) update;
|
||||
for (BaseOperation operation : transactionUpdate.getTransaction().getOperations()) {
|
||||
if (operation instanceof TransferOperation) {
|
||||
final TransferOperation tOperation = (TransferOperation) operation;
|
||||
if (tOperation.getFrom().getObjectId().equals(accountBitsharesId) || tOperation.getTo().getObjectId().equals(accountBitsharesId)) {
|
||||
GrapheneApiGenerator.getAccountBalance(accountId, accountBitsharesId, context);
|
||||
final CryptoCoinTransaction transaction = new CryptoCoinTransaction();
|
||||
transaction.setAccountId(accountId);
|
||||
transaction.setAmount(tOperation.getAssetAmount().getAmount().longValue());
|
||||
BitsharesAssetInfo info = bitsharesAssetDao.getBitsharesAssetInfoById(tOperation.getAssetAmount().getAsset().getObjectId());
|
||||
if (info == null) {
|
||||
//The cryptoCurrency is not in the database, queringfor its data
|
||||
ApiRequest assetRequest = new ApiRequest(0, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
ArrayList<BitsharesAsset> assets = (ArrayList<BitsharesAsset>) answer;
|
||||
for (BitsharesAsset asset : assets) {
|
||||
long idCryptoCurrency = cryptoCurrencyDao.insertCryptoCurrency(asset)[0];
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
info.setCryptoCurrencyId(idCryptoCurrency);
|
||||
asset.setId((int) idCryptoCurrency);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
saveTransaction(transaction, cryptoCurrencyDao.getById(info.getCryptoCurrencyId()), accountBitsharesId, tOperation, context);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fail(int idPetition) {
|
||||
//TODO error retrieving asset
|
||||
}
|
||||
});
|
||||
ArrayList<String> assets = new ArrayList<>();
|
||||
assets.add(tOperation.getAssetAmount().getAsset().getObjectId());
|
||||
GrapheneApiGenerator.getAssetById(assets,assetRequest);
|
||||
}else{
|
||||
saveTransaction(transaction,cryptoCurrencyDao.getById(info.getCryptoCurrencyId()),accountBitsharesId,tOperation,context);
|
||||
@Override
|
||||
public void fail(int idPetition) {
|
||||
//TODO error retrieving asset
|
||||
}
|
||||
});
|
||||
ArrayList<String> assets = new ArrayList<>();
|
||||
assets.add(tOperation.getAssetAmount().getAsset().getObjectId());
|
||||
GrapheneApiGenerator.getAssetById(assets, assetRequest);
|
||||
} else {
|
||||
saveTransaction(transaction, cryptoCurrencyDao.getById(info.getCryptoCurrencyId()), accountBitsharesId, tOperation, context);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
currentBitsharesListener.put(accountId,balanceListener);
|
||||
bitsharesSubscriptionHub.addSubscriptionListener(balanceListener);
|
||||
|
||||
if(!subscriptionThread.isConnected() && !subscriptionThread.isAlive()){
|
||||
currentBitsharesListener.put(accountId, balanceListener);
|
||||
bitsharesSubscriptionHub.addSubscriptionListener(balanceListener);
|
||||
try {
|
||||
subscriptionThread.start();
|
||||
}catch(Exception e){
|
||||
if (!subscriptionThread.isConnected() && !subscriptionThread.isAlive()) {
|
||||
|
||||
subscriptionThread.start();
|
||||
|
||||
} else if (bitsharesSubscriptionHub != null && !bitsharesSubscriptionHub.isSubscribed()) {
|
||||
bitsharesSubscriptionHub.resubscribe();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}else if(bitsharesSubscriptionHub!= null && !bitsharesSubscriptionHub.isSubscribed()){
|
||||
try {
|
||||
bitsharesSubscriptionHub.resubscribe();
|
||||
}catch(Exception e){
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Function to save a transaction retrieved from the update
|
||||
* @param transaction The transaction db object
|
||||
* @param currency The currency of the transaccion
|
||||
*
|
||||
* @param transaction The transaction db object
|
||||
* @param currency The currency of the transaccion
|
||||
* @param accountBitsharesId The id of the account in the bitshares network
|
||||
* @param tOperation The transfer operation fetched from the update
|
||||
* @param context The context of this app
|
||||
* @param tOperation The transfer operation fetched from the update
|
||||
* @param context The context of this app
|
||||
*/
|
||||
private static void saveTransaction(CryptoCoinTransaction transaction, CryptoCurrency currency,
|
||||
String accountBitsharesId, TransferOperation tOperation ,
|
||||
Context context){
|
||||
transaction.setIdCurrency((int)currency.getId());
|
||||
String accountBitsharesId, TransferOperation tOperation,
|
||||
Context context) {
|
||||
transaction.setIdCurrency((int) currency.getId());
|
||||
transaction.setConfirmed(true); //graphene transaction are always confirmed
|
||||
transaction.setFrom(tOperation.getFrom().getObjectId());
|
||||
transaction.setInput(!tOperation.getFrom().getObjectId().equals(accountBitsharesId));
|
||||
transaction.setTo(tOperation.getTo().getObjectId());
|
||||
transaction.setDate(new Date());
|
||||
CrystalDatabase.getAppDatabase(context).transactionDao().insertTransaction(transaction);
|
||||
if(transaction.getInput()){
|
||||
CryptoNetEvents.getInstance().fireEvent(new ReceivedFundsCryptoNetEvent(transaction.getAccount(),currency,transaction.getAmount()));
|
||||
if (transaction.getInput()) {
|
||||
CryptoNetEvents.getInstance().fireEvent(new ReceivedFundsCryptoNetEvent(transaction.getAccount(), currency, transaction.getAmount()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cancels all bitshares account subscriptions
|
||||
*/
|
||||
public static void cancelBitsharesAccountSubscriptions(){
|
||||
public static void cancelBitsharesAccountSubscriptions() {
|
||||
bitsharesSubscriptionHub.cancelSubscriptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the account balance of an account
|
||||
*
|
||||
* @param accountId The dataabase id of the account
|
||||
* @param accountId The dataabase id of the account
|
||||
* @param accountGrapheneId The bitshares id of the account
|
||||
* @param context The android context of this application
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void getAccountBalance(final long accountId, final String accountGrapheneId,
|
||||
final Context context){
|
||||
final Context context) {
|
||||
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final CryptoCoinBalanceDao balanceDao = db.cryptoCoinBalanceDao();
|
||||
|
@ -478,35 +480,35 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<AssetAmount> balances = (List<AssetAmount>) response.result;
|
||||
for(final AssetAmount balance : balances){
|
||||
for (final AssetAmount balance : balances) {
|
||||
final CryptoCoinBalance ccBalance = new CryptoCoinBalance();
|
||||
ccBalance.setAccountId(accountId);
|
||||
ccBalance.setBalance(balance.getAmount().longValue());
|
||||
BitsharesAssetInfo assetInfo = bitsharesAssetDao.getBitsharesAssetInfoById(balance.getAsset().getObjectId());
|
||||
if(assetInfo == null ){
|
||||
if (assetInfo == null) {
|
||||
ArrayList<String> idAssets = new ArrayList<>();
|
||||
idAssets.add(balance.getAsset().getObjectId());
|
||||
ApiRequest getAssetRequest = new ApiRequest(1, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
List<BitsharesAsset> assets = (List<BitsharesAsset>) answer;
|
||||
for(BitsharesAsset asset : assets) {
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
long[] cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency) asset);
|
||||
info.setCryptoCurrencyId(cryptoCurrencyId[0]);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
ccBalance.setCryptoCurrencyId(cryptoCurrencyId[0]);
|
||||
balanceDao.insertCryptoCoinBalance(ccBalance);
|
||||
}
|
||||
List<BitsharesAsset> assets = (List<BitsharesAsset>) answer;
|
||||
for (BitsharesAsset asset : assets) {
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo(asset);
|
||||
long[] cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency) asset);
|
||||
info.setCryptoCurrencyId(cryptoCurrencyId[0]);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
ccBalance.setCryptoCurrencyId(cryptoCurrencyId[0]);
|
||||
balanceDao.insertCryptoCoinBalance(ccBalance);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fail(int idPetition) {
|
||||
}
|
||||
});
|
||||
getAssetById(idAssets,getAssetRequest);
|
||||
getAssetById(idAssets, getAssetRequest);
|
||||
|
||||
}else {
|
||||
} else {
|
||||
|
||||
ccBalance.setCryptoCurrencyId(assetInfo.getCryptoCurrencyId());
|
||||
balanceDao.insertCryptoCoinBalance(ccBalance);
|
||||
|
@ -518,7 +520,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
|
||||
thread.start();
|
||||
|
||||
|
@ -528,15 +530,15 @@ public abstract class GrapheneApiGenerator {
|
|||
* Gets the date time of a block header
|
||||
*
|
||||
* @param blockHeader The block header to retrieve the date time
|
||||
* @param request the api request object, to answer this petition
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getBlockHeaderTime(long blockHeader, final ApiRequest request){
|
||||
public static void getBlockHeaderTime(long blockHeader, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetBlockHeader(blockHeader, new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
if(response == null){
|
||||
if (response == null) {
|
||||
request.getListener().fail(request.getId());
|
||||
}else {
|
||||
} else {
|
||||
request.getListener().success(response.result, request.getId());
|
||||
}
|
||||
}
|
||||
|
@ -545,7 +547,7 @@ public abstract class GrapheneApiGenerator {
|
|||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}),CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
}), CryptoNetManager.getURL(CryptoNet.BITSHARES));
|
||||
thread.start();
|
||||
|
||||
}
|
||||
|
@ -553,78 +555,78 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* Gets a single equivalent value
|
||||
*
|
||||
* @param baseId The base asset bistshares id
|
||||
* @param baseId The base asset bistshares id
|
||||
* @param quoteId the quote asset bitshares id
|
||||
* @param request the api request object, to answer this petition
|
||||
*/
|
||||
public static void getEquivalentValue(final String baseId, String quoteId, final ApiRequest request){
|
||||
public static void getEquivalentValue(final String baseId, String quoteId, final ApiRequest request) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetLimitOrders(baseId, quoteId, 10,
|
||||
new WitnessResponseListener() {
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<LimitOrder> orders = (List<LimitOrder>) response.result;
|
||||
if(orders.size()<= 0){
|
||||
//TODO indirect equivalent value
|
||||
}
|
||||
for(LimitOrder order : orders){
|
||||
if(order.getSellPrice().base.getAsset().getBitassetId().equals(baseId)) {
|
||||
Converter converter = new Converter();
|
||||
double equiValue = converter.getConversionRate(order.getSellPrice(),
|
||||
Converter.BASE_TO_QUOTE);
|
||||
request.getListener().success(equiValue, request.getId());
|
||||
break;
|
||||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<LimitOrder> orders = (List<LimitOrder>) response.result;
|
||||
if (orders.size() <= 0) {
|
||||
//TODO indirect equivalent value
|
||||
}
|
||||
for (LimitOrder order : orders) {
|
||||
if (order.getSellPrice().base.getAsset().getBitassetId().equals(baseId)) {
|
||||
Converter converter = new Converter();
|
||||
double equiValue = converter.getConversionRate(order.getSellPrice(),
|
||||
Converter.BASE_TO_QUOTE);
|
||||
request.getListener().success(equiValue, request.getId());
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
@Override
|
||||
public void onError(BaseResponse.Error error) {
|
||||
request.getListener().fail(request.getId());
|
||||
}
|
||||
}), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
thread.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets equivalent value and store it on the database
|
||||
*
|
||||
* @param baseAsset The baset asset as a bitshares asset, it needs the CryptoCurrency and thge BitsharesInfo
|
||||
* @param baseAsset The baset asset as a bitshares asset, it needs the CryptoCurrency and thge BitsharesInfo
|
||||
* @param quoteAssets The list of the qutoe assets as a full bitshares asset object
|
||||
* @param context The android context of this application
|
||||
* @param context The android context of this application
|
||||
*/
|
||||
public static void getEquivalentValue(BitsharesAsset baseAsset,
|
||||
final List<BitsharesAsset> quoteAssets, final Context context){
|
||||
for(BitsharesAsset quoteAsset : quoteAssets){
|
||||
WebSocketThread thread = new WebSocketThread(new GetLimitOrders(baseAsset.getBitsharesId(),
|
||||
quoteAsset.getBitsharesId(), 10, new EquivalentValueListener(baseAsset,
|
||||
quoteAsset,context)), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
thread.start();
|
||||
}
|
||||
final List<BitsharesAsset> quoteAssets, final Context context) {
|
||||
for (BitsharesAsset quoteAsset : quoteAssets) {
|
||||
WebSocketThread thread = new WebSocketThread(new GetLimitOrders(baseAsset.getBitsharesId(),
|
||||
quoteAsset.getBitsharesId(), 10, new EquivalentValueListener(baseAsset,
|
||||
quoteAsset, context)), BitsharesConstant.EQUIVALENT_URL); //todo change equivalent url for current server url
|
||||
thread.start();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the equivalent value from a list of assets to a base asset
|
||||
*
|
||||
* @param baseAssetName The base asset to use
|
||||
* @param quoteAssets The list of quotes assets to query
|
||||
* @param context The Context of this Application
|
||||
* @param quoteAssets The list of quotes assets to query
|
||||
* @param context The Context of this Application
|
||||
*/
|
||||
public static void getEquivalentValue(String baseAssetName, final List<BitsharesAsset> quoteAssets, final Context context){
|
||||
public static void getEquivalentValue(String baseAssetName, final List<BitsharesAsset> quoteAssets, final Context context) {
|
||||
CrystalDatabase db = CrystalDatabase.getAppDatabase(context);
|
||||
final CryptoCurrencyDao cryptoCurrencyDao = db.cryptoCurrencyDao();
|
||||
final BitsharesAssetDao bitsharesAssetDao = db.bitsharesAssetDao();
|
||||
CryptoCurrency baseCurrency = cryptoCurrencyDao.getByName(baseAssetName);
|
||||
BitsharesAssetInfo info = null;
|
||||
if(baseCurrency != null){
|
||||
if (baseCurrency != null) {
|
||||
info = db.bitsharesAssetDao().getBitsharesAssetInfo(baseCurrency.getId());
|
||||
}
|
||||
if(baseCurrency == null || info == null){
|
||||
if (baseCurrency == null || info == null) {
|
||||
ApiRequest getAssetRequest = new ApiRequest(1, new ApiRequestListener() {
|
||||
@Override
|
||||
public void success(Object answer, int idPetition) {
|
||||
if(answer instanceof BitsharesAsset){
|
||||
if (answer instanceof BitsharesAsset) {
|
||||
BitsharesAssetInfo info = new BitsharesAssetInfo((BitsharesAsset) answer);
|
||||
long cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency)answer )[0];
|
||||
long cryptoCurrencyId = cryptoCurrencyDao.insertCryptoCurrency((CryptoCurrency) answer)[0];
|
||||
info.setCryptoCurrencyId(cryptoCurrencyId);
|
||||
bitsharesAssetDao.insertBitsharesAssetInfo(info);
|
||||
GrapheneApiGenerator.getEquivalentValue((BitsharesAsset) answer, quoteAssets, context);
|
||||
|
@ -633,17 +635,17 @@ public abstract class GrapheneApiGenerator {
|
|||
|
||||
@Override
|
||||
public void fail(int idPetition) {
|
||||
//TODO fail asset petition, the base asset is not an asset in bitshares, or there is no connection to the server
|
||||
//TODO fail asset petition, the base asset is not an asset in bitshares, or there is no connection to the server
|
||||
}
|
||||
});
|
||||
ArrayList<String> names = new ArrayList<>();
|
||||
names.add(baseAssetName);
|
||||
GrapheneApiGenerator.getAssetByName(names,getAssetRequest);
|
||||
GrapheneApiGenerator.getAssetByName(names, getAssetRequest);
|
||||
|
||||
}else {
|
||||
} else {
|
||||
BitsharesAsset baseAsset = new BitsharesAsset(baseCurrency);
|
||||
baseAsset.loadInfo(info);
|
||||
getEquivalentValue(baseAsset,quoteAssets,context);
|
||||
getEquivalentValue(baseAsset, quoteAssets, context);
|
||||
}
|
||||
|
||||
|
||||
|
@ -652,7 +654,7 @@ public abstract class GrapheneApiGenerator {
|
|||
/**
|
||||
* Listener of the equivalent value the answer is stored in the database, for use in conjuntion with LiveData
|
||||
*/
|
||||
private static class EquivalentValueListener implements WitnessResponseListener{
|
||||
private static class EquivalentValueListener implements WitnessResponseListener {
|
||||
/**
|
||||
* The base asset
|
||||
*/
|
||||
|
@ -675,21 +677,21 @@ public abstract class GrapheneApiGenerator {
|
|||
@Override
|
||||
public void onSuccess(WitnessResponse response) {
|
||||
List<LimitOrder> orders = (List<LimitOrder>) response.result;
|
||||
if(orders.size()<= 0){
|
||||
if (orders.size() <= 0) {
|
||||
//TODO indirect equivalent value
|
||||
}
|
||||
for(LimitOrder order : orders){
|
||||
for (LimitOrder order : orders) {
|
||||
try {
|
||||
//if (order.getSellPrice().base.getAsset().getBitassetId().equals(baseAsset.getBitsharesId())) {
|
||||
Converter converter = new Converter();
|
||||
order.getSellPrice().base.getAsset().setPrecision(baseAsset.getPrecision());
|
||||
order.getSellPrice().quote.getAsset().setPrecision(quoteAsset.getPrecision());
|
||||
double equiValue = converter.getConversionRate(order.getSellPrice(), Converter.BASE_TO_QUOTE);
|
||||
CryptoCurrencyEquivalence equivalence = new CryptoCurrencyEquivalence(baseAsset.getId(), quoteAsset.getId(), (int) (Math.pow(10, baseAsset.getPrecision()) * equiValue), new Date());
|
||||
CrystalDatabase.getAppDatabase(context).cryptoCurrencyEquivalenceDao().insertCryptoCurrencyEquivalence(equivalence);
|
||||
break;
|
||||
Converter converter = new Converter();
|
||||
order.getSellPrice().base.getAsset().setPrecision(baseAsset.getPrecision());
|
||||
order.getSellPrice().quote.getAsset().setPrecision(quoteAsset.getPrecision());
|
||||
double equiValue = converter.getConversionRate(order.getSellPrice(), Converter.BASE_TO_QUOTE);
|
||||
CryptoCurrencyEquivalence equivalence = new CryptoCurrencyEquivalence(baseAsset.getId(), quoteAsset.getId(), (int) (Math.pow(10, baseAsset.getPrecision()) * equiValue), new Date());
|
||||
CrystalDatabase.getAppDatabase(context).cryptoCurrencyEquivalenceDao().insertCryptoCurrencyEquivalence(equivalence);
|
||||
break;
|
||||
//}
|
||||
}catch(Exception e){
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue