1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
package Twitter::API::Context;
# ABSTRACT: Encapsulated state for a request/response
$Twitter::API::Context::VERSION = '1.0006';
use Moo;
use namespace::clean;
has [ qw/http_method args headers extra_args/ ] => (
is => 'ro',
);
for my $attr ( qw/url result http_response http_request/ ) {
has $attr => (
writer => "set_$attr",
is => 'ro',
);
}
has options => (
is => 'ro',
default => sub { {} },
);
sub get_option { $_[0]->options->{$_[1]} }
sub has_option { exists $_[0]->options->{$_[1]} }
sub set_option { $_[0]->options->{$_[1]} = $_[2] }
sub delete_option { delete $_[0]->options->{$_[1]} }
# private method
my $limit = sub {
my ( $self, $which ) = @_;
my $res = $self->http_response;
$res->header("X-Rate-Limit-$which");
};
sub rate_limit { shift->$limit('Limit') }
sub rate_limit_remaining { shift->$limit('Remaining') }
sub rate_limit_reset { shift->$limit('Reset') }
sub set_header {
my ( $self, $header, $value ) = @_;
$self->headers->{$header} = $value;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Twitter::API::Context - Encapsulated state for a request/response
=head1 VERSION
version 1.0006
=head1 SYNOPSIS
my ( $r, $c ) = $client->verify_credentials;
say sprintf '%d verify_credentials calls remaining unitl %s',
$c->rate_limit_remaining,
scalar localtime $c->rate_limit_reset;
# output:
74 verify_credentials_calls remaining until Sat Dec 3 22:05:41 2016
=head1 DESCRIPTION
The state for every API call is stored in a context object. It is automatically
created when a request is initiated and is returned to the caller as the second
value in list context. The context includes the L<HTTP::Request> and
L<HTTP::Response> objects, a reference to the API return data, and accessor for
rate limit information.
A reference to the context is also included in a L<Twitter::API::Error>
exception.
=head1 METHODS
=head2 http_request
Returns the L<HTTP::Request> object for the API call.
=head2 http_response
Returns the L<HTTP::Response> object for the API call.
=head2 result
Returns the result data for the API call.
=head2 rate_limit
Every API endpoint has a rate limit. This method returns the rate limit for the
endpoint of the API call. See
L<https://developer.twitter.com/en/docs/basics/rate-limiting> for details.
=head2 rate_limit_remaining
Returns the number of API calls remaining for the endpoint in the current rate limit window.
=head2 rate_limit_reset
Returns the time of the next rate limit window in UTC epoch seconds.
=head1 AUTHOR
Marc Mims <marc@questright.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015-2021 by Marc Mims.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|