1 | <?php |
||
2 | |||
3 | namespace Ijeffro\Laralocker\LearningLocker\JourneyProgress; |
||
4 | |||
5 | use Ijeffro\Laralocker\LearningLocker\API\APIHandler; |
||
6 | |||
7 | class JourneyProgressHandler extends APIHandler { |
||
8 | |||
9 | private $journey_progress = '/journeyProgress'; |
||
10 | private $api = '/api'; |
||
11 | private $v1 = '/v1'; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
12 | private $v2 = '/v2'; |
||
13 | |||
14 | protected $headers = [ |
||
15 | 'Content-Type' => 'application/json' |
||
16 | ]; |
||
17 | |||
18 | function __construct($id = null) { |
||
19 | parent::__construct(); |
||
20 | $this->id = $id; |
||
0 ignored issues
–
show
|
|||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Learning Locker: Request Organisation Details |
||
25 | * |
||
26 | * @return $response |
||
0 ignored issues
–
show
|
|||
27 | */ |
||
28 | public function get() { |
||
29 | try { |
||
30 | $url = $this->url . $this->api . $this->v2 . $this->journey_progress . '/' . $this->id ?? $this->id; |
||
31 | $response = $this->request($url); |
||
32 | return $response; |
||
33 | } catch (Exception $e) { |
||
0 ignored issues
–
show
|
|||
34 | return $e; |
||
35 | } |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Learning Locker: Request Organisation Details |
||
40 | * |
||
41 | * @return $response |
||
0 ignored issues
–
show
|
|||
42 | */ |
||
43 | public function update($data) { |
||
44 | try { |
||
45 | $url = $this->url . $this->api . $this->v2 . $this->journey_progress . '/' . $this->id ?? $this->id; |
||
46 | $response = $this->save($url, $data); |
||
47 | return $response; |
||
48 | } catch (Exception $e) { |
||
49 | return $e; |
||
50 | } |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Learning Locker: Request Organisation Details |
||
55 | * |
||
56 | * @return $response |
||
0 ignored issues
–
show
|
|||
57 | */ |
||
58 | public function create($data = null) { |
||
59 | try { |
||
60 | $url = $this->url . $this->api . $this->v2 . $this->journey_progress; |
||
61 | $response = $this->make($url, $data); |
||
62 | return $response; |
||
63 | } catch (Exception $e) { |
||
64 | return $e; |
||
65 | } |
||
66 | } |
||
67 | } |
||
68 |