|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the Sylius package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Paweł Jędrzejewski |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Sylius\Bundle\AdminBundle\Controller; |
|
13
|
|
|
|
|
14
|
|
|
use GuzzleHttp\ClientInterface; |
|
15
|
|
|
use GuzzleHttp\Exception\GuzzleException; |
|
16
|
|
|
use GuzzleHttp\Psr7\Uri; |
|
17
|
|
|
use Http\Message\MessageFactory; |
|
18
|
|
|
use Psr\Http\Message\UriInterface; |
|
19
|
|
|
use Sylius\Bundle\CoreBundle\Application\Kernel; |
|
20
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse; |
|
21
|
|
|
use Symfony\Component\HttpFoundation\Request; |
|
22
|
|
|
|
|
23
|
|
|
/** |
|
24
|
|
|
* @author Jan Góralski <[email protected]> |
|
25
|
|
|
*/ |
|
26
|
|
|
class NotificationController |
|
27
|
|
|
{ |
|
28
|
|
|
/** |
|
29
|
|
|
* @var ClientInterface |
|
30
|
|
|
*/ |
|
31
|
|
|
protected $client; |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* @var MessageFactory |
|
35
|
|
|
*/ |
|
36
|
|
|
protected $messageFactory; |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @var UriInterface |
|
40
|
|
|
*/ |
|
41
|
|
|
protected $hubUri; |
|
42
|
|
|
|
|
43
|
|
|
/** |
|
44
|
|
|
* @param ClientInterface $client |
|
45
|
|
|
* @param MessageFactory $messageFactory |
|
46
|
|
|
* @param string $hubUri |
|
47
|
|
|
*/ |
|
48
|
|
|
public function __construct(ClientInterface $client, MessageFactory $messageFactory, $hubUri) |
|
49
|
|
|
{ |
|
50
|
|
|
$this->client = $client; |
|
51
|
|
|
$this->messageFactory = $messageFactory; |
|
52
|
|
|
$this->hubUri = new Uri($hubUri); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* @param Request $request |
|
57
|
|
|
* |
|
58
|
|
|
* @return JsonResponse |
|
59
|
|
|
*/ |
|
60
|
|
|
public function getVersionAction(Request $request) |
|
61
|
|
|
{ |
|
62
|
|
|
$content = [ |
|
63
|
|
|
'version' => Kernel::VERSION, |
|
64
|
|
|
'hostname' => $request->getHost(), |
|
65
|
|
|
'locale' => $request->getLocale(), |
|
66
|
|
|
'user_agent' => $request->headers->get('User-Agent'), |
|
67
|
|
|
]; |
|
68
|
|
|
|
|
69
|
|
|
$headers = ['Content-Type' => 'application/json']; |
|
70
|
|
|
|
|
71
|
|
|
$hubRequest = $this->messageFactory->createRequest( |
|
72
|
|
|
Request::METHOD_GET, |
|
73
|
|
|
$this->hubUri, |
|
74
|
|
|
$headers, |
|
75
|
|
|
json_encode($content) |
|
76
|
|
|
); |
|
77
|
|
|
|
|
78
|
|
|
try { |
|
79
|
|
|
$hubResponse = $this->client->send($hubRequest, ['verify' => false]); |
|
80
|
|
|
} catch (GuzzleException $exception) { |
|
81
|
|
|
return JsonResponse::create('', JsonResponse::HTTP_NO_CONTENT); |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
return JsonResponse::fromJsonString($hubResponse->getBody()->getContents()); |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|