Git Repository Public Repository

namibia

URLs

Copy to Clipboard
 
df0489e1eeeeab5a9bd44e1d84fce49924fe1bac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
namespace Utility\Import;

class CsvSemicolon implements ImportInterface
{
	private $_isExtractedFile = false;
	private $_fileName;
	private $_fileHandle;
	private $_delimiter = ';';
	private $_enclosure = '"';
	private $_escape = '\\';
	private $_recordLength = 0;
	private $_specialFields = array();
	protected $_headers = array();

	const FETCH_LAZY  = 1;
	const FETCH_ASSOC = 2;
	const FETCH_BOTH  = 3;

	public function __construct($file, $firstLineIsHeaders = true)
	{
		$this->_fileName = $file;
		if (!file_exists($this->_fileName))
		{
			throw new \Exception('File ' . $this->_fileName . ' not found');
		}
		$this->handleZipArchive();
		$this->_fileHandle = fopen($this->_fileName, 'r');
		if ($firstLineIsHeaders)
		{
			$this->_headers = $this->getRecord();
		}
	}

	/**
	 * @throws \Exception
	 */
	protected function handleZipArchive()
	{
		if (strpos($this->_fileName, '.zip'))
		{
			#-> Extract csv from zip archive.
			$this->processZipFile();
		}
	}

	/**
	 * @throws \Exception
	 */
	protected function processZipFile()
	{
		$zip = new \ZipArchive();
		if ($this->zipArchiveSuccessfullyOpened($zip))
		{
			$this->extractZipFile($zip);

			#-> Find the csv file.
			$this->establishFilePath();
		}
		else
		{
			throw new \Exception('CSV Importer Error: Could not open zip archive!');
		}
	}

	/**
	 * @param $zip
	 * @return bool
	 */
	protected function zipArchiveSuccessfullyOpened(\ZipArchive $zip)
	{
		return true === $zip->open($this->_fileName);
	}

	/**
	 * @param $zip
	 * @throws \Exception
	 */
	protected function extractZipFile(\ZipArchive $zip)
	{
		if (false === $zip->extractTo(getcwd() . '/data/extract'))
		{
			throw new \Exception('CSV Import Utility: Could open but not extract zip archive!');
		}
		$zip->close();
	}

	protected function establishFilePath()
	{
		$fileList    = scandir(getcwd() . '/data/extract/');
		$ignoreFiles = array(
			'.'          => true,
			'..'         => true,
			'.gitignore' => true
		);
		$numFiles    = 0;
		foreach ($fileList as $fileEntry)
		{
			$numFiles = $this->processFileEntry($ignoreFiles, $fileEntry, $numFiles);
		}
		$this->ensureSingleCsvFileInZip($numFiles);
		$this->_isExtractedFile = true;
	}

	/**
	 * @param $ignoreFiles
	 * @param $fileEntry
	 * @param $numFiles
	 * @return mixed
	 */
	protected function processFileEntry($ignoreFiles, $fileEntry, $numFiles)
	{
		if (isset($ignoreFiles[$fileEntry]))
		{
			return $numFiles;
		}
		if (strpos($fileEntry, '.csv'))
		{
			return $this->getFilePath($fileEntry, $numFiles);
		}
		else
		{
			unlink(getcwd() . '/data/extract/' . $fileEntry);
			return $numFiles;
		}
	}

	/**
	 * @param $fileEntry
	 * @param $numFiles
	 * @return mixed
	 */
	protected function getFilePath($fileEntry, $numFiles)
	{
		$numFiles++;
		if (1 < $numFiles)
		{
			unlink($this->_fileName);
		}
		$this->_fileName = getcwd() . '/data/extract/' . $fileEntry;
		return $numFiles;
	}

	/**
	 * @param $numFiles
	 * @throws \Exception
	 */
	protected function ensureSingleCsvFileInZip($numFiles)
	{
		if (1 < $numFiles)
		{
			unlink($this->_fileName);
			throw new \Exception('CSV Importer Error: More than 1 csv file in zip archive!');
		}
		if (0 == $numFiles)
		{
			unlink($this->_fileName);
			throw new \Exception('CSV Importer Error: 0 csv files in zip archive!');
		}
	}

	public function getHeaders()
	{
		return $this->_headers;
	}

	public function setDelimiter($delimiter)
	{
		$this->_delimiter = $delimiter;
		if (!empty($this->_headers))
		{
			$this->reset();
			$this->_headers = $this->getRecord(self::FETCH_LAZY);
		}
	}

	public function setEnclosure($enclosure)
	{
		$this->_enclosure = $enclosure;
	}

	public function setEscape($escape)
	{
		$this->_escape = $escape;
	}

	public function setRecordLength($length)
	{
		$this->_recordLength = $length;
	}

	/**
	 * Gets the next record in the file
	 * @return array
	 */
	public function getRecord($method = self::FETCH_BOTH)
	{
		$record = fgetcsv($this->_fileHandle, $this->_recordLength, $this->_delimiter, $this->_enclosure, $this->_escape);

        \Utility\Debug::errorLog('$record', $record);

		if($record === false)
		{
			return false;
		}

		$fieldsCount = count($record);
		foreach ($this->_specialFields as $key => $value)
		{
			$record[$key] = $value->parse($record[$key]);
		}
		if (($method & self::FETCH_ASSOC) && !empty($this->_headers))
		{
			for($i = 0; $i < count($this->_headers); $i++)
				$record[$this->_headers[$i]] = $record[$i];
		}
		if (!($method & self::FETCH_LAZY))
		{
			for ($i = 0; $i < $fieldsCount; $i++)
			{
				unset($record[$i]);
			}
		}

		return $record;
	}

	public function reset()
	{
		fseek($this->_fileHandle, 0);
	}

	public function setField($fieldNr, ImportInterface $class)
	{
		$this->_specialFields[$fieldNr - 1] = $class;
	}

	public function __destruct()
	{
		fclose($this->_fileHandle);
		if ($this->_isExtractedFile)
		{
			unlink($this->_fileName);
		}
	}
}

Commits for namibiamodule/Utility/src/Utility/Import/CsvSemicolon.php

Diff revisions: vs.
Revision Author Commited Message
df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit