5 ###################################################
7 $dbname = "phpgroupware";
8 $dbhost = "192.168.0.2";
10 $dbuser = "phpgroupware";
11 $dbpass = "phpgroupware";
12 %hometeaching_data = ();
13 %membership_data = ();
16 $monthname2num{'Jan'} = '01';
17 $monthname2num{'Feb'} = '02';
18 $monthname2num{'Mar'} = '03';
19 $monthname2num{'Apr'} = '04';
20 $monthname2num{'May'} = '05';
21 $monthname2num{'Jun'} = '06';
22 $monthname2num{'Jul'} = '07';
23 $monthname2num{'Aug'} = '08';
24 $monthname2num{'Sep'} = '09';
25 $monthname2num{'Oct'} = '10';
26 $monthname2num{'Nov'} = '11';
27 $monthname2num{'Dec'} = '12';
29 ######################################################################
31 ######################################################################
34 my ($filename, $hashref) = @_;
36 open(FILE,$filename) || die "-E- Could not open $filename for reading\n";
38 my $found_header = 0; my $index = 0;
42 @data = split /\",/, $line;
43 if(!$found_header) { @header = @data; $found_header = 1; }
45 foreach $i (0..$#data-1) {
47 $header[$i] =~ s/\"//g;
48 $hashref->{$index}{$header[$i]} = $data[$i];
49 #print "$index: $i: $header[$i]: $data[$i]\n";
58 ######################################################################
63 foreach $key (sort {$a <=> $b} keys %$hashref) {
64 print "Index: $key\n";
65 foreach $field (keys %{$hashref->{$key}}) {
66 print "$field: $hashref->{$key}{$field}\n";
72 ######################################################################
75 #+-------+--------------------+------+-----+---------+-------+
76 #| Field | Type | Null | Key | Default | Extra |
77 #+-------+--------------------+------+-----+---------+-------+
78 #| aaronic | int(16) unsigned | | PRI | 0 | A |
79 #| name | varchar(60) | YES | | NULL | |
80 #| phone | varchar(12) | YES | | NULL | |
81 #| valid | tinyint(1) | YES | | NULL | |
82 #+-------+--------------------+------+-----+---------+-------+
83 sub update_eq_aaronic_table
85 print "\n-> Updating eq_aaronic table\n";
87 # Set all records to be invalid. Only mark them as valid if they appear on the new list.
88 $sth = $dbh->prepare("update eq_aaronic set valid=0");
89 $sth->execute or die "-E- DB error: $DBI::errstr\n";
91 foreach $index (keys %membership_data)
93 $hashref = $membership_data{$index};
94 foreach $key (keys %$hashref) {
95 if($key =~ /Priesthood/i &&
96 ($membership_data{$index}{$key} =~ /^Deacon\s*$/i ||
97 $membership_data{$index}{$key} =~ /^Teacher\s*$/i ||
98 $membership_data{$index}{$key} =~ /^Priest\s*$/i)) {
99 $aaronic_name = $membership_data{$index}{'Preferred Name'};
100 $phone = $membership_data{$index}{'Phone 1'};
101 if($phone =~ /(\d\d\d-\d\d\d\d)/) { $phone = "970-$1"; }
102 if($phone =~ /^\(\d\d\d\) (\d\d\d-\d\d\d\d)/) { $phone = "$1-$2"; }
103 $sth = $dbh->prepare("select * from eq_aaronic where name='$aaronic_name'");
104 $sth->execute or die "-E- DB error: $DBI::errstr\n";
106 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
107 my $rows = scalar @data;
109 # No existing records found for this aaronic, make a new entry
110 print " Adding new Aaronic: $aaronic_name\n";
111 $sth = $dbh->prepare("insert into eq_aaronic values (NULL,'$aaronic_name','$phone',1)");
112 $sth->execute or die "-E- DB error: $DBI::errstr\n";
113 } elsif($rows == 1) {
114 # An existing record was found for this aaronic, update it, mark it valid!
115 print " Updating existing aaronic: $aaronic_name\n";
116 $sth = $dbh->prepare("update eq_aaronic set phone='$phone' where name='$aaronic_name'");
117 $sth->execute or die "-E- DB error: $DBI::errstr\n";
118 $sth = $dbh->prepare("update eq_aaronic set valid=1 where name='$aaronic_name'");
119 $sth->execute or die "-E- DB error: $DBI::errstr\n";
121 # More than one record was found. Error! This shouldn't happen.
122 print " -E- More than one record found ($rows) for aaronic name: $aaronic_name\n";
131 #+-------------+------------------+------+-----+---------+----------------+
132 #| Field | Type | Null | Key | Default | Extra |
133 #+-------------+------------------+------+-----+---------+----------------+
134 #| elder | int(16) unsigned | | PRI | NULL | auto_increment |
135 #| name | varchar(60) | YES | | NULL | |
136 #| phone | varchar(12) | YES | | NULL | |
137 #| ppi_pri | int(10) unsigned | YES | | 1 | |
138 #| visit_pri | int(10) unsigned | YES | | 1 | |
139 #| ppi_notes | varchar(128) | YES | | NULL | |
140 #| visit_notes | varchar(128) | YES | | NULL | |
141 #| valid | tinyint(1) | YES | | NULL | |
142 #+-------------+------------------+------+-----+---------+----------------+
143 sub update_eq_elder_table
145 print "\n-> Updating eq_elder table\n";
147 # Set all records to be invalid. Only mark them as valid if they appear on the new list.
148 $sth = $dbh->prepare("update eq_elder set valid=0");
149 $sth->execute or die "-E- DB error: $DBI::errstr\n";
151 foreach $index (keys %membership_data)
153 $hashref = $membership_data{$index};
154 foreach $key (keys %$hashref) {
155 if($key =~ /Priesthood/i && $membership_data{$index}{$key} =~ /Elder/i) {
156 $elder_name = $membership_data{$index}{'Preferred Name'};
157 $phone = $membership_data{$index}{'Phone 1'};
158 if($phone =~ /(\d\d\d-\d\d\d\d)/) { $phone = "970-$1"; }
159 if($phone =~ /^\(\d\d\d\) (\d\d\d-\d\d\d\d)/) { $phone = "$1-$2"; }
160 $sth = $dbh->prepare("select * from eq_elder where name='$elder_name'");
161 $sth->execute or die "-E- DB error: $DBI::errstr\n";
163 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
164 my $rows = scalar @data;
166 # No existing records found for this elder, make a new entry
167 print " Adding new Elder: $elder_name\n";
168 $sth = $dbh->prepare("insert into eq_elder values (NULL,'$elder_name','$phone','1','1','','',1)");
169 $sth->execute or die "-E- DB error: $DBI::errstr\n";
170 } elsif($rows == 1) {
171 # An existing record was found for this elder, update it
172 print " Updating existing Elder: $elder_name\n";
173 $sth = $dbh->prepare("update eq_elder set valid=1 where name='$elder_name'");
174 $sth->execute or die "-E- DB error: $DBI::errstr\n";
176 $sth = $dbh->prepare("update eq_elder set phone='$phone' where name='$elder_name'");
178 $sth = $dbh->prepare("update eq_elder set phone=NULL where name='$elder_name'");
180 $sth->execute or die "-E- DB error: $DBI::errstr\n";
182 # More than one record was found. Error! This shouldn't happen.
183 print " -E- More than one record found ($rows) for Elder: $elder_name\n";
192 #+--------------+------------------+------+-----+---------+-------+
193 #| Field | Type | Null | Key | Default | Extra |
194 #+--------------+------------------+------+-----+---------+-------+
195 #| indiv_id | int(16) unsigned | YES | | NULL | |
196 #| name | varchar(30) | YES | | NULL | |
197 #| organization | varchar(30) | YES | | NULL | |
198 #| position | varchar(30) | YES | | NULL | |
199 #| sequence | int(16) unsigned | YES | | NULL | |
200 #| sustained | date | YES | | NULL | |
201 #+--------------+------------------+------+-----+---------+-------+
202 sub update_eq_calling_table()
204 print "\n-> Updating eq_calling table\n";
206 #print "-> Organization Data Dump\n\n";
207 #&print_hash(\%organization_data);
209 # Delete all records from the calling table. We have no history to
210 # save here. Just re-populate with the latest calling information.
211 $sth = $dbh->prepare("delete from eq_calling ");
212 $sth->execute or die "-E- DB error: $DBI::errstr\n";
214 foreach $index (keys %organization_data)
216 $indiv_id = $organization_data{$index}{'Indiv ID'};
217 $name = $organization_data{$index}{'Indiv Name'};
218 $name =~ s/\'/\\'/g; #'
219 $organization = $organization_data{$index}{'Organization'};
220 $position = $organization_data{$index}{'Position'};
221 $sequence = $organization_data{$index}{'Org Seq'};
222 $sustained = $organization_data{$index}{'Sustained'};
223 $sustained =~ /(\S+) (\d+)/; $month=$1; $year=$2;
224 if($name eq "") { next; }
225 print " Adding new Calling: $name -> $position\n";
226 $sth = $dbh->prepare("insert into eq_calling values ('$indiv_id','$name','$organization','$position','$sequence','$month $year')");
227 $sth->execute or die "-E- DB error: $DBI::errstr\n";
232 #+------------+------------------+------+-----+---------+-------+
233 #| Field | Type | Null | Key | Default | Extra |
234 #+------------+------------------+------+-----+---------+-------+
235 #| district | int(16) unsigned | | PRI | 0 | |
236 #| name | varchar(30) | YES | | NULL | |
237 #| supervisor | int(16) unsigned | YES | | NULL | |
238 #| valid | tinyint(1) | YES | | NULL | |
239 #+------------+------------------+------+-----+---------+-------+
240 sub update_eq_district_table
242 # Districts should be created by hand. This subroutine only
243 # updates the supervisor's ID in each district.
244 print "\n-> Updating eq_district table\n";
245 $sth = $dbh->prepare("select * from eq_district");
246 $sth->execute or die "-E- DB error: $DBI::errstr\n";
247 while($sqlhashref = $sth->fetchrow_hashref) {
248 $supervisor_name = $sqlhashref->{name};
249 $district = $sqlhashref->{district};
250 $sth2 = $dbh->prepare("select * from eq_elder where name='$supervisor_name'");
251 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
252 $sqlhashref2 = $sth2->fetchrow_hashref;
253 $supervisor_id = $sqlhashref2->{elder};
255 $sth2 = $dbh->prepare("update eq_district set supervisor='$supervisor_id' where district='$district'");
256 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
263 #+---------------+------------------+------+-----+---------+-------+
264 #| Field | Type | Null | Key | Default | Extra |
265 #+---------------+------------------+------+-----+---------+-------+
266 #| companionship | int(16) unsigned | | | 0 | |
267 #| elder | int(16) unsigned | YES | | NULL | |
268 #| aaronic | int(16) unsigned | YES | | NULL | |
269 #| district | int(16) unsigned | YES | | NULL | |
270 #| valid | tinyint(1) | YES | | NULL | |
271 #+---------------+------------------+------+-----+---------+-------+
272 sub update_eq_companionship_table
274 print "\n-> Updating eq_companionship table\n";
276 # First, mark all existing companionships as invalid in case they have been dissolved
277 $sth = $dbh->prepare("update eq_companionship set valid=0");
278 $sth->execute or die "-E- DB error: $DBI::errstr\n";
279 # Second, mark all the aaronic invalid. We'll only mark the ones as valid that are assigned to hometeach
280 $sth = $dbh->prepare("update eq_aaronic set valid=0");
281 $sth->execute or die "-E- DB error: $DBI::errstr\n";
283 foreach $index (keys %hometeaching_data)
285 $hashref = $hometeaching_data{$index};
286 foreach $key (keys %$hashref) {
287 if($key =~ /Quorum/i && $hometeaching_data{$index}{$key} =~ /Elders/i) {
288 foreach $field ("Home Teacher 1","Home Teacher 2") {
289 $elder_name = $hometeaching_data{$index}{$field};
290 if($elder_name eq "") { next; }
291 $sth2 = $dbh->prepare("select * from eq_elder where name='$elder_name'");
292 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
293 $sqlhashref2 = $sth2->fetchrow_hashref;
294 $elder = $sqlhashref2->{elder};
297 $sth2 = $dbh->prepare("select * from eq_aaronic where name='$elder_name'");
298 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
299 $sqlhashref2 = $sth2->fetchrow_hashref;
300 $aaronic = $sqlhashref2->{aaronic};
302 if($aaronic eq "") { print "-W- Unable to find $elder_name in eq_elder or eq_aaronic tables\n"; next; }
304 $id = $hometeaching_data{$index}{'Comp ID'};
305 $district = $hometeaching_data{$index}{'HT District'};
306 $sth = $dbh->prepare("select * from eq_companionship where elder='$elder' and aaronic='$aaronic' and companionship='$id'");
307 $sth->execute or die "-E- DB error: $DBI::errstr\n";
309 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
310 my $rows = scalar @data;
312 # No existing records found for this companionship, make a new entry
313 print " Adding Companion to companionship: $elder_name -> $id\n";
314 $sth = $dbh->prepare("insert into eq_companionship values ($id,'$elder','$aaronic','$district',1)");
315 $sth->execute or die "-E- DB error: $DBI::errstr\n";
317 # An existing companionship was found for this companionship, update it
318 $sth2 = $dbh->prepare("select * from eq_companionship where district='$district' and companionship='$id'");
319 $sth2->execute or die "-E- DB error: $DBI::errstr\n";
320 if($elder ne "NULL") {
321 print " Updating Companionship with Elder: $elder_name ($elder) -> $id\n";
322 $sth = $dbh->prepare("update eq_companionship set district='$district' where elder='$elder' and companionship='$id'");
323 $sth->execute or die "-E- DB error 'district': $DBI::errstr\n";
324 $sth = $dbh->prepare("update eq_companionship set elder='$elder' where elder='$elder' and companionship='$id'");
325 $sth->execute or die "-E- DB error 'elder': $DBI::errstr\n";
326 $sth = $dbh->prepare("update eq_companionship set valid=1 where elder='$elder' and companionship='$id'");
327 $sth->execute or die "-E- DB error 'valid': $DBI::errstr\n";
329 print " Updating Companionship with Aaronic: $elder_name ($aaronic) -> $id\n";
330 $sth = $dbh->prepare("update eq_companionship set district='$district' where aaronic='$aaronic' and companionship='$id'");
331 $sth->execute or die "-E- DB error: $DBI::errstr\n";
332 $sth = $dbh->prepare("update eq_companionship set aaronic='$aaronic' where aaronic='$aaronic' and companionship='$id'");
333 $sth->execute or die "-E- DB error: $DBI::errstr\n";
334 $sth = $dbh->prepare("update eq_companionship set valid=1 where aaronic='$aaronic' and companionship='$id'");
335 $sth->execute or die "-E- DB error: $DBI::errstr\n";
336 $sth = $dbh->prepare("update eq_aaronic set valid=1 where aaronic='$aaronic'");
337 $sth->execute or die "-E- DB error: $DBI::errstr\n";
349 #+---------------+------------------+------+-----+---------+-------+
350 #| Field | Type | Null | Key | Default | Extra |
351 #+---------------+------------------+------+-----+---------+-------+
352 #| family | int(16) unsigned | | PRI | 0 | A |
353 #| hofh_id | int(16) unsigned | YES | | NULL | |
354 #| name | varchar(30) | YES | | NULL | |
355 #| name_id | varchar(30) | YES | | NULL | |
356 #| companionship | int(16) unsigned | YES | | NULL | |
357 #| valid | tinyint(1) | YES | | NULL | |
358 #+---------------+------------------+------+-----+---------+-------+
359 sub update_eq_family_table
361 print "\n-> Updating eq_family table\n";
363 # Set all records to be invalid. Only mark them as valid if they appear on the new list.
364 $sth = $dbh->prepare("update eq_family set valid=0");
365 $sth->execute or die "-E- DB error: $DBI::errstr\n";
366 $sth = $dbh->prepare("update eq_family set companionship=0");
367 $sth->execute or die "-E- DB error: $DBI::errstr\n";
369 foreach $index (keys %membership_data)
371 $hashref = $membership_data{$index};
372 foreach $key (keys %$hashref) {
373 if($key =~ /HH Position/i && $membership_data{$index}{$key} =~ /Head of Household/i) {
374 $family_name = $membership_data{$index}{'Preferred Name'};
375 $family_name =~ s/\'/\\'/g; #'
376 $id = $membership_data{$index}{'HofH ID'};
377 $name_id = uc($family_name);
379 # Find out how many families match this family's name
380 $sth = $dbh->prepare("select * from eq_family where name_id='$name_id'");
381 $sth->execute or die "-E- DB error: $DBI::errstr\n";
383 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
384 my $rows = scalar @data;
387 # No existing records found for this family, make a new entry
388 print " Adding new Family: $family_name\n";
389 $sth = $dbh->prepare("insert into eq_family values (NULL,$id,'$family_name','$name_id','0',1)");
390 $sth->execute or die "-E- DB error: $DBI::errstr\n";
391 } elsif($rows == 1) {
392 # An existing record was found for this family, update it
393 print " Updating existing family: $family_name\n";
394 $sth = $dbh->prepare("update eq_family set hofh_id=$id where name_id='$name_id'");
395 $sth->execute or die "-E- DB error: $DBI::errstr\n";
396 $sth = $dbh->prepare("update eq_family set valid=1 where name_id='$name_id'");
397 $sth->execute or die "-E- DB error: $DBI::errstr\n";
399 # More than one record was found. Error! This shouldn't happen.
400 print " -E- More than one record found ($rows) for family name: $family_name\n";
402 # Now update the hometeaching field for this family
403 foreach $index (keys %hometeaching_data)
405 $hashref = $hometeaching_data{$index};
406 foreach $key (keys %$hashref) {
407 if($hometeaching_data{$index}{'Household'} =~ /(\S+)\s+(\S+),\s+(\S+)\s+(.*)/) {
408 $a = $1; $b = $2; $c = $3; $d = $4;
409 if($family_name =~ /$a/ && $hometeaching_data{$index}{'Household'} !~ /$family_name/i) {
410 print "I: Adjusting hometeaching match from: $hometeaching_data{$index}{'Household'} to $a, $c $d\n";
411 $hometeaching_data{$index}{'Household'} = "$a, $c $d";
414 if($key =~ /Quorum/i &&
415 $hometeaching_data{$index}{$key} =~ /Elders/i &&
416 $hometeaching_data{$index}{'Household'} =~ /$family_name/i &&
417 $data[0]->{companionship} != $hometeaching_data{$index}{'Comp ID'}
420 print " Updating hometeaching assignment for $family_name family\n";
421 $companionship = $hometeaching_data{$index}{'Comp ID'};
422 $sth = $dbh->prepare("update eq_family set companionship='$companionship' where name_id='$name_id'");
423 $sth->execute or die "-E- DB error: $DBI::errstr\n";
434 #+----------+------------------+------+-----+---------+-------+
435 #| Field | Type | Null | Key | Default | Extra |
436 #+----------+------------------+------+-----+---------+-------+
437 #| parent | int(16) unsigned | | PRI | 0 | A |
438 #| family | int(16) unsigned | YES | | NULL | |
439 #| name | varchar(30) | YES | | NULL | |
440 #| birthday | date | YES | | NULL | |
441 #| phone | varchar(12) | YES | | NULL | |
442 #| address | varchar(255) | YES | | NULL | |
443 #| indiv_id | int(16) unsigned | YES | UNI | NULL | |
444 #| valid | tinyint(1) | YES | | NULL | |
445 #+----------+------------------+------+-----+---------+-------+
446 sub update_eq_parent_table
448 print "\n-> Updating eq_parent table\n";
450 # Set all records to be invalid. Only mark them as valid if they appear on the new list.
451 $sth = $dbh->prepare("update eq_parent set valid=0");
452 $sth->execute or die "-E- DB error: $DBI::errstr\n";
454 foreach $index (keys %membership_data)
456 $hashref = $membership_data{$index};
457 foreach $key (keys %$hashref) {
458 if($key =~ /HH Position/i &&
459 $membership_data{$index}{$key} =~ /Head of Household/i ||
460 $membership_data{$index}{$key} =~ /Spouse/i
462 # Get some information from the hash about this parent
463 $parent_name = $membership_data{$index}{'Preferred Name'};
464 $parent_name =~ s/\'/\\'/g; #'
465 $birthday = $membership_data{$index}{'Birth'};
466 $birthday =~ /(\d+) (\S+) (\d+)/; $day=$1; $month=$monthname2num{$2}; $year=$3;
467 $hofh_id = $membership_data{$index}{'HofH ID'};
468 $id = $membership_data{$index}{'Indiv ID'};
469 $phone = $membership_data{$index}{'Phone 1'};
470 if($phone =~ /(\d\d\d-\d\d\d\d)/) { $phone = "970-$1"; }
471 if($phone =~ /^\(\d\d\d\) (\d\d\d-\d\d\d\d)/) { $phone = "$1-$2"; }
472 $address = $membership_data{$index}{'Street 1'};
473 if($membership_data{$index}{'Street 2'} ne "") {
474 $address .= " " . $membership_data{$index}{'Street 2'};
477 # Find the family id for this parent's HofH_ID.
478 $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id'");
479 $sth->execute or die "-E- DB error: $DBI::errstr\n";
480 $sqlhashref = $sth->fetchrow_hashref();
481 $family_id = $sqlhashref->{'family'};
483 # Find out how many parents match this parent's name
484 $sth = $dbh->prepare("select * from eq_parent where name='$parent_name'");
485 $sth->execute or die "-E- DB error: $DBI::errstr\n";
487 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
488 my $rows = scalar @data;
491 # No existing records found for this parent, make a new entry
492 print " Adding new Parent: $parent_name\n";
493 $sth = $dbh->prepare("insert into eq_parent values (NULL,$family_id,'$parent_name','$year-$month-$day','$phone','$address','$id',1)");
494 $sth->execute or die "-E- DB error: $DBI::errstr\n";
495 } elsif($rows == 1) {
496 # An existing record was found for this parent, update it
497 print " Updating existing parent: $parent_name\n";
498 $sth = $dbh->prepare("update eq_parent set family='$family_id' where name='$parent_name'");
499 $sth->execute or die "-E- DB error: $DBI::errstr\n";
500 $sth = $dbh->prepare("update eq_parent set birthday='$year-$month-$day' where name='$parent_name'");
501 $sth->execute or die "-E- DB error: $DBI::errstr\n";
502 $sth = $dbh->prepare("update eq_parent set phone='$phone' where name='$parent_name'");
503 $sth->execute or die "-E- DB error: $DBI::errstr\n";
504 $sth = $dbh->prepare("update eq_parent set address='$address' where name='$parent_name'");
505 $sth->execute or die "-E- DB error: $DBI::errstr\n";
506 $sth = $dbh->prepare("update eq_parent set valid=1 where name='$parent_name'");
507 $sth->execute or die "-E- DB error: $DBI::errstr\n";
508 $sth = $dbh->prepare("update eq_parent set indiv_id='$id' where name='$parent_name'");
509 $sth->execute or die "-E- DB error: $DBI::errstr\n";
511 # More than one record was found. Error! This shouldn't happen.
512 print " -E- More than one record found with same parent name: $parent_name\n";
521 #+----------+------------------+------+-----+---------+-------+
522 #| Field | Type | Null | Key | Default | Extra |
523 #+----------+------------------+------+-----+---------+-------+
524 #| child | int(16) unsigned | | PRI | 0 | A |
525 #| family | int(16) unsigned | YES | | NULL | |
526 #| name | varchar(30) | YES | | NULL | |
527 #| birthday | date | YES | | NULL | |
528 #| indiv_id | int(16) unsigned | YES | UNI | NULL | |
529 #| valid | tinyint(1) | YES | | NULL | |
530 #+----------+------------------+------+-----+---------+-------+
531 sub update_eq_child_table
533 print "\n-> Updating eq_child table\n";
535 # Set all records to be invalid. Only mark them as valid if they appear on the new list.
536 $sth = $dbh->prepare("update eq_child set valid=0");
537 $sth->execute or die "-E- DB error: $DBI::errstr\n";
539 foreach $index (keys %membership_data)
541 $hashref = $membership_data{$index};
542 foreach $key (keys %$hashref) {
543 if($key =~ /HH Position/i && $membership_data{$index}{$key} =~ /Other/i ) {
544 $child_name = $membership_data{$index}{'Full Name'};
545 $child_name =~ s/\'/\\'/g; #'
546 $birthday = $membership_data{$index}{'Birth'};
547 $birthday =~ /(\d+) (\S+) (\d+)/; $day=$1; $month=$monthname2num{$2}; $year=$3;
548 $id = $membership_data{$index}{'Indiv ID'};
549 $hofh_id = $membership_data{$index}{'HofH ID'};
551 # Find the family id for this child's HofH_ID.
552 $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id'");
553 $sth->execute or die "-E- DB error: $DBI::errstr\n";
554 $sqlhashref = $sth->fetchrow_hashref();
555 $family_id = $sqlhashref->{'family'};
557 # Find out how many children have the same name for the same family
558 $sth = $dbh->prepare("select * from eq_child where name='$child_name'");
559 $sth->execute or die "-E- DB error: $DBI::errstr\n";
561 while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); }
562 my $rows = scalar @data;
565 # No existing records found for this child, make a new entry
566 print " Adding new Child: $child_name\n";
567 $sth = $dbh->prepare("insert into eq_child values (NULL,$family_id,'$child_name','$year-$month-$day','$id',1)");
568 $sth->execute or die "-E- DB error: $DBI::errstr\n";
569 } elsif($rows == 1) {
570 # An existing record was found for this child, update it
571 print " Updating existing child: $child_name\n";
572 $sth = $dbh->prepare("update eq_child set family='$family_id' where name='$child_name'");
573 $sth->execute or die "-E- DB error: $DBI::errstr\n";
574 $sth = $dbh->prepare("update eq_child set birthday='$year-$month-$day' where name='$child_name'");
575 $sth->execute or die "-E- DB error: $DBI::errstr\n";
576 $sth = $dbh->prepare("update eq_child set valid=1 where name='$child_name'");
577 $sth->execute or die "-E- DB error: $DBI::errstr\n";
578 $sth = $dbh->prepare("update eq_child set indiv_id='$id' where name='$child_name'");
579 $sth->execute or die "-E- DB error: $DBI::errstr\n";
581 # More than one record was found. Error! This shouldn't happen.
582 print " -E- More than one record found ($rows) with same child name: $child_name\n";
590 ######################################################################
591 sub check_for_changed_ids
593 # If the Indiv ID & HofH ID has changed between data sets, we could have problems
594 my ($oldhashref, $newhashref) = @_;
595 my $found_problem = 0;
597 foreach $oldindex (keys %$oldhashref)
599 $indiv_id = $oldhashref->{$oldindex}{'Indiv ID'};
600 $hofh_id = $oldhashref->{$oldindex}{'HofH ID'};
601 $full_name = $oldhashref->{$oldindex}{'Full Name'};
602 $hh_position = $oldhashref->{$oldindex}{'HH Position'};
603 if($hh_position =~ /Other/i) { next; }
605 foreach $newindex (keys %$newhashref)
607 if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
608 $indiv_id != $newhashref->{$newindex}{'Indiv ID'})
610 print "-W- Indiv ID for $full_name changed from $indiv_id to $newhashref->{$newindex}{'Indiv ID'}\n";
614 if($newhashref->{$newindex}{'Full Name'} eq $full_name &&
615 $hofh_id != $newhashref->{$newindex}{'HofH ID'})
617 print "-W- HofH ID for $full_name changed from $hofh_id to $newhashref->{$newindex}{'HofH ID'}\n";
623 return $found_problem;
626 ######################################################################
628 ######################################################################
630 ###################################################
631 # Open a connection to the database
632 $dbh=DBI->connect("dbi:mysql:dbname=$dbname;host=$dbhost port=$dbport",$dbuser,$dbpass,{
634 PrintError=>0}) or print "Connect Failure:".$DBI::errstr."\n" and exit 2;
636 ###################################################
637 # Check old directory against new directory to ensure
638 # that the Indiv ID & HofH ID have not changed between updates
640 print "-> Comparing old data files to new ones: $opt_o => $opt_n\n";
641 my %old_membership_data = ();
642 my %new_membership_data = ();
643 &csv_to_hash("$opt_o/Membership.csv",\%old_membership_data);
644 &csv_to_hash("$opt_n/Membership.csv",\%new_membership_data);
646 $changed_ids=&check_for_changed_ids(\%old_membership_data, \%new_membership_data);
650 print "-E- Some Indiv IDs and HofH IDs have changed for Head of Households between \n";
651 print " $opt_o and $opt_n data sets.\n";
652 print " This script is not currently setup to handle this properly.\n";
654 print " Exiting without updating...\n\n";
659 ###################################################
660 # Process command line options
661 if(defined $opt_n) { $datadir = $opt_n; }
662 else { $datadir = shift(@ARGV); }
663 print "\n-> Processing all ward data files in $datadir\n";
665 ###################################################
666 # Parse Ward Data Files
667 &csv_to_hash("$datadir/Membership.csv",\%membership_data);
668 &csv_to_hash("$datadir/HomeTeaching.csv",\%hometeaching_data);
669 &csv_to_hash("$datadir/Organization.csv",\%organization_data);
672 print "-> Membership Data Dump\n\n";
673 &print_hash(\%membership_data);
674 print "-> HomeTeaching Data Dump\n\n";
675 &print_hash(\%hometeaching_data);
676 print "-> Organization Data Dump\n\n";
677 &print_hash(\%organization_data);
680 if($opt_s) { $dbh->disconnect(); exit; }
682 # Now update the various eq DB tables
683 &update_eq_elder_table();
684 &update_eq_aaronic_table();
685 &update_eq_district_table();
686 &update_eq_companionship_table();
687 &update_eq_family_table();
688 &update_eq_parent_table();
689 &update_eq_child_table();
690 &update_eq_calling_table();
692 ###################################################
693 # Disconnect from the database
696 ######################################################################