removed indiv_id and sequence from tc_calling - redundant, unnecessary information
[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 #| hofh_id              | int(16) unsigned | YES  |     | NULL    |       |
334 #| name                 | varchar(30)      | YES  |     | NULL    |       |
335 #| name_id              | varchar(30)      | YES  |     | NULL    |       |
336 #| individual           | int(16) unsigned | YES  |     | NULL    |       |
337 #| companionship        | int(16) unsigned | YES  |     | NULL    |       |
338 #| scheduling_priority  | int(10) unsigned | YES  |     | 30      |       |
339 #| valid                | tinyint(1)       | YES  |     | NULL    |       |
340 #+----------------------+------------------+------+-----+---------+-------+
341 sub update_tc_family_table
342 {
343         print "\n-> Updating tc_family table\n";
344
345         # Set all records to be invalid. Only mark them as valid if they appear on the new list.
346         $sth = $dbh->prepare("update tc_family set valid=0");
347         $sth->execute or die "-E- DB error: $DBI::errstr\n";
348         $sth = $dbh->prepare("update tc_family set companionship=0");
349         $sth->execute or die "-E- DB error: $DBI::errstr\n";
350
351         foreach $index (keys %membership_data)
352         {
353                 $hashref = $membership_data{$index};
354                 foreach $key (keys %$hashref) {
355                         if($key =~ /HH Position/i && $membership_data{$index}{$key} =~ /Head of Household/i) {
356                                 $family_name = $membership_data{$index}{'Preferred Name'};
357                                 $family_name =~ s/\'/\\'/g; #'
358                                 $id = $membership_data{$index}{'HofH ID'};
359                                 $name_id = uc($family_name);
360
361                                 # Find out how many families match this family's name
362                                 $sth = $dbh->prepare("select * from tc_family where name_id='$name_id'");
363                                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
364                                 my @data = ();
365                                 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
366                                 my $rows = scalar @data;
367
368                                 if($rows == 0) {
369                                         # No existing records found for this family, make a new entry
370                                         print "   Adding new Family: $family_name\n";
371                                         $sth = $dbh->prepare("insert into tc_family values (NULL,$id,'$family_name','$name_id','0','0',NULL,1)");
372                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
373                                 } elsif($rows == 1) {
374                                         # An existing record was found for this family, update it
375                                         print "   Updating existing family: $family_name\n";
376                                         $sth = $dbh->prepare("update tc_family set hofh_id=$id where name_id='$name_id'");
377                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
378                                         $sth = $dbh->prepare("update tc_family set valid=1 where name_id='$name_id'");
379                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
380                                 } else {
381                                         # More than one record was found. Error! This shouldn't happen.
382                                         print "   -E- More than one record found ($rows) for family name: $family_name\n";
383                                 }
384
385                                 # Now update the individual field for this family
386                                 $sth = $dbh->prepare("select * from tc_individual WHERE name='$family_name'");
387                                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
388                                 while($sqlhashref = $sth->fetchrow_hashref) {
389                                         $individual = $sqlhashref->{individual};
390                                         print "   Updating family individual: $family_name -> $individual\n";
391                                         $sth = $dbh->prepare("update tc_family set individual=$individual where name_id='$name_id'");
392                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
393                                 }
394
395                                 # Now update the hometeaching field for this family
396                                 foreach $index (keys %hometeaching_data)
397                                 {
398                                         $hashref = $hometeaching_data{$index};
399                                         foreach $key (keys %$hashref) {
400                                                 if($hometeaching_data{$index}{'Household'} =~ /(\S+)\s+(\S+),\s+(\S+)\s+(.*)/) {
401                                                         $a = $1; $b = $2; $c = $3; $d = $4;
402                                                         if($family_name =~ /$a/ && $hometeaching_data{$index}{'Household'} !~ /$family_name/i) { 
403                                                                 print "I: Adjusting hometeaching match from: $hometeaching_data{$index}{'Household'} to $a, $c $d\n";
404                                                                 $hometeaching_data{$index}{'Household'} = "$a, $c $d";
405                                                         }
406                                                 }
407                                                 if($key =~ /Quorum/i &&
408                                                    $hometeaching_data{$index}{$key} =~ /Elders/i &&
409                                                    $hometeaching_data{$index}{'Household'} =~ /$family_name/i &&
410                                                    $data[0]->{companionship} != $hometeaching_data{$index}{'Comp ID'}
411                                                    )
412                                                 {
413                                                         print "   Updating hometeaching assignment for $family_name family\n";
414                                                         $companionship = $hometeaching_data{$index}{'Comp ID'};
415                                                         $sth = $dbh->prepare("update tc_family set companionship='$companionship' where name_id='$name_id'");
416                                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
417                                                 }
418                                         }
419                                 }
420                                 $sth->finish();
421                         }
422                 }
423         }
424 }
425
426 # TC_VISIT
427 #+----------------+------------------+------+-----+---------+-------+
428 #| Field          | Type             | Null | Key | Default | Extra |
429 #+----------------+------------------+------+-----+---------+-------+
430 #| visit          | int(16) unsigned |      | PRI | 0       |   A   |
431 #| family         | int(16) unsigned | YES  | UNI | NULL    |       |
432 #| companionship  | int(16) unsigned | YES  |     | NULL    |       |
433 #| date           | date             | YES  |     | NULL    |       |
434 #| notes          | varchar(128)     | YES  |     | NULL    |       |
435 #| visited        | varchar(1)       | YES  |     | NULL    |       |
436 #+----------------+------------------+------+-----+---------+-------+
437 sub update_tc_visit_table
438 {
439         print "\n-> updating tc_visit table\n";
440         
441         my $month_header_retrieved = 0;
442         my $month_header;
443         my @data_months;
444         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);
445         ($second, $minute, $hour, $dayOfMonth, $month, $yearOffset, $dayOfWeek, $dayOfYear, $daylightSavings) = localtime();
446         my %visit_status = ('X', 'y', '-', 'n', '', '');
447         
448         foreach $index (keys %hometeaching_stats_data)
449         {
450                 $hashref = $hometeaching_stats_data{$index};
451                 #foreach $key (keys %$hashref) {print "$key\n";}
452                 
453                 $family_name = $hometeaching_stats_data{$index}{"Preferred Name"};
454                 print "   Updating visit data: $family_name\n";
455
456                 # get family id from tc_family
457                 $sth = $dbh->prepare("select * from tc_family where name=\"$family_name\" and valid=1");
458                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
459                 my @family_data = ();
460                 while($sqlhashref = $sth->fetchrow_hashref) { push(@family_data, $sqlhashref); }
461                 my $family_rows = scalar @family_data;
462                 if($family_rows > 0) { 
463                         $family_id = $family_data[0]->{'family'}; 
464                         $comp_id = $family_data[0]->{'companionship'};
465                 }
466                 else { next; }
467                 #print "family_id = $family_id\n";
468                 #print "comp_id = $comp_id\n";
469                 
470                 # ignore visits that weren't done by the quorum
471                 if ($comp_id == 0) { next; }
472                 
473                 # retrieve the month header if not already done
474                 if ($month_header_retrieved == 0)
475                 {
476                         foreach $key (keys %$hashref) 
477                         {
478                                 if (($key ne "Preferred Name") && ($key ne "Home Teachers"))
479                                 {
480                                         $month_header = $key;
481                                         @data_months = split /\t/, $key;
482                                 }
483                         }
484                         $month_header_retrieved = 1;
485                 }
486                 
487                 # loop through history data
488                 @history = split /\t/, $hometeaching_stats_data{$index}{$month_header};
489                 my $data_year = 1900 + $yearOffset;
490                 my $data_month = $months{$data_months[-1]};
491                 #print "$month_header\n";
492                 #print $hometeaching_stats_data{$index}{$month_header};
493                 #print "\n";
494                 foreach $i (reverse(0..$#history)) {
495                         # went back a calendar year, decrement $data_year
496                         if ($months{$data_months[$i]} > $data_month)
497                         {
498                                 $data_year -= 1;
499                         }
500                         $data_month = $months{$data_months[$i]};
501                         my $visit_date = sprintf("%4d-%02d-01\n", $data_year, $data_month);
502                         #print "$visit_date\n";
503                         my $importing_status = $visit_status{$history[$i]};
504                         #print "importing_status = $importing_status\n";
505                         #print "select * from tc_visit where family=$family_id and companionship=$comp_id and date='$visit_date'\n";
506                         $sth = $dbh->prepare("select * from tc_visit where family=$family_id and companionship=$comp_id and date='$visit_date'");
507                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
508                         my @visit_data = ();
509                         while($sqlhashref = $sth->fetchrow_hashref) { push(@visit_data, $sqlhashref); }
510                         my $visit_rows = scalar @visit_data;
511                         if($visit_rows > 0) { 
512                                 my $visited = $visit_data[0]->{'visited'}; 
513                                 #print "visited = $visited\n";
514                                 # update visit if data is different in tc_visit
515                                 if ($visited ne $importing_status)
516                                 {
517                                         #print "importing_status = $importing_status\n";
518                                         $sth = $dbh->prepare("update tc_visit set visited='$importing_status' where family='$family_id' and date='$visit_date' and companionship='$comp_id'");
519                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
520                                 }
521                         } else {
522                                 if ($importing_status ne '')
523                                 {
524                                         # add visit if it doesn't exist in tc_visit
525                                         $sth = $dbh->prepare("insert into tc_visit values (NULL, '$family_id', '$comp_id', '', '', '$visit_date', '', '$importing_status', 'hometeaching')");
526                                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
527                                 }
528                         }
529                 }
530         }
531 }
532
533 ######################################################################
534 sub check_for_changed_ids
535 {
536         # If the Indiv ID & HofH ID has changed between data sets, we could have problems
537         my ($oldhashref, $newhashref) = @_;
538         my $found_problem = 0;
539
540         foreach $oldindex (keys %$oldhashref)
541         {
542                 $mls_id = $oldhashref->{$oldindex}{'Indiv ID'};
543                 $hofh_id  = $oldhashref->{$oldindex}{'HofH ID'};
544                 $full_name = $oldhashref->{$oldindex}{'Full Name'};
545                 $hh_position = $oldhashref->{$oldindex}{'HH Position'};
546                 if($hh_position =~ /Other/i) { next; }
547
548                 foreach $newindex (keys %$newhashref)
549                 {
550                         if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
551                            $mls_id != $newhashref->{$newindex}{'Indiv ID'})
552                         {
553                                 print "-W- Indiv ID for $full_name changed from $mls_id to $newhashref->{$newindex}{'Indiv ID'}\n";
554                                 $found_problem = 1;
555                         }
556
557                         if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
558                            $hofh_id != $newhashref->{$newindex}{'HofH ID'})
559                         {
560                                 print "-W- HofH ID for $full_name changed from $hofh_id to $newhashref->{$newindex}{'HofH ID'}\n";
561                                 $found_problem = 1;
562                         }
563                 }
564         }
565
566         return $found_problem;
567 }
568
569 sub update_family_in_tc_individual_table
570 {
571         print "\n-> Updating family info in tc_individual table\n";
572
573         foreach $index (keys %membership_data)
574         {
575                 $hashref = $membership_data{$index};
576
577                 # get some information from hash about this individual
578                 $name = $membership_data{$index}{'Preferred Name'};
579                 $hofh_id = $membership_data{$index}{'HofH ID'};
580
581                 # Find the family id for this individual's HofH_id
582                 $sth = $dbh->prepare("select * from tc_family where hofh_id=$hofh_id and valid=1");
583                 $sth->execute or die "-E- DB error: $DBI::errstr\n";
584                 my @family_data = ();
585                 while($sqlhashref = $sth->fetchrow_hashref) { push(@family_data, $sqlhashref); }
586                 my $family_rows = scalar @family_data;
587                 if($family_rows > 0) { 
588                         $family_id = $family_data[0]->{'family'};
589
590                         print "   Updating family data for: $name\n";
591
592                         # write the family id to the individual's data in tc_individual
593                         $sth = $dbh->prepare("update tc_individual set family='$family_id' where name=\"$name\""); 
594                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
595                 } else {
596                         $family_id = 0; 
597                 }
598         }
599 }
600
601 sub update_organization_class_data
602 {
603         print "\n-> Updating organization class info in tc_individual table\n";
604
605         foreach $index (keys %organization_class_data)
606         {
607                 # get name and organization info for each individual
608                 $name = $organization_class_data{$index}{'Preferred Name'};
609                 $org_class = $organization_class_data{$index}{'Organization Class'};
610
611                 if ($org_class =~ m/Elder/i) {
612                         #print "   $name:  Elder\n";
613                         $sth = $dbh->prepare("update tc_individual set steward='Elder' where name=\"$name\"");
614                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
615                 }
616                 if ($org_class =~ m/High Priest/i) {
617                         #print "   $name:  High Priest\n";
618                         $sth = $dbh->prepare("update tc_individual set steward='High Priest' where name=\"$name\"");
619                         $sth->execute or die "-E- DB error: $DBI::errstr\n";
620                 }
621         }
622 }
623
624 sub update_tc_scheduling_priority_table
625 {
626         print "\n-> Updating scheduling priority table\n";
627         
628         # individuals
629         # TODO: make steward flexible with a setting in the config file
630         $sth = $dbh->prepare("select * from tc_individual where steward='Elder' and valid=1");
631         $sth->execute or die "-E- DB error: $DBI::errstr\n";
632         while($sqlhashref = $sth->fetchrow_hashref) {
633                 $individual = $sqlhashref->{individual};
634                 $scheduling_priority = $sqlhashref->{scheduling_priority};
635                 if ($scheduling_priority == 'NULL')
636                 {
637                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
638                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
639                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
640                         $sth2 = $dbh->prepare("update tc_individual set scheduling_priority=$scheduling_priority where individual=$individual");
641                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
642                 }
643         }
644         
645         # families
646         # TODO: make steward flexible with a setting in the config file
647         $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");
648         $sth->execute or die "-E- DB error: $DBI::errstr\n";
649         while($sqlhashref = $sth->fetchrow_hashref) {
650                 $family = $sqlhashref->{family};
651                 $scheduling_priority = $sqlhashref->{scheduling_priority};
652                 #print "$family   $scheduling_priority\n";
653                 if ($scheduling_priority == 'NULL')
654                 {
655                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
656                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
657                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
658                         $sth2 = $dbh->prepare("update tc_family set scheduling_priority=$scheduling_priority where family=$family");
659                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
660                 }
661         }
662         
663         # companionships
664         # TODO: make steward flexible with a setting in the config file
665         $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");
666         $sth->execute or die "-E- DB error: $DBI::errstr\n";
667         while($sqlhashref = $sth->fetchrow_hashref) {
668                 $individual = $sqlhashref->{individual};
669                 $scheduling_priority = $sqlhashref->{scheduling_priority};
670                 #print "$individual   $scheduling_priority\n";
671                 if ($scheduling_priority == 'NULL')
672                 {
673                         $sth2 = $dbh->prepare("insert into tc_scheduling_priority values (NULL, 30, '')");
674                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
675                         $scheduling_priority = $dbh->last_insert_id(NULL,NULL,'tc_scheduling_priority',NULL);
676                         $sth2 = $dbh->prepare("update tc_companionship set scheduling_priority=$scheduling_priority where individual=$individual");
677                         $sth2->execute or die "-E- DB error: $DBI::errstr\n";
678                 }
679         }
680         
681 }
682
683 ######################################################################
684 # MAIN
685 ######################################################################
686
687 ###################################################
688 # Open a connection to the database
689 $dbh=DBI->connect("dbi:mysql:dbname=$dbname:host=$dbhost:port=$dbport",$dbuser,$dbpass,{
690     AutoCommit=>0,
691     PrintError=>0}) or print "Connect Failure:".$DBI::errstr."\n" and exit 2;
692
693 ###################################################
694 # Check old directory against new directory to ensure
695 # that the Indiv ID & HofH ID have not changed between updates
696 if(defined $opt_o) {
697         print "-> Comparing old data files to new ones: $opt_o => $opt_n\n";
698         my %old_membership_data = ();
699         my %new_membership_data = ();
700         &csv_to_hash("$opt_o/Membership.csv",\%old_membership_data);
701         &csv_to_hash("$opt_n/Membership.csv",\%new_membership_data);
702
703         $changed_ids=&check_for_changed_ids(\%old_membership_data, \%new_membership_data);
704
705         if($changed_ids) {
706                 print "\n";
707                 print "-E- Some Indiv IDs and HofH IDs have changed for Head of Households between \n";
708                 print "    $opt_o and $opt_n data sets.\n";
709                 print "    This script is not currently setup to handle this properly.\n";
710                 print "\n";
711                 print "    Exiting without updating...\n\n";
712                 exit;
713         }
714 }
715
716 ###################################################
717 # Process command line options
718 if(defined $opt_n) { $datadir = $opt_n; }
719 else { $datadir = shift(@ARGV); }
720 print "\n-> Processing all ward data files in $datadir\n";
721
722 ###################################################
723 # Parse Ward Data Files
724 &csv_to_hash("$datadir/Organization\ class\ per\ member.csv", \%organization_class_data);
725 &csv_to_hash("$datadir/Membership.csv",\%membership_data);
726 &csv_to_hash("$datadir/HomeTeaching.csv",\%hometeaching_data);
727 &csv_to_hash("$datadir/Organization.csv",\%organization_data);
728 &optional_csv_to_hash("$datadir/Home\ Teacher\ per\ Companionship.csv", \%hometeaching_stats_data);
729 %organization_by_name = ();
730 %organization_by_id = ();
731
732 if($opt_v) {
733         print "-> Membership Data Dump\n\n";
734         &print_hash(\%membership_data);
735         print "-> HomeTeaching Data Dump\n\n";
736         &print_hash(\%hometeaching_data);
737         print "-> Organization Data Dump\n\n";
738         &print_hash(\%organization_data);
739         print "-> HomeTeaching Stats Data Dump\n\n";
740         &print_hash(\%hometeaching_stats_data);
741 }
742
743 if($opt_s) { $dbh->disconnect(); exit; }
744
745 # Now update the various eq DB tables
746 &update_tc_calling_table();
747 &update_tc_individual_table();
748 &update_tc_district_table();
749 &update_tc_companionship_table();
750 &update_tc_family_table();
751 &update_tc_visit_table();
752 &update_family_in_tc_individual_table();
753 &update_organization_class_data();
754 &update_tc_scheduling_priority_table();
755
756 print "\n-> Import Successful! DONE...\n";
757
758 ###################################################
759 # Disconnect from the database
760 $dbh->disconnect();
761
762 ######################################################################
763
764