Compare commits
2 Commits
fea2f69686
...
b8ea6e8436
| Author | SHA1 | Date | |
|---|---|---|---|
| b8ea6e8436 | |||
| d9cb183b2a |
2
csv-normaliser/.vscode/launch.json
vendored
2
csv-normaliser/.vscode/launch.json
vendored
@@ -6,7 +6,7 @@
|
||||
"type": "php",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/main.php",
|
||||
"args": [],
|
||||
"args": ["--input", "${workspaceFolder}/test-input.csv", "--media", "${workspaceFolder}/test-media", "--output", "${workspaceFolder}/test-output.csv",],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"port": 9000
|
||||
}
|
||||
|
||||
@@ -1,69 +1,144 @@
|
||||
<?php
|
||||
require_once "page_renderer.php";
|
||||
$options = getopt("", ["input:", "output:", "media:"]);
|
||||
|
||||
$options = getopt("", ["council-file:", "candidates-file:", "media-file:"]);
|
||||
|
||||
if (isset($options['council-file'])) {
|
||||
$councilFileContents = file_get_contents($options['council-file']);
|
||||
if (isset($options['input'])) {
|
||||
$inputFile = $options['input'];
|
||||
} else {
|
||||
error_log("Error: Missing required option '--council-file'.");
|
||||
error_log("Error: Missing required option '--input'.");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$councilData = json_decode($councilFileContents, true);
|
||||
|
||||
// Check for decoding errors
|
||||
if (json_last_error() !== JSON_ERROR_NONE) {
|
||||
error_log('Error decoding council file: ' . json_last_error_msg());
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (isset($options['candidates-file'])) {
|
||||
$candidatesFile = $options['candidates-file'];
|
||||
if (isset($options['output'])) {
|
||||
$outputFile = $options['output'];
|
||||
} else {
|
||||
error_log("Error: Missing required option '--candidates-file'.");
|
||||
error_log("Error: Missing required option '--output'.");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Convert CSV into an array of dictionaries. Use the header as the key in the dictionary.
|
||||
$candidateData = [];
|
||||
if (($handle = fopen($candidatesFile, "r")) !== FALSE) {
|
||||
$headers = fgetcsv($handle);
|
||||
if (isset($options['media'])) {
|
||||
$mediaFolder = $options['media'];
|
||||
} else {
|
||||
error_log("Error: Missing required option '--media'.");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$mediaFiles = scandir($mediaFolder);
|
||||
if ($mediaFiles === FALSE) {
|
||||
error_log("Failed to list files in media folder");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$candidates = [];
|
||||
if (($handle = fopen($inputFile, "r")) !== FALSE) {
|
||||
$currentWard = null;
|
||||
$currentLine = 0;
|
||||
while (($data = fgetcsv($handle)) !== FALSE) {
|
||||
$candidate = [];
|
||||
foreach ($headers as $key => $value) {
|
||||
$candidate[$value] = $data[$key];
|
||||
$currentLine++;
|
||||
//echo var_dump($data);
|
||||
if ($data[0] == "Ward") {
|
||||
// CSV contains ward names in uppercase, convert them to a more readable form
|
||||
$currentWard = ucwords(strtolower($data[1]));
|
||||
|
||||
// Handle some special cases where the above logic doesn't match the expected names
|
||||
// Note that we cannot just convert every letter after a '-' character to uppercase
|
||||
// because there are some ward names like "Bulleke-bek"
|
||||
if ($currentWard == "Warrk-warrk") {
|
||||
$currentWard = "Warrk-Warrk";
|
||||
}
|
||||
if ($currentWard == "Djirri-djirri") {
|
||||
$currentWard = "Djirri-Djirri";
|
||||
}
|
||||
if ($currentWard == "Coastal-promontory") {
|
||||
$currentWard = "Coastal-Promontory";
|
||||
}
|
||||
}
|
||||
if ($data[0] == "Candidate") {
|
||||
if ($currentWard == null) {
|
||||
error_log("No ward found, skipping data on line " . $currentLine);
|
||||
continue;
|
||||
}
|
||||
|
||||
$candidateName = $data[1];
|
||||
|
||||
if ($candidateName == " example name") {
|
||||
error_log("Skipping line ". $currentLine);
|
||||
continue;
|
||||
}
|
||||
|
||||
print("Adding candidate to " . $candidateName . " to ". $currentWard . "\n");
|
||||
|
||||
$name_split = explode(" ", $data[1]);
|
||||
|
||||
$name_patterns = [
|
||||
implode(".*", $name_split),
|
||||
implode(".*", array_reverse($name_split)),
|
||||
];
|
||||
|
||||
$regex_groups = array_map(function($x) { return "(?:.*" . $x . ".*)"; }, $name_patterns);
|
||||
|
||||
$regex_pattern = "/" . implode("|", $regex_groups) . "/i";
|
||||
|
||||
$picture = "";
|
||||
foreach ($mediaFiles as $mediaFile) {
|
||||
if (preg_match($regex_pattern, $mediaFile)) {
|
||||
$picture = $mediaFile;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if ($picture === "") {
|
||||
print("Failed to identify picture for " . $candidateName);
|
||||
}
|
||||
|
||||
array_push(
|
||||
$candidates,
|
||||
[
|
||||
"Ward" => $currentWard,
|
||||
"Candidate Name" => $candidateName,
|
||||
"Rating" => $data[2],
|
||||
"Picture" => $picture
|
||||
]
|
||||
);
|
||||
}
|
||||
$candidateData[] = $candidate;
|
||||
}
|
||||
fclose($handle);
|
||||
} else {
|
||||
error_log('Error opening candidates file');
|
||||
error_log('Error opening input file');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$candidateData = array_filter($candidateData, function ($candidate) use ($councilData) {
|
||||
return isset($candidate["Council"]) && $candidate["Council"] === $councilData['shortName'];
|
||||
});
|
||||
|
||||
if (empty($candidateData)) {
|
||||
error_log("Failed to load any candidates for " . $councilData['shortName']);
|
||||
}
|
||||
|
||||
if (isset($options['media-file'])) {
|
||||
$mediaFileContents = file_get_contents($options['media-file']);
|
||||
} else {
|
||||
error_log("Error: Missing required option '--media-file'.");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$mediaData = json_decode($mediaFileContents, true);
|
||||
|
||||
$renderer = new SPLPageRenderer();
|
||||
$pageContent = $renderer->renderCouncilPage($councilData, $candidateData, $mediaData);
|
||||
if ($pageContent === null) {
|
||||
if (empty($candidates)) {
|
||||
error_log("Failed to find any candidates");
|
||||
exit(2);
|
||||
}
|
||||
|
||||
echo $pageContent;
|
||||
if (($handle = fopen($outputFile, "w")) !== FALSE) {
|
||||
$headers = array(
|
||||
"Ward",
|
||||
"Candidate Name",
|
||||
"Rating",
|
||||
"Picture"
|
||||
);
|
||||
if (fputcsv($handle, $headers) === FALSE) {
|
||||
error_log('Error writing headers to output file');
|
||||
exit(3);
|
||||
}
|
||||
foreach ($candidates as $candidate) {
|
||||
$fields = array(
|
||||
$candidate["Ward"],
|
||||
$candidate["Candidate Name"],
|
||||
$candidate["Rating"],
|
||||
$candidate["Picture"]
|
||||
);
|
||||
if (fputcsv($handle, $fields) === FALSE) {
|
||||
error_log('Error writing candidate to output file');
|
||||
exit(3);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
error_log('Error opening output file');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
print("Data written to " . $outputFile);
|
||||
|
||||
exit(0);
|
||||
|
||||
30
csv-normaliser/test-input.csv
Normal file
30
csv-normaliser/test-input.csv
Normal file
@@ -0,0 +1,30 @@
|
||||
Data for TEST,,,,
|
||||
Password,,Obtain a password to upload this file from the webmaster of https://streetspeoplelove.org/,,
|
||||
Your phone number,,"Not for publication, campaign use only",,
|
||||
Your email,,"Not for publication, campaign use only",,
|
||||
Ward,BABABI DJINANANG,,,
|
||||
Candidate,Joe Blogs,4,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Candidate,Jane Doe,Good,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,BOX FOREST,,,
|
||||
Candidate,First Last,,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,BRUNSWICK WEST,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,BULLEKE-BEK,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,DJIRRI-DJIRRI,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,HARMONY PARK,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,PASCOE VALE SOUTH,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,PENTRIDGE,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,RANDAZZO,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,WARRK-WARRK,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
Ward,WESTBREEN,,,
|
||||
Candidate, example name,score,Party or Independent,"replace ""example name"" with a candidate's name. Score should be an integer from 0 to your highest score. Make more of these rows as required. "
|
||||
,,,,
|
||||
Get help filling in this form email webmaster@streetspeoplelove.org,,,,
|
||||
|
0
csv-normaliser/test-media/JaneDoe square.png
Normal file
0
csv-normaliser/test-media/JaneDoe square.png
Normal file
0
csv-normaliser/test-media/Joe Blogs.jpg
Normal file
0
csv-normaliser/test-media/Joe Blogs.jpg
Normal file
0
csv-normaliser/test-media/LAST_FIRST.jpeg
Normal file
0
csv-normaliser/test-media/LAST_FIRST.jpeg
Normal file
4
csv-normaliser/test-output.csv
Normal file
4
csv-normaliser/test-output.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
Ward,"Candidate Name",Rating,Picture
|
||||
"Bababi Djinanang","Joe Blogs",4,"Joe Blogs.jpg"
|
||||
"Bababi Djinanang","Jane Doe",Good,"JaneDoe square.png"
|
||||
"Box Forest","First Last",,LAST_FIRST.jpeg
|
||||
|
Reference in New Issue
Block a user