mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-13 11:48:19 +08:00
138 lines
6.3 KiB
PHP
138 lines
6.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
* by https://t.me/ibnux
|
|
**/
|
|
|
|
if (isset($routes['1'])) {
|
|
$do = $routes['1'];
|
|
} else {
|
|
$do = 'login-display';
|
|
}
|
|
|
|
switch ($do) {
|
|
case 'post':
|
|
$username = _post('username');
|
|
$password = _post('password');
|
|
run_hook('customer_login'); #HOOK
|
|
if ($username != '' and $password != '') {
|
|
$d = ORM::for_table('tbl_customers')->where('username', $username)->find_one();
|
|
if ($d) {
|
|
$d_pass = $d['password'];
|
|
if (Password::_uverify($password, $d_pass) == true) {
|
|
$_SESSION['uid'] = $d['id'];
|
|
$d->last_login = date('Y-m-d H:i:s');
|
|
$d->save();
|
|
_log($username . ' ' . $_L['Login_Successful'], 'User', $d['id']);
|
|
r2(U . 'home');
|
|
} else {
|
|
_msglog('e', $_L['Invalid_Username_or_Password']);
|
|
_log($username . ' ' . $_L['Failed_Login'], 'User');
|
|
r2(U . 'login');
|
|
}
|
|
} else {
|
|
_msglog('e', $_L['Invalid_Username_or_Password']);
|
|
r2(U . 'login');
|
|
}
|
|
} else {
|
|
_msglog('e', $_L['Invalid_Username_or_Password']);
|
|
r2(U . 'login');
|
|
}
|
|
|
|
break;
|
|
|
|
case 'activation':
|
|
$voucher = _post('voucher');
|
|
$username = _post('username');
|
|
$v1 = ORM::for_table('tbl_voucher')->where('code', $voucher)->find_one();
|
|
if ($v1) {
|
|
// coucher exists, check customer exists or not
|
|
$user = ORM::for_table('tbl_customers')->where('username', $username)->find_one();
|
|
if (!$user) {
|
|
$d = ORM::for_table('tbl_customers')->create();
|
|
$d->username = alphanumeric($username, "+_.");
|
|
$d->password = $voucher;
|
|
$d->fullname = '';
|
|
$d->address = '';
|
|
$d->email = '';
|
|
$d->phonenumber = (strlen($username) < 21) ? $username : '';
|
|
if ($d->save()) {
|
|
$user = ORM::for_table('tbl_customers')->where('username', $username)->find_one($d->id());
|
|
if (!$user) {
|
|
r2(U . 'login', 'e', Lang::T('Voucher activation failed'));
|
|
}
|
|
} else {
|
|
r2(U . 'login', 'e', Lang::T('Voucher activation failed').'.');
|
|
}
|
|
}
|
|
if ($v1['status'] == 0) {
|
|
$oldPass = $user['password'];
|
|
// change customer password to voucher code
|
|
$user->password = $voucher;
|
|
$user->save();
|
|
// voucher activation
|
|
if (Package::rechargeUser($user['id'], $v1['routers'], $v1['id_plan'], "Activation", "Voucher")) {
|
|
$v1->status = "1";
|
|
$v1->user = $user['username'];
|
|
$v1->save();
|
|
// add customer to mikrotik
|
|
if (!empty($_SESSION['nux-mac']) && !empty($_SESSION['nux-ip'])) {
|
|
$m = Mikrotik::info($v1['routers']);
|
|
$c = Mikrotik::getClient($m['ip_address'], $m['username'], $m['password']);
|
|
Mikrotik::logMeIn($c, $user['username'], $user['password'], $_SESSION['nux-ip'], $_SESSION['nux-mac']);
|
|
if(!empty($config['voucher_redirect'])){
|
|
r2($config['voucher_redirect'], 's', Lang::T("Voucher activation success, you are connected to internet"));
|
|
}else{
|
|
r2(U . "login", 's', Lang::T("Voucher activation success, you are connected to internet"));
|
|
}
|
|
}
|
|
if(!empty($config['voucher_redirect'])){
|
|
r2($config['voucher_redirect'], 's', Lang::T("Voucher activation success, now you can login"));
|
|
}else{
|
|
r2(U . "login", 's', Lang::T("Voucher activation success, now you can login"));
|
|
}
|
|
} else {
|
|
// if failed to recharge, restore old password
|
|
$user->password = $oldPass;
|
|
$user->save();
|
|
r2(U . 'login', 'e', Lang::T("Failed to activate voucher"));
|
|
}
|
|
} else {
|
|
// used voucher
|
|
// check if voucher used by this username
|
|
if ($v1['user'] == $user['username']) {
|
|
if (!empty($_SESSION['nux-mac']) && !empty($_SESSION['nux-ip'])) {
|
|
$m = Mikrotik::info($v1['routers']);
|
|
$c = Mikrotik::getClient($m['ip_address'], $m['username'], $m['password']);
|
|
Mikrotik::logMeIn($c, $user['username'], $user['password'], $_SESSION['nux-ip'], $_SESSION['nux-mac']);
|
|
if(!empty($config['voucher_redirect'])){
|
|
r2($config['voucher_redirect'], 's', Lang::T("Voucher activation success, you are connected to internet"));
|
|
}else{
|
|
r2(U . "login", 's', Lang::T("Voucher activation success, now you can login"));
|
|
}
|
|
}else{
|
|
if(!empty($config['voucher_redirect'])){
|
|
r2($config['voucher_redirect'], 's', Lang::T("Voucher activation success, you are connected to internet"));
|
|
}else{
|
|
r2(U . "login", 's', Lang::T("Voucher activation success, now you can login"));
|
|
}
|
|
}
|
|
} else {
|
|
// voucher used by other customer
|
|
r2(U . 'login', 'e', $_L['Voucher_Not_Valid']);
|
|
}
|
|
}
|
|
} else {
|
|
// voucher not found
|
|
r2(U . 'login', 'e', $_L['Voucher_Not_Valid']);
|
|
}
|
|
default:
|
|
run_hook('customer_view_login'); #HOOK
|
|
if($config['disable_registration']=='yes'){
|
|
$ui->display('user-login-noreg.tpl');
|
|
}else{
|
|
$ui->display('user-login.tpl');
|
|
}
|
|
break;
|
|
}
|