mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-12 22:48:06 +02:00
Per registrar currency now fully available
This commit is contained in:
parent
5711546f78
commit
a9e84a855e
20 changed files with 681 additions and 243 deletions
|
@ -32,7 +32,15 @@ try {
|
||||||
$price = 0;
|
$price = 0;
|
||||||
$domain_id = $id;
|
$domain_id = $id;
|
||||||
|
|
||||||
[$registrar_balance, $creditLimit] = $dbh->query("SELECT accountBalance,creditLimit FROM registrar WHERE id = '$reid' LIMIT 1")->fetch(PDO::FETCH_NUM);
|
$stmt = $dbh->prepare("
|
||||||
|
SELECT accountBalance, creditLimit, currency
|
||||||
|
FROM registrar
|
||||||
|
WHERE id = ?
|
||||||
|
LIMIT 1
|
||||||
|
");
|
||||||
|
$stmt->execute([$reid]);
|
||||||
|
|
||||||
|
[$registrar_balance, $creditLimit, $currency] = $stmt->fetch(PDO::FETCH_NUM);
|
||||||
|
|
||||||
if ($transfer_exdate) {
|
if ($transfer_exdate) {
|
||||||
[$date_add] = $dbh->query("SELECT PERIOD_DIFF(DATE_FORMAT(transfer_exdate, '%Y%m'), DATE_FORMAT(exdate, '%Y%m')) AS intval FROM domain WHERE name = '$name' LIMIT 1")->fetch(PDO::FETCH_NUM);
|
[$date_add] = $dbh->query("SELECT PERIOD_DIFF(DATE_FORMAT(transfer_exdate, '%Y%m'), DATE_FORMAT(exdate, '%Y%m')) AS intval FROM domain WHERE name = '$name' LIMIT 1")->fetch(PDO::FETCH_NUM);
|
||||||
|
@ -52,7 +60,7 @@ try {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$returnValue = getDomainPrice($dbh, $name, $tld_id, $date_add, 'transfer', $reid);
|
$returnValue = getDomainPrice($dbh, $name, $tld_id, $date_add, 'transfer', $reid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < $price) {
|
if (($registrar_balance + $creditLimit) < $price) {
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"guzzlehttp/guzzle": "^7.9",
|
"guzzlehttp/guzzle": "^7.9",
|
||||||
"league/flysystem-ftp": "^3.29",
|
"league/flysystem-ftp": "^3.29",
|
||||||
"phpmailer/phpmailer": "^6.9",
|
"phpmailer/phpmailer": "^6.9",
|
||||||
"league/plates": "^3.6"
|
"league/plates": "^3.6",
|
||||||
|
"moneyphp/money": "^4.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,18 +128,22 @@ class DomainLifecycleManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
private function handleAutoRenewal($domain_id, $name, $tldid, $exdate, $clid) {
|
private function handleAutoRenewal($domain_id, $name, $tldid, $exdate, $clid) {
|
||||||
// Get registrar balance and credit limit
|
// Get registrar balance, credit limit, and currency
|
||||||
$sthRegistrar = $this->dbh->prepare("
|
$sthRegistrar = $this->dbh->prepare("
|
||||||
SELECT accountBalance, creditLimit
|
SELECT accountBalance, creditLimit, currency
|
||||||
FROM registrar
|
FROM registrar
|
||||||
WHERE id = ?
|
WHERE id = ?
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
");
|
");
|
||||||
$sthRegistrar->execute([$clid]);
|
$sthRegistrar->execute([$clid]);
|
||||||
list($registrar_balance, $creditLimit) = $sthRegistrar->fetch(PDO::FETCH_NUM);
|
$registrar = $sthRegistrar->fetch(PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
|
$registrar_balance = $registrar['accountBalance'];
|
||||||
|
$creditLimit = $registrar['creditLimit'];
|
||||||
|
$currency = $registrar['currency'];
|
||||||
|
|
||||||
// Get domain price
|
// Get domain price
|
||||||
$returnValue = getDomainPrice($this->dbh, $name, $tldid, 12, 'renew', $clid);
|
$returnValue = getDomainPrice($this->dbh, $name, $tldid, 12, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) > $price) {
|
if (($registrar_balance + $creditLimit) > $price) {
|
||||||
|
|
|
@ -9,6 +9,11 @@ use Monolog\Formatter\LineFormatter;
|
||||||
use Ds\Map;
|
use Ds\Map;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Coroutine\Http\Client;
|
use Swoole\Coroutine\Http\Client;
|
||||||
|
use Money\Money;
|
||||||
|
use Money\Currency;
|
||||||
|
use Money\Converter;
|
||||||
|
use Money\Currencies\ISOCurrencies;
|
||||||
|
use Money\Exchange\FixedExchange;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up and returns a Logger instance.
|
* Sets up and returns a Logger instance.
|
||||||
|
@ -132,76 +137,191 @@ function processAbuseDetection($pdo, $domain, $clid, $abuseType, $evidenceLink,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDomainPrice($pdo, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null) {
|
function getDomainPrice($pdo, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null, $currency = 'USD') {
|
||||||
// Check if the domain is a premium domain
|
$cacheKey = "domain_price_{$domain_name}_{$tld_id}_{$date_add}_{$command}_{$registrar_id}_{$currency}";
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT c.category_price
|
// Try fetching from cache
|
||||||
FROM premium_domain_pricing p
|
if (function_exists('apcu_fetch')) {
|
||||||
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
$cached = apcu_fetch($cacheKey);
|
||||||
WHERE p.domain_name = ? AND p.tld_id = ?
|
if ($cached !== false) {
|
||||||
");
|
return $cached;
|
||||||
$stmt->execute([$domain_name, $tld_id]);
|
}
|
||||||
if ($stmt->rowCount() > 0) {
|
|
||||||
return ['type' => 'premium', 'price' => $stmt->fetch()['category_price']];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if there is a promotion for the domain
|
$exchangeRates = getExchangeRates();
|
||||||
|
$baseCurrency = $exchangeRates['base_currency'] ?? 'USD';
|
||||||
|
$exchangeRate = $exchangeRates['rates'][$currency] ?? 1.0;
|
||||||
|
|
||||||
|
// Check for premium pricing
|
||||||
|
$premiumPrice = apcu_fetch("premium_price_{$domain_name}_{$tld_id}") ?: fetchSingleValue(
|
||||||
|
$pdo,
|
||||||
|
'SELECT c.category_price
|
||||||
|
FROM premium_domain_pricing p
|
||||||
|
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
||||||
|
WHERE p.domain_name = ? AND p.tld_id = ?',
|
||||||
|
[$domain_name, $tld_id]
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!is_null($premiumPrice) && $premiumPrice !== false) {
|
||||||
|
$money = convertMoney(new Money((int) ($premiumPrice * 100), new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => 'premium', 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for active promotions
|
||||||
$currentDate = date('Y-m-d');
|
$currentDate = date('Y-m-d');
|
||||||
$stmt = $pdo->prepare("
|
$promo = apcu_fetch("promo_{$tld_id}") ?: fetchSingleRow(
|
||||||
SELECT discount_percentage, discount_amount
|
$pdo,
|
||||||
FROM promotion_pricing
|
"SELECT discount_percentage, discount_amount
|
||||||
WHERE tld_id = ?
|
FROM promotion_pricing
|
||||||
AND promo_type = 'full'
|
WHERE tld_id = ?
|
||||||
AND status = 'active'
|
AND promo_type = 'full'
|
||||||
AND start_date <= ?
|
AND status = 'active'
|
||||||
AND end_date >= ?
|
AND start_date <= ?
|
||||||
");
|
AND end_date >= ?",
|
||||||
$stmt->execute([$tld_id, $currentDate, $currentDate]);
|
[$tld_id, $currentDate, $currentDate]
|
||||||
if ($stmt->rowCount() > 0) {
|
);
|
||||||
$promo = $stmt->fetch();
|
|
||||||
$discount = null;
|
if ($promo) {
|
||||||
|
apcu_store("promo_{$tld_id}", $promo, 3600);
|
||||||
// Determine discount based on percentage or amount
|
|
||||||
if (!empty($promo['discount_percentage'])) {
|
|
||||||
$discount = $promo['discount_percentage']; // Percentage discount
|
|
||||||
} elseif (!empty($promo['discount_amount'])) {
|
|
||||||
$discount = $promo['discount_amount']; // Fixed amount discount
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$discount = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get regular price for the specified period
|
// Get regular price from DB
|
||||||
$priceColumn = "m" . $date_add;
|
$priceColumn = "m" . (int) $date_add;
|
||||||
$sql = "
|
$regularPrice = apcu_fetch("regular_price_{$tld_id}_{$command}_{$registrar_id}") ?: fetchSingleValue(
|
||||||
SELECT $priceColumn
|
$pdo,
|
||||||
FROM domain_price
|
"SELECT $priceColumn
|
||||||
WHERE tldid = ?
|
FROM domain_price
|
||||||
AND command = ?
|
WHERE tldid = ? AND command = ?
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
AND (registrar_id = ? OR registrar_id IS NULL)
|
||||||
ORDER BY registrar_id DESC
|
ORDER BY registrar_id DESC LIMIT 1",
|
||||||
LIMIT 1
|
[$tld_id, $command, $registrar_id]
|
||||||
";
|
);
|
||||||
$stmt = $pdo->prepare($sql);
|
|
||||||
$stmt->execute([$tld_id, $command, $registrar_id]);
|
|
||||||
|
|
||||||
if ($stmt->rowCount() > 0) {
|
|
||||||
$regularPrice = $stmt->fetch()[$priceColumn];
|
|
||||||
|
|
||||||
if ($discount !== null) {
|
if (!is_null($regularPrice) && $regularPrice !== false) {
|
||||||
if (isset($promo['discount_percentage'])) {
|
apcu_store("regular_price_{$tld_id}_{$command}_{$registrar_id}", $regularPrice, 1800);
|
||||||
$discountAmount = $regularPrice * ($promo['discount_percentage'] / 100);
|
|
||||||
|
$finalPrice = $regularPrice * 100; // Convert DB float to cents
|
||||||
|
if ($promo) {
|
||||||
|
if (!empty($promo['discount_percentage'])) {
|
||||||
|
$discountAmount = (int) ($finalPrice * ($promo['discount_percentage'] / 100));
|
||||||
} else {
|
} else {
|
||||||
$discountAmount = $discount;
|
$discountAmount = (int) ($promo['discount_amount'] * 100);
|
||||||
}
|
}
|
||||||
$price = $regularPrice - $discountAmount;
|
$finalPrice = max(0, $finalPrice - $discountAmount);
|
||||||
return ['type' => 'promotion', 'price' => $price];
|
$type = 'promotion';
|
||||||
|
} else {
|
||||||
|
$type = 'regular';
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'regular', 'price' => $regularPrice];
|
$money = convertMoney(new Money($finalPrice, new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => $type, 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'not_found', 'price' => 0];
|
return ['type' => 'not_found', 'price' => formatMoney(new Money(0, new Currency($currency)))];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load exchange rates from JSON file with APCu caching.
|
||||||
|
*/
|
||||||
|
function getExchangeRates() {
|
||||||
|
$cacheKey = 'exchange_rates';
|
||||||
|
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$filePath = "/var/www/cp/resources/exchange_rates.json";
|
||||||
|
$defaultRates = [
|
||||||
|
'base_currency' => 'USD',
|
||||||
|
'rates' => [
|
||||||
|
'USD' => 1.0 // Ensure USD always exists
|
||||||
|
],
|
||||||
|
'last_updated' => date('c') // ISO 8601 timestamp
|
||||||
|
];
|
||||||
|
|
||||||
|
if (!file_exists($filePath) || !is_readable($filePath)) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
$json = file_get_contents($filePath);
|
||||||
|
$data = json_decode($json, true);
|
||||||
|
|
||||||
|
if (!isset($data['base_currency'], $data['rates']) || !is_array($data['rates'])) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure base currency exists
|
||||||
|
if (!isset($data['rates'][$data['base_currency']])) {
|
||||||
|
$data['rates'][$data['base_currency']] = 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure every currency defaults to 1.0 if missing
|
||||||
|
foreach ($data['rates'] as $currency => $rate) {
|
||||||
|
if (!is_numeric($rate)) {
|
||||||
|
$data['rates'][$currency] = 1.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $data, 3600);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert MoneyPHP object to the target currency.
|
||||||
|
*/
|
||||||
|
function convertMoney(Money $amount, float $exchangeRate, string $currency) {
|
||||||
|
$currencies = new ISOCurrencies();
|
||||||
|
$exchange = new FixedExchange([
|
||||||
|
$amount->getCurrency()->getCode() => [
|
||||||
|
$currency => (string) $exchangeRate // Convert float to string
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
$converter = new Converter($currencies, $exchange);
|
||||||
|
|
||||||
|
return $converter->convert($amount, new Currency($currency));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format Money object back to a string (e.g., "10.00").
|
||||||
|
*/
|
||||||
|
function formatMoney(Money $money) {
|
||||||
|
return number_format($money->getAmount() / 100, 2, '.', '');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch a single value from the database using PDO.
|
||||||
|
*/
|
||||||
|
function fetchSingleValue($pdo, string $query, array $params) {
|
||||||
|
$stmt = $pdo->prepare($query);
|
||||||
|
$stmt->execute($params);
|
||||||
|
return $stmt->fetchColumn();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch a single row from the database using PDO.
|
||||||
|
*/
|
||||||
|
function fetchSingleRow($pdo, string $query, array $params) {
|
||||||
|
$stmt = $pdo->prepare($query);
|
||||||
|
$stmt->execute($params);
|
||||||
|
return $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateAuthInfo(): string {
|
function generateAuthInfo(): string {
|
||||||
|
|
|
@ -216,12 +216,13 @@ class ApplicationsController extends Controller
|
||||||
|
|
||||||
$date_add = 0;
|
$date_add = 0;
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -1073,14 +1074,15 @@ class ApplicationsController extends Controller
|
||||||
$clid = $registrar_id_domain;
|
$clid = $registrar_id_domain;
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$date_add = 12;
|
$date_add = 12;
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -357,12 +357,13 @@ class DomainsController extends Controller
|
||||||
$clid = $registrar_id;
|
$clid = $registrar_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -1768,12 +1769,13 @@ class DomainsController extends Controller
|
||||||
$date_add = 0;
|
$date_add = 0;
|
||||||
$date_add = ($renewalYears * 12);
|
$date_add = ($renewalYears * 12);
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'renew', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2088,7 +2090,8 @@ class DomainsController extends Controller
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
if ($addPeriod_id) {
|
if ($addPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $addPeriod, 'create', $clid);
|
$currency = $db->selectValue('SELECT currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $addPeriod, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2215,7 +2218,8 @@ class DomainsController extends Controller
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
if ($autoRenewPeriod_id) {
|
if ($autoRenewPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $autoRenewPeriod, 'renew', $clid);
|
$currency = $db->selectValue('SELECT currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $autoRenewPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2242,7 +2246,8 @@ class DomainsController extends Controller
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
if ($renewPeriod_id) {
|
if ($renewPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $renewPeriod, 'renew', $clid);
|
$currency = $db->selectValue('SELECT currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $renewPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2269,7 +2274,8 @@ class DomainsController extends Controller
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
if ($transferPeriod_id) {
|
if ($transferPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $transferPeriod, 'renew', $clid);
|
$currency = $db->selectValue('SELECT currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $transferPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2477,11 +2483,12 @@ class DomainsController extends Controller
|
||||||
$date_add = $transferYears * 12;
|
$date_add = $transferYears * 12;
|
||||||
|
|
||||||
if ($date_add > 0) {
|
if ($date_add > 0) {
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
@ -2750,9 +2757,10 @@ class DomainsController extends Controller
|
||||||
$date_add = 0;
|
$date_add = 0;
|
||||||
$price = 0;
|
$price = 0;
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$reid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$reid]);
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
if ($transfer_exdate) {
|
if ($transfer_exdate) {
|
||||||
$date_add = $db->selectValue(
|
$date_add = $db->selectValue(
|
||||||
|
@ -2762,7 +2770,7 @@ class DomainsController extends Controller
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < $price) {
|
if (($registrar_balance + $creditLimit) < $price) {
|
||||||
|
@ -3289,32 +3297,17 @@ class DomainsController extends Controller
|
||||||
$domain = $db->selectRow('SELECT tldid, exdate FROM domain WHERE name = ? LIMIT 1',
|
$domain = $db->selectRow('SELECT tldid, exdate FROM domain WHERE name = ? LIMIT 1',
|
||||||
[ $domainName ]);
|
[ $domainName ]);
|
||||||
$tldid = $domain['tldid'];
|
$tldid = $domain['tldid'];
|
||||||
|
|
||||||
$result = $db->selectRow('SELECT accountBalance, creditLimit FROM registrar WHERE id = ?', [$clid]);
|
$result = $db->selectRow('SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = ?', [$clid]);
|
||||||
|
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$renew_price = $db->selectValue(
|
$returnValue = getDomainPrice($db, $domainName, $tldid, 12, 'renew', $clid, $currency);
|
||||||
"SELECT m12
|
$renew_price = $returnValue['price'];
|
||||||
FROM domain_price
|
|
||||||
WHERE tldid = ?
|
|
||||||
AND command = ?
|
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
|
||||||
ORDER BY registrar_id DESC
|
|
||||||
LIMIT 1",
|
|
||||||
[$tldid, 'renew', $clid]
|
|
||||||
);
|
|
||||||
|
|
||||||
$restore_price = $db->selectValue(
|
$restore_price = getDomainRestorePrice($db, $tldid, $clid, $currency);
|
||||||
"SELECT price
|
|
||||||
FROM domain_restore_price
|
|
||||||
WHERE tldid = ?
|
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
|
||||||
ORDER BY registrar_id DESC
|
|
||||||
LIMIT 1",
|
|
||||||
[$tldid, $clid]
|
|
||||||
);
|
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < ($renew_price + $restore_price)) {
|
if (($registrar_balance + $creditLimit) < ($renew_price + $restore_price)) {
|
||||||
$this->container->get('flash')->addMessage('error', 'There is no money on the account for restore and renew');
|
$this->container->get('flash')->addMessage('error', 'There is no money on the account for restore and renew');
|
||||||
|
|
|
@ -208,7 +208,6 @@ $container->set('view', function ($container) {
|
||||||
|
|
||||||
// Make it accessible in templates
|
// Make it accessible in templates
|
||||||
$view->getEnvironment()->addGlobal('currency', $currency);
|
$view->getEnvironment()->addGlobal('currency', $currency);
|
||||||
$view->getEnvironment()->addGlobal('registry_currency', $_SESSION['registry_currency']);
|
|
||||||
|
|
||||||
// Check if the user is impersonated from the admin, otherwise default to false
|
// Check if the user is impersonated from the admin, otherwise default to false
|
||||||
$isAdminImpersonation = isset($_SESSION['impersonator']) ? $_SESSION['impersonator'] : false;
|
$isAdminImpersonation = isset($_SESSION['impersonator']) ? $_SESSION['impersonator'] : false;
|
||||||
|
|
|
@ -29,6 +29,12 @@ use libphonenumber\PhoneNumberUtil;
|
||||||
use libphonenumber\PhoneNumberFormat;
|
use libphonenumber\PhoneNumberFormat;
|
||||||
use libphonenumber\NumberParseException;
|
use libphonenumber\NumberParseException;
|
||||||
use ZxcvbnPhp\Zxcvbn;
|
use ZxcvbnPhp\Zxcvbn;
|
||||||
|
use Money\Money;
|
||||||
|
use Money\Currencies\ISOCurrencies;
|
||||||
|
use Money\Currency;
|
||||||
|
use Money\Exchange\FixedExchange;
|
||||||
|
use Money\Converter;
|
||||||
|
use Money\CurrencyPair;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return mixed|string|string[]
|
* @return mixed|string|string[]
|
||||||
|
@ -435,9 +441,23 @@ function extractDomainAndTLD($urlString) {
|
||||||
return ['domain' => $sld, 'tld' => $tld];
|
return ['domain' => $sld, 'tld' => $tld];
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDomainPrice($db, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null) {
|
function getDomainPrice($db, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null, $currency = 'USD') {
|
||||||
// Check if the domain is a premium domain
|
$cacheKey = "domain_price_{$domain_name}_{$tld_id}_{$date_add}_{$command}_{$registrar_id}_{$currency}";
|
||||||
$premiumDomain = $db->selectRow(
|
|
||||||
|
// Try fetching from cache
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$exchangeRates = getExchangeRates();
|
||||||
|
$baseCurrency = $exchangeRates['base_currency'] ?? 'USD';
|
||||||
|
$exchangeRate = $exchangeRates['rates'][$currency] ?? 1.0;
|
||||||
|
|
||||||
|
// Check for premium pricing
|
||||||
|
$premiumPrice = apcu_fetch("premium_price_{$domain_name}_{$tld_id}") ?: $db->selectValue(
|
||||||
'SELECT c.category_price
|
'SELECT c.category_price
|
||||||
FROM premium_domain_pricing p
|
FROM premium_domain_pricing p
|
||||||
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
||||||
|
@ -445,13 +465,17 @@ function getDomainPrice($db, $domain_name, $tld_id, $date_add = 12, $command = '
|
||||||
[$domain_name, $tld_id]
|
[$domain_name, $tld_id]
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($premiumDomain) {
|
if (!is_null($premiumPrice) && $premiumPrice !== false) {
|
||||||
return ['type' => 'premium', 'price' => $premiumDomain['category_price']];
|
$money = convertMoney(new Money((int) ($premiumPrice * 100), new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => 'premium', 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if there is a promotion for the domain
|
// Check for active promotions
|
||||||
$currentDate = date('Y-m-d');
|
$currentDate = date('Y-m-d');
|
||||||
$promo = $db->selectRow(
|
$promo = apcu_fetch("promo_{$tld_id}") ?: $db->selectRow(
|
||||||
"SELECT discount_percentage, discount_amount
|
"SELECT discount_percentage, discount_amount
|
||||||
FROM promotion_pricing
|
FROM promotion_pricing
|
||||||
WHERE tld_id = ?
|
WHERE tld_id = ?
|
||||||
|
@ -462,37 +486,167 @@ function getDomainPrice($db, $domain_name, $tld_id, $date_add = 12, $command = '
|
||||||
[$tld_id, $currentDate, $currentDate]
|
[$tld_id, $currentDate, $currentDate]
|
||||||
);
|
);
|
||||||
|
|
||||||
$discount = null;
|
|
||||||
if ($promo) {
|
if ($promo) {
|
||||||
if (!empty($promo['discount_percentage'])) {
|
apcu_store("promo_{$tld_id}", $promo, 3600);
|
||||||
$discount = $promo['discount_percentage']; // Percentage discount
|
|
||||||
} elseif (!empty($promo['discount_amount'])) {
|
|
||||||
$discount = $promo['discount_amount']; // Fixed amount discount
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get regular price for the specified period
|
// Get regular price from DB
|
||||||
$priceColumn = "m" . $date_add;
|
$priceColumn = "m" . (int) $date_add;
|
||||||
$regularPrice = $db->selectValue(
|
$regularPrice = apcu_fetch("regular_price_{$tld_id}_{$command}_{$registrar_id}") ?: $db->selectValue(
|
||||||
"SELECT $priceColumn FROM domain_price WHERE tldid = ? AND command = ? AND (registrar_id = ? OR registrar_id IS NULL) ORDER BY registrar_id DESC LIMIT 1",
|
"SELECT $priceColumn
|
||||||
|
FROM domain_price
|
||||||
|
WHERE tldid = ? AND command = ?
|
||||||
|
AND (registrar_id = ? OR registrar_id IS NULL)
|
||||||
|
ORDER BY registrar_id DESC LIMIT 1",
|
||||||
[$tld_id, $command, $registrar_id]
|
[$tld_id, $command, $registrar_id]
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($regularPrice !== false) {
|
if (!is_null($regularPrice) && $regularPrice !== false) {
|
||||||
if ($discount !== null) {
|
apcu_store("regular_price_{$tld_id}_{$command}_{$registrar_id}", $regularPrice, 1800);
|
||||||
if (isset($promo['discount_percentage'])) {
|
|
||||||
$discountAmount = $regularPrice * ($promo['discount_percentage'] / 100);
|
$finalPrice = $regularPrice * 100; // Convert DB float to cents
|
||||||
|
if ($promo) {
|
||||||
|
if (!empty($promo['discount_percentage'])) {
|
||||||
|
$discountAmount = (int) ($finalPrice * ($promo['discount_percentage'] / 100));
|
||||||
} else {
|
} else {
|
||||||
$discountAmount = $discount;
|
$discountAmount = (int) ($promo['discount_amount'] * 100);
|
||||||
}
|
}
|
||||||
$price = $regularPrice - $discountAmount;
|
$finalPrice = max(0, $finalPrice - $discountAmount);
|
||||||
return ['type' => 'promotion', 'price' => $price];
|
$type = 'promotion';
|
||||||
|
} else {
|
||||||
|
$type = 'regular';
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'regular', 'price' => $regularPrice];
|
$money = convertMoney(new Money($finalPrice, new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => $type, 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'not_found', 'price' => 0];
|
return ['type' => 'not_found', 'price' => formatMoney(new Money(0, new Currency($currency)))];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getDomainRestorePrice($db, $tld_id, $registrar_id = null, $currency = 'USD') {
|
||||||
|
$cacheKey = "domain_restore_price_{$tld_id}_{$registrar_id}_{$currency}";
|
||||||
|
|
||||||
|
// Try fetching from cache
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch exchange rates
|
||||||
|
$exchangeRates = getExchangeRates();
|
||||||
|
$baseCurrency = $exchangeRates['base_currency'] ?? 'USD';
|
||||||
|
$exchangeRate = $exchangeRates['rates'][$currency] ?? 1.0;
|
||||||
|
|
||||||
|
// Fetch restore price from DB
|
||||||
|
$restorePrice = $db->selectValue(
|
||||||
|
"SELECT price
|
||||||
|
FROM domain_restore_price
|
||||||
|
WHERE tldid = ?
|
||||||
|
AND (registrar_id = ? OR registrar_id IS NULL)
|
||||||
|
ORDER BY registrar_id DESC
|
||||||
|
LIMIT 1",
|
||||||
|
[$tld_id, $registrar_id]
|
||||||
|
);
|
||||||
|
|
||||||
|
// If no restore price is found, return 0.00
|
||||||
|
if (is_null($restorePrice) || $restorePrice === false) {
|
||||||
|
return '0.00';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to Money object for precision
|
||||||
|
$money = convertMoney(new Money((int) ($restorePrice * 100), new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
|
||||||
|
// Format and cache the result
|
||||||
|
$formattedPrice = formatMoney($money);
|
||||||
|
apcu_store($cacheKey, $formattedPrice, 1800); // Cache for 30 minutes
|
||||||
|
|
||||||
|
return $formattedPrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load exchange rates from JSON file with APCu caching.
|
||||||
|
*/
|
||||||
|
function getExchangeRates() {
|
||||||
|
$cacheKey = 'exchange_rates';
|
||||||
|
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$filePath = "/var/www/cp/resources/exchange_rates.json";
|
||||||
|
$defaultRates = [
|
||||||
|
'base_currency' => 'USD',
|
||||||
|
'rates' => [
|
||||||
|
'USD' => 1.0 // Ensure USD always exists
|
||||||
|
],
|
||||||
|
'last_updated' => date('c') // ISO 8601 timestamp
|
||||||
|
];
|
||||||
|
|
||||||
|
if (!file_exists($filePath) || !is_readable($filePath)) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
$json = file_get_contents($filePath);
|
||||||
|
$data = json_decode($json, true);
|
||||||
|
|
||||||
|
if (!isset($data['base_currency'], $data['rates']) || !is_array($data['rates'])) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure base currency exists
|
||||||
|
if (!isset($data['rates'][$data['base_currency']])) {
|
||||||
|
$data['rates'][$data['base_currency']] = 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure every currency defaults to 1.0 if missing
|
||||||
|
foreach ($data['rates'] as $currency => $rate) {
|
||||||
|
if (!is_numeric($rate)) {
|
||||||
|
$data['rates'][$currency] = 1.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $data, 3600);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert MoneyPHP object to the target currency.
|
||||||
|
*/
|
||||||
|
function convertMoney(Money $amount, float $exchangeRate, string $currency) {
|
||||||
|
$currencies = new ISOCurrencies();
|
||||||
|
$exchange = new FixedExchange([
|
||||||
|
$amount->getCurrency()->getCode() => [
|
||||||
|
$currency => (string) $exchangeRate // Convert float to string
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
$converter = new Converter($currencies, $exchange);
|
||||||
|
|
||||||
|
return $converter->convert($amount, new Currency($currency));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format Money object back to a string (e.g., "10.00").
|
||||||
|
*/
|
||||||
|
function formatMoney(Money $money) {
|
||||||
|
return number_format($money->getAmount() / 100, 2, '.', '');
|
||||||
}
|
}
|
||||||
|
|
||||||
function createUuidFromId($id) {
|
function createUuidFromId($id) {
|
||||||
|
|
|
@ -47,7 +47,8 @@
|
||||||
"utopia-php/messaging": "^0.12.0",
|
"utopia-php/messaging": "^0.12.0",
|
||||||
"brick/postcode": "^0.3.3",
|
"brick/postcode": "^0.3.3",
|
||||||
"utopia-php/system": "^0.9.0",
|
"utopia-php/system": "^0.9.0",
|
||||||
"bjeavons/zxcvbn-php": "^1.4"
|
"bjeavons/zxcvbn-php": "^1.4",
|
||||||
|
"moneyphp/money": "^4.6"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
8
cp/resources/exchange_rates.json
Normal file
8
cp/resources/exchange_rates.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"base_currency": "USD",
|
||||||
|
"rates": {
|
||||||
|
"EUR": 0.91,
|
||||||
|
"GBP": 0.78
|
||||||
|
},
|
||||||
|
"last_updated": "2025-02-12T12:00:00Z"
|
||||||
|
}
|
|
@ -117,7 +117,7 @@ if [[ ("$OS" == "Ubuntu" && "$VER" == "22.04") || ("$OS" == "Ubuntu" && "$VER" =
|
||||||
apt update -y
|
apt update -y
|
||||||
|
|
||||||
echo "Installing PHP and required extensions..."
|
echo "Installing PHP and required extensions..."
|
||||||
apt install -y ${PHP_VERSION} ${PHP_VERSION}-cli ${PHP_VERSION}-common ${PHP_VERSION}-curl ${PHP_VERSION}-ds ${PHP_VERSION}-fpm ${PHP_VERSION}-gd ${PHP_VERSION}-gmp ${PHP_VERSION}-gnupg ${PHP_VERSION}-igbinary ${PHP_VERSION}-imap ${PHP_VERSION}-intl ${PHP_VERSION}-mbstring ${PHP_VERSION}-opcache ${PHP_VERSION}-readline ${PHP_VERSION}-redis ${PHP_VERSION}-soap ${PHP_VERSION}-swoole ${PHP_VERSION}-uuid ${PHP_VERSION}-xml
|
apt install -y ${PHP_VERSION} ${PHP_VERSION}-apcu ${PHP_VERSION}-bcmath ${PHP_VERSION}-cli ${PHP_VERSION}-common ${PHP_VERSION}-curl ${PHP_VERSION}-ds ${PHP_VERSION}-fpm ${PHP_VERSION}-gd ${PHP_VERSION}-gmp ${PHP_VERSION}-gnupg ${PHP_VERSION}-igbinary ${PHP_VERSION}-imap ${PHP_VERSION}-intl ${PHP_VERSION}-mbstring ${PHP_VERSION}-opcache ${PHP_VERSION}-readline ${PHP_VERSION}-redis ${PHP_VERSION}-soap ${PHP_VERSION}-swoole ${PHP_VERSION}-uuid ${PHP_VERSION}-xml
|
||||||
|
|
||||||
# Set timezone to UTC if it's not already
|
# Set timezone to UTC if it's not already
|
||||||
currentTimezone=$(timedatectl status | grep "Time zone" | awk '{print $3}')
|
currentTimezone=$(timedatectl status | grep "Time zone" | awk '{print $3}')
|
||||||
|
|
|
@ -64,6 +64,8 @@ systemctl stop msg_worker
|
||||||
echo "Clearing cache..."
|
echo "Clearing cache..."
|
||||||
php /var/www/cp/bin/clear_cache.php
|
php /var/www/cp/bin/clear_cache.php
|
||||||
|
|
||||||
|
apt install -y php8.3-apcu php8.3-bcmath
|
||||||
|
|
||||||
# Clone the new version of the repository
|
# Clone the new version of the repository
|
||||||
echo "Cloning v1.0.15 from the repository..."
|
echo "Cloning v1.0.15 from the repository..."
|
||||||
git clone --branch v1.0.15 --single-branch https://github.com/getnamingo/registry /opt/registry1015
|
git clone --branch v1.0.15 --single-branch https://github.com/getnamingo/registry /opt/registry1015
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"guzzlehttp/guzzle": "^7.9.2",
|
"guzzlehttp/guzzle": "^7.9.2",
|
||||||
"league/flysystem": "^3.28",
|
"league/flysystem": "^3.28",
|
||||||
"selective/xmldsig": "^3.1",
|
"selective/xmldsig": "^3.1",
|
||||||
"namingo/rately": "^0.1.0"
|
"namingo/rately": "^0.1.0",
|
||||||
|
"moneyphp/money": "^4.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -373,18 +373,9 @@ function processDomainCheck($conn, $db, $xml, $trans, $clid) {
|
||||||
// Calculate or retrieve fee for this command
|
// Calculate or retrieve fee for this command
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, $commandName, $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, $commandName, $clid);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
$sth = $db->prepare("
|
$restore_price = getDomainRestorePrice($db, $tld_id, $clid, $currency);
|
||||||
SELECT price
|
|
||||||
FROM domain_restore_price
|
|
||||||
WHERE tldid = ?
|
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
|
||||||
ORDER BY registrar_id DESC
|
|
||||||
LIMIT 1
|
|
||||||
");
|
|
||||||
$sth->execute([$tld_id, $clid]);
|
|
||||||
$restore_price = $sth->fetchColumn();
|
|
||||||
|
|
||||||
if ($commandName == 'restore') {
|
if ($commandName == 'restore') {
|
||||||
$feeResponses[] = [
|
$feeResponses[] = [
|
||||||
'command' => $commandName,
|
'command' => $commandName,
|
||||||
|
|
|
@ -866,14 +866,15 @@ function processDomainCreate($conn, $db, $xml, $clid, $database_type, $trans, $m
|
||||||
$clid = $stmt->fetch(PDO::FETCH_ASSOC);
|
$clid = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
$clid = $clid['id'];
|
$clid = $clid['id'];
|
||||||
|
|
||||||
$stmt = $db->prepare("SELECT accountBalance, creditLimit FROM registrar WHERE id = :registrar_id LIMIT 1");
|
$stmt = $db->prepare("SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = :registrar_id LIMIT 1");
|
||||||
$stmt->bindParam(':registrar_id', $clid, PDO::PARAM_INT);
|
$stmt->bindParam(':registrar_id', $clid, PDO::PARAM_INT);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
$registrar_balance = $result['accountBalance'];
|
$registrar_balance = $result['accountBalance'];
|
||||||
$creditLimit = $result['creditLimit'];
|
$creditLimit = $result['creditLimit'];
|
||||||
|
$currency = $result['currency'];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tld_id, $date_add, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!$price) {
|
if (!$price) {
|
||||||
|
|
|
@ -225,12 +225,13 @@ function processDomainDelete($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
$renewPeriod = $result['renewPeriod'];
|
$renewPeriod = $result['renewPeriod'];
|
||||||
$renewedDate = $result['renewedDate'];
|
$renewedDate = $result['renewedDate'];
|
||||||
$transferPeriod = $result['transferPeriod'];
|
$transferPeriod = $result['transferPeriod'];
|
||||||
|
|
||||||
$stmt = $db->prepare("SELECT id FROM registrar WHERE clid = :clid LIMIT 1");
|
$stmt = $db->prepare("SELECT id, currency FROM registrar WHERE clid = :clid LIMIT 1");
|
||||||
$stmt->bindParam(':clid', $clid, PDO::PARAM_STR);
|
$stmt->bindParam(':clid', $clid, PDO::PARAM_STR);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
$clid = $stmt->fetch(PDO::FETCH_ASSOC);
|
$result2 = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
$clid = $clid['id'];
|
$clid = $result2['id'];
|
||||||
|
$currency = $result2['currency'];
|
||||||
|
|
||||||
if ($clid != $registrar_id_domain) {
|
if ($clid != $registrar_id_domain) {
|
||||||
sendEppError($conn, $db, 2201, 'Domain belongs to another registrar', $clTRID, $trans);
|
sendEppError($conn, $db, 2201, 'Domain belongs to another registrar', $clTRID, $trans);
|
||||||
|
@ -307,7 +308,7 @@ function processDomainDelete($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
$addPeriod_id = $stmt->fetchColumn();
|
$addPeriod_id = $stmt->fetchColumn();
|
||||||
|
|
||||||
if ($addPeriod_id) {
|
if ($addPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $addPeriod, 'create', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $addPeriod, 'create', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!isset($price)) {
|
if (!isset($price)) {
|
||||||
|
@ -365,7 +366,7 @@ function processDomainDelete($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
$autoRenewPeriod_id = $stmt->fetchColumn();
|
$autoRenewPeriod_id = $stmt->fetchColumn();
|
||||||
|
|
||||||
if ($autoRenewPeriod_id) {
|
if ($autoRenewPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $autoRenewPeriod, 'renew', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $autoRenewPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!isset($price)) {
|
if (!isset($price)) {
|
||||||
|
@ -388,7 +389,7 @@ function processDomainDelete($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
$renewPeriod_id = $stmt->fetchColumn();
|
$renewPeriod_id = $stmt->fetchColumn();
|
||||||
|
|
||||||
if ($renewPeriod_id) {
|
if ($renewPeriod_id) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $renewPeriod, 'renew', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $renewPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!isset($price)) {
|
if (!isset($price)) {
|
||||||
|
@ -413,7 +414,7 @@ function processDomainDelete($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
if ($transferPeriod_id) {
|
if ($transferPeriod_id) {
|
||||||
// Return money if a transfer was also a renew
|
// Return money if a transfer was also a renew
|
||||||
if ($transferPeriod > 0) {
|
if ($transferPeriod > 0) {
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $transferPeriod, 'renew', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $transferPeriod, 'renew', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (!isset($price)) {
|
if (!isset($price)) {
|
||||||
|
|
|
@ -106,14 +106,15 @@ function processDomainRenew($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check registrar account balance
|
// Check registrar account balance
|
||||||
$stmt = $db->prepare("SELECT accountBalance, creditLimit FROM registrar WHERE id = :registrarId LIMIT 1");
|
$stmt = $db->prepare("SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = :registrarId LIMIT 1");
|
||||||
$stmt->bindParam(':registrarId', $clid['id'], PDO::PARAM_INT);
|
$stmt->bindParam(':registrarId', $clid['id'], PDO::PARAM_INT);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
$registrar_balance = $row['accountBalance'];
|
$registrar_balance = $row['accountBalance'];
|
||||||
$creditLimit = $row['creditLimit'];
|
$creditLimit = $row['creditLimit'];
|
||||||
|
$currency = $row['currency'];
|
||||||
$returnValue = getDomainPrice($db, $domainData['name'], $domainData['tldid'], $date_add, 'renew', $clid);
|
|
||||||
|
$returnValue = getDomainPrice($db, $domainData['name'], $domainData['tldid'], $date_add, 'renew', $clid['id'], $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < $price) {
|
if (($registrar_balance + $creditLimit) < $price) {
|
||||||
|
|
|
@ -470,7 +470,12 @@ function processDomainTransfer($conn, $db, $xml, $clid, $database_type, $trans)
|
||||||
$stmt->execute([$domainName]);
|
$stmt->execute([$domainName]);
|
||||||
$date_add = $stmt->fetchColumn();
|
$date_add = $stmt->fetchColumn();
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid);
|
$stmt = $db->prepare("SELECT currency FROM registrar WHERE id = :registrar_id LIMIT 1");
|
||||||
|
$stmt->execute([':registrar_id' => $clid]);
|
||||||
|
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
|
$currency = $result["currency"];
|
||||||
|
|
||||||
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < $price) {
|
if (($registrar_balance + $creditLimit) < $price) {
|
||||||
|
@ -1022,13 +1027,14 @@ function processDomainTransfer($conn, $db, $xml, $clid, $database_type, $trans)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$stmt = $db->prepare("SELECT accountBalance, creditLimit FROM registrar WHERE id = :registrar_id LIMIT 1");
|
$stmt = $db->prepare("SELECT accountBalance, creditLimit, currency FROM registrar WHERE id = :registrar_id LIMIT 1");
|
||||||
$stmt->execute([':registrar_id' => $clid]);
|
$stmt->execute([':registrar_id' => $clid]);
|
||||||
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
$registrar_balance = $result["accountBalance"];
|
$registrar_balance = $result["accountBalance"];
|
||||||
$creditLimit = $result["creditLimit"];
|
$creditLimit = $result["creditLimit"];
|
||||||
|
$currency = $result["currency"];
|
||||||
|
|
||||||
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid);
|
$returnValue = getDomainPrice($db, $domainName, $tldid, $date_add, 'transfer', $clid, $currency);
|
||||||
$price = $returnValue['price'];
|
$price = $returnValue['price'];
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < $price) {
|
if (($registrar_balance + $creditLimit) < $price) {
|
||||||
|
|
|
@ -1844,32 +1844,14 @@ function processDomainUpdate($conn, $db, $xml, $clid, $database_type, $trans) {
|
||||||
$temp_id = $sth->fetchColumn();
|
$temp_id = $sth->fetchColumn();
|
||||||
|
|
||||||
if ($temp_id == 1) {
|
if ($temp_id == 1) {
|
||||||
$sth = $db->prepare("SELECT accountBalance,creditLimit FROM registrar WHERE id = ?");
|
$sth = $db->prepare("SELECT accountBalance,creditLimit,currency FROM registrar WHERE id = ?");
|
||||||
$sth->execute([$clid]);
|
$sth->execute([$clid]);
|
||||||
list($registrar_balance, $creditLimit) = $sth->fetch();
|
list($registrar_balance, $creditLimit, $currency) = $sth->fetch();
|
||||||
|
|
||||||
$sth = $db->prepare("
|
$returnValue = getDomainPrice($db, $domainName, $row['tldid'], 12, 'renew', $clid, $currency);
|
||||||
SELECT m12
|
$renew_price = $returnValue['price'];
|
||||||
FROM domain_price
|
|
||||||
WHERE tldid = ?
|
|
||||||
AND command = 'renew'
|
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
|
||||||
ORDER BY registrar_id DESC
|
|
||||||
LIMIT 1
|
|
||||||
");
|
|
||||||
$sth->execute([$row['tldid'], $clid]);
|
|
||||||
$renew_price = $sth->fetchColumn();
|
|
||||||
|
|
||||||
$sth = $db->prepare("
|
$restore_price = getDomainRestorePrice($db, $row['tldid'], $clid, $currency);
|
||||||
SELECT price
|
|
||||||
FROM domain_restore_price
|
|
||||||
WHERE tldid = ?
|
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
|
||||||
ORDER BY registrar_id DESC
|
|
||||||
LIMIT 1
|
|
||||||
");
|
|
||||||
$sth->execute([$row['tldid'], $clid]);
|
|
||||||
$restore_price = $sth->fetchColumn();
|
|
||||||
|
|
||||||
if (($registrar_balance + $creditLimit) < ($renew_price + $restore_price)) {
|
if (($registrar_balance + $creditLimit) < ($renew_price + $restore_price)) {
|
||||||
sendEppError($conn, $db, 2104, 'There is no money on the account for restore and renew', $clTRID, $trans);
|
sendEppError($conn, $db, 2104, 'There is no money on the account for restore and renew', $clTRID, $trans);
|
||||||
|
|
|
@ -12,6 +12,11 @@ use League\Flysystem\Local\LocalFilesystemAdapter;
|
||||||
use League\Flysystem\Filesystem;
|
use League\Flysystem\Filesystem;
|
||||||
use MatthiasMullie\Scrapbook\Adapters\Flysystem as ScrapbookFlysystem;
|
use MatthiasMullie\Scrapbook\Adapters\Flysystem as ScrapbookFlysystem;
|
||||||
use MatthiasMullie\Scrapbook\Psr6\Pool;
|
use MatthiasMullie\Scrapbook\Psr6\Pool;
|
||||||
|
use Money\Money;
|
||||||
|
use Money\Currency;
|
||||||
|
use Money\Converter;
|
||||||
|
use Money\Currencies\ISOCurrencies;
|
||||||
|
use Money\Exchange\FixedExchange;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up and returns a Logger instance.
|
* Sets up and returns a Logger instance.
|
||||||
|
@ -602,76 +607,234 @@ function updatePermittedIPs($pool, $permittedIPsTable) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDomainPrice($pdo, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null) {
|
function getDomainPrice($pdo, $domain_name, $tld_id, $date_add = 12, $command = 'create', $registrar_id = null, $currency = 'USD') {
|
||||||
// Check if the domain is a premium domain
|
$cacheKey = "domain_price_{$domain_name}_{$tld_id}_{$date_add}_{$command}_{$registrar_id}_{$currency}";
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT c.category_price
|
// Try fetching from cache
|
||||||
FROM premium_domain_pricing p
|
if (function_exists('apcu_fetch')) {
|
||||||
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
$cached = apcu_fetch($cacheKey);
|
||||||
WHERE p.domain_name = ? AND p.tld_id = ?
|
if ($cached !== false) {
|
||||||
");
|
return $cached;
|
||||||
$stmt->execute([$domain_name, $tld_id]);
|
}
|
||||||
if ($stmt->rowCount() > 0) {
|
|
||||||
return ['type' => 'premium', 'price' => number_format((float)$stmt->fetch()['category_price'], 2, '.', '')];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if there is a promotion for the domain
|
$exchangeRates = getExchangeRates();
|
||||||
|
$baseCurrency = $exchangeRates['base_currency'] ?? 'USD';
|
||||||
|
$exchangeRate = $exchangeRates['rates'][$currency] ?? 1.0;
|
||||||
|
|
||||||
|
// Check for premium pricing
|
||||||
|
$premiumPrice = apcu_fetch("premium_price_{$domain_name}_{$tld_id}") ?: fetchSingleValue(
|
||||||
|
$pdo,
|
||||||
|
'SELECT c.category_price
|
||||||
|
FROM premium_domain_pricing p
|
||||||
|
JOIN premium_domain_categories c ON p.category_id = c.category_id
|
||||||
|
WHERE p.domain_name = ? AND p.tld_id = ?',
|
||||||
|
[$domain_name, $tld_id]
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!is_null($premiumPrice) && $premiumPrice !== false) {
|
||||||
|
$money = convertMoney(new Money((int) ($premiumPrice * 100), new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => 'premium', 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for active promotions
|
||||||
$currentDate = date('Y-m-d');
|
$currentDate = date('Y-m-d');
|
||||||
$stmt = $pdo->prepare("
|
$promo = apcu_fetch("promo_{$tld_id}") ?: fetchSingleRow(
|
||||||
SELECT discount_percentage, discount_amount
|
$pdo,
|
||||||
FROM promotion_pricing
|
"SELECT discount_percentage, discount_amount
|
||||||
WHERE tld_id = ?
|
FROM promotion_pricing
|
||||||
AND promo_type = 'full'
|
WHERE tld_id = ?
|
||||||
AND status = 'active'
|
AND promo_type = 'full'
|
||||||
AND start_date <= ?
|
AND status = 'active'
|
||||||
AND end_date >= ?
|
AND start_date <= ?
|
||||||
");
|
AND end_date >= ?",
|
||||||
$stmt->execute([$tld_id, $currentDate, $currentDate]);
|
[$tld_id, $currentDate, $currentDate]
|
||||||
if ($stmt->rowCount() > 0) {
|
);
|
||||||
$promo = $stmt->fetch();
|
|
||||||
$discount = null;
|
if ($promo) {
|
||||||
|
apcu_store("promo_{$tld_id}", $promo, 3600);
|
||||||
// Determine discount based on percentage or amount
|
|
||||||
if (!empty($promo['discount_percentage'])) {
|
|
||||||
$discount = $promo['discount_percentage']; // Percentage discount
|
|
||||||
} elseif (!empty($promo['discount_amount'])) {
|
|
||||||
$discount = $promo['discount_amount']; // Fixed amount discount
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$discount = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get regular price for the specified period
|
// Get regular price from DB
|
||||||
$priceColumn = "m" . $date_add;
|
$priceColumn = "m" . (int) $date_add;
|
||||||
$sql = "
|
$regularPrice = apcu_fetch("regular_price_{$tld_id}_{$command}_{$registrar_id}") ?: fetchSingleValue(
|
||||||
SELECT $priceColumn
|
$pdo,
|
||||||
FROM domain_price
|
"SELECT $priceColumn
|
||||||
WHERE tldid = ?
|
FROM domain_price
|
||||||
AND command = ?
|
WHERE tldid = ? AND command = ?
|
||||||
AND (registrar_id = ? OR registrar_id IS NULL)
|
AND (registrar_id = ? OR registrar_id IS NULL)
|
||||||
ORDER BY registrar_id DESC
|
ORDER BY registrar_id DESC LIMIT 1",
|
||||||
LIMIT 1
|
[$tld_id, $command, $registrar_id]
|
||||||
";
|
);
|
||||||
$stmt = $pdo->prepare($sql);
|
|
||||||
$stmt->execute([$tld_id, $command, $registrar_id]);
|
|
||||||
|
|
||||||
if ($stmt->rowCount() > 0) {
|
|
||||||
$regularPrice = $stmt->fetch()[$priceColumn];
|
|
||||||
|
|
||||||
if ($discount !== null) {
|
if (!is_null($regularPrice) && $regularPrice !== false) {
|
||||||
if (isset($promo['discount_percentage'])) {
|
apcu_store("regular_price_{$tld_id}_{$command}_{$registrar_id}", $regularPrice, 1800);
|
||||||
$discountAmount = $regularPrice * ($promo['discount_percentage'] / 100);
|
|
||||||
|
$finalPrice = $regularPrice * 100; // Convert DB float to cents
|
||||||
|
if ($promo) {
|
||||||
|
if (!empty($promo['discount_percentage'])) {
|
||||||
|
$discountAmount = (int) ($finalPrice * ($promo['discount_percentage'] / 100));
|
||||||
} else {
|
} else {
|
||||||
$discountAmount = $discount;
|
$discountAmount = (int) ($promo['discount_amount'] * 100);
|
||||||
}
|
}
|
||||||
$price = $regularPrice - $discountAmount;
|
$finalPrice = max(0, $finalPrice - $discountAmount);
|
||||||
return ['type' => 'promotion', 'price' => number_format((float)$price, 2, '.', '')];
|
$type = 'promotion';
|
||||||
|
} else {
|
||||||
|
$type = 'regular';
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'regular', 'price' => number_format((float)$regularPrice, 2, '.', '')];
|
$money = convertMoney(new Money($finalPrice, new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
$result = ['type' => $type, 'price' => formatMoney($money)];
|
||||||
|
|
||||||
|
apcu_store($cacheKey, $result, 1800);
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ['type' => 'not_found', 'price' => 0];
|
return ['type' => 'not_found', 'price' => formatMoney(new Money(0, new Currency($currency)))];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getDomainRestorePrice($pdo, $tld_id, $registrar_id = null, $currency = 'USD') {
|
||||||
|
$cacheKey = "domain_restore_price_{$tld_id}_{$registrar_id}_{$currency}";
|
||||||
|
|
||||||
|
// Try fetching from cache
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fetch exchange rates
|
||||||
|
$exchangeRates = getExchangeRates();
|
||||||
|
$baseCurrency = $exchangeRates['base_currency'] ?? 'USD';
|
||||||
|
$exchangeRate = $exchangeRates['rates'][$currency] ?? 1.0;
|
||||||
|
|
||||||
|
// Fetch restore price from DB
|
||||||
|
$restorePrice = fetchSingleValue(
|
||||||
|
$pdo,
|
||||||
|
"SELECT price
|
||||||
|
FROM domain_restore_price
|
||||||
|
WHERE tldid = ?
|
||||||
|
AND (registrar_id = ? OR registrar_id IS NULL)
|
||||||
|
ORDER BY registrar_id DESC
|
||||||
|
LIMIT 1",
|
||||||
|
[$tld_id, $registrar_id]
|
||||||
|
);
|
||||||
|
|
||||||
|
// If no restore price is found, return 0.00
|
||||||
|
if (is_null($restorePrice) || $restorePrice === false) {
|
||||||
|
return '0.00';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to Money object for precision
|
||||||
|
$money = convertMoney(new Money((int) ($restorePrice * 100), new Currency($baseCurrency)), $exchangeRate, $currency);
|
||||||
|
|
||||||
|
// Format and cache the result
|
||||||
|
$formattedPrice = formatMoney($money);
|
||||||
|
apcu_store($cacheKey, $formattedPrice, 1800); // Cache for 30 minutes
|
||||||
|
|
||||||
|
return $formattedPrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load exchange rates from JSON file with APCu caching.
|
||||||
|
*/
|
||||||
|
function getExchangeRates() {
|
||||||
|
$cacheKey = 'exchange_rates';
|
||||||
|
|
||||||
|
if (function_exists('apcu_fetch')) {
|
||||||
|
$cached = apcu_fetch($cacheKey);
|
||||||
|
if ($cached !== false) {
|
||||||
|
return $cached;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$filePath = "/var/www/cp/resources/exchange_rates.json";
|
||||||
|
$defaultRates = [
|
||||||
|
'base_currency' => 'USD',
|
||||||
|
'rates' => [
|
||||||
|
'USD' => 1.0 // Ensure USD always exists
|
||||||
|
],
|
||||||
|
'last_updated' => date('c') // ISO 8601 timestamp
|
||||||
|
];
|
||||||
|
|
||||||
|
if (!file_exists($filePath) || !is_readable($filePath)) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
$json = file_get_contents($filePath);
|
||||||
|
$data = json_decode($json, true);
|
||||||
|
|
||||||
|
if (!isset($data['base_currency'], $data['rates']) || !is_array($data['rates'])) {
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $defaultRates, 3600);
|
||||||
|
}
|
||||||
|
return $defaultRates;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure base currency exists
|
||||||
|
if (!isset($data['rates'][$data['base_currency']])) {
|
||||||
|
$data['rates'][$data['base_currency']] = 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure every currency defaults to 1.0 if missing
|
||||||
|
foreach ($data['rates'] as $currency => $rate) {
|
||||||
|
if (!is_numeric($rate)) {
|
||||||
|
$data['rates'][$currency] = 1.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (function_exists('apcu_store')) {
|
||||||
|
apcu_store($cacheKey, $data, 3600);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert MoneyPHP object to the target currency.
|
||||||
|
*/
|
||||||
|
function convertMoney(Money $amount, float $exchangeRate, string $currency) {
|
||||||
|
$currencies = new ISOCurrencies();
|
||||||
|
$exchange = new FixedExchange([
|
||||||
|
$amount->getCurrency()->getCode() => [
|
||||||
|
$currency => (string) $exchangeRate // Convert float to string
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
$converter = new Converter($currencies, $exchange);
|
||||||
|
|
||||||
|
return $converter->convert($amount, new Currency($currency));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format Money object back to a string (e.g., "10.00").
|
||||||
|
*/
|
||||||
|
function formatMoney(Money $money) {
|
||||||
|
return number_format($money->getAmount() / 100, 2, '.', '');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch a single value from the database using PDO.
|
||||||
|
*/
|
||||||
|
function fetchSingleValue($pdo, string $query, array $params) {
|
||||||
|
$stmt = $pdo->prepare($query);
|
||||||
|
$stmt->execute($params);
|
||||||
|
return $stmt->fetchColumn();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch a single row from the database using PDO.
|
||||||
|
*/
|
||||||
|
function fetchSingleRow($pdo, string $query, array $params) {
|
||||||
|
$stmt = $pdo->prepare($query);
|
||||||
|
$stmt->execute($params);
|
||||||
|
return $stmt->fetch(PDO::FETCH_ASSOC);
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateAuthInfo(): string {
|
function generateAuthInfo(): string {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue