HubSpot-Client/lib/HubSpot/Client.pm
package HubSpot::Client;
our $VERSION = "0.1";
use open qw/:std :utf8/; # tell perl that stdout, stdin and stderr is in utf8
use strict;
# Modules
#use Log::Log4perl;
use REST::Client;
use Data::Dumper;
use JSON;
use HubSpot::Contact;
use HubSpot::Deal;
use HubSpot::Owner;
=pod
=head1 NAME
HubSpot::Client -- An object that can be used to manipulate the HubSpot API
=head1 SYNOPSIS
my $client = HubSpot::Client->new({ api_key => $hub_api_key });
# Retrieve 50 contacts
my $contacts = $client->contacts(50);
=head1 DESCRIPTION
This module was created for internal needs. At the moment it does what I need it to do, which is to say not very much. However it is a decent enough framework for adding functionality to, so your contributions to extend it to what you need it to do are welcome.
At the moment you can only retrieve read-only representations of contact objects.
=head1 METHODS
=cut
# Make us a class
use Class::Tiny qw(rest_client),
{
api_key => 'demo',
hub_id => '62515',
};
# Global variables
my $api_url = 'https://api.hubapi.com';
my $json = JSON->new;
sub BUILD
{
my $self = shift;
# Create ourselves a rest client to use
$self->rest_client(REST::Client->new({ timeout => 20, host => $api_url, follow => 1 }));
if(length($self->{'api_key'}) > 0 && $self->{'api_key'} !~ /[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}/)
{
die("api_key doesn't look right. Should be a GUID like '6a2f41a3-c54c-fce8-32d2-0324e1c32e22'. You specified '".$self->{'api_key'}."'. To use the HubSpot demo account, don't specify api_key at all.");
}
if(length($self->{'api_key'}) < 1)
{
$self->{'api_key'} = 'demo';
}
}
=pod
=over 4
=item new({api_key => <api_key_for_your hub> }) (constructor)
This class is what you use to perform actions against the API. Once you have created an instance of this object, you can call the other methods below on it. If you don't specify an API key it will connect to the demo HubSpot hub. Since this is shared by everyone on the internet, don't be surprised if you start to see 429 errors getting returned. See L<Rate limits|https://developers.hubspot.com/apps/api_guidelines>.
Returns: new instance of this class.
=cut
#~ sub deals_recently_modified
#~ {
#~ my $self = shift;
#~ my $count = shift;
#~ $count = 100 unless defined $count; # Max allowed by the API
#~ my $results = $json->decode($self->_get('/deals/v1/deal/recent/modified', { count => $count }));
#~ my $deals = $results->{'results'};
#~ my $deal_objects = [];
#~ foreach my $deal (@$deals)
#~ {
#~ my $deal_object = HubSpot::Deal->new({json => $deal});
#~ push(@$deal_objects, $deal_object);
#~ }
#~ return $deal_objects;
#~ }
=item contact_by_id()
Retrieve a single contact record by its ID. Takes one parameter, which is the ID of the contact you want to retrieve. The returned object will contain all the properties set on that object.
my $contact = $client->contact_by_id('897654');
Returns: L<HubSpot::Contact>, or undef if the contact wasn't found.
=cut
sub contact_by_id
{
my $self = shift;
my $id = shift;
my $content = $self->_get("/contacts/v1/contact/vid/$id/profile", { propertyMode => 'value_only' });
return undef if $self->rest_client->responseCode =~ /^404$/;
my $result = $json->decode($content);
return HubSpot::Contact->new({json => $result});
}
=item contacts()
Retrieve all contact records. Takes one optional parameter, which is the number of contacts you want to retrieve. The returned objects will contain a few of the properties set on that object. See L<HubSpot::Client/properties>.
my $contact = $client->contacts();
my $contact = $client->contacts(200);
s
Returns: L<HubSpot::Contact>
=cut
sub contacts
{
my $self = shift;
my $count = shift;
$count = 250 unless defined $count; # Max allowed by the API
my $contact_objects = [];
my $offset;
my $results;
my $i = 0;
while(!defined($results) || $results->{'has-more'} == 1)
{
$i++;
if($offset)
{
$results = $json->decode($self->_get('/contacts/v1/lists/all/contacts/all', { count => $count, vidOffset => $offset }));
}
else
{
$results = $json->decode($self->_get('/contacts/v1/lists/all/contacts/all', { count => $count }));
}
my $contacts = $results->{'contacts'};
foreach my $contact (@$contacts)
{
my $contact_object = HubSpot::Contact->new({json => $contact});
push(@$contact_objects, $contact_object);
}
$offset = $results->{'vid-offset'};
if(scalar(@$contact_objects) >= $count)
{
my @slice = @$contact_objects[0..$count-1]; $contact_objects = \@slice;
last;
}
}
return $contact_objects;
}
#~ sub owners
#~ {
#~ my $self = shift;
#~ my $owners = $json->decode($self->_get('/owners/v2/owners'));
#~ my $owner_objects = [];
#~ foreach my $owner (@$owners)
#~ {
#~ my $owner_object = HubSpot::Owner->new({json => $owner});
#~ push(@$owner_objects, $owner_object);
#~ }
#~ return $owner_objects;
#~ }
#~ sub logMeeting
#~ {
#~ my $self = shift;
#~ my $deal = shift;
#~ my $date = shift;
#~ }
sub _get
{
my $self = shift;
my $path = shift;
my $params = shift;
$params = {} unless defined $params; # In case no parameters have been specified
$params->{'hapikey'} = $self->api_key; # Include the API key in the parameters
my $url = $path.$self->rest_client->buildQuery($params); # Build the URL
#~ print STDERR $url."\n";
$self->rest_client->GET($url); # Get it
$self->_checkResponse(); # Check it was successful
return $self->rest_client->responseContent(); # return the result
}
sub _put
{
my $self = shift;
my $path = shift;
my $params = shift;
my $content = shift;
$params = {} unless defined $params; # In case no parameters have been specified
$params->{'hapikey'} = $self->api_key; # Include the API key in the parameters
my $url = $path.$self->rest_client->buildQuery($params); # Build the URL
$self->rest_client->POST($url, $content); # Get it
$self->_checkResponse(); # Check it was successful
return $self->rest_client->responseContent();
}
sub _checkResponse
{
my $self = shift;
if($self->rest_client->responseCode !~ /^[23]|404/)
{
die ("Request failed.
Response Code: ".$self->rest_client->responseCode."
Response Body: ".$self->rest_client->responseContent."
");
}
}