Files
.github
admin
install
pages_template
qrcode
system
autoload
cache
controllers
accounts.php
admin.php
autoload.php
autoload_user.php
bandwidth.php
callback.php
codecanyon.php
community.php
customers.php
dashboard.php
default.php
export.php
home.php
index.html
login.php
logout.php
logs.php
map.php
message.php
order.php
page.php
pages.php
paymentgateway.php
plan.php
plugin.php
pluginmanager.php
pool.php
radius.php
register.php
reports.php
routers.php
services.php
settings.php
voucher.php
lan
paymentgateway
plugin
uploads
vendor
.htaccess
api.php
boot.php
composer.json
composer.lock
cron.php
cron_reminder.php
index.html
orm.php
updates.json
ui
.gitignore
.htaccess_firewall
CHANGELOG.md
LICENSE
README.md
composer.json
config.sample.php
favicon.ico
index.php
init.php
update.php
version.json
mitrobill/system/controllers/home.php

253 lines
12 KiB
PHP
Raw Normal View History

2017-03-11 02:51:06 +07:00
<?php
2022-09-11 11:02:30 +07:00
2017-03-11 02:51:06 +07:00
/**
2023-10-12 15:55:42 +07:00
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
* by https://t.me/ibnux
2022-09-11 11:02:30 +07:00
**/
2023-10-12 15:55:42 +07:00
2017-03-11 02:51:06 +07:00
_auth();
2024-02-13 13:54:01 +07:00
$ui->assign('_title', Lang::T('Dashboard'));
2017-03-11 02:51:06 +07:00
$user = User::_info();
$ui->assign('_user', $user);
2023-08-23 16:46:05 +07:00
if (isset($_GET['renewal'])) {
2023-08-15 10:27:46 +07:00
$user->auto_renewal = $_GET['renewal'];
$user->save();
}
2023-08-23 16:46:05 +07:00
if (_post('send') == 'balance') {
if ($config['enable_balance'] == 'yes' && $config['allow_balance_transfer'] == 'yes') {
2024-05-18 23:14:03 +07:00
if ($user['status'] == 'Active') {
2024-05-17 09:25:26 +07:00
_alert(Lang::T('This account status') . ' : ' . Lang::T($user['status']), 'danger', "");
}
2023-08-23 16:46:05 +07:00
$target = ORM::for_table('tbl_customers')->where('username', _post('username'))->find_one();
if (!$target) {
r2(U . 'home', 'd', Lang::T('Username not found'));
}
$username = _post('username');
$balance = _post('balance');
if ($user['balance'] < $balance) {
r2(U . 'home', 'd', Lang::T('insufficient balance'));
}
2023-09-13 16:23:51 +07:00
if (!empty($config['minimum_transfer']) && intval($balance) < intval($config['minimum_transfer'])) {
2023-08-24 11:52:43 +07:00
r2(U . 'home', 'd', Lang::T('Minimum Transfer') . ' ' . Lang::moneyFormat($config['minimum_transfer']));
}
2023-08-23 16:46:05 +07:00
if ($user['username'] == $target['username']) {
r2(U . 'home', 'd', Lang::T('Cannot send to yourself'));
}
2023-08-24 11:35:23 +07:00
if (Balance::transfer($user['id'], $username, $balance)) {
2023-08-23 16:46:05 +07:00
//sender
$d = ORM::for_table('tbl_payment_gateway')->create();
$d->username = $user['username'];
$d->gateway = $target['username'];
$d->plan_id = 0;
$d->plan_name = 'Send Balance';
$d->routers_id = 0;
$d->routers = 'balance';
$d->price = $balance;
$d->payment_method = "Customer";
$d->payment_channel = "Balance";
$d->created_date = date('Y-m-d H:i:s');
$d->paid_date = date('Y-m-d H:i:s');
$d->expired_date = date('Y-m-d H:i:s');
$d->pg_url_payment = 'balance';
$d->status = 2;
$d->save();
//receiver
$d = ORM::for_table('tbl_payment_gateway')->create();
$d->username = $target['username'];
$d->gateway = $user['username'];
$d->plan_id = 0;
$d->plan_name = 'Receive Balance';
$d->routers_id = 0;
$d->routers = 'balance';
$d->payment_method = "Customer";
$d->payment_channel = "Balance";
$d->price = $balance;
$d->created_date = date('Y-m-d H:i:s');
$d->paid_date = date('Y-m-d H:i:s');
$d->expired_date = date('Y-m-d H:i:s');
$d->pg_url_payment = 'balance';
$d->status = 2;
$d->save();
2023-09-13 16:23:51 +07:00
Message::sendBalanceNotification($user['phonenumber'], $target['fullname'] . ' (' . $target['username'] . ')', $balance, ($user['balance'] - $balance), Lang::getNotifText('balance_send'), $config['user_notification_payment']);
Message::sendBalanceNotification($target['phonenumber'], $user['fullname'] . ' (' . $user['username'] . ')', $balance, ($target['balance'] + $balance), Lang::getNotifText('balance_received'), $config['user_notification_payment']);
2023-08-24 11:35:23 +07:00
Message::sendTelegram("#u$user[username] send balance to #u$target[username] \n" . Lang::moneyFormat($balance));
2023-08-23 16:46:05 +07:00
r2(U . 'home', 's', Lang::T('Sending balance success'));
}
2023-08-24 11:35:23 +07:00
} else {
2023-09-13 15:38:56 +07:00
r2(U . 'home', 'd', Lang::T('Failed, balance is not available'));
}
2023-09-13 16:23:51 +07:00
} else if (_post('send') == 'plan') {
2024-05-18 23:14:03 +07:00
if ($user['status'] == 'Active') {
2024-05-17 09:25:26 +07:00
_alert(Lang::T('This account status') . ' : ' . Lang::T($user['status']), 'danger', "");
}
2024-04-05 11:18:28 +07:00
$actives = ORM::for_table('tbl_user_recharges')
2023-09-13 15:38:56 +07:00
->where('username', _post('username'))
2024-04-05 11:18:28 +07:00
->find_many();
foreach ($actives as $active) {
$router = ORM::for_table('tbl_routers')->where('name', $active['routers'])->find_one();
2024-04-05 11:18:28 +07:00
if ($router) {
r2(U . "order/send/$router[id]/$active[plan_id]&u=" . trim(_post('username')), 's', Lang::T('Review package before recharge'));
}
2023-08-23 16:46:05 +07:00
}
2024-04-05 11:18:28 +07:00
r2(U . 'home', 'w', Lang::T('Your friend do not have active package'));
2023-08-23 16:46:05 +07:00
}
2023-11-15 11:49:03 +07:00
$ui->assign('_bills', User::_billing());
2017-03-11 02:51:06 +07:00
if (isset($_GET['recharge']) && !empty($_GET['recharge'])) {
2024-05-18 23:14:03 +07:00
if ($user['status'] == 'Active') {
2024-05-17 09:25:26 +07:00
_alert(Lang::T('This account status') . ' : ' . Lang::T($user['status']), 'danger', "");
}
if (!empty(App::getTokenValue(_get('stoken')))) {
r2(U . "voucher/invoice/");
die();
}
2023-11-15 11:49:03 +07:00
$bill = ORM::for_table('tbl_user_recharges')->where('id', $_GET['recharge'])->where('username', $user['username'])->findOne();
if ($bill) {
if ($bill['routers'] == 'radius') {
$router = 'radius';
} else {
$routers = ORM::for_table('tbl_routers')->where('name', $bill['routers'])->find_one();
2024-04-14 21:13:11 +07:00
$router = $routers['id'];
}
2023-11-15 11:49:03 +07:00
if ($config['enable_balance'] == 'yes') {
$plan = ORM::for_table('tbl_plans')->find_one($bill['plan_id']);
if (!$plan['enabled']) {
r2(U . "home", 'e', 'Plan is not exists');
}
if ($user['balance'] > $plan['price']) {
r2(U . "order/pay/$router/$bill[plan_id]&stoken=" . _get('stoken'), 'e', 'Order Plan');
} else {
r2(U . "order/buy/$router/$bill[plan_id]", 'e', 'Order Plan');
2023-11-15 11:49:03 +07:00
}
} else {
r2(U . "order/buy/$router/$bill[plan_id]", 'e', 'Order Plan');
2023-09-21 16:04:18 +07:00
}
}
} else if (!empty(_get('extend'))) {
2024-05-18 23:14:03 +07:00
if ($user['status'] == 'Active') {
2024-05-17 09:25:26 +07:00
_alert(Lang::T('This account status') . ' : ' . Lang::T($user['status']), 'danger', "");
}
if (!$config['extend_expired']) {
r2(U . 'home', 'e', "cannot extend");
}
if (!empty(App::getTokenValue(_get('stoken')))) {
r2(U . 'home', 'e', "You already extend");
}
$id = _get('extend');
$tur = ORM::for_table('tbl_user_recharges')->where('customer_id', $user['id'])->where('id', $id)->find_one();
if ($tur) {
$m = date("m");
$path = $CACHE_PATH . DIRECTORY_SEPARATOR . "extends" . DIRECTORY_SEPARATOR;
2024-05-17 09:25:26 +07:00
if (!file_exists($path)) {
mkdir($path);
}
$path .= $user['id'] . ".txt";
if (file_exists($path)) {
// is already extend
$last = file_get_contents($path);
if ($last == $m) {
r2(U . 'home', 'e', "You already extend for this month");
}
}
if ($tur['status'] != 'on') {
if ($tur['routers'] != 'radius') {
$mikrotik = Mikrotik::info($tur['routers']);
$client = Mikrotik::getClient($mikrotik['ip_address'], $mikrotik['username'], $mikrotik['password']);
$router = $tur['routers'];
}
$p = ORM::for_table('tbl_plans')->findOne($tur['plan_id']);
2024-05-17 09:25:26 +07:00
if (!$p) {
2024-04-22 10:16:21 +07:00
r2(U . 'home', '3', "Plan Not Found");
}
if ($tur['routers'] == 'radius') {
2024-04-22 10:16:21 +07:00
Radius::customerAddPlan($user, $p, $tur['expiration'] . ' ' . $tur['time']);
} else {
if ($tur['type'] == 'Hotspot') {
2024-04-22 10:16:21 +07:00
Mikrotik::removeHotspotUser($client, $user['username']);
Mikrotik::addHotspotUser($client, $p, $user);
} else if ($tur['type'] == 'PPPOE') {
2024-04-22 10:16:21 +07:00
Mikrotik::removePpoeUser($client, $user['username']);
Mikrotik::addPpoeUser($client, $p, $user);
}
}
// make customer cannot extend again
2024-04-21 20:51:44 +07:00
$days = $config['extend_days'];
$expiration = date('Y-m-d', strtotime(" +$days day"));
$tur->expiration = $expiration;
$tur->status = "on";
$tur->save();
App::setToken(_get('stoken'), $id);
file_put_contents($path, $m);
2024-04-15 14:35:36 +07:00
_log("Customer $tur[customer_id] $tur[username] extend for $days days", "Customer", $user['id']);
2024-05-17 09:25:26 +07:00
Message::sendTelegram("#u$user[username] #extend #" . $p['type'] . " \n" . $p['name_plan'] .
"\nLocation: " . $p['routers'] .
"\nCustomer: " . $user['fullname'] .
"\nNew Expired: " . Lang::dateAndTimeFormat($expiration, $tur['time']));
r2(U . 'home', 's', "Extend until $expiration");
2024-05-17 09:25:26 +07:00
} else {
r2(U . 'home', 'e', "Plan is not expired");
}
} else {
r2(U . 'home', 'e', "Plan Not Found or Not Active");
}
} else if (isset($_GET['deactivate']) && !empty($_GET['deactivate'])) {
2023-11-15 11:49:03 +07:00
$bill = ORM::for_table('tbl_user_recharges')->where('id', $_GET['deactivate'])->where('username', $user['username'])->findOne();
2023-09-21 14:12:49 +07:00
if ($bill) {
2023-10-17 16:32:18 +07:00
$p = ORM::for_table('tbl_plans')->where('id', $bill['plan_id'])->find_one();
if ($p['is_radius']) {
2023-10-17 16:32:18 +07:00
Radius::customerDeactivate($user['username']);
} else {
try {
2023-10-17 16:32:18 +07:00
$mikrotik = Mikrotik::info($bill['routers']);
$client = Mikrotik::getClient($mikrotik['ip_address'], $mikrotik['username'], $mikrotik['password']);
if ($bill['type'] == 'Hotspot') {
Mikrotik::removeHotspotUser($client, $bill['username']);
Mikrotik::removeHotspotActiveUser($client, $bill['username']);
} else if ($bill['type'] == 'PPPOE') {
Mikrotik::removePpoeUser($client, $bill['username']);
Mikrotik::removePpoeActive($client, $bill['username']);
}
} catch (Exception $e) {
2023-10-17 16:32:18 +07:00
//ignore it maybe mikrotik has been deleted
}
2023-09-21 14:12:49 +07:00
}
$bill->status = 'off';
$bill->expiration = date('Y-m-d');
$bill->time = date('H:i:s');
$bill->save();
2024-04-15 14:35:36 +07:00
_log('User ' . $bill['username'] . ' Deactivate ' . $bill['namebp'], 'Customer', $bill['customer_id']);
Message::sendTelegram('User u' . $bill['username'] . ' Deactivate ' . $bill['namebp']);
r2(U . 'home', 's', 'Success deactivate ' . $bill['namebp']);
} else {
2023-09-21 14:12:49 +07:00
r2(U . 'home', 'e', 'No Active Plan');
}
}
2023-06-15 15:26:38 +07:00
if (!empty($_SESSION['nux-mac']) && !empty($_SESSION['nux-ip'])) {
$ui->assign('nux_mac', $_SESSION['nux-mac']);
$ui->assign('nux_ip', $_SESSION['nux-ip']);
2023-11-15 11:49:03 +07:00
$bill = ORM::for_table('tbl_user_recharges')->where('id', $_GET['id'])->where('username', $user['username'])->findOne();
2023-06-15 15:26:38 +07:00
if ($_GET['mikrotik'] == 'login') {
$m = Mikrotik::info($bill['routers']);
$c = Mikrotik::getClient($m['ip_address'], $m['username'], $m['password']);
Mikrotik::logMeIn($c, $user['username'], $user['password'], $_SESSION['nux-ip'], $_SESSION['nux-mac']);
r2(U . 'home', 's', Lang::T('Login Request successfully'));
2023-08-23 16:46:05 +07:00
} else if ($_GET['mikrotik'] == 'logout') {
2023-06-15 15:26:38 +07:00
$m = Mikrotik::info($bill['routers']);
$c = Mikrotik::getClient($m['ip_address'], $m['username'], $m['password']);
Mikrotik::logMeOut($c, $user['username']);
r2(U . 'home', 's', Lang::T('Logout Request successfully'));
}
}
2022-09-11 11:02:30 +07:00
$ui->assign('unpaid', ORM::for_table('tbl_payment_gateway')
->where('username', $user['username'])
->where('status', 1)
->find_one());
2022-09-18 00:00:40 +07:00
run_hook('view_customer_dashboard'); #HOOK
2022-09-11 11:02:30 +07:00
$ui->display('user-dashboard.tpl');