(NFC) (dev/core#878) Simplify copyright header (templates/*)
[civicrm-core.git] / CRM / Contact / Import / Form / Summary.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2020 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC https://civicrm.org/licensing
32 */
33
34/**
35 * This class summarizes the import results.
36 */
37class CRM_Contact_Import_Form_Summary extends CRM_Import_Form_Summary {
38
39 /**
40 * Set variables up before form is built.
41 */
42 public function preProcess() {
43 // set the error message path to display
44 $this->assign('errorFile', $this->get('errorFile'));
45
46 $totalRowCount = $this->get('totalRowCount');
47 $relatedCount = $this->get('relatedCount');
48 $totalRowCount += $relatedCount;
49
50 $invalidRowCount = $this->get('invalidRowCount');
51 $conflictRowCount = $this->get('conflictRowCount');
52 $duplicateRowCount = $this->get('duplicateRowCount');
53 $onDuplicate = $this->get('onDuplicate');
54 $mismatchCount = $this->get('unMatchCount');
55 $unparsedAddressCount = $this->get('unparsedAddressCount');
56 if ($duplicateRowCount > 0) {
57 $urlParams = 'type=' . CRM_Import_Parser::DUPLICATE . '&parser=CRM_Contact_Import_Parser';
58 $this->set('downloadDuplicateRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
59 }
60 elseif ($mismatchCount) {
61 $urlParams = 'type=' . CRM_Import_Parser::NO_MATCH . '&parser=CRM_Contact_Import_Parser';
62 $this->set('downloadMismatchRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
63 }
64 else {
65 $duplicateRowCount = 0;
66 $this->set('duplicateRowCount', $duplicateRowCount);
67 }
68 if ($unparsedAddressCount) {
69 $urlParams = 'type=' . CRM_Import_Parser::UNPARSED_ADDRESS_WARNING . '&parser=CRM_Contact_Import_Parser';
70 $this->assign('downloadAddressRecordsUrl', CRM_Utils_System::url('civicrm/export', $urlParams));
71 $unparsedStreetAddressString = ts('Records imported successfully but unable to parse some of the street addresses');
72 $this->assign('unparsedStreetAddressString', $unparsedStreetAddressString);
73 }
74 $this->assign('dupeError', FALSE);
75
76 if ($onDuplicate == CRM_Import_Parser::DUPLICATE_UPDATE) {
77 $dupeActionString = ts('These records have been updated with the imported data.');
78 }
79 elseif ($onDuplicate == CRM_Import_Parser::DUPLICATE_REPLACE) {
80 $dupeActionString = ts('These records have been replaced with the imported data.');
81 }
82 elseif ($onDuplicate == CRM_Import_Parser::DUPLICATE_FILL) {
83 $dupeActionString = ts('These records have been filled in with the imported data.');
84 }
85 else {
86 /* Skip by default */
87
88 $dupeActionString = ts('These records have not been imported.');
89
90 $this->assign('dupeError', TRUE);
91 }
92 //now we also create relative contact in update and fill mode
93 $this->set('validRowCount', $totalRowCount - $invalidRowCount -
94 $conflictRowCount - $duplicateRowCount - $mismatchCount
95 );
96
97 $this->assign('dupeActionString', $dupeActionString);
98
99 $properties = [
100 'totalRowCount',
101 'validRowCount',
102 'invalidRowCount',
103 'conflictRowCount',
104 'downloadConflictRecordsUrl',
105 'downloadErrorRecordsUrl',
106 'duplicateRowCount',
107 'downloadDuplicateRecordsUrl',
108 'downloadMismatchRecordsUrl',
109 'groupAdditions',
110 'tagAdditions',
111 'unMatchCount',
112 'unparsedAddressCount',
113 ];
114 foreach ($properties as $property) {
115 $this->assign($property, $this->get($property));
116 }
117
118 $session = CRM_Core_Session::singleton();
119 $session->pushUserContext(CRM_Utils_System::url('civicrm/import/contact', 'reset=1'));
120 }
121
122 /**
123 * Clean up the import table we used.
124 */
125 public function postProcess() {
126 $dao = new CRM_Core_DAO();
127 $db = $dao->getDatabaseConnection();
128
129 $importTableName = $this->get('importTableName');
130 // do a basic sanity check here
131 if (strpos($importTableName, 'civicrm_import_job_') === 0) {
132 $query = "DROP TABLE IF EXISTS $importTableName";
133 $db->query($query);
134 }
135 }
136
137}