mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-11 01:34:03 +08:00
117 lines
4.1 KiB
PHP
117 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
* by https://t.me/ibnux
|
|
**/
|
|
|
|
/**
|
|
* using proxy, add this variable in config.php
|
|
* $http_proxy = '127.0.0.1:3128';
|
|
* if proxy using authentication, use this parameter
|
|
* $http_proxyauth = 'user:password';
|
|
**/
|
|
|
|
class Http
|
|
{
|
|
public static function getData($url, $headers = [])
|
|
{
|
|
global $http_proxy, $http_proxyauth, $admin;
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_POST, 0);
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
|
|
if(is_array($headers) && count($headers)>0){
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
}
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
if (!empty($http_proxy)) {
|
|
curl_setopt($ch, CURLOPT_PROXY, $http_proxy);
|
|
if (!empty($http_proxyauth)) {
|
|
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $http_proxyauth);
|
|
}
|
|
}
|
|
$server_output = curl_exec($ch);
|
|
if (curl_errno($ch)) {
|
|
$error_msg = curl_error($ch);
|
|
}
|
|
curl_close($ch);
|
|
if($admin && $error_msg){
|
|
r2(U . 'dashboard', 'd', $error_msg);
|
|
}
|
|
return ($server_output) ? $server_output : $error_msg;
|
|
}
|
|
|
|
public static function postJsonData($url, $array_post, $headers = [], $basic = null)
|
|
{
|
|
global $http_proxy, $http_proxyauth, $admin;
|
|
$headers[] = 'Content-Type: application/json';
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
|
|
curl_setopt($ch, CURLOPT_VERBOSE, false);
|
|
curl_setopt($ch, CURLINFO_HEADER_OUT, false);
|
|
if (!empty($http_proxy)) {
|
|
curl_setopt($ch, CURLOPT_PROXY, $http_proxy);
|
|
if (!empty($http_proxyauth)) {
|
|
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $http_proxyauth);
|
|
}
|
|
}
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($array_post));
|
|
if(is_array($headers) && count($headers)>0){
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
}
|
|
if (!empty($basic)) {
|
|
curl_setopt($ch, CURLOPT_USERPWD, $basic);
|
|
}
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
$server_output = curl_exec($ch);
|
|
if (curl_errno($ch)) {
|
|
$error_msg = curl_error($ch);
|
|
}
|
|
curl_close($ch);
|
|
if($admin && $error_msg){
|
|
r2(U . 'dashboard', 'd', $error_msg);
|
|
}
|
|
return ($server_output) ? $server_output : $error_msg;
|
|
}
|
|
|
|
|
|
public static function postData($url, $array_post, $headers = [], $basic = null)
|
|
{
|
|
global $http_proxy, $http_proxyauth, $admin;
|
|
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
|
|
curl_setopt($ch, CURLOPT_VERBOSE, false);
|
|
curl_setopt($ch, CURLINFO_HEADER_OUT, false);
|
|
if (!empty($http_proxy)) {
|
|
curl_setopt($ch, CURLOPT_PROXY, $http_proxy);
|
|
if (!empty($http_proxyauth)) {
|
|
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $http_proxyauth);
|
|
}
|
|
}
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_post));
|
|
if(is_array($headers) && count($headers)>0){
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
}
|
|
if (!empty($basic)) {
|
|
curl_setopt($ch, CURLOPT_USERPWD, $basic);
|
|
}
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
$server_output = curl_exec($ch);
|
|
if (curl_errno($ch)) {
|
|
$error_msg = curl_error($ch);
|
|
}
|
|
curl_close($ch);
|
|
if($admin && $error_msg){
|
|
r2(U . 'dashboard', 'd', $error_msg);
|
|
}
|
|
return ($server_output) ? $server_output : $error_msg;
|
|
}
|
|
}
|