crm-bij1migratie/CRM/Bij1migratie/Upgrader.php

180 lines
5.8 KiB
PHP

<?php
use CRM_Bij1migratie_ExtensionUtil as E;
/**
* Collection of upgrade steps.
*/
class CRM_Bij1migratie_Upgrader extends CRM_Bij1migratie_Upgrader_Base {
// By convention, functions that look like "function upgrade_NNNN()" are
// upgrade tasks. They are executed in order (like Drupal's hook_update_N).
/**
* Maak migratie groep aan als geinstalleerd
*/
public function install() {
$groep = new CRM_Bij1algemeen_Groep();
if (!$groep->bestaatGroep("bij1_migratie")) {
$groep->maakGroep([
'name' => "bij1_migratie",
'title' => "Migratie CiviCRM",
'description' => "Deze groep bevat alle contacten aangemaakt tijdens de migratie naar CiviCRM",
]);
}
$this->geplandeTaakLidnummers();
}
/**
* Upgrade 1000: geplande taak voor het genereren van lidnummers
*
* @return TRUE on success
* @throws Exception
*/
public function upgrade_1000() {
$this->ctx->log->info('Applying update 1000 - geplande taak voor het genereren van lidnummers');
$this->geplandeTaakLidnummers();
return TRUE;
}
/**
* Method om geplande taak voor het genereren van lidnummers toe te voegen
*/
public function geplandeTaakLidnummers() {
$countQuery = "SELECT * FROM civicrm_job WHERE api_entity = %1 AND api_action = %2";
$count = CRM_Core_DAO::singleValueQuery($countQuery, [
1 => ["Lidnummer", "String"],
2 => ["genereer", "String"],
]);
if ($count == 0) {
$insert = "INSERT INTO civicrm_job (domain_id, run_frequency, name, description, api_entity, api_action, is_active)
VALUES(%1, %2, %3, %4, %5, %6, %7)";
CRM_Core_DAO::executeQuery($insert, [
1 => [1, "Integer"],
2 => ["Yearly", "String"],
3 => ["BIJ1 Genereer lidnummers gelijk na migratie", "String"],
4 => ["Deze taak genereert nieuwe lidnummers op basis van inschrijvingsdatum", "String"],
5 => ["LidNummer", "String"],
6 => ["genereer", "String"],
7 => [0, "Integer"],
]);
}
}
/**
* Example: Work with entities usually not available during the install step.
*
* This method can be used for any post-install tasks. For example, if a step
* of your installation depends on accessing an entity that is itself
* created during the installation (e.g., a setting or a managed entity), do
* so here to avoid order of operation problems.
*/
// public function postInstall() {
// $customFieldId = civicrm_api3('CustomField', 'getvalue', array(
// 'return' => array("id"),
// 'name' => "customFieldCreatedViaManagedHook",
// ));
// civicrm_api3('Setting', 'create', array(
// 'myWeirdFieldSetting' => array('id' => $customFieldId, 'weirdness' => 1),
// ));
// }
/**
* Example: Run an external SQL script when the module is uninstalled.
*/
// public function uninstall() {
// $this->executeSqlFile('sql/myuninstall.sql');
// }
/**
* Example: Run a simple query when a module is enabled.
*/
// public function enable() {
// CRM_Core_DAO::executeQuery('UPDATE foo SET is_active = 1 WHERE bar = "whiz"');
// }
/**
* Example: Run a simple query when a module is disabled.
*/
// public function disable() {
// CRM_Core_DAO::executeQuery('UPDATE foo SET is_active = 0 WHERE bar = "whiz"');
// }
/**
* Example: Run a couple simple queries.
*
* @return TRUE on success
* @throws Exception
*/
// public function upgrade_4200() {
// $this->ctx->log->info('Applying update 4200');
// CRM_Core_DAO::executeQuery('UPDATE foo SET bar = "whiz"');
// CRM_Core_DAO::executeQuery('DELETE FROM bang WHERE willy = wonka(2)');
// return TRUE;
// }
/**
* Example: Run an external SQL script.
*
* @return TRUE on success
* @throws Exception
*/
// public function upgrade_4201() {
// $this->ctx->log->info('Applying update 4201');
// // this path is relative to the extension base dir
// $this->executeSqlFile('sql/upgrade_4201.sql');
// return TRUE;
// }
/**
* Example: Run a slow upgrade process by breaking it up into smaller chunk.
*
* @return TRUE on success
* @throws Exception
*/
// public function upgrade_4202() {
// $this->ctx->log->info('Planning update 4202'); // PEAR Log interface
// $this->addTask(E::ts('Process first step'), 'processPart1', $arg1, $arg2);
// $this->addTask(E::ts('Process second step'), 'processPart2', $arg3, $arg4);
// $this->addTask(E::ts('Process second step'), 'processPart3', $arg5);
// return TRUE;
// }
// public function processPart1($arg1, $arg2) { sleep(10); return TRUE; }
// public function processPart2($arg3, $arg4) { sleep(10); return TRUE; }
// public function processPart3($arg5) { sleep(10); return TRUE; }
/**
* Example: Run an upgrade with a query that touches many (potentially
* millions) of records by breaking it up into smaller chunks.
*
* @return TRUE on success
* @throws Exception
*/
// public function upgrade_4203() {
// $this->ctx->log->info('Planning update 4203'); // PEAR Log interface
// $minId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(min(id),0) FROM civicrm_contribution');
// $maxId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contribution');
// for ($startId = $minId; $startId <= $maxId; $startId += self::BATCH_SIZE) {
// $endId = $startId + self::BATCH_SIZE - 1;
// $title = E::ts('Upgrade Batch (%1 => %2)', array(
// 1 => $startId,
// 2 => $endId,
// ));
// $sql = '
// UPDATE civicrm_contribution SET foobar = whiz(wonky()+wanker)
// WHERE id BETWEEN %1 and %2
// ';
// $params = array(
// 1 => array($startId, 'Integer'),
// 2 => array($endId, 'Integer'),
// );
// $this->addTask($title, 'executeSql', $sql, $params);
// }
// return TRUE;
// }
}