backend model fix

This commit is contained in:
Olu Amey
2021-10-11 18:16:32 -04:00
parent dd210b03a8
commit 3d2b1eaa34
5 changed files with 60 additions and 15 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
<? <?php
function random_name() { // $rand_keys = array(); function random_name() { // $rand_keys = array();
global $name_array; global $name_array;
@@ -3705,7 +3705,7 @@ $name_array = array(
"Abraham", "Abraham",
"Wendy", "Wendy",
"JEROME", "JEROME",
"Luis E ", "LuisE",
"Hope", "Hope",
"franklin ", "franklin ",
"Kehinde", "Kehinde",
@@ -4455,7 +4455,7 @@ $name_array = array(
"Gerry", "Gerry",
"Wasiu", "Wasiu",
"Izuagbe desmond", "Izuagbe desmond",
"Kyle M ", "KyleM",
"Bulli", "Bulli",
"Damilola omowunmi ", "Damilola omowunmi ",
"VALENTINE", "VALENTINE",
@@ -6966,7 +6966,7 @@ $name_array = array(
"Polinger", "Polinger",
"Arlt", "Arlt",
"Mehls", "Mehls",
"Tänavsuu-Milkeviciene", "Tnavsuu-Milkeviciene",
"Arlt", "Arlt",
"Ehrlich", "Ehrlich",
"CATALAN", "CATALAN",
+4 -1
View File
@@ -10,6 +10,8 @@ class Login extends WRB_Controller {
$this->load->library(array('session', 'lib_login')); $this->load->library(array('session', 'lib_login'));
} }
public function index() { public function index() {
$data["login_message"] = ""; $data["login_message"] = "";
$this->load->library('form_validation'); $this->load->library('form_validation');
@@ -26,7 +28,8 @@ class Login extends WRB_Controller {
$data['action'] = WRENCHBOARD_ACCOUNT_LOGIN; $data['action'] = WRENCHBOARD_ACCOUNT_LOGIN;
$this->load->model('backend_model'); $this->load->model('backend_model');
$out = array(); $out = array();
$res = $this->backend_model->wrenchboard_api($data, $out); // $res = $this->backend_model->wrenchboard_api($data, $out);
$res = $this->wrenchboard_api($data, $out);
$is_live = $this->backend_model->cfgReadChar("system.live"); $is_live = $this->backend_model->cfgReadChar("system.live");
// print_r($out); // print_r($out);
if ($res == PHP_LOGIN_OK) { if ($res == PHP_LOGIN_OK) {
+1 -1
View File
@@ -50,7 +50,7 @@ class WRB_Controller extends CI_Controller {
$this->load->library(array('session', 'lib_login')); $this->load->library(array('session', 'lib_login'));
} }
public function wrenchboard_api($in, $out) { public function wrenchboard_api($in, &$out) {
$this->load->model('backend_model'); $this->load->model('backend_model');
// $out = array(); // $out = array();
return $this->backend_model->wrenchboard_api($in, $out); return $this->backend_model->wrenchboard_api($in, $out);
+49 -9
View File
@@ -18,22 +18,62 @@ class Backend_model extends CI_Model {
} }
public function wrenchboard_api($in, $out = array()) { public function wrenchboard_api($in, $out = array()) {
$this->wrenchboard_load(); $ret = 0;
$ret = $this->wrenchboard->wrenchboard_api($in, $out);
$local_url = 'http://fluxtra:fl0xtra!@oameye.works.wrenchboard.com/svs/user';
$url = $local_url ."/generics";
$data = $in;
$username = "ses66181+1@gmail.com";
$data = array(
"username" => $username,
"password" => "may12002",
"sessionid" => "DUMMYSESSION"
);
$content = json_encode($data);
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type" => "application/json"));
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);
$json_response = curl_exec($curl);
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($status != 200) {
echo ("Error: call to URL $url failed with status $status, response $json_response, | curl_error " . curl_error($curl) . ", | curl_errno " . curl_errno($curl));
}
curl_close($curl);
$response = json_decode($json_response, true);
$out = $response;
return $ret; return $ret;
} }
public function cfgReadChar($str) { public function cfgReadChar($str) {
$this->wrenchboard_load(); // $this->wrenchboard_load();
$ret = $this->wrenchboard->cfgReadChar($str); // $ret = $this->wrenchboard->cfgReadChar($str);
return $ret; // return $ret;
return 0;
} }
private function wrenchboard_load() { private function wrenchboard_load() {
// $this->$USER = $_SERVER['SCRIPT_FILENAME']; // $this->$USER = $_SERVER['SCRIPT_FILENAME'];
$wrenchboard_class = 'wrenchboard_api_' . $this->USER . '\\WrenchBoard'; // $wrenchboard_class = 'wrenchboard_api_' . $this->USER . '\\WrenchBoard';
if (!is_object($this->wrenchboard)) { // if (!is_object($this->wrenchboard)) {
$this->wrenchboard = new $wrenchboard_class(); // $this->wrenchboard = new $wrenchboard_class();
} // }
} }
} }
+2
View File
@@ -15,5 +15,7 @@ services:
- ./apache_log:/var/log/apache2 - ./apache_log:/var/log/apache2
ports: ports:
- 8082:80 - 8082:80
extra_hosts:
- oameye.works.wrenchboard.com:10.20.30.27
volumes: volumes:
src: src: