Skip to content
Snippets Groups Projects
Commit 3dead1c6 authored by jaapjansma's avatar jaapjansma
Browse files

Refactored data processor field entity

parent c90bdec7
No related branches found
No related tags found
No related merge requests found
Showing
with 689 additions and 507 deletions
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
class CRM_Dataprocessor_BAO_DataProcessorField extends CRM_Dataprocessor_DAO_DataProcessorField {
public static function checkName($title, $data_processor_id, $id=null,$name=null) {
if (!$name) {
$name = preg_replace('@[^a-z0-9_]+@','_',strtolower($title));
}
$name = preg_replace('@[^a-z0-9_]+@','_',strtolower($name));
$name_part = $name;
$sql = "SELECT COUNT(*) FROM `civicrm_data_processor_field` WHERE `name` = %1 AND `data_processor_id` = %2";
$sqlParams[1] = array($name, 'String');
$sqlParams[2] = array($data_processor_id, 'String');
if (isset($id)) {
$sql .= " AND `id` != %3";
$sqlParams[3] = array($id, 'Integer');
}
$i = 1;
while(CRM_Core_DAO::singleValueQuery($sql, $sqlParams) > 0) {
$i++;
$name = $name_part .'_'.$i;
$sqlParams[1] = array($name, 'String');
}
return $name;
}
}
<?php
/**
* @author Jaap Jansma <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
class CRM_Dataprocessor_BAO_Field extends CRM_Dataprocessor_DAO_Field {
/**
* Function to get values
*
* @return array $result found rows with data
* @access public
* @static
*/
public static function getValues($params) {
$factory = dataprocessor_get_factory();
$types = $factory->getDataSources();
$result = array();
$field = new CRM_Dataprocessor_DAO_Field();
if (!empty($params)) {
$fields = self::fields();
foreach ($params as $key => $value) {
if (isset($fields[$key])) {
$field->$key = $value;
}
}
}
$field->orderBy("weight ASC");
$field->find();
while ($field->fetch()) {
$row = array();
self::storeValues($field, $row);
if (isset($types[$row['type']])) {
$row['type_name'] = $types[$row['type']];
} else {
$row['type_name'] = '';
}
if (!empty($row['configuration'])) {
$row['configuration'] = json_decode($row['configuration'], true);
} else {
$row['configuration'] = array();
}
if (!empty($row['join_configuration'])) {
$row['join_configuration'] = json_decode($row['join_configuration'], true);
} else {
$row['join_configuration'] = array();
}
$result[$row['id']] = $row;
}
return $result;
}
/**
* Function to add or update a DataProcessor
*
* @param array $params
* @return array $result
* @access public
* @throws Exception when params is empty
* @static
*/
public static function add($params) {
$result = array();
if (empty($params)) {
throw new Exception('Params can not be empty when adding or updating a data processor field');
}
if (!isset($params['weight'])) {
$params['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Dataprocessor_DAO_Field', array('data_processor_id' => $params['data_processor_id']));
}
if (!empty($params['id'])) {
CRM_Utils_Hook::pre('edit', 'DataProcessorField', $params['id'], $params);
}
else {
CRM_Utils_Hook::pre('create', 'DataProcessorField', NULL, $params);
}
$field = new CRM_Dataprocessor_DAO_Field();
$fields = self::fields();
foreach ($params as $key => $value) {
if (isset($fields[$key])) {
$field->$key = $value;
}
}
if (isset($field->configuration) && is_array($field->configuration)) {
$field->configuration = json_encode($field->configuration);
}
$field->save();
$id = $field->id;
$field = new CRM_Dataprocessor_BAO_Field();
$field->id = $id;
$field->find(true);
CRM_Dataprocessor_BAO_DataProcessor::updateAndChekStatus($field->data_processor_id);
self::storeValues($field, $result);
if (!empty($params['id'])) {
CRM_Utils_Hook::post('edit', 'DataProcessorField', $field->id, $field);
}
else {
CRM_Utils_Hook::post('create', 'DataProcessorField', $field->id, $field);
}
return $result;
}
/**
* Public function to generate name from title
*
* @param $label
* @return string
* @access public
* @static
*/
public static function buildNameFromTitle($title) {
return preg_replace('@[^a-z0-9_]+@','_', strtolower($title));
}
/**
* Returns whether the name is valid or not
*
* @param string $name
* @param int $data_procssor_id,
* @param int $id optional
* @return bool
* @static
*/
public static function isNameValid($name, $data_procssor_id, $id=null) {
$sql = "SELECT COUNT(*) FROM `civicrm_data_processor_field` WHERE `name` = %1 AND `data_processor_id` = %2";
$params[1] = array($name, 'String');
$params[2] = array($data_procssor_id, 'Integer');
if ($id) {
$sql .= " AND `id` != %3";
$params[3] = array($id, 'Integer');
}
$count = CRM_Core_DAO::singleValueQuery($sql, $params);
return ($count > 0) ? false : true;
}
/**
* Function to delete a Data Processor Field with id
*
* @param int $id
* @throws Exception when $id is empty
* @access public
* @static
*/
public static function deleteWithId($id) {
if (empty($id)) {
throw new Exception('id can not be empty when attempting to delete a data processor field');
}
CRM_Utils_Hook::pre('delete', 'DataProcessorField', $id, CRM_Core_DAO::$_nullArray);
$field = new CRM_Dataprocessor_DAO_Field();
$field->id = $id;
$field->delete();
CRM_Utils_Hook::post('delete', 'DataProcessorField', $id, CRM_Core_DAO::$_nullArray);
return;
}
/**
* Function to delete a Data Processor Field with id
*
* @param int $id
* @throws Exception when $id is empty
* @access public
* @static
*/
public static function deleteWithDataProcessorId($id) {
if (empty($id)) {
throw new Exception('id can not be empty when attempting to delete a data processor field');
}
$field = new CRM_Dataprocessor_DAO_Field();
$field->data_processor_id = $id;
$field->find(FALSE);
while ($field->fetch()) {
self::deleteWithId($field->id);
}
}
}
\ No newline at end of file
<?php
/**
* @package CRM
* @copyright CiviCRM LLC (c) 2004-2019
*
* Generated from /buildkit/build/search/sites/default/files/civicrm/ext/dataprocessor/xml/schema/CRM/Dataprocessor/DataProcessorField.xml
* DO NOT EDIT. Generated by CRM_Core_CodeGen
* (GenCodeChecksum:31241877b684b9293303c171b4a4dcbb)
*/
/**
* Database access object for the DataProcessorField entity.
*/
class CRM_Dataprocessor_DAO_DataProcessorField extends CRM_Core_DAO {
/**
* Static instance to hold the table name.
*
* @var string
*/
static $_tableName = 'civicrm_data_processor_field';
/**
* Should CiviCRM log any modifications to this table in the civicrm_log table.
*
* @var bool
*/
static $_log = FALSE;
/**
* Unique DataProcessorField ID
*
* @var int unsigned
*/
public $id;
/**
* FK to Data Processor
*
* @var int unsigned
*/
public $data_processor_id;
/**
* @var int
*/
public $weight;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $title;
/**
* @var string
*/
public $type;
/**
* @var text
*/
public $configuration;
/**
* Class constructor.
*/
public function __construct() {
$this->__table = 'civicrm_data_processor_field';
parent::__construct();
}
/**
* Returns foreign keys and entity references.
*
* @return array
* [CRM_Core_Reference_Interface]
*/
public static function getReferenceColumns() {
if (!isset(Civi::$statics[__CLASS__]['links'])) {
Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'data_processor_id', 'civicrm_data_processor', 'id');
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
}
return Civi::$statics[__CLASS__]['links'];
}
/**
* Returns all the column names of this table
*
* @return array
*/
public static function &fields() {
if (!isset(Civi::$statics[__CLASS__]['fields'])) {
Civi::$statics[__CLASS__]['fields'] = [
'id' => [
'name' => 'id',
'type' => CRM_Utils_Type::T_INT,
'description' => CRM_Dataprocessor_ExtensionUtil::ts('Unique DataProcessorField ID'),
'required' => TRUE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'data_processor_id' => [
'name' => 'data_processor_id',
'type' => CRM_Utils_Type::T_INT,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Data Processor ID'),
'description' => CRM_Dataprocessor_ExtensionUtil::ts('FK to Data Processor'),
'required' => TRUE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'weight' => [
'name' => 'weight',
'type' => CRM_Utils_Type::T_INT,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Weight'),
'required' => FALSE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'name' => [
'name' => 'name',
'type' => CRM_Utils_Type::T_STRING,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Name'),
'required' => FALSE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'title' => [
'name' => 'title',
'type' => CRM_Utils_Type::T_STRING,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Title'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'type' => [
'name' => 'type',
'type' => CRM_Utils_Type::T_STRING,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Type'),
'required' => TRUE,
'maxlength' => 255,
'size' => CRM_Utils_Type::HUGE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
],
'configuration' => [
'name' => 'configuration',
'type' => CRM_Utils_Type::T_TEXT,
'title' => CRM_Dataprocessor_ExtensionUtil::ts('Configuration'),
'required' => FALSE,
'table_name' => 'civicrm_data_processor_field',
'entity' => 'DataProcessorField',
'bao' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'localizable' => 0,
'serialize' => self::SERIALIZE_JSON,
],
];
CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
}
return Civi::$statics[__CLASS__]['fields'];
}
/**
* Return a mapping from field-name to the corresponding key (as used in fields()).
*
* @return array
* Array(string $name => string $uniqueName).
*/
public static function &fieldKeys() {
if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
}
return Civi::$statics[__CLASS__]['fieldKeys'];
}
/**
* Returns the names of this table
*
* @return string
*/
public static function getTableName() {
return self::$_tableName;
}
/**
* Returns if this table needs to be logged
*
* @return bool
*/
public function getLog() {
return self::$_log;
}
/**
* Returns the list of fields that can be imported
*
* @param bool $prefix
*
* @return array
*/
public static function &import($prefix = FALSE) {
$r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'data_processor_field', $prefix, []);
return $r;
}
/**
* Returns the list of fields that can be exported
*
* @param bool $prefix
*
* @return array
*/
public static function &export($prefix = FALSE) {
$r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'data_processor_field', $prefix, []);
return $r;
}
/**
* Returns the list of indices
*
* @param bool $localize
*
* @return array
*/
public static function indices($localize = TRUE) {
$indices = [];
return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
}
}
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
/**
* @author Jaap Jansma (CiviCooP) <jaap.jansma@civicoop.org>
* @license http://www.gnu.org/licenses/agpl-3.0.html
*/
class CRM_Dataprocessor_DAO_Field extends CRM_Core_DAO {
/**
* static instance to hold the field values
*
* @var array
* @static
*/
static $_fields = null;
static $_export = null;
/**
* empty definition for virtual function
*/
static function getTableName() {
return 'civicrm_data_processor_field';
}
/**
* returns all the column names of this table
*
* @access public
* @return array
*/
public static function &fields() {
if (!(self::$_fields)) {
self::$_fields = array(
'id' => array(
'name' => 'id',
'title' => E::ts('ID'),
'type' => CRM_Utils_Type::T_INT,
'required' => true
) ,
'weight' => array(
'name' => 'weight',
'title' => E::ts('Weight'),
'type' => CRM_Utils_Type::T_INT,
'required' => true
) ,
'data_processor_id' => array(
'name' => 'data_processor_id',
'title' => E::ts('Data Processor ID'),
'type' => CRM_Utils_Type::T_INT,
'required' => true,
'FKApiName' => 'DataProcessor',
),
'type' => array(
'name' => 'type',
'title' => E::ts('Type'),
'type' => CRM_Utils_Type::T_STRING,
'maxlength' => 80,
'required' => true,
),
'name' => array(
'name' => 'name',
'title' => E::ts('Name'),
'type' => CRM_Utils_Type::T_STRING,
'maxlength' => 128,
'required' => true
),
'title' => array(
'name' => 'title',
'title' => E::ts('Title'),
'type' => CRM_Utils_Type::T_STRING,
'maxlength' => 128,
'required' => true
),
'configuration' => array(
'name' => 'configuration',
'title' => E::ts('Configuration'),
'type' => CRM_Utils_Type::T_TEXT,
),
);
}
return self::$_fields;
}
/**
* Returns an array containing, for each field, the array key used for that
* field in self::$_fields.
*
* @access public
* @return array
*/
public static function &fieldKeys() {
if (!(self::$_fieldKeys)) {
self::$_fieldKeys = array(
'id' => 'id',
'weight' => 'weight',
'data_processor_id' => 'data_processor_id',
'type' => 'type',
'name' => 'name',
'title' => 'title',
'configuration' => 'configuration',
);
}
return self::$_fieldKeys;
}
}
\ No newline at end of file
...@@ -83,11 +83,12 @@ class CRM_Dataprocessor_Form_DataProcessor extends CRM_Core_Form { ...@@ -83,11 +83,12 @@ class CRM_Dataprocessor_Form_DataProcessor extends CRM_Core_Form {
} }
protected function addFields() { protected function addFields() {
$fields = CRM_Dataprocessor_BAO_Field::getValues(array('data_processor_id' => $this->dataProcessorId)); $fields = civicrm_api3('DataProcessorField', 'get', array('data_processor_id' => $this->dataProcessorId, 'options' => array('limit' => 0)));
$fields = $fields['values'];
foreach($fields as $idx => $field) { foreach($fields as $idx => $field) {
$fields[$idx]['configuration_link'] = ''; $fields[$idx]['configuration_link'] = '';
} }
CRM_Utils_Weight::addOrder($fields, 'CRM_Dataprocessor_DAO_Field', 'id', $this->currentUrl, 'data_processor_id='.$this->dataProcessorId); CRM_Utils_Weight::addOrder($fields, 'CRM_Dataprocessor_DAO_DataProcessorField', 'id', $this->currentUrl, 'data_processor_id='.$this->dataProcessorId);
$this->assign('fields', $fields); $this->assign('fields', $fields);
} }
......
...@@ -13,6 +13,8 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form { ...@@ -13,6 +13,8 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form {
private $id; private $id;
private $field;
/** /**
* Function to perform processing before displaying form (overrides parent function) * Function to perform processing before displaying form (overrides parent function)
* *
...@@ -27,8 +29,8 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form { ...@@ -27,8 +29,8 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form {
$this->assign('id', $this->id); $this->assign('id', $this->id);
if ($this->id) { if ($this->id) {
$field = CRM_Dataprocessor_BAO_Field::getValues(array('id' => $this->id)); $this->field = civicrm_api3('DataProcessorField', 'getsingle', array('id' => $this->id));
$this->assign('field', $field[$this->id]); $this->assign('field', $this->field);
} }
$title = E::ts('Data Processor Field'); $title = E::ts('Data Processor Field');
...@@ -77,15 +79,16 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form { ...@@ -77,15 +79,16 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form {
$defaults['data_processor_id'] = $this->dataProcessorId; $defaults['data_processor_id'] = $this->dataProcessorId;
$defaults['id'] = $this->id; $defaults['id'] = $this->id;
$field = CRM_Dataprocessor_BAO_Field::getValues(array('id' => $this->id)); if ($this->field) {
if (isset($field[$this->id]['type'])) { if (isset($this->field['type'])) {
$defaults['type'] = $field[$this->id]['type']; $defaults['type'] = $this->field['type'];
} }
if (isset($field[$this->id]['title'])) { if (isset($this->field['title'])) {
$defaults['title'] = $field[$this->id]['title']; $defaults['title'] = $this->field['title'];
} }
if (isset($field[$this->id]['name'])) { if (isset($this->field['name'])) {
$defaults['name'] = $field[$this->id]['name']; $defaults['name'] = $this->field['name'];
}
} }
return $defaults; return $defaults;
} }
...@@ -94,7 +97,7 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form { ...@@ -94,7 +97,7 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form {
$session = CRM_Core_Session::singleton(); $session = CRM_Core_Session::singleton();
$redirectUrl = $session->readUserContext(); $redirectUrl = $session->readUserContext();
if ($this->_action == CRM_Core_Action::DELETE) { if ($this->_action == CRM_Core_Action::DELETE) {
CRM_Dataprocessor_BAO_Field::deleteWithId($this->id); civicrm_api3('DataProcessorField', 'delete', array('id' => $this->id));
$session->setStatus(E::ts('Field removed'), E::ts('Removed'), 'success'); $session->setStatus(E::ts('Field removed'), E::ts('Removed'), 'success');
CRM_Utils_System::redirect($redirectUrl); CRM_Utils_System::redirect($redirectUrl);
} }
...@@ -102,61 +105,18 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form { ...@@ -102,61 +105,18 @@ class CRM_Dataprocessor_Form_Field extends CRM_Core_Form {
$values = $this->exportValues(); $values = $this->exportValues();
if (!empty($values['name'])) { if (!empty($values['name'])) {
$params['name'] = $values['name']; $params['name'] = $values['name'];
} else {
$params['name'] = CRM_Dataprocessor_BAO_Field::buildNameFromTitle($values['title']);
} }
$params['title'] = $values['title']; $params['title'] = $values['title'];
$params['type'] = $values['type']; $params['type'] = $values['type'];
if ($this->dataProcessorId) { $params['data_processor_id'] = $this->dataProcessorId;
$params['data_processor_id'] = $this->dataProcessorId;
}
if ($this->id) { if ($this->id) {
$params['id'] = $this->id; $params['id'] = $this->id;
} }
$result = CRM_Dataprocessor_BAO_Field::add($params); civicrm_api3('DataProcessorField', 'create', $params);
CRM_Utils_System::redirect($redirectUrl); CRM_Utils_System::redirect($redirectUrl);
parent::postProcess(); parent::postProcess();
} }
/**
* Function to add validation rules (overrides parent function)
*
* @access public
*/
function addRules() {
if ($this->_action != CRM_Core_Action::DELETE) {
$this->addFormRule(array(
'CRM_Dataprocessor_Form_Field',
'validateName'
));
}
}
/**
* Function to validate if rule label already exists
*
* @param array $fields
* @return array|bool
* @access static
*/
static function validateName($fields) {
/*
* if id not empty, edit mode. Check if changed before check if exists
*/
$id = false;
if (!empty($fields['id'])) {
$id = $fields['id'];
}
if (empty($fields['name'])) {
$fields['name'] = CRM_Dataprocessor_BAO_Field::buildNameFromTitle($fields['title']);
}
if (!CRM_Dataprocessor_BAO_Field::isNameValid($fields['name'], $fields['data_processor_id'], $id)) {
$errors['name'] = E::ts('There is already a field with this name');
return $errors;
}
return TRUE;
}
} }
\ No newline at end of file
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
/**
* DataProcessorField.create API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function _civicrm_api3_data_processor_field_create_spec(&$spec) {
$fields = CRM_Dataprocessor_DAO_DataProcessorField::fields();
foreach($fields as $fieldname => $field) {
$spec[$fieldname] = $field;
if ($fieldname != 'id' && isset($field['required']) && $field['required']) {
$spec[$fieldname]['api.required'] = true;
}
}
}
/**
* DataProcessorField.create API
*
* @param array $params
* @return array API result descriptor
* @throws API_Exception
*/
function civicrm_api3_data_processor_field_create($params) {
if (!isset($params['weight']) && !isset($params['id'])) {
$params['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Dataprocessor_DAO_DataProcessorField', array('data_processor_id' => $params['data_processor_id']));
}
$id = null;
if (isset($params['id'])) {
$id = $params['id'];
}
$params['name'] = CRM_Dataprocessor_BAO_DataProcessorField::checkName($params['title'], $params['data_processor_id'], $id, $params['name']);
return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
}
/**
* DataProcessorField.delete API
*
* @param array $params
* @return array API result descriptor
* @throws API_Exception
*/
function civicrm_api3_data_processor_field_delete($params) {
return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
}
/**
* DataProcessorField.get API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function civicrm_api3_data_processor_field_get_spec(&$spec) {
$fields = CRM_Dataprocessor_DAO_DataProcessorField::fields();
foreach($fields as $fieldname => $field) {
$spec[$fieldname] = $field;
}
}
/**
* DataProcessorField.get API
*
* @param array $params
* @return array API result descriptor
* @throws API_Exception
*/
function civicrm_api3_data_processor_field_get($params) {
if (!isset($params['options']) || !isset($params['options']['sort'])) {
$params['options']['sort'] = 'weight ASC';
}
$return = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
foreach($return['values'] as $id => $value) {
if (isset($value['configuration'])) {
$return['values'][$id]['configuration'] = json_decode($value['configuration'], TRUE);
}
}
return $return;
}
/**
* DataProcessorField.check_name API specification
*
* @param $params
*/
function _civicrm_api3_data_processor_field_check_name_spec($params) {
$params['id'] = array(
'name' => 'id',
'title' => E::ts('ID'),
);
$params['title'] = array(
'name' => 'title',
'title' => E::ts('Title'),
'api.required' => true,
);
$params['data_processor_id'] = array(
'name' => 'data_processor_id',
'title' => E::ts('Data Processor Id'),
'api.required' => true,
);
$params['name'] = array(
'name' => 'name',
'title' => E::ts('Name'),
);
}
/**
* DataProcessorField.check_name API
*
* @param $params
*/
function civicrm_api3_data_processor_field_check_name($params) {
$name = CRM_Dataprocessor_BAO_DataProcessorField::checkName($params['title'], $params['data_processor_id'], $params['id'], $params['name']);
return array(
'name' => $name,
);
}
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
/**
* DataProcessorField.Create API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/
function _civicrm_api3_data_processor_field_create_spec(&$spec) {
$spec['id'] = array(
'title' => E::ts('ID'),
'type' => CRM_Utils_Type::T_INT,
'api.required' => false
);
$spec['weight'] = array(
'title' => E::ts('Weight'),
'type' => CRM_Utils_Type::T_INT,
'api.required' => false
);
$spec['data_processor_id'] = array(
'title' => E::ts('Data Processor ID'),
'type' => CRM_Utils_Type::T_INT,
'api.required' => true,
);
$spec['type'] = array(
'title' => E::ts('Type'),
'type' => CRM_Utils_Type::T_STRING,
'api.required' => true
);
$spec['name'] = array(
'title' => E::ts('Name'),
'type' => CRM_Utils_Type::T_STRING,
'api.required' => true
);
$spec['title'] = array(
'title' => E::ts('Title'),
'type' => CRM_Utils_Type::T_STRING,
'api.required' => true
);
$spec['configuration'] = array(
'title' => E::ts('Configuration'),
'type' => CRM_Utils_Type::T_TEXT,
'api.required' => false,
);
}
/**
* DataProcessorField.Create API
*
* @param array $params
* @return array API result descriptor
* @see civicrm_api3_create_success
* @see civicrm_api3_create_error
*
*
*/
function civicrm_api3_data_processor_field_create($params) {
$returnValue = CRM_Dataprocessor_BAO_Field::add($params);
$returnValues[$returnValue['id']] = $returnValue;
return civicrm_api3_create_success($returnValues, $params, 'DataProcessorField', 'Create');
}
<?php
use CRM_Dataprocessor_ExtensionUtil as E;
/**
* DataProcessorField.Delete API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRMDOC/API+Architecture+Standards
*/
function _civicrm_api3_data_processor_field_Delete_spec(&$spec) {
$spec['id'] = array(
'title' => E::ts('ID'),
'type' => CRM_Utils_Type::T_INT,
'api.required' => true
);
}
/**
* DataProcessorField.Delete API
*
* @param array $params
* @return array API result descriptor
* @see civicrm_api3_create_success
* @see civicrm_api3_create_error
* @throws API_Exception
*/
function civicrm_api3_data_processor_field_Delete($params) {
if (!array_key_exists('id', $params) || empty($params['id'])) {
throw new API_Exception('Parameter id is mandatory and can not be empty in ' . __METHOD__, 0010);
} else {
return civicrm_api3_create_success(CRM_Dataprocessor_BAO_DataProcessorField::deleteWithId($params['id']), $params, 'DataProcessorField', 'Delete');
}
}
<?php
/**
* DataProcessorField.Get API
*
* @param array $params
* @return array API result descriptor
* @see civicrm_api3_create_success
* @see civicrm_api3_create_error
* @throws API_Exception
*/
function civicrm_api3_data_processor_field_get($params) {
$returnValues = CRM_Dataprocessor_BAO_Field::getValues($params);
return civicrm_api3_create_success($returnValues, $params, 'DataProcessorField', 'Get');
}
/**
* DataProcessorField.Get API specification (optional)
* This is used for documentation and validation.
*
* @param array $spec description of fields supported by this API call
* @return void
* @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/
function _civicrm_api3_data_processor_field_get_spec(&$spec) {
$fields = CRM_Dataprocessor_BAO_Field::fields();
foreach($fields as $fieldname => $field) {
$spec[$fieldname] = $field;
}
}
...@@ -263,16 +263,17 @@ function _dataprocessor_civix_find_files($dir, $pattern) { ...@@ -263,16 +263,17 @@ function _dataprocessor_civix_find_files($dir, $pattern) {
*/ */
function _dataprocessor_civix_civicrm_managed(&$entities) { function _dataprocessor_civix_civicrm_managed(&$entities) {
$mgdFiles = _dataprocessor_civix_find_files(__DIR__, '*.mgd.php'); $mgdFiles = _dataprocessor_civix_find_files(__DIR__, '*.mgd.php');
sort($mgdFiles);
foreach ($mgdFiles as $file) { foreach ($mgdFiles as $file) {
$es = include $file; $es = include $file;
foreach ($es as $e) { foreach ($es as $e) {
if (empty($e['module'])) { if (empty($e['module'])) {
$e['module'] = E::LONG_NAME; $e['module'] = E::LONG_NAME;
} }
$entities[] = $e;
if (empty($e['params']['version'])) { if (empty($e['params']['version'])) {
$e['params']['version'] = '3'; $e['params']['version'] = '3';
} }
$entities[] = $e;
} }
} }
} }
...@@ -456,5 +457,11 @@ function _dataprocessor_civix_civicrm_alterSettingsFolders(&$metaDataFolders = N ...@@ -456,5 +457,11 @@ function _dataprocessor_civix_civicrm_alterSettingsFolders(&$metaDataFolders = N
function _dataprocessor_civix_civicrm_entityTypes(&$entityTypes) { function _dataprocessor_civix_civicrm_entityTypes(&$entityTypes) {
$entityTypes = array_merge($entityTypes, array ( $entityTypes = array_merge($entityTypes, array (
'CRM_Dataprocessor_DAO_DataProcessorField' =>
array (
'name' => 'DataProcessorField',
'class' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'table' => 'civicrm_data_processor_field',
),
)); ));
} }
ALTER TABLE `civicrm_data_processor_field`
CHANGE `name` `name` VARCHAR(255) NOT NULL,
CHANGE `type` `type` VARCHAR(255) NOT NULL,
CHANGE `title` `title` VARCHAR(255) NOT NULL;
\ No newline at end of file
-- +--------------------------------------------------------------------+
-- | CiviCRM version 5 |
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC (c) 2004-2019 |
-- +--------------------------------------------------------------------+
-- | This file is a part of CiviCRM. |
-- | |
-- | CiviCRM is free software; you can copy, modify, and distribute it |
-- | under the terms of the GNU Affero General Public License |
-- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
-- | |
-- | CiviCRM is distributed in the hope that it will be useful, but |
-- | WITHOUT ANY WARRANTY; without even the implied warranty of |
-- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
-- | See the GNU Affero General Public License for more details. |
-- | |
-- | You should have received a copy of the GNU Affero General Public |
-- | License and the CiviCRM Licensing Exception along |
-- | with this program; if not, contact CiviCRM LLC |
-- | at info[AT]civicrm[DOT]org. If you have questions about the |
-- | GNU Affero General Public License or the licensing of CiviCRM, |
-- | see the CiviCRM license FAQ at http://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from schema.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- +--------------------------------------------------------------------+
-- | CiviCRM version 5 |
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC (c) 2004-2019 |
-- +--------------------------------------------------------------------+
-- | This file is a part of CiviCRM. |
-- | |
-- | CiviCRM is free software; you can copy, modify, and distribute it |
-- | under the terms of the GNU Affero General Public License |
-- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
-- | |
-- | CiviCRM is distributed in the hope that it will be useful, but |
-- | WITHOUT ANY WARRANTY; without even the implied warranty of |
-- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
-- | See the GNU Affero General Public License for more details. |
-- | |
-- | You should have received a copy of the GNU Affero General Public |
-- | License and the CiviCRM Licensing Exception along |
-- | with this program; if not, contact CiviCRM LLC |
-- | at info[AT]civicrm[DOT]org. If you have questions about the |
-- | GNU Affero General Public License or the licensing of CiviCRM, |
-- | see the CiviCRM license FAQ at http://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from drop.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- /*******************************************************
-- *
-- * Clean up the exisiting tables
-- *
-- *******************************************************/
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `civicrm_data_processor_field`;
SET FOREIGN_KEY_CHECKS=1;
-- /*******************************************************
-- *
-- * Create new tables
-- *
-- *******************************************************/
-- /*******************************************************
-- *
-- * civicrm_data_processor_field
-- *
-- *******************************************************/
CREATE TABLE `civicrm_data_processor_field` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique DataProcessorField ID',
`data_processor_id` int unsigned NOT NULL COMMENT 'FK to Data Processor',
`weight` int NULL ,
`name` varchar(255) NULL ,
`title` varchar(255) NOT NULL ,
`type` varchar(255) NOT NULL ,
`configuration` text NULL
,
PRIMARY KEY (`id`)
, CONSTRAINT FK_civicrm_data_processor_field_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE
) ;
-- +--------------------------------------------------------------------+
-- | CiviCRM version 5 |
-- +--------------------------------------------------------------------+
-- | Copyright CiviCRM LLC (c) 2004-2019 |
-- +--------------------------------------------------------------------+
-- | This file is a part of CiviCRM. |
-- | |
-- | CiviCRM is free software; you can copy, modify, and distribute it |
-- | under the terms of the GNU Affero General Public License |
-- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
-- | |
-- | CiviCRM is distributed in the hope that it will be useful, but |
-- | WITHOUT ANY WARRANTY; without even the implied warranty of |
-- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
-- | See the GNU Affero General Public License for more details. |
-- | |
-- | You should have received a copy of the GNU Affero General Public |
-- | License and the CiviCRM Licensing Exception along |
-- | with this program; if not, contact CiviCRM LLC |
-- | at info[AT]civicrm[DOT]org. If you have questions about the |
-- | GNU Affero General Public License or the licensing of CiviCRM, |
-- | see the CiviCRM license FAQ at http://civicrm.org/licensing |
-- +--------------------------------------------------------------------+
--
-- Generated from drop.tpl
-- DO NOT EDIT. Generated by CRM_Core_CodeGen
--
-- /*******************************************************
-- *
-- * Clean up the exisiting tables
-- *
-- *******************************************************/
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `civicrm_data_processor_field`;
SET FOREIGN_KEY_CHECKS=1;
...@@ -37,17 +37,6 @@ CREATE TABLE IF NOT EXISTS `civicrm_data_processor_filter` ( ...@@ -37,17 +37,6 @@ CREATE TABLE IF NOT EXISTS `civicrm_data_processor_filter` (
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE = InnoDB; ) ENGINE = InnoDB;
CREATE TABLE IF NOT EXISTS `civicrm_data_processor_field` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`weight` INT UNSIGNED NOT NULL DEFAULT 0,
`data_processor_id` INT UNSIGNED NOT NULL,
`name` VARCHAR(128) NOT NULL,
`type` VARCHAR(128) NOT NULL,
`title` VARCHAR(128) NOT NULL,
`configuration` TEXT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;
CREATE TABLE IF NOT EXISTS `civicrm_data_processor_output` ( CREATE TABLE IF NOT EXISTS `civicrm_data_processor_output` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`data_processor_id` INT UNSIGNED NOT NULL, `data_processor_id` INT UNSIGNED NOT NULL,
......
DROP TABLE IF EXISTS `civicrm_data_processor_output`; DROP TABLE IF EXISTS `civicrm_data_processor_output`;
DROP TABLE IF EXISTS `civicrm_data_processor_field`;
DROP TABLE IF EXISTS `civicrm_data_processor_source`; DROP TABLE IF EXISTS `civicrm_data_processor_source`;
DROP TABLE IF EXISTS `civicrm_data_processor`; DROP TABLE IF EXISTS `civicrm_data_processor`;
\ No newline at end of file
...@@ -8,18 +8,12 @@ ...@@ -8,18 +8,12 @@
<th></th> <th></th>
<th></th> <th></th>
<th></th> <th></th>
<th></th>
</tr> </tr>
{foreach from=$fields item=field} {foreach from=$fields item=field}
<tr> <tr>
<td>{$field.title}</td> <td>{$field.title}</td>
<td>{$field.name}</td> <td>{$field.name}</td>
<td>{$field.weight}</td> <td>{if ($field.weight && !is_numeric($field.weight))}{$field.weight}{/if}</td>
<td>
{if $field.configuration_link}
<a href="{$source.configuration_link}">{ts}Configure Field{/ts}</a>
{/if}
</td>
<td> <td>
<a href="{crmURL p="civicrm/dataprocessor/form/field" q="reset=1&action=update&data_processor_id=`$field.data_processor_id`&id=`$field.id`"}">{ts}Edit{/ts}</a> <a href="{crmURL p="civicrm/dataprocessor/form/field" q="reset=1&action=update&data_processor_id=`$field.data_processor_id`&id=`$field.id`"}">{ts}Edit{/ts}</a>
</td> </td>
......
...@@ -21,15 +21,48 @@ ...@@ -21,15 +21,48 @@
</div> </div>
<div class="crm-section"> <div class="crm-section">
<div class="label">{$form.title.label}</div> <div class="label">{$form.title.label}</div>
<div class="content">{$form.title.html}</div> <div class="content">
{$form.title.html}
<span class="">
{ts}System name:{/ts}&nbsp;
<span id="systemName" style="font-style: italic;">{if ($field)}{$field.name}{/if}</span>
<a href="javascript:void(0);" onclick="jQuery('#nameSection').removeClass('hiddenElement'); jQuery(this).parent().addClass('hiddenElement'); return false;">
{ts}Change{/ts}
</a>
</span>
</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="crm-section"> <div id="nameSection" class="crm-section hiddenElement">
<div class="label">{$form.name.label}</div> <div class="label">{$form.name.label}</div>
<div class="content">{$form.name.html}</div> <div class="content">{$form.name.html}</div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
</div> </div>
<script type="text/javascript">
{literal}
CRM.$(function($) {
var id = {/literal}{if ($field)}{$field.id}{else}false{/if}{literal};
var data_processor_id = {/literal}{$data_processor_id}{literal};
$('#title').on('blur', function() {
var title = $('#title').val();
if ($('#nameSection').hasClass('hiddenElement') && !id) {
CRM.api3('DataProcessorField', 'check_name', {
'title': title,
'data_processor_id': data_processor_id
}).done(function (result) {
$('#systemName').html(result.name);
$('#name').val(result.name);
});
}
});
$('#type').change();
});
{/literal}
</script>
{/if} {/if}
<div class="crm-submit-buttons"> <div class="crm-submit-buttons">
......
<?php
// This file declares a new entity type. For more details, see "hook_civicrm_entityTypes" at:
// http://wiki.civicrm.org/confluence/display/CRMDOC/Hook+Reference
return array (
0 =>
array (
'name' => 'DataProcessorField',
'class' => 'CRM_Dataprocessor_DAO_DataProcessorField',
'table' => 'civicrm_data_processor_field',
),
);
<?xml version="1.0" encoding="iso-8859-1" ?>
<table>
<base>CRM/Dataprocessor</base>
<class>DataProcessorField</class>
<name>civicrm_data_processor_field</name>
<log>false</log>
<field>
<name>id</name>
<type>int unsigned</type>
<required>true</required>
<comment>Unique DataProcessorField ID</comment>
</field>
<primaryKey>
<name>id</name>
<autoincrement>true</autoincrement>
</primaryKey>
<field>
<name>data_processor_id</name>
<title>Data Processor ID</title>
<type>int unsigned</type>
<required>true</required>
<comment>FK to Data Processor</comment>
</field>
<field>
<name>weight</name>
<title>Weight</title>
<type>int</type>
<required>false</required>
<length>255</length>
</field>
<field>
<name>name</name>
<title>Name</title>
<type>varchar</type>
<required>false</required>
<length>255</length>
</field>
<field>
<name>title</name>
<title>Title</title>
<type>varchar</type>
<required>true</required>
<length>255</length>
</field>
<field>
<name>type</name>
<title>Type</title>
<type>varchar</type>
<required>true</required>
<length>255</length>
</field>
<field>
<name>configuration</name>
<title>Configuration</title>
<type>text</type>
<required>false</required>
<length>255</length>
<serialize>JSON</serialize>
</field>
<foreignKey>
<name>data_processor_id</name>
<table>civicrm_data_processor</table>
<key>id</key>
<onDelete>CASCADE</onDelete>
</foreignKey>
</table>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment