c61f2a60dabef58cd351fb2982aeb6ecea8c8ef8
[eq/.git] / bin / import_ward_data
1 #!/usr/bin/perl
2
3 use DBI;
4 use Getopt::Std;
5
6 $mydir = `cd \$(dirname $0) 2>/dev/null; pwd`; chomp($mydir);
7 unshift @INC,("$mydir/../setup");
8 if( -f "$mydir/../setup/db_config.local") { require "db_config.local"; }
9 else { require "db_config"; }
10
11 %hometeaching_data = ();
12 %membership_data = ();
13 getopts('vsn:o:');
14
15 $monthname2num{'Jan'} = '01';
16 $monthname2num{'Feb'} = '02';
17 $monthname2num{'Mar'} = '03';
18 $monthname2num{'Apr'} = '04';
19 $monthname2num{'May'} = '05';
20 $monthname2num{'Jun'} = '06';
21 $monthname2num{'Jul'} = '07';
22 $monthname2num{'Aug'} = '08';
23 $monthname2num{'Sep'} = '09';
24 $monthname2num{'Oct'} = '10';
25 $monthname2num{'Nov'} = '11';
26 $monthname2num{'Dec'} = '12';
27
28 ######################################################################
29 # SUBROUTINES
30 ######################################################################
31 sub csv_to_hash
32 {
33         my ($filename, $hashref) = @_;
34
35         open(FILE,$filename) || die "-E- Could not open $filename for reading\n";
36
37         my $found_header = 0; my $index = 0;
38         while(<FILE>) {
39                 $line = $_;
40                 @data = split /\",/, $line;
41                 if(!$found_header) { 
42                         @header = @data; 
43                         $found_header = 1; 
44                 } else {
45                         foreach $i (0..$#data-1) {
46                                 $data[$i] =~ s/\"//g;
47                                 $header[$i] =~ s/\"//g;
48                                 $hashref->{$index}{$header[$i]} = $data[$i];
49                                 #print "$index: $i: $header[$i]: $data[$i]\n";
50                         }
51                         $index++;
52                 }
53         }
54
55         close(FILE);
56 }
57
58 sub optional_csv_to_hash
59 {
60         my ($filename, $hashref) = @_;
61
62         my $opened = open(FILE,$filename);
63
64         if ($opened) {
65                 my $found_header = 0; my $index = 0;
66                 while(<FILE>) {
67                         $line = $_;
68                         @data = split /\",/, $line;
69                         if(!$found_header) { 
70                                 @header = @data; 
71                                 $found_header = 1; 
72                         } else {
73                                 foreach $i (0..$#data-1) {
74                                         $data[$i] =~ s/\"//g;
75                                         $header[$i] =~ s/\"//g;
76                                         $hashref->{$index}{$header[$i]} = $data[$i];
77                                         #print "$index: $i: $header[$i]: $data[$i]\n";
78                                 }
79                                 $index++;
80                         }
81                 }
82
83                 close(FILE);
84         }
85         else
86         {
87         print "-W- could not open optional csv file $filename\n";
88         }
89 }
90
91 ######################################################################
92 sub print_hash
93 {
94         my ($hashref) = @_;
95
96         foreach $key (sort {$a <=> $b} keys %$hashref) {
97                 print "Index: $key\n";
98                 foreach $field (keys %{$hashref->{$key}}) {
99                         print "$field: $hashref->{$key}{$field}\n";
100                 }
101                 print "\n";
102         }
103 }
104
105 ######################################################################
106
107 # TC_INDIVIDUAL
108 #+----------------------+------------------+------+-----+---------+----------------+
109 #| Field                | Type             | Null | Key | Default | Extra          |
110 #+----------------------+------------------+------+-----+---------+----------------+
111 #| individual           | int(16) unsigned |      | PRI | NULL    | auto_increment |
112 #| mls_id               | int(16) unsigned |      |     | NULL    |                |
113 #| name                 | varchar(60)      | YES  |     | NULL    |                |
114 #| phone                | varchar(12)      | YES  |     | NULL    |                |
115 #| email                | varchar(120)     | YES  |     | NULL    |                |
116 #| priesthood           | enum             | YES  |     | NULL    |                |
117 #| scheduling_priority  | int(10) unsigned | YES  |     | 30      |                |
118 #| attending            | tinyint(1)       | YES  |     | 0       |                |
119 #| valid                | tinyint(1)       | YES  |     | NULL    |                |
120 #+----------------------+------------------+------+-----+---------+----------------+
121 sub update_tc_individual_table
122 {
123         print "\n-> Updating tc_individual table\n";
124
125         # Set all records to be invalid. Only mark them as valid if they appear on the new list.
126         $sth = $dbh->prepare("update tc_individual set valid=0");
127         $sth->execute or die "-E- DB error: $DBI::errstr\n";
128
129         foreach $index (keys %membership_data)
130         {
131                 $hashref = $membership_data{$index};
132                 $id = $membership_data{$index}{'Indiv ID'};
133                 $individual_name = $membership_data{$index}{'Preferred Name'};
134                 $address = $membership_data{$index}{'Street 1'};
135                 if($membership_data{$index}{'Street 2'} ne "") { 
136                         $address .= " " . $membership_data{$index}{'Street 2'};
137                 }
138                 $phone = $membership_data{$index}{'Household Phone'};
139                 $priesthood = $membership_data{$index}{'Priesthood'};
140                 $hhposition = $membership_data{$index}{'HH Position'};
141                 $steward = ""; # This will be set later
142                 # Default to the "Elders" quorum if the Organization data per member isn't available
143                 # Only add "Elders" to the quorum since we don't have any other data availalbe to us to make a call
144                 # TODO: make steward flexible with a setting in the config file 
145                 if((! -e "$datadir/Organization\ class\ per\ member.csv") && ($priesthood =~ /Elder/i)) { 
146                         $steward = "Elder";
147                         $organization = "Elders"; 
148                 }
149                 # Preferred method is to pull organization data from the csv file
150                 else { $organization = $organization_by_id{$id}; }
151                 $attending = 0;
152                 if(($organization =~ /Elders/) ||
153                    ($organization =~ /Young Men/) ||
154                    ($organization =~ /Sunday School/) ||
155                    ($organization =~ /Primary/)
156                    ) { $attending = 1; }
157                 if($phone =~ /(\d\d\d-\d\d\d\d)/) { $phone = "$areacode-$1"; }
158                 if($phone =~ /^\(\d\d\d\) (\d\d\d-\d\d\d\d)/) { $phone = "$1-$2"; }
159                 $email = $membership_data{$index}{'indiv E-mail'};
160                 if ($email eq "") { $email = $membership_data{$index}{'Household E-mail'}; }
161                 $sth = $dbh->prepare("select * from tc_individual where name=\"$individual_name\"");
162                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
163                 my @data = ();
164                 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
165                 my $rows = scalar @data;
166                 if($rows == 0) {
167                         # No existing records found for this individual, make a new entry
168                         print "   Adding new individual: $individual_name\n";
169                         $sth = $dbh->prepare("insert into tc_individual values (NULL,'$id',\"$individual_name\",'$address','$phone','$email','$hhposition','$priesthood','$steward',NULL,$attending,1)");
170                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
171                 } elsif($rows == 1) {
172                         # An existing record was found for this individual, update it
173                         print "   Updating existing individual: $individual_name\n";
174                         $sth = $dbh->prepare("update tc_individual set valid=1 where name=\"$individual_name\"");
175                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
176                         if($phone ne "") { 
177                                 $sth = $dbh->prepare("update tc_individual set phone='$phone' where name=\"$individual_name\"");
178                         } else {
179                                 $sth = $dbh->prepare("update tc_individual set phone=NULL where name=\"$individual_name\"");
180                         }
181                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
182                         if($address ne "") { 
183                                 $sth = $dbh->prepare("update tc_individual set address='$address' where name=\"$individual_name\"");
184                         } else {
185                                 $sth = $dbh->prepare("update tc_individual set address=NULL where name=\"$individual_name\"");
186                         }
187                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
188                         $sth = $dbh->prepare("update tc_individual set attending='$attending' where name=\"$individual_name\"");
189                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
190                         $sth = $dbh->prepare("update tc_individual set mls_id='$id' where name=\"$individual_name\"");
191                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
192                         $sth = $dbh->prepare("update tc_individual set priesthood='$priesthood' where name=\"$individual_name\"");
193                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
194                         $sth = $dbh->prepare("update tc_individual set email='$email' where name=\"$individual_name\"");
195                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
196                         $sth = $dbh->prepare("update tc_individual set hh_position='$hhposition' where name=\"$individual_name\"");
197                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
198                 } else {
199                         # More than one record was found. Error! This shouldn't happen.
200                         print "   -E- More than one record found ($rows) for individual: $individual_name\n";
201                 }
202         }
203         $sth->finish();
204 }
205
206 # TC_CALLING
207 #+--------------+------------------+------+-----+---------+-------+
208 #| Field        | Type             | Null | Key | Default | Extra |
209 #+--------------+------------------+------+-----+---------+-------+
210 #| name         | varchar(30)      | YES  |     | NULL    |       |
211 #| organization | varchar(30)      | YES  |     | NULL    |       |
212 #| position     | varchar(30)      | YES  |     | NULL    |       |
213 #| sustained    | date             | YES  |     | NULL    |       |
214 #+--------------+------------------+------+-----+---------+-------+
215 sub update_tc_calling_table()
216 {
217         print "\n-> Updating tc_calling table\n";
218
219         #print "-> Organization Data Dump\n\n";
220         #&print_hash(\%organization_data);
221
222         # Delete all records from the calling table. We have no history to
223         # save here. Just re-populate with the latest calling information.
224         $sth = $dbh->prepare("delete from tc_calling ");
225         $sth->execute or die "-E- DB error: $DBI::errstr\n";
226
227         foreach $index (keys %organization_data)
228         {
229                 $name = $organization_data{$index}{'Indiv Name'};
230                 $name =~ s/\'/\\'/g; #'
231                 $organization = $organization_data{$index}{'Organization'};
232                 $organization_by_name{$name} = $organization;
233                 $organization_by_id{$indiv_id} = $organization;
234                 $position = $organization_data{$index}{'Position'};
235                 $sustained = $organization_data{$index}{'Sustained'};
236                 $sustained =~ /(\S+) (\d+)/; $month=$1; $year=$2;
237                 if($name eq "") { next; }
238                 print "   Adding new Calling: $name -> $position\n";
239                 $sth = $dbh->prepare("insert into tc_calling values ('$name','$organization','$position','$month $year')");
240                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
241         }
242 }
243
244 # TC_COMPANIONSHIP
245 #+----------------------+------------------+------+-----+---------+-------+
246 #| Field                | Type             | Null | Key | Default | Extra |
247 #+----------------------+------------------+------+-----+---------+-------+
248 #| companionship        | int(16) unsigned |      |     | 0       |       |
249 #| individual           | int(16) unsigned | YES  |     | NULL    |       |
250 #| district             | int(16) unsigned | YES  |     | NULL    |       |
251 #| scheduling_priority  | int(10) unsigned | YES  |     | 30      |       |
252 #| valid                | tinyint(1)       | YES  |     | NULL    |       |
253 #+----------------------+------------------+------+-----+---------+-------+
254 sub update_tc_companionship_table
255 {
256         print "\n-> Updating tc_companionship table\n";
257
258         # First, mark all existing companionships as invalid in case they have been dissolved
259         $sth = $dbh->prepare("update tc_companionship set valid=0");
260         $sth->execute or die "-E- DB error: $DBI::errstr\n";
261
262         foreach $index (keys %hometeaching_data)
263         {
264                 $hashref = $hometeaching_data{$index};
265                 foreach $key (keys %$hashref) {
266                         if($key =~ /Quorum/i && $hometeaching_data{$index}{$key} =~ /Elders/i) {
267                                 foreach $field ("Home Teacher 1","Home Teacher 2") {
268                                         $individual_name = $hometeaching_data{$index}{$field};
269                                         if($individual_name eq "") { next; }
270                                         $sth2 = $dbh->prepare("select * from tc_individual where name='$individual_name'");
271                                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
272                                         $sqlhashref2 = $sth2->fetchrow_hashref;
273                                         $individual = $sqlhashref2->{individual};
274                                         $id = $hometeaching_data{$index}{'Comp ID'};
275                                         $district = $hometeaching_data{$index}{'HT District'};
276                                         $sth = $dbh->prepare("select * from tc_companionship where individual='$individual' and companionship='$id'");
277                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
278                                         my @data = ();
279                                         while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
280                                         my $rows = scalar @data;
281                                         if($rows == 0) {
282                                                 # No existing records found for this companionship, make a new entry
283                                                 print "   Adding Companion to companionship: $individual_name -> $id\n";
284                                                 $sth = $dbh->prepare("insert into tc_companionship values ($id,'$individual','$district',NULL,1)");
285                                                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
286                                         } else {
287                                                 # An existing companionship was found for this companionship, update it
288                                                 $sth2 = $dbh->prepare("select * from tc_companionship where district='$district' and companionship='$id'");
289                                                 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
290                                                 print "   Updating Companionship with individual: $individual_name ($individual) -> $id\n";
291                                                 $sth = $dbh->prepare("update tc_companionship set district='$district' where individual='$individual' and companionship='$id'");
292                                                 $sth->execute or die "-E- DB error 'district': $DBI::errstr\n";
293                                                 $sth = $dbh->prepare("update tc_companionship set individual='$individual' where individual='$individual' and companionship='$id'");
294                                                 $sth->execute or die "-E- DB error 'individual': $DBI::errstr\n";
295                                                 $sth = $dbh->prepare("update tc_companionship set valid=1 where individual='$individual' and companionship='$id'");
296                                                 $sth->execute or die "-E- DB error 'valid': $DBI::errstr\n";
297                                         }
298                                         $sth->finish();
299                                         $sth2->finish();                    
300                                 }
301                         }
302                 }
303         }
304 }
305
306 # TC_FAMILY
307 #+----------------------+------------------+------+-----+---------+-------+
308 #| Field                | Type             | Null | Key | Default | Extra |
309 #+----------------------+------------------+------+-----+---------+-------+
310 #| family               | int(16) unsigned |      | PRI | 0       |   A   |
311 #| individual           | int(16) unsigned | YES  |     | NULL    |       |
312 #| companionship        | int(16) unsigned | YES  |     | NULL    |       |
313 #| scheduling_priority  | int(10) unsigned | YES  |     | 30      |       |
314 #| valid                | tinyint(1)       | YES  |     | NULL    |       |
315 #+----------------------+------------------+------+-----+---------+-------+
316 sub update_tc_family_table
317 {
318         print "\n-> Updating tc_family table\n";
319
320         # Set all records to be invalid. Only mark them as valid if they appear on the new list.
321         $sth = $dbh->prepare("update tc_family set valid=0 and companionship=0");
322         $sth->execute or die "-E- DB error: $DBI::errstr\n";
323
324         # find head of households in tc_individual
325         $sth = $dbh->prepare("SELECT * FROM tc_individual WHERE hh_position='Head of Household' and valid=1");
326         $sth->execute or die "-E- DB error: $DBI::errstr\n";
327         my @individual_data = ();
328         while ($sqlhashref = $sth->fetchrow_hashref) { push(@individual_data, $sqlhashref); }
329         my $individual_count = scalar @individual_data;
330         for($i=0;$i<$individual_count;$i++) {
331                 $individual = $individual_data[$i]{'individual'};
332                 $name = $individual_data[$i]{'name'};
333                 
334                 $sth2 = $dbh->prepare("SELECT * FROM tc_family WHERE individual='$individual'");
335                 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
336                 
337                 my @data = ();
338                 while($sqlhashref2 = $sth2->fetchrow_hashref) { push(@data, $sqlhashref2); }
339                 my $rows = scalar @data;
340
341                 if($rows == 0) {
342                         # No existing records found for this family, make a new entry
343                         print "   Adding new Family: $name\n";
344                         $sth2 = $dbh->prepare("INSERT INTO tc_family VALUES (NULL,'$individual','0',NULL,1)");
345                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
346                 } elsif($rows == 1) {
347                         # An existing record was found for this family, update it
348                         print "   Updating existing family: $name\n";
349                         $sth2 = $dbh->prepare("UPDATE tc_family SET valid='1' WHERE individual='$individual'");
350                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
351                 } else {
352                         # More than one record was found. Error! This shouldn't happen.
353                         print "   -E- More than one record found ($rows) for family name: $name\n";
354                 }
355                 
356                 # Now update the hometeaching field for this family
357                 foreach $index (keys %hometeaching_data)
358                 {
359                         $hashref = $hometeaching_data{$index};
360                         foreach $key (keys %$hashref) {
361                                 if($hometeaching_data{$index}{'Household'} =~ /(\S+)\s+(\S+),\s+(\S+)\s+(.*)/) {
362                                         $a = $1; $b = $2; $c = $3; $d = $4;
363                                         if($name =~ /$a/ && $hometeaching_data{$index}{'Household'} !~ /$name/i) { 
364                                                 print "I: Adjusting hometeaching match from: $hometeaching_data{$index}{'Household'} to $a, $c $d\n";
365                                                 $hometeaching_data{$index}{'Household'} = "$a, $c $d";
366                                         }
367                                 }
368                                 if($key =~ /Quorum/i &&
369                                    $hometeaching_data{$index}{$key} =~ /Elders/i &&
370                                    $hometeaching_data{$index}{'Household'} =~ /$name/i &&
371                                    $data[0]->{companionship} != $hometeaching_data{$index}{'Comp ID'}
372                                   )
373                                 {
374                                         print "   Updating hometeaching assignment for $name family\n";
375                                         $companionship = $hometeaching_data{$index}{'Comp ID'};
376                                         $sth2 = $dbh->prepare("update tc_family set companionship='$companionship' where individual='$individual'");
377                                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
378                                 }
379                         }
380                 }
381                 $sth->finish();
382         }
383 }
384
385 # TC_VISIT
386 #+----------------+------------------+------+-----+---------+-------+
387 #| Field          | Type             | Null | Key | Default | Extra |
388 #+----------------+------------------+------+-----+---------+-------+
389 #| visit          | int(16) unsigned |      | PRI | 0       |   A   |
390 #| family         | int(16) unsigned | YES  | UNI | NULL    |       |
391 #| companionship  | int(16) unsigned | YES  |     | NULL    |       |
392 #| date           | date             | YES  |     | NULL    |       |
393 #| notes          | varchar(128)     | YES  |     | NULL    |       |
394 #| visited        | varchar(1)       | YES  |     | NULL    |       |
395 #+----------------+------------------+------+-----+---------+-------+
396 sub update_tc_visit_table
397 {
398         print "\n-> updating tc_visit table\n";
399         
400         my $month_header_retrieved = 0;
401         my $month_header;
402         my @data_months;
403         my %months = ('Jan', 1, 'Feb', 2, 'Mar', 3, 'Apr', 4, 'May', 5, 'Jun', 6, 'Jul', 7, 'Aug', 8, 'Sep', 9, 'Oct', 10, 'Nov', 11, 'Dec', 12);
404         ($second, $minute, $hour, $dayOfMonth, $month, $yearOffset, $dayOfWeek, $dayOfYear, $daylightSavings) = localtime();
405         my %visit_status = ('X', 'y', '-', 'n', '', '');
406         
407         foreach $index (keys %hometeaching_stats_data)
408         {
409                 $hashref = $hometeaching_stats_data{$index};
410                 #foreach $key (keys %$hashref) {print "$key\n";}
411                 
412                 $family_name = $hometeaching_stats_data{$index}{"Preferred Name"};
413                 print "   Updating visit data: $family_name\n";
414
415                 # get family id from tc_family
416                 $sth = $dbh->prepare("SELECT * FROM tc_family AS tf JOIN tc_individual AS ti WHERE tf.individual=ti.individual AND ti.name=\"$family_name\" AND tf.valid=1");
417                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
418                 my @family_data = ();
419                 while($sqlhashref = $sth->fetchrow_hashref) { push(@family_data, $sqlhashref); }
420                 my $family_rows = scalar @family_data;
421                 if($family_rows > 0) { 
422                         $family_id = $family_data[0]->{'family'}; 
423                         $comp_id = $family_data[0]->{'companionship'};
424                 }
425                 else { next; }
426                 #print "family_id = $family_id\n";
427                 #print "comp_id = $comp_id\n";
428                 
429                 # ignore visits that weren't done by the quorum
430                 if ($comp_id == 0) { next; }
431                 
432                 # retrieve the month header if not already done
433                 if ($month_header_retrieved == 0)
434                 {
435                         foreach $key (keys %$hashref) 
436                         {
437                                 if (($key ne "Preferred Name") && ($key ne "Home Teachers"))
438                                 {
439                                         $month_header = $key;
440                                         @data_months = split /\t/, $key;
441                                 }
442                         }
443                         $month_header_retrieved = 1;
444                 }
445                 
446                 # loop through history data
447                 @history = split /\t/, $hometeaching_stats_data{$index}{$month_header};
448                 my $data_year = 1900 + $yearOffset;
449                 my $data_month = $months{$data_months[-1]};
450                 #print "$month_header\n";
451                 #print $hometeaching_stats_data{$index}{$month_header};
452                 #print "\n";
453                 foreach $i (reverse(0..$#history)) {
454                         # went back a calendar year, decrement $data_year
455                         if ($months{$data_months[$i]} > $data_month)
456                         {
457                                 $data_year -= 1;
458                         }
459                         $data_month = $months{$data_months[$i]};
460                         my $visit_date = sprintf("%4d-%02d-01\n", $data_year, $data_month);
461                         #print "$visit_date\n";
462                         my $importing_status = $visit_status{$history[$i]};
463                         #print "importing_status = $importing_status\n";
464                         #print "select * from tc_visit where family=$family_id and companionship=$comp_id and date='$visit_date'\n";
465                         $sth = $dbh->prepare("select * from tc_visit where family=$family_id and companionship=$comp_id and date='$visit_date'");
466                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
467                         my @visit_data = ();
468                         while($sqlhashref = $sth->fetchrow_hashref) { push(@visit_data, $sqlhashref); }
469                         my $visit_rows = scalar @visit_data;
470                         if($visit_rows > 0) { 
471                                 my $visited = $visit_data[0]->{'visited'}; 
472                                 #print "visited = $visited\n";
473                                 # update visit if data is different in tc_visit
474                                 if ($visited ne $importing_status)
475                                 {
476                                         #print "importing_status = $importing_status\n";
477                                         $sth = $dbh->prepare("update tc_visit set visited='$importing_status' where family='$family_id' and date='$visit_date' and companionship='$comp_id'");
478                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
479                                 }
480                         } else {
481                                 if ($importing_status ne '')
482                                 {
483                                         # add visit if it doesn't exist in tc_visit
484                                         $sth = $dbh->prepare("insert into tc_visit values (NULL, '$family_id', '$comp_id', '', '', '$visit_date', '', '$importing_status', 'hometeaching')");
485                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
486                                 }
487                         }
488                 }
489         }
490 }
491
492 ######################################################################
493 sub check_for_changed_ids
494 {
495         # If the Indiv ID & HofH ID has changed between data sets, we could have problems
496         my ($oldhashref, $newhashref) = @_;
497         my $found_problem = 0;
498
499         foreach $oldindex (keys %$oldhashref)
500         {
501                 $mls_id = $oldhashref->{$oldindex}{'Indiv ID'};
502                 $hofh_id  = $oldhashref->{$oldindex}{'HofH ID'};
503                 $full_name = $oldhashref->{$oldindex}{'Full Name'};
504                 $hh_position = $oldhashref->{$oldindex}{'HH Position'};
505                 if($hh_position =~ /Other/i) { next; }
506
507                 foreach $newindex (keys %$newhashref)
508                 {
509                         if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
510                            $mls_id != $newhashref->{$newindex}{'Indiv ID'})
511                         {
512                                 print "-W- Indiv ID for $full_name changed from $mls_id to $newhashref->{$newindex}{'Indiv ID'}\n";
513                                 $found_problem = 1;
514                         }
515
516                         if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
517                            $hofh_id != $newhashref->{$newindex}{'HofH ID'})
518                         {
519                                 print "-W- HofH ID for $full_name changed from $hofh_id to $newhashref->{$newindex}{'HofH ID'}\n";
520                                 $found_problem = 1;
521                         }
522                 }
523         }
524
525         return $found_problem;
526 }
527
528 sub update_organization_class_data
529 {
530         print "\n-> Updating organization class info in tc_individual table\n";
531
532         foreach $index (keys %organization_class_data)
533         {
534                 # get name and organization info for each individual
535                 $name = $organization_class_data{$index}{'Preferred Name'};
536                 $org_class = $organization_class_data{$index}{'Organization Class'};
537
538                 if ($org_class =~ m/Elder/i) {
539                         #print "   $name:  Elder\n";
540                         $sth = $dbh->prepare("update tc_individual set steward='Elder' where name=\"$name\"");
541                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
542                 }
543                 if ($org_class =~ m/High Priest/i) {
544                         #print "   $name:  High Priest\n";
545                         $sth = $dbh->prepare("update tc_individual set steward='High Priest' where name=\"$name\"");
546                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
547                 }
548         }
549 }
550
551 sub update_tc_scheduling_priority_table
552 {
553         print "\n-> Updating scheduling priority table\n";
554         
555         # individuals
556         # TODO: make steward flexible with a setting in the config file
557         $sth = $dbh->prepare("select * from tc_individual where steward='Elder' and valid=1");
558         $sth->execute or die "-E- DB error: $DBI::errstr\n";
559         while($sqlhashref = $sth->fetchrow_hashref) {
560                 $individual = $sqlhashref->{individual};
561                 $scheduling_priority = $sqlhashref->{scheduling_priority};
562                 if ($scheduling_priority == 'NULL')
563                 {
564                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
565                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
566                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
567                         $sth2 = $dbh->prepare("update tc_individual set scheduling_priority=$scheduling_priority where individual=$individual");
568                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
569                 }
570         }
571         &remove_obsolete_scheduling_priority("tc_individual");
572         
573         # families
574         # TODO: make steward flexible with a setting in the config file
575         $sth = $dbh->prepare("select tf.scheduling_priority, tf.family from tc_family AS tf JOIN tc_individual AS ti ON tf.individual=ti.individual and ti.steward='Elder' and tf.valid=1");
576         $sth->execute or die "-E- DB error: $DBI::errstr\n";
577         while($sqlhashref = $sth->fetchrow_hashref) {
578                 $family = $sqlhashref->{family};
579                 $scheduling_priority = $sqlhashref->{scheduling_priority};
580                 #print "$family   $scheduling_priority\n";
581                 if ($scheduling_priority == 'NULL')
582                 {
583                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
584                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
585                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
586                         $sth2 = $dbh->prepare("update tc_family set scheduling_priority=$scheduling_priority where family=$family");
587                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
588                 }
589         }
590         &remove_obsolete_scheduling_priority("tc_family");
591         
592         # companionships
593         # TODO: make steward flexible with a setting in the config file
594         $sth = $dbh->prepare("select tc.individual, tc.scheduling_priority from tc_companionship AS tc JOIN tc_individual AS ti ON tc.individual=ti.individual and (ti.steward='Elder' or ti.steward='') and tc.valid=1");
595         $sth->execute or die "-E- DB error: $DBI::errstr\n";
596         while($sqlhashref = $sth->fetchrow_hashref) {
597                 $individual = $sqlhashref->{individual};
598                 $scheduling_priority = $sqlhashref->{scheduling_priority};
599                 #print "$individual   $scheduling_priority\n";
600                 if ($scheduling_priority == 'NULL')
601                 {
602                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
603                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
604                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
605                         $sth2 = $dbh->prepare("update tc_companionship set scheduling_priority=$scheduling_priority where individual=$individual");
606                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
607                 }
608         }
609         &remove_obsolete_scheduling_priority("tc_companionship");
610 }
611
612 sub remove_obsolete_scheduling_priority
613 {
614         my $table_name = $_[0];
615
616         #print "\n-> Cleaning $table_name\n";
617         
618         #$sth = $dbh->prepare("SELECT scheduling_priority FROM $table_name where scheduling_priority IS NOT NULL AND valid=0");
619         $sth = $dbh->prepare("SELECT * FROM $table_name WHERE valid=0");
620         $sth->execute or die "-E- DB error: $DBI::errstr\n";
621         while($sqlhashref = $sth->fetchrow_hashref) {
622                 $scheduling_priority = $sqlhashref->{scheduling_priority};
623                 $individual = $sqlhashref->{individual};
624                 #$name = $sqlhashref->{name};
625                 if ($scheduling_priority != "NULL") {
626                         #print "$name\n";
627                         # set scheduling_priority to NULL
628                         #print "UPDATE $table_name SET scheduling_priority=NULL WHERE individual=$individual\n";
629                         $sth2 = $dbh->prepare("UPDATE $table_name SET scheduling_priority=NULL WHERE individual=$individual");
630                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
631                         
632                         # remove entry from tc_scheduling_priority
633                         #print "DELETE FROM tc_scheduling_priority WHERE scheduling_priority=$scheduling_priority\n";
634                         $sth2 = $dbh->prepare("DELETE FROM tc_scheduling_priority WHERE scheduling_priority=$scheduling_priority");
635                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
636                 }
637         }
638 }
639
640 ######################################################################
641 # MAIN
642 ######################################################################
643
644 ###################################################
645 # Open a connection to the database
646 $dbh=DBI->connect("dbi:mysql:dbname=$dbname:host=$dbhost:port=$dbport",$dbuser,$dbpass,{
647     AutoCommit=>0,
648     PrintError=>0}) or print "Connect Failure:".$DBI::errstr."\n" and exit 2;
649
650 ###################################################
651 # Check old directory against new directory to ensure
652 # that the Indiv ID & HofH ID have not changed between updates
653 if(defined $opt_o) {
654         print "-> Comparing old data files to new ones: $opt_o => $opt_n\n";
655         my %old_membership_data = ();
656         my %new_membership_data = ();
657         &csv_to_hash("$opt_o/Membership.csv",\%old_membership_data);
658         &csv_to_hash("$opt_n/Membership.csv",\%new_membership_data);
659
660         $changed_ids=&check_for_changed_ids(\%old_membership_data, \%new_membership_data);
661
662         if($changed_ids) {
663                 print "\n";
664                 print "-E- Some Indiv IDs and HofH IDs have changed for Head of Households between \n";
665                 print "    $opt_o and $opt_n data sets.\n";
666                 print "    This script is not currently setup to handle this properly.\n";
667                 print "\n";
668                 print "    Exiting without updating...\n\n";
669                 exit;
670         }
671 }
672
673 ###################################################
674 # Process command line options
675 our $datadir;
676 if(defined $opt_n) { $datadir = $opt_n; }
677 else { $datadir = shift(@ARGV); }
678 print "\n-> Processing all ward data files in $datadir\n";
679
680 ###################################################
681 # Parse Ward Data Files
682 &optional_csv_to_hash("$datadir/Organization\ class\ per\ member.csv", \%organization_class_data);
683 &csv_to_hash("$datadir/Membership.csv",\%membership_data);
684 &csv_to_hash("$datadir/HomeTeaching.csv",\%hometeaching_data);
685 &csv_to_hash("$datadir/Organization.csv",\%organization_data);
686 &optional_csv_to_hash("$datadir/Home\ Teacher\ per\ Companionship.csv", \%hometeaching_stats_data);
687 %organization_by_name = ();
688 %organization_by_id = ();
689
690 if($opt_v) {
691         print "-> Membership Data Dump\n\n";
692         &print_hash(\%membership_data);
693         print "-> HomeTeaching Data Dump\n\n";
694         &print_hash(\%hometeaching_data);
695         print "-> Organization Data Dump\n\n";
696         &print_hash(\%organization_data);
697         print "-> HomeTeaching Stats Data Dump\n\n";
698         &print_hash(\%hometeaching_stats_data);
699 }
700
701 if($opt_s) { $dbh->disconnect(); exit; }
702
703 # Now update the various DB tables
704 &update_tc_calling_table();
705 &update_tc_individual_table();
706 &update_tc_companionship_table();
707 &update_tc_family_table();
708 &update_tc_visit_table();
709 &update_organization_class_data();
710 &update_tc_scheduling_priority_table();
711
712 print "\n-> Import Successful! DONE...\n";
713
714 ###################################################
715 # Disconnect from the database
716 $dbh->disconnect();
717
718 ######################################################################
719
720