mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
81 lines
2.3 KiB
Solidity
81 lines
2.3 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.8;
|
|
|
|
import {IPriceOracleGetter} from '../interfaces/IPriceOracleGetter.sol';
|
|
|
|
import {SafeMath} from '@openzeppelin/contracts/math/SafeMath.sol';
|
|
import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
|
|
import "../tokenization/base/DebtTokenBase.sol";
|
|
import "./ReserveLogic.sol";
|
|
|
|
/**
|
|
* @title UserLogic library
|
|
* @author Aave
|
|
* @notice Implements user specific logic.
|
|
*/
|
|
library UserLogic {
|
|
|
|
using SafeMath for uint256;
|
|
|
|
struct UserReserveData {
|
|
//defines if a specific deposit should or not be used as a collateral in borrows
|
|
bool useAsCollateral;
|
|
}
|
|
|
|
/**
|
|
* @dev checks if a user is allowed to borrow at a stable rate
|
|
* @param _reserve the reserve address
|
|
* @param _user the user
|
|
* @param _amount the amount the the user wants to borrow
|
|
* @return true if the user is allowed to borrow at a stable rate, false otherwise
|
|
**/
|
|
|
|
function isAllowedToBorrowAtStable(
|
|
UserReserveData storage _user,
|
|
ReserveLogic.ReserveData storage _reserve,
|
|
address _userAddress,
|
|
uint256 _amount
|
|
) external view returns (bool) {
|
|
if (!_reserve.isStableBorrowRateEnabled) return false;
|
|
|
|
return
|
|
!_user.useAsCollateral ||
|
|
!_reserve.usageAsCollateralEnabled ||
|
|
_amount > IERC20(_reserve.aTokenAddress).balanceOf(_userAddress);
|
|
}
|
|
|
|
/**
|
|
* @dev fetches the user current stable and variable debt balances
|
|
* @param _user the user
|
|
* @param _reserve the reserve object
|
|
* @return the stable and variable debt balance
|
|
**/
|
|
function getUserCurrentDebt(address _user,ReserveLogic.ReserveData storage _reserve)
|
|
internal
|
|
view
|
|
returns (uint256, uint256)
|
|
{
|
|
return (
|
|
IERC20(_reserve.stableDebtTokenAddress).balanceOf(_user),
|
|
IERC20(_reserve.variableDebtTokenAddress).balanceOf(_user)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dev fetches the user principal stable and variable debt balances
|
|
* @param _user the user
|
|
* @param _reserve the reserve object
|
|
* @return the stable and variable debt balance
|
|
**/
|
|
function getUserPrincipalDebt(address _user,ReserveLogic.ReserveData storage _reserve)
|
|
internal
|
|
view
|
|
returns (uint256, uint256)
|
|
{
|
|
return (
|
|
DebtTokenBase(_reserve.stableDebtTokenAddress).principalBalanceOf(_user),
|
|
DebtTokenBase(_reserve.variableDebtTokenAddress).principalBalanceOf(_user)
|
|
);
|
|
}
|
|
}
|