| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 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/app/modules/api_provider/models/ |
Upload File : |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class api_provider_model extends MY_Model {
public $tb_users;
public $tb_categories;
public $tb_services;
public $tb_api_providers;
public $tb_orders;
public function __construct(){
$this->tb_categories = CATEGORIES;
$this->tb_services = SERVICES;
$this->tb_api_providers = API_PROVIDERS;
$this->tb_orders = ORDER;
parent::__construct();
}
function get_api_lists($status = false){
$data = array();
if ($status) {
$this->db->where("status", 1);
}
$this->db->select("*");
$this->db->from($this->tb_api_providers);
$this->db->order_by("id", 'ASC');
$query = $this->db->get();
$result = $query->result();
return $result;
}
function get_all_orders(){
$data = array();
$where = "(`status` = 'pending' or `status` = 'inprogress')";
$this->db->select("*");
$this->db->from($this->tb_orders);
$this->db->where($where);
$this->db->where("api_provider_id !=", 0);
$this->db->where("api_order_id =", -1);
$this->db->order_by("id", 'ASC');
$query = $this->db->get();
$result = $query->result();
return $result;
}
function get_all_orders_status(){
$where = "(`status` = 'active' or `status` = 'processing' or `status` = 'inprogress' or `status` = 'pending' or `status` = '') AND `api_provider_id` != 0 AND `api_order_id` > 0 AND `changed` < '".NOW."' AND service_type != 'subscriptions'";
$data = array();
$this->db->select("*");
$this->db->from($this->tb_orders);
$this->db->where($where);
$this->db->order_by("id", 'ASC');
$this->db->limit(15,0);
$query = $this->db->get();
$result = $query->result();
return $result;
}
function get_all_subscriptions_status(){
$where = "(`sub_status` = 'Active' or `sub_status` = 'Paused' OR `status` = '') AND `api_provider_id` != 0 AND `api_order_id` > 0 AND `changed` < '".NOW."' AND service_type = 'subscriptions'";
$this->db->select("*");
$this->db->from($this->tb_orders);
$this->db->where($where);
$this->db->order_by("id", 'ASC');
$this->db->limit(15,0);
$query = $this->db->get();
$result = $query->result();
return $result;
}
}