de.forumzfd.twinglecampaign/CRM/TwingleCampaign/BAO/Campaign.php
Marc Michalsky forumZFD a9ebd8c514
remove $origin parameter
it isn't necessary anymore because I use my own APIs to get the data always in the Twingle format
2020-12-15 14:50:01 +01:00

473 lines
11 KiB
PHP

<?php
use CRM_TwingleCampaign_Utils_ExtensionCache as Cache;
use CRM_TwingleCampaign_BAO_CampaignType as CampaignType;
use CRM_TwingleCampaign_BAO_TwingleProject as TwingleProject;
use CRM_TwingleCampaign_BAO_TwingleEvent as TwingleEvent;
use CRM_TwingleCampaign_BAO_TwingleCampaign as TwingleCampaign;
abstract class CRM_TwingleCampaign_BAO_Campaign {
// IN means: heading into CiviCRM database
public const IN = 'IN';
// OUT means: coming from the CiviCRM database
public const OUT = 'OUT';
protected $className;
protected $id;
protected $values;
protected $id_custom_field = NULL;
protected $prefix = NULL;
/**
* Campaign constructor.
*
* @param array $campaign
* Result array of Twingle API call
*
* Origin of the arrays. It can be one of two constants:
* Campaign::TWINGLE|CIVICRM
*
* @throws Exception
*/
protected function __construct(array $campaign) {
$tmpClassName = explode('_', get_class($this));
$this->className = array_pop($tmpClassName);
// Set campaign values
$this->update($campaign);
// Filter project values
$filter = Cache::getInstance()->getTemplates()[$this->className];
foreach ($campaign as $key => $value) {
if (in_array($key, $filter)) {
$this->values[$key] = $value;
}
}
}
/**
* Check if a campaign already exists and if so set attributes
* to the values of the existing campaign.
*
* @return bool
* Returns TRUE id the campaign already exists
*
* @throws CiviCRM_API3_Exception
*
* @throws Exception
*/
public function exists(): bool {
if (!$this->values['id']) {
return FALSE;
}
$single = FALSE;
$result = civicrm_api3($this->className, 'get', [
'sequential' => 1,
'is_active' => 1,
'project_id' => $this->values['id'],
]);
// If there is more than one campaign for this entity, handle the duplicates
if ($result['count'] > 1) {
self::handleDuplicates($result);
}
else {
$single = TRUE;
}
// If this campaign already exists, get its attributes
if ($result['count'] == 1) {
// Extract campaign values from result array
$values = $result['values'][0];
// Set id attribute
$this->id = $values['id'];
// Set attributes to the values of the existing campaign
// to reflect the state of the actual campaign in the database
$this->update($values);
return TRUE;
}
else {
return FALSE;
}
}
/**
* Update an existing campaign
*
* @param array $values
* Array with values to update
*
*/
public function update(array $values) {
// Update campaign values
$this->values = array_merge($this->values, $values);
}
/**
* Instantiate an existing campaign by its id
*
* @param $id
*
* @return TwingleProject|TwingleEvent|TwingleCampaign|NULL
* @throws CiviCRM_API3_Exception
* @throws Exception
*/
public static function fetch($id) {
$result = civicrm_api3('Campaign', 'getsingle', [
'sequential' => 1,
'id' => $id,
]);
$twingle_campaign_types = Cache::getInstance()
->getCampaigns()['campaign_types'];
$twingle_campaign_type_values = [];
foreach ($twingle_campaign_types as $twingle_campaign_type) {
$twingle_campaign_type_values[$twingle_campaign_type['name']] =
CampaignType::fetch($twingle_campaign_type['name'])->getValue();
}
switch ($result->values['campaign_type_id']) {
case $twingle_campaign_type_values['twingle_project']:
return new TwingleProject(
$result['values'],
self::CIVICRM
);
case $twingle_campaign_type_values['twingle_event']:
return new TwingleEvent(
$result['values'],
self::CIVICRM
);
case $twingle_campaign_type_values['twingle_campaign']:
return new TwingleCampaign(
$result['values'],
self::CIVICRM
);
default:
return NULL;
}
}
/**
* Deactivate all duplicates of a campaign but the newest one
*
* @param array $result
* @throws CiviCRM_API3_Exception
*/
protected function handleDuplicates(array &$result) {
// Sort campaigns ascending by the value of the last_modified_date
uasort($result['values'], function ($a, $b) {
return $a['last_modified_date'] <=> $b['last_modified_date'];
});
// Deactivate all but the first campaign
while (sizeof($result['values']) > 1) {
self::deactivateById(array_pop($result['values']));
}
}
/**
* Translate array keys between CiviCRM Campaigns and Twingle
*
* @param array $values
* array of which keys shall be translated
*
* @param string $direction
* Campaign::IN -> translate array keys from Twingle format into
* CiviCRM format <br>
* Campaign::OUT -> translate array keys from CiviCRM format into
* Twingle format
*
* @throws Exception
*/
public function translateKeys(array &$values, string $direction) {
// Get translations for fields
$field_translations = Cache::getInstance()
->getTranslations()[$this->className];
// Set the direction of the translation
if ($direction == self::OUT) {
$field_translations = array_flip($field_translations);
}
// Throw error if $direction constant does not match IN or OUT
elseif ($direction != self::IN) {
throw new Exception(
"Invalid Parameter $direction for translateKeys()"
);
// TODO: use specific exception or create own
}
// Translate keys
foreach ($field_translations as $origin => $translation) {
$values[$translation] = $values[$origin];
unset($values[$origin]);
}
}
/**
* Translate between field names and custom field names
*
* @param array $values
* array of which keys shall be translated
*
* @param string $direction
* Campaign::IN -> translate field names into custom field names <br>
* Campaign::OUT -> translate custom field names into field names
*
*/
public function translateCustomFields(array &$values, string $direction) {
// Translate field name to custom field name
if ($direction == self::IN) {
foreach (Cache::getInstance()
->getCustomFieldMapping() as $field => $custom) {
if (array_key_exists(
str_replace(
$this->prefix,
'',
$field
),
$values)
) {
$values[$custom] = $values[str_replace(
$this->prefix,
'',
$field
)];
unset($values[str_replace(
$this->prefix,
'',
$field
)]
);
}
}
}
// Translate from custom field name to field name
elseif ($direction == self::OUT) {
foreach (Cache::getInstance()
->getCustomFieldMapping() as $field => $custom) {
if (array_key_exists(
$custom,
$values
)
) {
$values[str_replace(
$this->prefix,
'',
$field
)] = $values[$custom];
unset($values[$custom]);
}
}
}
}
/**
* Set embed data fields
*
* @param array $embedData
* Array with embed data from Twingle API
*/
public function setEmbedData(array $embedData) {
// Get all embed_data keys from template
$embed_data_keys = Cache::getInstance()
->getTemplates()['project_embed_data'];
// Transfer all embed_data values
foreach ($embed_data_keys as $key) {
$this->values[$key] = htmlspecialchars($embedData[$key]);
}
}
/**
* Set counter url
*
* @param String $counterUrl
* URL of the counter
*/
public function setCounterUrl(string $counterUrl) {
$this->values['counter'] = $counterUrl;
}
/**
* Deactivate this Campaign campaign
*
* @return bool
* TRUE if deactivation was successful
*
* @throws CiviCRM_API3_Exception
*/
public function deactivate() {
return self::deactivateByid($this->id);
}
/**
* Deactivate a Campaign campaign by ID
*
* @param $id
* ID of the campaign that should get deactivated
*
* @return bool
* TRUE if deactivation was successful
*
* @throws CiviCRM_API3_Exception
*/
public static function deactivateById($id) {
$result = civicrm_api3('Campaign', 'getsingle', [
'id' => $id,
'sequential' => 1,
]);
$result = civicrm_api3('Campaign', 'create', [
'title' => $result['title'],
'id' => $id,
'is_active' => '0',
]);
// Return TRUE if the campaign was deactivated successfully
if ($result['is_error'] == 0) {
return TRUE;
}
// Return FALSE if deactivation failed
else {
return FALSE;
}
}
/**
* Get a response that describes the status of a Campaign
*
* @param string $status
* status of the Campaign you want the response for
*
* @return array
* Returns a response array that contains title, id, project_id and status
*/
public function getResponse(string $status) {
return [
'title' => $this->values['name'],
'id' => (int) $this->id,
'project_id' => (int) $this->values['id'],
'project_type' => $this->values['type'],
'status' => $status,
];
}
/**
* Validates $input to be either a DateTime string or an Unix timestamp
*
* @param $input
* Pass a DateTime string or a Unix timestamp
*
* @return int
* Returns a Unix timestamp or NULL if $input is invalid
*/
public static function getTimestamp($input) {
// Check whether $input is a Unix timestamp
if (
$dateTime = DateTime::createFromFormat('U', $input)
) {
return $input;
}
// ... or a DateTime string
elseif (
$dateTime = DateTime::createFromFormat('Y-m-d H:i:s', $input)
) {
return $dateTime->getTimestamp();
}
// ... or invalid
else {
return NULL;
}
}
/**
* Validates $input to be either a DateTime string or an Unix timestamp
*
* @param $input
* Pass a DateTime string or a Unix timestamp
*
* @return string
* Returns a DateTime string or NULL if $input is invalid
*/
public static function getDateTime($input) {
// Check whether $input is a Unix timestamp
if (
$dateTime = DateTime::createFromFormat('U', $input)
) {
return $dateTime->format('Y-m-d H:i:s');
}
// ... or a DateTime string
elseif (
$dateTime = DateTime::createFromFormat('Y-m-d H:i:s', $input)
) {
return $input;
}
// ... or invalid
else {
return NULL;
}
}
/**
* Returns the project_id of a Campaign
*
* @return int
*/
public function getProjectId() {
return $this->values['id'];
}
/**
* @return mixed
*/
public function getId() {
return $this->id;
}
}