New functions

This commit is contained in:
Olu Amey
2023-02-12 21:19:40 -05:00
parent 993df3a690
commit 377d924a67
6 changed files with 33 additions and 64 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
include_once('def.php');
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$myfile = fopen("../writable/session.txt", "r");
$session_id = fgets($myfile);
$member_id = fgets($myfile);
fclose($myfile);
$data = array(
"member_id" => $member_id ,
"sessionid" => $session_id ,
"limit" => 10,
"page" => "1",
'action'=>WRENCHBOARD_MOBILE_ACTIVEJOB
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out);
?>
+3 -1
View File
@@ -45,7 +45,9 @@ define('WRENCHBOARD_GROUP_ACCEPTGROUP', 12020);
define('WRENCHBOARD_GROUP_END', 12999);
//**************************************************************
define('WRENCHBOARD_CARDS_GETCARDLIST', 40010);
define('WRENCHBOARD_CARDS_GETCARDLIST', 40010);
define('WRENCHBOARD_MOBILE_ACTIVEJOB', 15020);
define('WRENCHBOARD_LOGIN_SHOP', 50501);
define('WRENCHBOARD_LOGIN_ADMIN', 50502);
+2 -1
View File
@@ -18,7 +18,8 @@ $dm ="http://localhost:9999/";
$tArr =[
'login',
'signup',
'userscards'
'userscards',
'activejoblist'
];
echo "<table class='table table-striped'>";
-62
View File
@@ -1,62 +0,0 @@
<?php
require_once 'config.php';
$url = $local_url . "/activejoblist";
$username = urlencode("support+ademo".rand(1,3000)."@medtransgo.net");
$username = "ses66181+1@gmail.com";
$data = array(
"member_id" => 1,
"sessionid" => "ABCDEFGHIJKLMNOP",
"limit" => 10,
"page" => "1"
);
$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);
//echo "<hr/>";
//var_dump($data);
//echo "<hr/><pre>";
echo "<pre>";
echo str_replace(array("{","}",","),array("{\n\t","}\n",",\n\t"),$json_response);
echo "</pre>";
//echo "</pre><hr/>";
echo "<hr/>";
// saving the session in a file for other call use
$myfile = fopen("fl/sample_session.txt", "w") ;
$txt = $response['sessionid']."\n";
fwrite($myfile, $txt);
$txt = $response['member_id']."\n";
fwrite($myfile, $txt);
fclose($myfile);
echo highlight_string(file_get_contents(__FILE__));
?>
+4
View File
@@ -71,6 +71,10 @@ $pathName = '';
$pathName = 'startjoblist';
break;
case WRENCHBOARD_MOBILE_ACTIVEJOB:
$pathName = 'activejoblist';
break;
}
return $pathName;
}