mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-26 00:18:43 +08:00
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
||
|
* used for ajax
|
||
|
**/
|
||
|
|
||
|
_auth();
|
||
|
|
||
|
$action = $routes['1'];
|
||
|
$user = User::_info();
|
||
|
$bill = User::_billing();
|
||
|
|
||
|
switch ($action) {
|
||
|
case 'isLogin':
|
||
|
if ($bill['type'] == 'Hotspot' && $bill['status'] == 'on') {
|
||
|
$m = Mikrotik::info($bill['routers']);
|
||
|
$client = Mikrotik::getClient($m['ip_address'], $m['username'], $m['password']);
|
||
|
if (Mikrotik::isUserLogin($client, $user['username'])) {
|
||
|
die('<a href="' . U . 'home&mikrotik=logout" onclick="return confirm(\''.Lang::T('Disconnect Internet?').'\')" class="btn btn-success btn-xs btn-block">'.Lang::T('You are Online, Logout?').'</a>');
|
||
|
} else {
|
||
|
if (!empty($_SESSION['nux-mac']) && !empty($_SESSION['nux-ip'])) {
|
||
|
die('<a href="' . U . 'home&mikrotik=login" onclick="return confirm(\''.Lang::T('Connect to Internet?').'\')" class="btn btn-danger btn-xs btn-block">'.Lang::T('Not Online, Login now?').'</a>');
|
||
|
}else{
|
||
|
die(Lang::T('Your account not connected to internet'));
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
die('--');
|
||
|
}
|
||
|
break;
|
||
|
default:
|
||
|
echo 'action not defined';
|
||
|
}
|