2020-06-20 23:40:03 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
|
|
|
pragma solidity ^0.6.8;
|
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
import {CoreLibrary} from './CoreLibrary.sol';
|
|
|
|
import {IPriceOracleGetter} from '../interfaces/IPriceOracleGetter.sol';
|
|
|
|
import {IFeeProvider} from '../interfaces/IFeeProvider.sol';
|
2020-06-20 23:40:03 +00:00
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
import {SafeMath} from '@openzeppelin/contracts/math/SafeMath.sol';
|
|
|
|
import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
|
|
|
|
import "../tokenization/base/DebtTokenBase.sol";
|
2020-06-20 23:40:03 +00:00
|
|
|
|
2020-06-27 02:13:32 +00:00
|
|
|
/**
|
2020-06-30 12:09:28 +00:00
|
|
|
* @title UserLogic library
|
|
|
|
* @author Aave
|
|
|
|
* @notice Implements user specific logic.
|
|
|
|
*/
|
2020-06-20 23:40:03 +00:00
|
|
|
library UserLogic {
|
2020-06-30 12:09:28 +00:00
|
|
|
using CoreLibrary for CoreLibrary.UserReserveData;
|
|
|
|
using CoreLibrary for CoreLibrary.ReserveData;
|
|
|
|
using SafeMath for uint256;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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(
|
|
|
|
CoreLibrary.UserReserveData storage _user,
|
|
|
|
CoreLibrary.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);
|
|
|
|
}
|
|
|
|
|
2020-07-07 15:14:44 +00:00
|
|
|
function getUserCurrentDebt(address _user,CoreLibrary.ReserveData storage _reserve)
|
2020-06-30 12:09:28 +00:00
|
|
|
internal
|
|
|
|
view
|
|
|
|
returns (uint256, uint256)
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
IERC20(_reserve.stableDebtTokenAddress).balanceOf(_user),
|
|
|
|
IERC20(_reserve.variableDebtTokenAddress).balanceOf(_user)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-07 15:14:44 +00:00
|
|
|
function getUserPrincipalDebt(address _user,CoreLibrary.ReserveData storage _reserve)
|
2020-06-30 12:09:28 +00:00
|
|
|
internal
|
|
|
|
view
|
|
|
|
returns (uint256, uint256)
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
DebtTokenBase(_reserve.stableDebtTokenAddress).principalBalanceOf(_user),
|
|
|
|
DebtTokenBase(_reserve.variableDebtTokenAddress).principalBalanceOf(_user)
|
|
|
|
);
|
|
|
|
}
|
2020-06-20 23:40:03 +00:00
|
|
|
}
|