| Server IP : 54.94.228.101 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/nztim/mailchimp/src/ |
Upload File : |
<?php namespace NZTim\Mailchimp;
use NZTim\Mailchimp\Exception\MailchimpBadRequestException;
use NZTim\Mailchimp\Exception\MailchimpException;
use NZTim\Mailchimp\Exception\MailchimpInternalErrorException;
use Requests;
use Requests_Auth_Basic;
use Requests_Response;
class MailchimpApi
{
protected $apikey;
protected $baseurl = 'https://<dc>.api.mailchimp.com/3.0';
protected $responseCode;
public function __construct(string $apikey)
{
$this->apikey = $apikey;
$exploded = explode('-', $apikey);
$this->baseurl = str_replace('<dc>', array_pop($exploded), $this->baseurl);
}
// API calls --------------------------------------------------------------
public function getLists(): array
{
return $this->call('get', '/lists');
}
public function getList(string $listId): array
{
return $this->call('get', '/lists/' . $listId);
}
public function getMember(string $listId, string $memberId): array
{
return $this->call('get', "/lists/{$listId}/members/{$memberId}");
}
public function addUpdate(string $listId, string $email, array $merge, bool $confirm)
{
$email = strtolower($email);
$memberId = md5($email);
$data = [
'email_address' => $email,
'status_if_new' => $confirm ? 'pending' : 'subscribed',
'status' => $confirm ? 'pending' : 'subscribed',
];
// Empty array doesn't work
if ($merge) {
$data['merge_fields'] = $merge;
}
$this->call('put', "/lists/{$listId}/members/{$memberId}", $data);
}
public function addUpdateMember(string $listId, Member $member)
{
$this->call('put', "/lists/{$listId}/members/{$member->hash()}", $member->parameters());
}
public function unsubscribe(string $listId, string $email)
{
$memberId = md5($email);
$this->call('put', "/lists/{$listId}/members/{$memberId}", ['email_address' => $email, 'status_if_new' => 'unsubscribed', 'status' => 'unsubscribed']);
}
// HTTP -------------------------------------------------------------------
public function call(string $method, string $endpoint, array $data = []): array
{
$method = strtolower($method);
if (!in_array($method, ['get', 'put', 'post', 'delete', 'patch'])) {
throw new MailchimpException('Invalid API call method: ' . $method);
}
if (in_array($method, ['get', 'delete'])) {
$response = Requests::$method($this->baseurl . $endpoint, $this->headers(), $this->options());
} else {
$response = Requests::$method(
$this->baseurl . $endpoint,
$this->headers(),
json_encode($data),
$this->options()
);
}
$this->responseCode = intval($response->status_code);
if ($this->responseCode >= 400) {
$this->apiError($response);
}
return json_decode($response->body, true) ?? [];
}
protected function options(): array
{
return [
'auth' => new Requests_Auth_Basic(['mcuser', $this->apikey]),
];
}
protected function headers(): array
{
return [];
}
protected function apiError(Requests_Response $response)
{
$info = var_export(json_decode($response->body, true), true);
$message = "Mailchimp API error (" . $response->status_code . "): " . $info;
if ($this->responseCode <= 499) {
throw new MailchimpBadRequestException($message, $this->responseCode, null, $response->body);
}
throw new MailchimpInternalErrorException($message, $this->responseCode);
}
public function responseCode(): int
{
return $this->responseCode;
}
public function responseCodeNotFound(): bool
{
return $this->responseCode == 404;
}
}