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