AbstractMonitoringMiddleware.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <?php
  2. namespace Aws\ClientSideMonitoring;
  3. use Aws\CommandInterface;
  4. use Aws\Exception\AwsException;
  5. use Aws\MonitoringEventsInterface;
  6. use Aws\ResponseContainerInterface;
  7. use Aws\ResultInterface;
  8. use GuzzleHttp\Promise;
  9. use Psr\Http\Message\RequestInterface;
  10. use Psr\Http\Message\ResponseInterface;
  11. /**
  12. * @internal
  13. */
  14. abstract class AbstractMonitoringMiddleware
  15. implements MonitoringMiddlewareInterface
  16. {
  17. private static $socket;
  18. private $nextHandler;
  19. private $options;
  20. protected $credentialProvider;
  21. protected $region;
  22. protected $service;
  23. protected static function getAwsExceptionHeader(AwsException $e, $headerName)
  24. {
  25. $response = $e->getResponse();
  26. if ($response !== null) {
  27. $header = $response->getHeader($headerName);
  28. if (!empty($header[0])) {
  29. return $header[0];
  30. }
  31. }
  32. return null;
  33. }
  34. protected static function getResultHeader(ResultInterface $result, $headerName)
  35. {
  36. if (isset($result['@metadata']['headers'][$headerName])) {
  37. return $result['@metadata']['headers'][$headerName];
  38. }
  39. return null;
  40. }
  41. protected static function getExceptionHeader(\Exception $e, $headerName)
  42. {
  43. if ($e instanceof ResponseContainerInterface) {
  44. $response = $e->getResponse();
  45. if ($response instanceof ResponseInterface) {
  46. $header = $response->getHeader($headerName);
  47. if (!empty($header[0])) {
  48. return $header[0];
  49. }
  50. }
  51. }
  52. return null;
  53. }
  54. /**
  55. * Constructor stores the passed in handler and options.
  56. *
  57. * @param callable $handler
  58. * @param callable $credentialProvider
  59. * @param $options
  60. * @param $region
  61. * @param $service
  62. */
  63. public function __construct(
  64. callable $handler,
  65. callable $credentialProvider,
  66. $options,
  67. $region,
  68. $service
  69. ) {
  70. $this->nextHandler = $handler;
  71. $this->credentialProvider = $credentialProvider;
  72. $this->options = $options;
  73. $this->region = $region;
  74. $this->service = $service;
  75. }
  76. /**
  77. * Standard invoke pattern for middleware execution to be implemented by
  78. * child classes.
  79. *
  80. * @param CommandInterface $cmd
  81. * @param RequestInterface $request
  82. * @return Promise\PromiseInterface
  83. */
  84. public function __invoke(CommandInterface $cmd, RequestInterface $request)
  85. {
  86. $handler = $this->nextHandler;
  87. $eventData = null;
  88. $enabled = $this->isEnabled();
  89. if ($enabled) {
  90. $cmd['@http']['collect_stats'] = true;
  91. $eventData = $this->populateRequestEventData(
  92. $cmd,
  93. $request,
  94. $this->getNewEvent($cmd, $request)
  95. );
  96. }
  97. $g = function ($value) use ($eventData, $enabled) {
  98. if ($enabled) {
  99. $eventData = $this->populateResultEventData(
  100. $value,
  101. $eventData
  102. );
  103. $this->sendEventData($eventData);
  104. if ($value instanceof MonitoringEventsInterface) {
  105. $value->appendMonitoringEvent($eventData);
  106. }
  107. }
  108. if ($value instanceof \Exception || $value instanceof \Throwable) {
  109. return Promise\Create::rejectionFor($value);
  110. }
  111. return $value;
  112. };
  113. return Promise\Create::promiseFor($handler($cmd, $request))->then($g, $g);
  114. }
  115. private function getClientId()
  116. {
  117. return $this->unwrappedOptions()->getClientId();
  118. }
  119. private function getNewEvent(
  120. CommandInterface $cmd,
  121. RequestInterface $request
  122. ) {
  123. $event = [
  124. 'Api' => $cmd->getName(),
  125. 'ClientId' => $this->getClientId(),
  126. 'Region' => $this->getRegion(),
  127. 'Service' => $this->getService(),
  128. 'Timestamp' => (int) floor(microtime(true) * 1000),
  129. 'UserAgent' => substr(
  130. $request->getHeaderLine('User-Agent') . ' ' . \Aws\default_user_agent(),
  131. 0,
  132. 256
  133. ),
  134. 'Version' => 1
  135. ];
  136. return $event;
  137. }
  138. private function getHost()
  139. {
  140. return $this->unwrappedOptions()->getHost();
  141. }
  142. private function getPort()
  143. {
  144. return $this->unwrappedOptions()->getPort();
  145. }
  146. private function getRegion()
  147. {
  148. return $this->region;
  149. }
  150. private function getService()
  151. {
  152. return $this->service;
  153. }
  154. /**
  155. * Returns enabled flag from options, unwrapping options if necessary.
  156. *
  157. * @return bool
  158. */
  159. private function isEnabled()
  160. {
  161. return $this->unwrappedOptions()->isEnabled();
  162. }
  163. /**
  164. * Returns $eventData array with information from the request and command.
  165. *
  166. * @param CommandInterface $cmd
  167. * @param RequestInterface $request
  168. * @param array $event
  169. * @return array
  170. */
  171. protected function populateRequestEventData(
  172. CommandInterface $cmd,
  173. RequestInterface $request,
  174. array $event
  175. ) {
  176. $dataFormat = static::getRequestData($request);
  177. foreach ($dataFormat as $eventKey => $value) {
  178. if ($value !== null) {
  179. $event[$eventKey] = $value;
  180. }
  181. }
  182. return $event;
  183. }
  184. /**
  185. * Returns $eventData array with information from the response, including
  186. * the calculation for attempt latency.
  187. *
  188. * @param ResultInterface|\Exception $result
  189. * @param array $event
  190. * @return array
  191. */
  192. protected function populateResultEventData(
  193. $result,
  194. array $event
  195. ) {
  196. $dataFormat = static::getResponseData($result);
  197. foreach ($dataFormat as $eventKey => $value) {
  198. if ($value !== null) {
  199. $event[$eventKey] = $value;
  200. }
  201. }
  202. return $event;
  203. }
  204. /**
  205. * Checks if the socket is created. If PHP version is greater or equals to 8 then,
  206. * it will check if the var is instance of \Socket otherwise it will check if is
  207. * a resource.
  208. *
  209. * @return bool Returns true if the socket is created, false otherwise.
  210. */
  211. private function isSocketCreated(): bool
  212. {
  213. // Before version 8, sockets are resources
  214. // After version 8, sockets are instances of Socket
  215. if (PHP_MAJOR_VERSION >= 8) {
  216. $socketClass = '\Socket';
  217. return self::$socket instanceof $socketClass;
  218. } else {
  219. return is_resource(self::$socket);
  220. }
  221. }
  222. /**
  223. * Creates a UDP socket resource and stores it with the class, or retrieves
  224. * it if already instantiated and connected. Handles error-checking and
  225. * re-connecting if necessary. If $forceNewConnection is set to true, a new
  226. * socket will be created.
  227. *
  228. * @param bool $forceNewConnection
  229. * @return Resource
  230. */
  231. private function prepareSocket($forceNewConnection = false)
  232. {
  233. if (!$this->isSocketCreated()
  234. || $forceNewConnection
  235. || socket_last_error(self::$socket)
  236. ) {
  237. self::$socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
  238. socket_clear_error(self::$socket);
  239. socket_connect(self::$socket, $this->getHost(), $this->getPort());
  240. }
  241. return self::$socket;
  242. }
  243. /**
  244. * Sends formatted monitoring event data via the UDP socket connection to
  245. * the CSM agent endpoint.
  246. *
  247. * @param array $eventData
  248. * @return int
  249. */
  250. private function sendEventData(array $eventData)
  251. {
  252. $socket = $this->prepareSocket();
  253. $datagram = json_encode($eventData);
  254. $result = socket_write($socket, $datagram, strlen($datagram));
  255. if ($result === false) {
  256. $this->prepareSocket(true);
  257. }
  258. return $result;
  259. }
  260. /**
  261. * Unwraps options, if needed, and returns them.
  262. *
  263. * @return ConfigurationInterface
  264. */
  265. private function unwrappedOptions()
  266. {
  267. if (!($this->options instanceof ConfigurationInterface)) {
  268. try {
  269. $this->options = ConfigurationProvider::unwrap($this->options);
  270. } catch (\Exception $e) {
  271. // Errors unwrapping CSM config defaults to disabling it
  272. $this->options = new Configuration(
  273. false,
  274. ConfigurationProvider::DEFAULT_HOST,
  275. ConfigurationProvider::DEFAULT_PORT
  276. );
  277. }
  278. }
  279. return $this->options;
  280. }
  281. }