Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dataprocessor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Don Wijesooriya
dataprocessor
Commits
5cfc2ece
Commit
5cfc2ece
authored
5 years ago
by
jaapjansma
Browse files
Options
Downloads
Patches
Plain Diff
Fixed issue with csv export and specifying the delimiter
parent
d7ab42de
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/DataprocessorOutputExport/CSV.php
+42
-14
42 additions, 14 deletions
CRM/DataprocessorOutputExport/CSV.php
templates/CRM/DataprocessorOutputExport/Form/Configuration/CSV.tpl
+19
-0
19 additions, 0 deletions
.../CRM/DataprocessorOutputExport/Form/Configuration/CSV.tpl
with
61 additions
and
14 deletions
CRM/DataprocessorOutputExport/CSV.php
+
42
−
14
View file @
5cfc2ece
...
@@ -20,7 +20,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -20,7 +20,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
* @return bool
* @return bool
*/
*/
public
function
hasConfiguration
()
{
public
function
hasConfiguration
()
{
return
fals
e
;
return
tru
e
;
}
}
/**
/**
...
@@ -31,7 +31,30 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -31,7 +31,30 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
* @param array $filter
* @param array $filter
*/
*/
public
function
buildConfigurationForm
(
\CRM_Core_Form
$form
,
$output
=
array
())
{
public
function
buildConfigurationForm
(
\CRM_Core_Form
$form
,
$output
=
array
())
{
$form
->
add
(
'text'
,
'delimiter'
,
E
::
ts
(
'Delimiter'
),
array
(),
true
);
$form
->
add
(
'text'
,
'enclosure'
,
E
::
ts
(
'Enclosure'
),
array
(),
true
);
$form
->
add
(
'text'
,
'escape_char'
,
E
::
ts
(
'Escape char'
),
array
(),
true
);
$configuration
=
false
;
if
(
$output
&&
isset
(
$output
[
'configuration'
]))
{
$configuration
=
$output
[
'configuration'
];
}
if
(
$configuration
&&
isset
(
$configuration
[
'delimiter'
])
&&
$configuration
[
'delimiter'
])
{
$defaults
[
'delimiter'
]
=
$configuration
[
'delimiter'
];
}
else
{
$defaults
[
'delimiter'
]
=
';'
;
}
if
(
$configuration
&&
isset
(
$configuration
[
'enclosure'
])
&&
$configuration
[
'enclosure'
])
{
$defaults
[
'enclosure'
]
=
$configuration
[
'enclosure'
];
}
else
{
$defaults
[
'enclosure'
]
=
'"'
;
}
if
(
$configuration
&&
isset
(
$configuration
[
'escape_char'
])
&&
$configuration
[
'escape_char'
])
{
$defaults
[
'escape_char'
]
=
$configuration
[
'escape_char'
];
}
else
{
$defaults
[
'escape_char'
]
=
'\\'
;
}
$form
->
setDefaults
(
$defaults
);
}
}
/**
/**
...
@@ -41,7 +64,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -41,7 +64,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
* @return false|string
* @return false|string
*/
*/
public
function
getConfigurationTemplateFileName
()
{
public
function
getConfigurationTemplateFileName
()
{
return
false
;
return
"CRM/DataprocessorOutputExport/Form/Configuration/CSV.tpl"
;
}
}
...
@@ -53,7 +76,11 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -53,7 +76,11 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
* @return array
* @return array
*/
*/
public
function
processConfiguration
(
$submittedValues
,
&
$output
)
{
public
function
processConfiguration
(
$submittedValues
,
&
$output
)
{
return
array
();
$configuration
=
array
();
$configuration
[
'delimiter'
]
=
$submittedValues
[
'delimiter'
];
$configuration
[
'enclosure'
]
=
$submittedValues
[
'enclosure'
];
$configuration
[
'escape_char'
]
=
$submittedValues
[
'escape_char'
];
return
$configuration
;
}
}
/**
/**
...
@@ -116,11 +143,11 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -116,11 +143,11 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
$path
=
CRM_Core_Config
::
singleton
()
->
templateCompileDir
.
'dataprocessor_export_csv/'
.
$filename
;
$path
=
CRM_Core_Config
::
singleton
()
->
templateCompileDir
.
'dataprocessor_export_csv/'
.
$filename
;
if
(
$sortFieldName
)
{
if
(
$sortFieldName
)
{
$dataProcessor
->
getDataFlow
()
->
addSort
(
$sortFieldName
,
$sortDirection
);
$dataProcessor
Class
->
getDataFlow
()
->
addSort
(
$sortFieldName
,
$sortDirection
);
}
}
self
::
createHeaderLine
(
$path
,
$dataProcessorClass
);
self
::
createHeaderLine
(
$path
,
$dataProcessorClass
,
$outputBAO
[
'configuration'
]
);
self
::
exportDataProcessor
(
$path
,
$dataProcessorClass
);
self
::
exportDataProcessor
(
$path
,
$dataProcessorClass
,
$outputBAO
[
'configuration'
]
);
$mimeType
=
CRM_Utils_Request
::
retrieveValue
(
'mime-type'
,
'String'
,
''
,
FALSE
);
$mimeType
=
CRM_Utils_Request
::
retrieveValue
(
'mime-type'
,
'String'
,
''
,
FALSE
);
...
@@ -160,7 +187,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -160,7 +187,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
CRM_Utils_File
::
restrictAccess
(
$basePath
.
'/'
);
CRM_Utils_File
::
restrictAccess
(
$basePath
.
'/'
);
$filename
=
$basePath
.
'/'
.
$name
.
'.csv'
;
$filename
=
$basePath
.
'/'
.
$name
.
'.csv'
;
self
::
createHeaderLine
(
$filename
,
$dataProcessorClass
);
self
::
createHeaderLine
(
$filename
,
$dataProcessorClass
,
$outputBAO
[
'configuration'
]
);
$count
=
$dataProcessorClass
->
getDataFlow
()
->
recordCount
();
$count
=
$dataProcessorClass
->
getDataFlow
()
->
recordCount
();
$recordsPerJob
=
self
::
RECORDS_PER_JOB
;
$recordsPerJob
=
self
::
RECORDS_PER_JOB
;
...
@@ -176,7 +203,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -176,7 +203,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
'CRM_DataprocessorOutputExport_CSV'
,
'CRM_DataprocessorOutputExport_CSV'
,
'exportBatch'
'exportBatch'
),
//call back method
),
//call back method
array
(
$filename
,
$formValues
,
$dataProcessor
[
'id'
],
$i
,
$recordsPerJob
,
$sortFieldName
,
$sortDirection
),
//parameters,
array
(
$filename
,
$formValues
,
$dataProcessor
[
'id'
],
$outputBAO
[
'id'
],
$i
,
$recordsPerJob
,
$sortFieldName
,
$sortDirection
),
//parameters,
$title
$title
);
);
//now add this task to the queue
//now add this task to the queue
...
@@ -196,18 +223,18 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -196,18 +223,18 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
$runner
->
runAllViaWeb
();
// does not return
$runner
->
runAllViaWeb
();
// does not return
}
}
protected
static
function
createHeaderLine
(
$filename
,
\Civi\DataProcessor\ProcessorType\AbstractProcessorType
$dataProcessor
)
{
protected
static
function
createHeaderLine
(
$filename
,
\Civi\DataProcessor\ProcessorType\AbstractProcessorType
$dataProcessor
,
$configuration
)
{
$file
=
fopen
(
$filename
,
'a'
);
$file
=
fopen
(
$filename
,
'a'
);
fwrite
(
$file
,
"
\xEF\xBB\xBF
"
);
// BOF this will make sure excel opens the file correctly.
fwrite
(
$file
,
"
\xEF\xBB\xBF
"
);
// BOF this will make sure excel opens the file correctly.
$headerLine
=
array
();
$headerLine
=
array
();
foreach
(
$dataProcessor
->
getDataFlow
()
->
getOutputFieldHandlers
()
as
$outputHandler
)
{
foreach
(
$dataProcessor
->
getDataFlow
()
->
getOutputFieldHandlers
()
as
$outputHandler
)
{
$headerLine
[]
=
$outputHandler
->
getOutputFieldSpecification
()
->
title
;
$headerLine
[]
=
$outputHandler
->
getOutputFieldSpecification
()
->
title
;
}
}
fputcsv
(
$file
,
$headerLine
);
fputcsv
(
$file
,
$headerLine
,
$configuration
[
'delimiter'
],
$configuration
[
'enclosure'
],
$configuration
[
'escape_char'
]
);
fclose
(
$file
);
fclose
(
$file
);
}
}
protected
static
function
exportDataProcessor
(
$filename
,
\Civi\DataProcessor\ProcessorType\AbstractProcessorType
$dataProcessor
)
{
protected
static
function
exportDataProcessor
(
$filename
,
\Civi\DataProcessor\ProcessorType\AbstractProcessorType
$dataProcessor
,
$configuration
)
{
$file
=
fopen
(
$filename
,
'a'
);
$file
=
fopen
(
$filename
,
'a'
);
try
{
try
{
while
(
$record
=
$dataProcessor
->
getDataFlow
()
->
nextRecord
())
{
while
(
$record
=
$dataProcessor
->
getDataFlow
()
->
nextRecord
())
{
...
@@ -215,7 +242,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -215,7 +242,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
foreach
(
$record
as
$field
=>
$value
)
{
foreach
(
$record
as
$field
=>
$value
)
{
$row
[]
=
$value
->
formattedValue
;
$row
[]
=
$value
->
formattedValue
;
}
}
fputcsv
(
$file
,
$row
);
fputcsv
(
$file
,
$row
,
$configuration
[
'delimiter'
],
$configuration
[
'enclosure'
],
$configuration
[
'escape_char'
]
);
}
}
}
catch
(
\Civi\DataProcessor\DataFlow\EndOfFlowException
$e
)
{
}
catch
(
\Civi\DataProcessor\DataFlow\EndOfFlowException
$e
)
{
// Do nothing
// Do nothing
...
@@ -223,8 +250,9 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -223,8 +250,9 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
fclose
(
$file
);
fclose
(
$file
);
}
}
public
static
function
exportBatch
(
CRM_Queue_TaskContext
$ctx
,
$filename
,
$params
,
$dataProcessorId
,
$offset
,
$limit
,
$sortFieldName
=
null
,
$sortDirection
=
'ASC'
)
{
public
static
function
exportBatch
(
CRM_Queue_TaskContext
$ctx
,
$filename
,
$params
,
$dataProcessorId
,
$outputId
,
$offset
,
$limit
,
$sortFieldName
=
null
,
$sortDirection
=
'ASC'
)
{
$dataProcessor
=
civicrm_api3
(
'DataProcessor'
,
'getsingle'
,
array
(
'id'
=>
$dataProcessorId
));
$dataProcessor
=
civicrm_api3
(
'DataProcessor'
,
'getsingle'
,
array
(
'id'
=>
$dataProcessorId
));
$output
=
civicrm_api3
(
'DataProcessorOutput'
,
'getsingle'
,
array
(
'id'
=>
$outputId
));
$dataProcessorClass
=
\CRM_Dataprocessor_BAO_DataProcessor
::
dataProcessorToClass
(
$dataProcessor
);
$dataProcessorClass
=
\CRM_Dataprocessor_BAO_DataProcessor
::
dataProcessorToClass
(
$dataProcessor
);
CRM_Dataprocessor_Form_Output_AbstractUIOutputForm
::
applyFilters
(
$dataProcessorClass
,
$params
);
CRM_Dataprocessor_Form_Output_AbstractUIOutputForm
::
applyFilters
(
$dataProcessorClass
,
$params
);
if
(
$sortFieldName
)
{
if
(
$sortFieldName
)
{
...
@@ -232,7 +260,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
...
@@ -232,7 +260,7 @@ class CRM_DataprocessorOutputExport_CSV implements ExportOutputInterface {
}
}
$dataProcessorClass
->
getDataFlow
()
->
setOffset
(
$offset
);
$dataProcessorClass
->
getDataFlow
()
->
setOffset
(
$offset
);
$dataProcessorClass
->
getDataFlow
()
->
setLimit
(
$limit
);
$dataProcessorClass
->
getDataFlow
()
->
setLimit
(
$limit
);
self
::
exportDataProcessor
(
$filename
,
$dataProcessorClass
);
self
::
exportDataProcessor
(
$filename
,
$dataProcessorClass
,
$output
[
'configuration'
]
);
return
TRUE
;
return
TRUE
;
}
}
...
...
This diff is collapsed.
Click to expand it.
templates/CRM/DataprocessorOutputExport/Form/Configuration/CSV.tpl
0 → 100644
+
19
−
0
View file @
5cfc2ece
{
crmScope
extensionKey
=
'dataprocessor'
}
<div
class=
"crm-section"
>
<div
class=
"label"
>
{
$form.delimiter.label
}
</div>
<div
class=
"content"
>
{
$form.delimiter.html
}
</div>
<div
class=
"clear"
></div>
</div>
<div
class=
"crm-section"
>
<div
class=
"label"
>
{
$form.enclosure.label
}
</div>
<div
class=
"content"
>
{
$form.enclosure.html
}
</div>
<div
class=
"clear"
></div>
</div>
<div
class=
"crm-section"
>
<div
class=
"label"
>
{
$form.escape_char.label
}
</div>
<div
class=
"content"
>
{
$form.escape_char.html
}
</div>
<div
class=
"clear"
></div>
</div>
{/
crmScope
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment