AuthTokenGenerator.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace Aws\Rds;
  3. use Aws\Credentials\CredentialsInterface;
  4. use Aws\Credentials\Credentials;
  5. use Aws\Signature\SignatureV4;
  6. use GuzzleHttp\Psr7\Request;
  7. use GuzzleHttp\Psr7\Uri;
  8. use GuzzleHttp\Promise;
  9. use Aws;
  10. /**
  11. * Generates RDS auth tokens for use with IAM authentication.
  12. */
  13. class AuthTokenGenerator
  14. {
  15. private $credentialProvider;
  16. /**
  17. * The constructor takes an instance of Credentials or a CredentialProvider
  18. *
  19. * @param callable|Credentials $creds
  20. */
  21. public function __construct($creds)
  22. {
  23. if ($creds instanceof CredentialsInterface) {
  24. if (!function_exists('Aws\constantly')) {
  25. $promise = new Promise\FulfilledPromise($creds);
  26. $this->credentialProvider = Aws\constantly($promise);
  27. }
  28. } else {
  29. $this->credentialProvider = $creds;
  30. }
  31. }
  32. /**
  33. * Create the token for database login
  34. *
  35. * @param string $endpoint The database hostname with port number specified
  36. * (e.g., host:port)
  37. * @param string $region The region where the database is located
  38. * @param string $username The username to login as
  39. * @param int $lifetime The lifetime of the token in minutes
  40. *
  41. * @return string Token generated
  42. */
  43. public function createToken($endpoint, $region, $username, $lifetime = 15)
  44. {
  45. if (!is_numeric($lifetime) || $lifetime > 15 || $lifetime <= 0) {
  46. throw new \InvalidArgumentException(
  47. "Lifetime must be a positive number less than or equal to 15, was {$lifetime}"
  48. );
  49. }
  50. $uri = new Uri($endpoint);
  51. $uri = $uri->withPath('/');
  52. $uri = $uri->withQuery('Action=connect&DBUser=' . $username);
  53. $request = new Request('GET', $uri);
  54. $signer = new SignatureV4('rds-db', $region);
  55. $provider = $this->credentialProvider;
  56. $url = (string) $signer->presign(
  57. $request,
  58. $provider()->wait(),
  59. '+' . $lifetime . ' minutes'
  60. )->getUri();
  61. // Remove 2 extra slash from the presigned url result
  62. return substr($url, 2);
  63. }
  64. }