| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/mmobot/ |
Upload File : |
<?php
class Api {
// API URL
public $api_url = 'http://yourwebsite.com/api/v1';
// Your API key
public $api_key = '';
/**
*
* Add Order
*
*/
public function add_order($data) {
$post = array_merge(array('key' => $this->api_key, 'action' => 'add'), $data);
$result = $this->connect($post);
return json_decode($result);
}
/**
*
* Order status
*
*/
public function status($order_id) {
$result = $this->connect(array(
'key' => $this->api_key,
'action' => 'status',
'order' => $order_id
));
return json_decode($result);
}
/**
*
* Order multi status
*
*/
public function multi_status($order_ids) {
$result = $this->connect(array(
'key' => $this->api_key,
'action' => 'status',
'orders' => implode(",", (array)$order_ids)
));
return json_decode($result);
}
/**
*
* All services
*
*/
public function services() {
$result = $this->connect(array(
'key' => $this->api_key,
'action' => 'services',
));
return json_decode($result);
}
/**
*
* Balance
*
*/
public function balance() {
$result = $this->connect(array(
'key' => $this->api_key,
'action' => 'balance',
));
return json_decode($result);
}
/**
*
* Connect to panel
*
*/
private function connect($post) {
$_post = Array();
if (is_array($post)) {
foreach ($post as $name => $value) {
$_post[] = $name.'='.urlencode($value);
}
}
if (is_array($post)) {
$url_complete = join('&', $_post);
}
$url = $this->api_url."?".$url_complete;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'API (compatible; MSIE 5.01; Windows NT 5.0)');
$result = curl_exec($ch);
if (curl_errno($ch) != 0 && empty($result)) {
$result = false;
}
curl_close($ch);
return $result;
}
}
// Examples
$api = new Api();
# return all services
$services = $api->services();
# return user balance
$balance = $api->balance();
// add order
$order = $api->order(array('service' => 1, 'link' => 'http://example.com/test', 'quantity' => 100)); # Default
$order = $api->order(array('service' => 1, 'link' => 'http://example.com/test', 'comments' => "good pic\ngreat photo\n:)\n;)")); # Custom Comments
$order = $api->order(array('service' => 1, 'link' => 'http://example.com/test', 'quantity' => 100, 'runs' => 10, 'interval' => 60)); # Drip-feed
# return status, charge, remains, start count, order_id
$status = $api->status(23);
# return orders status, charge, remains, start count, order_id
$statuses = $api->multi_status([12, 2, 13]);