EWS-Client
view release on metacpan or search on metacpan
lib/EWS/Client/Contacts.pm view on Meta::CPAN
# ABSTRACT: Contact Entries from Microsoft Exchange Server
__END__
=pod
=head1 NAME
EWS::Client::Contacts - Contact Entries from Microsoft Exchange Server
=head1 VERSION
version 1.143070
=head1 SYNOPSIS
First set up your Exchange Web Services client as per L<EWS::Client>:
use EWS::Client;
my $ews = EWS::Client->new({
server => 'exchangeserver.example.com',
username => 'oliver',
password => 's3krit', # or set in $ENV{EWS_PASS}
});
Then retrieve the contact entries:
my $entries = $ews->contacts->retrieve;
print "I retrieved ". $entries->count ." items\n";
while ($entries->has_next) {
print $entries->next->DisplayName, "\n";
}
=head1 DESCRIPTION
This module allows you to retrieve the set of contact entries for a user
on a Microsoft Exchange server. At present only read operations are supported.
The results are available in an iterator and convenience methods exist to
access the properties of each entry.
=head1 METHODS
=head2 CONSTRUCTOR
=head2 EWS::Client::Contacts->new( \%arguments )
You would not normally call this constructor. Use the L<EWS::Client>
constructor instead.
Instantiates a new contacts reader. Note that the action of performing a query
for a set of results is separated from this step, so you can perform multiple
queries using this same object. Pass the following arguments in a hash ref:
=over 4
=item C<client> => C<EWS::Client> object (required)
An instance of C<EWS::Client> which has been configured with your server
location, user credentials and SOAP APIs. This will be stored as a weak
reference.
=back
=head2 QUERY AND RESULT SET
=head2 $contacts->retrieve( \%arguments )
Query the Exchange server and retrieve contact entries. By default the
C<retrieve()> method will return contacts for the account under which you
authenticated to the Exchange server (that is, the credentials passed to the
L<EWS::Client> constructor). The following arguments will change this
behaviour:
=over 4
=item C<email> => String (optional)
Passing the primary SMTP address of another account will retrieve the contacts
for that Exchange user instead using the I<Delegation> feature, assuming you
have rights to see their contacts (i.e. the user has shared their contacts).
If you do not have rights, an error will be thrown.
If you pass one of the account's secondary SMTP addresses this module
I<should> be able to divine the primary SMTP address required.
=item C<impersonate> => String (optional)
Passing the primary SMTP address of another account will retrieve the contacts
for that Exchange user instead, assuming you have sufficient rights to
I<Impersonate> that account. If you do not have rights, an error will be
thrown.
=back
The returned object contains the collection of contact entries and is of type
C<EWS::Contacts::ResultSet>. It's an iterator, so you can walk through the
list of entries (see the synposis, above). For example:
my $entries = $contacts->retrieve({email => 'nobody@example.com'});
=head2 $entries->next
Provides the next item in the collection of contact entries, or C<undef> if
there are no more items to return. Usually used in a loop along with
C<has_next> like so:
while ($entries->has_next) {
print $entries->next->DisplayName, "\n";
}
=head2 $entries->peek
Returns the next item without moving the state of the iterator forward. It
returns C<undef> if it is at the end of the collection and there are no more
items to return.
=head2 $entries->has_next
Returns a true value if there is another entry in the collection after the
current item, otherwise returns a false value.
=head2 $entries->reset
Resets the iterator's cursor, so you can walk through the entries again from
the start.
=head2 $entries->count
Returns the number of entries returned by the C<retrieve> server query.
( run in 1.336 second using v1.01-cache-2.11-cpan-39bf76dae61 )