api creating task files

This commit is contained in:
schrom01 2023-09-25 12:33:12 +02:00
parent 2366370e67
commit 2f5232e1c7
1 changed files with 8 additions and 5 deletions

13
api.php
View File

@ -45,8 +45,9 @@ if (isset($_POST['sitze']) && is_array($_POST['sitze']) && count($_POST['sitze']
$sitze[] = $community["bfsId"];
}
}
$requests_to_do = Array();
// Loop through the selected values
$taskString = '';
foreach ($rechtsformen as $rechtsform) {
$data["legalFormId"] = $rechtsform;
@ -54,13 +55,15 @@ $taskString = '';
foreach ($sitze as $sitz) {
$data["legalSeatId"] = $sitz;
//$response = sendAPICompanySearchRequest($username, $password, $data);
$taskString = $taskString.json_encode($data).'\n';
$requests_to_do[] = $data;
}
}
$taskfilename = '/tasks/'.time().bin2hex(random_bytes(4)).'txt';
$taskdata = Array();
$taskdata['requests'] = $requests_to_do;
$taskdata['email'] = 'roman.schenk37@gmail.com';
$taskString = json_encode($taskdata);
$taskfilename = 'tasks/'.time().'-'.bin2hex(random_bytes(4)).'.txt';
$taskfile = fopen($taskfilename, 'w');
if($taskfile){
echo "writing to file";