This makes the script universal to all state and local Leagues. Still need to update help(), and closes #1.
This commit is contained in:
parent
3a0092fa0e
commit
687801f652
13
README.md
13
README.md
@ -4,15 +4,22 @@ Custom developed software for the League of Women Voters of West Virginia
|
||||
|
||||
## IMPORTANT: Format for roster
|
||||
|
||||
Note: This issue seems to have been resolved in csv files exported from https://portal.lwv.org
|
||||
|
||||
The csv file should have all fields `quoted` to avoid issues where a field may have an additional comma. If file is not shipped this way, this can easily be corrected through the editor. However, the regexp fails if the first column is empty `/^,/`. Until we can find a better regexp to handle this sitution, the current solution is to replace all `/^,/` with `"",` which can be done with an editor like Visual Studio Code in addition to using something like calc.
|
||||
|
||||
## REQUIRED FILE
|
||||
|
||||
A file called env is required in the same directory as the program that has the Google API key - https://console.cloud.google.com/apis/credentials.
|
||||
A file called env is required in the same directory as the program. This file may optionally include the Google API key (see [Google API credentials](https://console.cloud.google.com/apis/credentials)) and the required respective League's state, state League ID, and local Leagues IDs.
|
||||
|
||||
example:
|
||||
|
||||
`$key = "ALJDLFJD12343";`
|
||||
```
|
||||
$key = "ALJDLFJD12343";
|
||||
$STATE = "WV"
|
||||
$stateLeagueID = "WV000"
|
||||
$localLeagueIDs = "WV102|WV103|WV107|WV112"
|
||||
```
|
||||
|
||||
## LLAW Google Civic Information API Query version 2
|
||||
|
||||
@ -20,7 +27,7 @@ Copyright (C) 2025 - by Jonathan Rosenbaum
|
||||
|
||||
This may be freely redistributed under the terms of the GNU General Public License
|
||||
|
||||
Note: Since https://portal.lwvwv.org came online, two csv files are now available, which should both be processed:
|
||||
Note: Since https://portal.lwv.org came online, two csv files are now available, which should both be processed:
|
||||
1. Local Leagues (Local Leagues) - which has all the local League members
|
||||
2. MAL (Roster) - which has all the members at large
|
||||
Depending on your request, this script will process either of those files, and query the Google Civic Information API for the Delegate and Senate Districts, generate an information file or email file.
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/usr/bin/perl -w
|
||||
#!/usr/bin/env perl
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
# PORTAL CHANGES - assumes you have roster permission for the State League group
|
||||
@ -44,7 +45,7 @@ use WWW::Curl::Simple;
|
||||
use File::Glob ':glob';
|
||||
use JSON;
|
||||
use Data::Dumper;
|
||||
use vars qw($key);
|
||||
use vars qw($key $STATE $stateLeagueID $localLeagueIDs);
|
||||
require "./env";
|
||||
|
||||
# Configuration - key for LWVWV
|
||||
@ -60,7 +61,7 @@ if ( !$ARGV[0] ) {
|
||||
exit;
|
||||
}
|
||||
else {
|
||||
if ( $ARGV[0] !~ /google|ALL|WV000|WV102|WV103|WV107|WV112/ ) {
|
||||
if ( $ARGV[0] !~ /google|ALL|$stateLeagueID|$localLeagueIDs/ ) {
|
||||
print "WRONG FIRST ARGUMENT\n";
|
||||
help();
|
||||
print "WRONG FIRST ARGUMENT\n";
|
||||
@ -128,7 +129,7 @@ foreach my $file (@files) {
|
||||
else {
|
||||
# Members At Large (MAL) file processing
|
||||
# League ID is assumed to be WV000 for all MALs
|
||||
$leagueId = "WV000"; # Default for MALs
|
||||
$leagueId = $stateLeagueID; # Default for MALs
|
||||
( $phone = $fields[3] ) =~ s/"//g; # Phone
|
||||
( $email = $fields[4] ) =~ s/"//g; # Email
|
||||
( $joinDate = $fields[10] ) =~ s/"//g; # Join Date
|
||||
@ -142,7 +143,7 @@ foreach my $file (@files) {
|
||||
my $status = "true";
|
||||
next if $street eq "Mailing Street";
|
||||
|
||||
if ( $leagueId !~ /^WV/ && $leagueId ne "LWV Of West Virginia" ) {
|
||||
if ( $leagueId !~ /^$STATE/ ) {
|
||||
next;
|
||||
}
|
||||
|
||||
@ -226,7 +227,7 @@ foreach my $file (@files) {
|
||||
}
|
||||
# print Dumper($divisions);
|
||||
|
||||
if ( $divisions && $state eq "WV" && $has_match ) {
|
||||
if ( $divisions && $state eq $STATE && $has_match ) {
|
||||
;
|
||||
|
||||
foreach my $key ( keys %{$divisions} ) {
|
||||
@ -308,7 +309,7 @@ sub help {
|
||||
Copyright (C) 2025 - by Jonathan Rosenbaum <freesource\@freesoftwarepc.com>
|
||||
This may be freely redistributed under the terms of the GNU General Public License
|
||||
|
||||
Note: Since https://portal.lwvwv.org came online, two csv files are now available, which should both be processed:
|
||||
Note: Since https://portal.lwv.org came online, two csv files are now available, which should both be processed:
|
||||
1. Local Leagues (Local Leagues) - which has all the local League members
|
||||
2. MAL (Roster) - which has all the members at large
|
||||
Depending on your request, this script will process either of those files, and query the Google Civic Information API for the Delegate and Senate Districts,
|
||||
|
Loading…
x
Reference in New Issue
Block a user