CookieJarInterface.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace GuzzleHttp\Cookie;
  3. use Psr\Http\Message\RequestInterface;
  4. use Psr\Http\Message\ResponseInterface;
  5. /**
  6. * Stores HTTP cookies.
  7. *
  8. * It extracts cookies from HTTP requests, and returns them in HTTP responses.
  9. * CookieJarInterface instances automatically expire contained cookies when
  10. * necessary. Subclasses are also responsible for storing and retrieving
  11. * cookies from a file, database, etc.
  12. *
  13. * @see https://docs.python.org/2/library/cookielib.html Inspiration
  14. *
  15. * @extends \IteratorAggregate<SetCookie>
  16. */
  17. interface CookieJarInterface extends \Countable, \IteratorAggregate
  18. {
  19. /**
  20. * Create a request with added cookie headers.
  21. *
  22. * If no matching cookies are found in the cookie jar, then no Cookie
  23. * header is added to the request and the same request is returned.
  24. *
  25. * @param RequestInterface $request Request object to modify.
  26. *
  27. * @return RequestInterface returns the modified request.
  28. */
  29. public function withCookieHeader(RequestInterface $request): RequestInterface;
  30. /**
  31. * Extract cookies from an HTTP response and store them in the CookieJar.
  32. *
  33. * @param RequestInterface $request Request that was sent
  34. * @param ResponseInterface $response Response that was received
  35. */
  36. public function extractCookies(RequestInterface $request, ResponseInterface $response): void;
  37. /**
  38. * Sets a cookie in the cookie jar.
  39. *
  40. * @param SetCookie $cookie Cookie to set.
  41. *
  42. * @return bool Returns true on success or false on failure
  43. */
  44. public function setCookie(SetCookie $cookie): bool;
  45. /**
  46. * Remove cookies currently held in the cookie jar.
  47. *
  48. * Invoking this method without arguments will empty the whole cookie jar.
  49. * If given a $domain argument only cookies belonging to that domain will
  50. * be removed. If given a $domain and $path argument, cookies belonging to
  51. * the specified path within that domain are removed. If given all three
  52. * arguments, then the cookie with the specified name, path and domain is
  53. * removed.
  54. *
  55. * @param string|null $domain Clears cookies matching a domain
  56. * @param string|null $path Clears cookies matching a domain and path
  57. * @param string|null $name Clears cookies matching a domain, path, and name
  58. */
  59. public function clear(string $domain = null, string $path = null, string $name = null): void;
  60. /**
  61. * Discard all sessions cookies.
  62. *
  63. * Removes cookies that don't have an expire field or a have a discard
  64. * field set to true. To be called when the user agent shuts down according
  65. * to RFC 2965.
  66. */
  67. public function clearSessionCookies(): void;
  68. /**
  69. * Converts the cookie jar to an array.
  70. */
  71. public function toArray(): array;
  72. }