2026-03-27 15:53:29 +00:00

127 lines
2.7 KiB
PHP

<?php
/**
* Simply Schedule Appointments CSV Exporter.
*
* @since 4.8.9
* @package Simply_Schedule_Appointments
*/
/**
* Simply Schedule Appointments CSV Exporter.
*
* @since 4.8.9
*/
class SSA_CSV_Exporter {
/**
* CSV file base path.
*
* @var string
*/
protected $file_path = null;
/**
* CSV file base url.
*
* @var string
*/
protected $file_url = null;
/**
* Get .csv for appointments.
*
* @param array $appointments Array with SSA_Appointment_Object objects.
* @param string $filename .csv filename.
*
* @return string .csv path
*/
public function get_csv( $appointments = array(), $filename = '' ) {
if ( empty( $appointments ) ) {
return new WP_Error( 'ssa_export_csv_no_appointments', __( 'No appointments to export to .csv file.', 'simply-schedule-appointments' ) );
}
if ( '' === $filename ) {
$filename = 'deleted-appointments-' . time();
}
$this->file_path = $this->get_file_path( $filename );
$this->file_url = $this->get_file_url( $filename );
// Create the .csv.
$this->create( $appointments );
if ( ! file_exists( $this->file_path ) ) {
return new WP_Error( 'ssa_export_csv_file_not_found', __( 'Error creating .csv file.', 'simply-schedule-appointments' ) );
}
return array(
'file_path' => $this->file_path,
'file_url' => $this->file_url,
);
}
/**
* Get file path.
*
* @param string $filename Filename.
*
* @return string
*/
protected function get_file_path( $filename ) {
$path = SSA_Filesystem::get_uploads_dir_path();
if ( empty( $path ) ) {
return false;
}
$path .= '/csv';
if ( ! wp_mkdir_p( $path ) ) {
return false;
}
if ( ! file_exists( $path . '/index.html' ) ) {
// @codingStandardsIgnoreStart
$handle = @fopen( $path . '/index.html', 'w' );
@fwrite( $handle, '' );
@fclose( $handle );
// @codingStandardsIgnoreEnd
}
return $path . '/' . sanitize_title( $filename ) . '.csv';
}
/**
* Get file url
*
* @param string $filename Filename.
*
* @return string
*/
protected function get_file_url( $filename ) {
$url = SSA_Filesystem::get_uploads_dir_url();
if ( empty( $url ) ) {
return false;
}
$url .= '/csv';
return $url . '/' . sanitize_title( $filename ) . '.csv';
}
/**
* Create the .ics file.
*
* @param array $appointments The appointments array.
*
* @return void
*/
protected function create( $appointments ) {
// @codingStandardsIgnoreStart
$handle = @fopen( $this->file_path, 'w' );
fputcsv( $handle, array_keys( $appointments[0] ) );
foreach ( $appointments as $appointment ) {
fputcsv( $handle, $appointment );
}
@fclose( $handle );
// @codingStandardsIgnoreEnd
}
}