IHMInputOutputDeleteProcessClass.php
1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* @class IHMInputOutputDeleteProcessClass
* @brief Class that's implement an InputOutputInterface used to treat a delete process request
* @details
*/
class IHMInputOutputDeleteProcessClass implements InputOutputInterface
{
protected $jobsManager = null;
private $paramsData = null;
/*
* @brief Constructor
*/
function __construct()
{
$this->jobsManager = new IHMJobsManagerClass();
}
/*
* @brief translate input data from IHM client to AMDA_Integration module for a delete process request
*/
public function getInputData($input,$function,$requestId="")
{
if (isset($this->paramsData))
unset($this->paramsData);
$this->paramsData = new ProcessRequestDataClass();
$this->paramsData->setManagerFilePath(IHMConfigClass::getProcessManagerFilePath());
$this->paramsData->setType(ProcessTypeEnumClass::DELETE);
$this->paramsData->setId($input->id);
$this->paramsData->setUser(IHMConfigClass::getUserName());
return $this->paramsData;
}
/*
* @brief translate output data from AMDA_Integration module to IHM client for a delete process request
*/
public function getOutput($data)
{
if (!$data->getSuccess())
{
return array(
'success' => false,
'message' => $data->getLastErrorMessage());
}
$res = $this->jobsManager->deleteJob($this->paramsData->getId());
/*if (!$res['success'])
{
return array(
'success' => false,
'message' => $res['message']);
}*/
return array(
'success' => true,
'id' => $this->paramsData->getId(),
'time' => time());
}
}
?>