AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/plugins/system/nrframework/NRFramework/Integrations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/plugins/system/nrframework/NRFramework/Integrations/MailerLite.php
<?php

/**
 * @author          Tassos Marinos <info@tassos.gr>
 * @link            https://www.tassos.gr
 * @copyright       Copyright © 2024 Tassos All Rights Reserved
 * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
 */

namespace Tassos\Framework\Integrations;

// No direct access
defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;

class MailerLite extends Integration
{
	/**
	 * Create a new instance
	 * @param array $options The service's required options
	 * @throws \Exception
	 */
	public function __construct($options)
	{
		parent::__construct();
		$this->setKey($options);
		$this->setEndpoint('https://connect.mailerlite.com/api');
		$this->options->set('headers.Authorization', 'Bearer ' . $this->key);
	}

	/**
	 *  Subscribes a user to a MailerLite Account
	 *
	 *  API Reference v3:
	 *  https://developers.mailerlite.com/docs/subscribers.html#create-upsert-subscriber
	 *
	 *  @param   string   $email     		  The user's email
	 *  @param   array    $fields    		  All the custom fields
	 *  @param   string   $groupIds  		  The Group IDs
	 *  @param   string   $subscriber_status  The subscriber status (active, unsubscribed, unconfirmed, bounced, junk)
	 *  @param   boolean  $update_existing    Whether to update the existing contact (Only in v3)
	 *
	 *  @return  boolean
	 */
	public function subscribe($email, $fields, $groupIds = [], $subscriber_status = '', $update_existing = true)
	{
		// Abort if we don't want to update existing subscribers and the subscriber already exists
		if (!$update_existing && $this->subscriberExists($email))
		{
			throw new \Exception(Text::_('NR_YOU_ARE_ALREADY_A_SUBSCRIBER'), 1);
		}
		
		$data = [
			'email'  => $email,
			'fields' => $fields
		];

		if ($subscriber_status)
		{
			$data['status'] = $subscriber_status;
		}

		if ($groupIds)
		{
			$data['groups'] = $groupIds;
		}

		$this->post('subscribers', $data);

		return true;
	}

	/**
	 * Check if a subscriber exists
	 * 
	 * @param   string   $email  The subscriber's email
	 * 
	 * @return  boolean
	 */
	private function subscriberExists($email = '')
	{
		if (!$email)
		{
			return false;
		}

		$response = $this->get('subscribers/' . $email);

		return isset($response['data']['email']) && $response['data']['email'] == $email;
	}

	/**
	 *  Returns all groups
	 *
	 *  API Reference v3:
	 *  https://developers.mailerlite.com/docs/groups.html#list-all-groups
	 *
	 *  @return  array
	 */
	public function getGroups()
	{
		$data = [
			'offset' => 0,
			'limit' => 50
		];

		$lists = [];

		$data = $this->get('groups', $data);

		// sanity check
		if (!isset($data['data']) || !is_array($data['data']))
		{
			return $lists;
		}

		foreach ($data['data'] as $key => $list)
		{
			$lists[] = [
				'id'   => $list['id'],
				'name' => $list['name']
			];
		}

		return $lists;
		
	}

	/**
	 *  Get the last error returned by either the network transport, or by the API.
	 *
	 *  API Reference:
	 *  https://developers.mailerlite.com/docs/#validation-errors
	 *
	 *  @return  string
	 */
	public function getLastError()
	{
		$body    = $this->last_response->body;

		return isset($body['message']) ? $body['message'] : 'An error has occurred.';
	}
}

Anon7 - 2022
AnonSec Team