Annotation of loncom/metadata_database/searchcat.pl, revision 1.77
1.1 harris41 1: #!/usr/bin/perl
2: # The LearningOnline Network
3: # searchcat.pl "Search Catalog" batch script
1.16 harris41 4: #
1.77 ! raeburn 5: # $Id: searchcat.pl,v 1.76 2007/04/11 22:44:18 albertel Exp $
1.16 harris41 6: #
7: # Copyright Michigan State University Board of Trustees
8: #
1.29 albertel 9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
1.16 harris41 10: #
1.29 albertel 11: # LON-CAPA is free software; you can redistribute it and/or modify
1.16 harris41 12: # it under the terms of the GNU General Public License as published by
13: # the Free Software Foundation; either version 2 of the License, or
14: # (at your option) any later version.
15: #
1.29 albertel 16: # LON-CAPA is distributed in the hope that it will be useful,
1.16 harris41 17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: # GNU General Public License for more details.
20: #
21: # You should have received a copy of the GNU General Public License
1.29 albertel 22: # along with LON-CAPA; if not, write to the Free Software
1.16 harris41 23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24: #
25: # /home/httpd/html/adm/gpl.txt
26: #
1.29 albertel 27: # http://www.lon-capa.org/
1.16 harris41 28: #
29: ###
1.33 matthew 30:
1.32 www 31: =pod
1.1 harris41 32:
1.32 www 33: =head1 NAME
34:
35: B<searchcat.pl> - put authoritative filesystem data into sql database.
36:
37: =head1 SYNOPSIS
38:
39: Ordinarily this script is to be called from a loncapa cron job
40: (CVS source location: F<loncapa/loncom/cron/loncapa>; typical
41: filesystem installation location: F</etc/cron.d/loncapa>).
42:
43: Here is the cron job entry.
44:
45: C<# Repopulate and refresh the metadata database used for the search catalog.>
46: C<10 1 * * 7 www /home/httpd/perl/searchcat.pl>
47:
48: This script only allows itself to be run as the user C<www>.
49:
50: =head1 DESCRIPTION
51:
52: This script goes through a loncapa resource directory and gathers metadata.
53: The metadata is entered into a SQL database.
54:
55: This script also does general database maintenance such as reformatting
56: the C<loncapa:metadata> table if it is deprecated.
57:
58: This script evaluates dynamic metadata from the authors'
1.48 www 59: F<nohist_resevaldata.db> database file in order to store it in MySQL.
1.32 www 60:
61: This script is playing an increasingly important role for a loncapa
62: library server. The proper operation of this script is critical for a smooth
63: and correct user experience.
64:
65: =cut
1.1 harris41 66:
1.45 www 67: use strict;
1.55 matthew 68: use DBI;
1.17 harris41 69: use lib '/home/httpd/lib/perl/';
1.55 matthew 70: use LONCAPA::lonmetadata;
1.76 albertel 71: use LONCAPA;
1.56 matthew 72: use Getopt::Long;
1.1 harris41 73: use IO::File;
74: use HTML::TokeParser;
1.21 www 75: use GDBM_File;
1.24 www 76: use POSIX qw(strftime mktime);
1.56 matthew 77:
1.63 matthew 78: use Apache::lonnet();
1.62 matthew 79:
1.55 matthew 80: use File::Find;
1.1 harris41 81:
1.56 matthew 82: #
83: # Set up configuration options
1.63 matthew 84: my ($simulate,$oneuser,$help,$verbose,$logfile,$debug);
1.56 matthew 85: GetOptions (
86: 'help' => \$help,
87: 'simulate' => \$simulate,
88: 'only=s' => \$oneuser,
89: 'verbose=s' => \$verbose,
90: 'debug' => \$debug,
91: );
92:
93: if ($help) {
94: print <<"ENDHELP";
95: $0
96: Rebuild and update the LON-CAPA metadata database.
97: Options:
98: -help Print this help
99: -simulate Do not modify the database.
100: -only=user Only compute for the given user. Implies -simulate
101: -verbose=val Sets logging level, val must be a number
102: -debug Turns on debugging output
103: ENDHELP
104: exit 0;
105: }
106:
107: if (! defined($debug)) {
108: $debug = 0;
109: }
110:
111: if (! defined($verbose)) {
112: $verbose = 0;
113: }
114:
115: if (defined($oneuser)) {
116: $simulate=1;
117: }
118:
1.55 matthew 119: ##
120: ## Use variables for table names so we can test this routine a little easier
1.69 raeburn 121: my %oldnames = (
122: 'metadata' => 'metadata',
123: 'portfolio' => 'portfolio_metadata',
124: 'access' => 'portfolio_access',
125: 'addedfields' => 'portfolio_addedfields',
1.77 ! raeburn 126: 'allusers' => 'allusers',
1.69 raeburn 127: );
128:
129: my %newnames;
130: # new table names - append pid to have unique temporary tables
131: foreach my $key (keys(%oldnames)) {
132: $newnames{$key} = 'new'.$oldnames{$key}.$$;
133: }
1.45 www 134:
1.55 matthew 135: #
136: # Only run if machine is a library server
1.63 matthew 137: exit if ($Apache::lonnet::perlvar{'lonRole'} ne 'library');
1.55 matthew 138: #
139: # Make sure this process is running from user=www
140: my $wwwid=getpwnam('www');
141: if ($wwwid!=$<) {
1.63 matthew 142: my $emailto="$Apache::lonnet::perlvar{'lonAdmEMail'},$Apache::lonnet::perlvar{'lonSysEMail'}";
143: my $subj="LON: $Apache::lonnet::perlvar{'lonHostID'} User ID mismatch";
1.55 matthew 144: system("echo 'User ID mismatch. searchcat.pl must be run as user www.' |\
1.63 matthew 145: mail -s '$subj' $emailto > /dev/null");
1.55 matthew 146: exit 1;
147: }
148: #
149: # Let people know we are running
1.63 matthew 150: open(LOG,'>>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/logs/searchcat.log');
1.56 matthew 151: &log(0,'==== Searchcat Run '.localtime()."====");
1.57 matthew 152:
153:
1.56 matthew 154: if ($debug) {
155: &log(0,'simulating') if ($simulate);
156: &log(0,'only processing user '.$oneuser) if ($oneuser);
157: &log(0,'verbosity level = '.$verbose);
158: }
1.55 matthew 159: #
160: # Connect to database
161: my $dbh;
1.63 matthew 162: if (! ($dbh = DBI->connect("DBI:mysql:loncapa","www",$Apache::lonnet::perlvar{'lonSqlAccess'},
1.55 matthew 163: { RaiseError =>0,PrintError=>0}))) {
1.56 matthew 164: &log(0,"Cannot connect to database!");
1.55 matthew 165: die "MySQL Error: Cannot connect to database!\n";
166: }
167: # This can return an error and still be okay, so we do not bother checking.
168: # (perhaps it should be more robust and check for specific errors)
1.69 raeburn 169: foreach my $key (keys(%newnames)) {
170: if ($newnames{$key} ne '') {
171: $dbh->do('DROP TABLE IF EXISTS '.$newnames{$key});
172: }
173: }
174:
1.55 matthew 175: #
1.77 ! raeburn 176: # Create the new metadata, portfolio and allusers tables
1.69 raeburn 177: foreach my $key (keys(%newnames)) {
178: if ($newnames{$key} ne '') {
179: my $request =
180: &LONCAPA::lonmetadata::create_metadata_storage($newnames{$key},$oldnames{$key});
181: $dbh->do($request);
182: if ($dbh->err) {
183: $dbh->disconnect();
184: &log(0,"MySQL Error Create: ".$dbh->errstr);
185: die $dbh->errstr;
186: }
187: }
1.55 matthew 188: }
1.69 raeburn 189:
1.55 matthew 190: #
191: # find out which users we need to examine
1.63 matthew 192: my @domains = sort(&Apache::lonnet::current_machine_domains());
193: &log(9,'domains ="'.join('","',@domains).'"');
1.62 matthew 194:
195: foreach my $dom (@domains) {
196: &log(9,'domain = '.$dom);
1.63 matthew 197: opendir(RESOURCES,"$Apache::lonnet::perlvar{'lonDocRoot'}/res/$dom");
1.62 matthew 198: my @homeusers =
199: grep {
1.63 matthew 200: &ishome("$Apache::lonnet::perlvar{'lonDocRoot'}/res/$dom/$_");
1.62 matthew 201: } grep {
202: !/^\.\.?$/;
203: } readdir(RESOURCES);
204: closedir RESOURCES;
205: &log(5,'users = '.$dom.':'.join(',',@homeusers));
206: #
207: if ($oneuser) {
208: @homeusers=($oneuser);
209: }
210: #
211: # Loop through the users
212: foreach my $user (@homeusers) {
213: &log(0,"=== User: ".$user);
214: &process_dynamic_metadata($user,$dom);
215: #
216: # Use File::Find to get the files we need to read/modify
217: find(
218: {preprocess => \&only_meta_files,
219: #wanted => \&print_filename,
220: #wanted => \&log_metadata,
221: wanted => \&process_meta_file,
1.66 albertel 222: no_chdir => 1,
1.63 matthew 223: }, join('/',($Apache::lonnet::perlvar{'lonDocRoot'},'res',$dom,$user)) );
1.62 matthew 224: }
1.77 ! raeburn 225: # Search for all users and public portfolio files
! 226: my (%allusers,%portusers);
1.69 raeburn 227: if ($oneuser) {
228: %portusers = (
229: $oneuser => '',
230: );
1.77 ! raeburn 231: %allusers = (
! 232: $oneuser => '',
! 233: );
1.69 raeburn 234: } else {
235: my $dir = $Apache::lonnet::perlvar{lonUsersDir}.'/'.$dom;
1.77 ! raeburn 236: &descend_tree($dom,$dir,0,\%portusers,\%allusers);
1.69 raeburn 237: }
238: foreach my $uname (keys(%portusers)) {
239: my $urlstart = '/uploaded/'.$dom.'/'.$uname;
240: my $pathstart = &propath($dom,$uname).'/userfiles';
1.70 albertel 241: my $is_course = &Apache::lonnet::is_course($dom,$uname);
1.69 raeburn 242: my $curr_perm = &Apache::lonnet::get_portfile_permissions($dom,$uname);
243: my %access = &Apache::lonnet::get_access_controls($curr_perm);
1.75 raeburn 244: foreach my $file (keys(%access)) {
1.69 raeburn 245: my ($group,$url,$fullpath);
246: if ($is_course) {
247: ($group, my ($path)) = ($file =~ /^(\w+)(\/.+)$/);
1.72 raeburn 248: $fullpath = $pathstart.'/groups/'.$group.'/portfolio'.$path;
1.69 raeburn 249: $url = $urlstart.'/groups/'.$group.'/portfolio'.$path;
250: } else {
251: $fullpath = $pathstart.'/portfolio'.$file;
1.72 raeburn 252: $url = $urlstart.'/portfolio'.$file;
1.69 raeburn 253: }
254: if (ref($access{$file}) eq 'HASH') {
1.75 raeburn 255: my %portaccesslog =
256: &LONCAPA::lonmetadata::process_portfolio_access_data($dbh,
257: $simulate,\%newnames,$url,$fullpath,$access{$file});
258: &portfolio_logging(%portaccesslog);
1.69 raeburn 259: }
1.75 raeburn 260: my %portmetalog = &LONCAPA::lonmetadata::process_portfolio_metadata($dbh,$simulate,\%newnames,$url,$fullpath,$is_course,$dom,$uname,$group);
261: &portfolio_logging(%portmetalog);
1.69 raeburn 262: }
263: }
1.77 ! raeburn 264: # Update allusers
! 265: foreach my $uname (keys(%allusers)) {
! 266: my %userdata =
! 267: &Apache::lonnet::get('environment',['firstname','lastname',
! 268: 'middlename','generation','id','permanentemail'],$dom,$uname);
! 269: $userdata{'username'} = $uname;
! 270: $userdata{'domain'} = $dom;
! 271: my %alluserslog =
! 272: &LONCAPA::lonmetadata::process_allusers_data($dbh,$simulate,
! 273: \%newnames,$uname,$dom,\%userdata);
! 274: foreach my $item (keys(%alluserslog)) {
! 275: &log(0,$alluserslog{$item});
! 276: }
! 277: }
1.55 matthew 278: }
1.69 raeburn 279:
1.55 matthew 280: #
1.69 raeburn 281: # Rename the tables
1.56 matthew 282: if (! $simulate) {
1.69 raeburn 283: foreach my $key (keys(%oldnames)) {
284: if (($oldnames{$key} ne '') && ($newnames{$key} ne '')) {
285: $dbh->do('DROP TABLE IF EXISTS '.$oldnames{$key});
286: if (! $dbh->do('RENAME TABLE '.$newnames{$key}.' TO '.$oldnames{$key})) {
287: &log(0,"MySQL Error Rename: ".$dbh->errstr);
288: die $dbh->errstr;
289: } else {
290: &log(1,"MySQL table rename successful for $key.");
291: }
292: }
1.56 matthew 293: }
1.55 matthew 294: }
295: if (! $dbh->disconnect) {
1.56 matthew 296: &log(0,"MySQL Error Disconnect: ".$dbh->errstr);
1.55 matthew 297: die $dbh->errstr;
298: }
299: ##
300: ## Finished!
1.56 matthew 301: &log(0,"==== Searchcat completed ".localtime()." ====");
1.55 matthew 302: close(LOG);
1.21 www 303:
1.55 matthew 304: &write_type_count();
305: &write_copyright_count();
1.36 www 306:
1.55 matthew 307: exit 0;
1.28 harris41 308:
1.56 matthew 309: ##
310: ## Status logging routine. Inputs: $level, $message
311: ##
312: ## $level 0 should be used for normal output and error messages
313: ##
314: ## $message does not need to end with \n. In the case of errors
315: ## the message should contain as much information as possible to
316: ## help in diagnosing the problem.
317: ##
318: sub log {
319: my ($level,$message)=@_;
320: $level = 0 if (! defined($level));
321: if ($verbose >= $level) {
322: print LOG $message.$/;
323: }
324: }
325:
1.75 raeburn 326: sub portfolio_logging {
327: my (%portlog) = @_;
328: foreach my $key (keys(%portlog)) {
329: if (ref($portlog{$key}) eq 'HASH') {
330: foreach my $item (keys(%{$portlog{$key}})) {
331: &log(0,$portlog{$key}{$item});
332: }
333: }
334: }
335: }
336:
1.69 raeburn 337: sub descend_tree {
1.77 ! raeburn 338: my ($dom,$dir,$depth,$allportusers,$alldomusers) = @_;
1.69 raeburn 339: if (-d $dir) {
340: opendir(DIR,$dir);
341: my @contents = grep(!/^\./,readdir(DIR));
342: closedir(DIR);
343: $depth ++;
344: foreach my $item (@contents) {
345: if ($depth < 4) {
1.77 ! raeburn 346: &descend_tree($dom,$dir.'/'.$item,$depth,$allportusers,$alldomusers);
1.69 raeburn 347: } else {
348: if (-e $dir.'/'.$item.'/file_permissions.db') {
1.77 ! raeburn 349: $$allportusers{$item} = '';
! 350: }
! 351: if (!&Apache::lonnet::is_course($dom,$item)) {
1.69 raeburn 352: $$alldomusers{$item} = '';
353: }
354: }
355: }
356: }
357: }
358:
1.55 matthew 359: ########################################################
360: ########################################################
361: ### ###
362: ### File::Find support routines ###
363: ### ###
364: ########################################################
365: ########################################################
366: ##
367: ## &only_meta_files
368: ##
369: ## Called by File::Find.
370: ## Takes a list of files/directories in and returns a list of files/directories
371: ## to search.
372: sub only_meta_files {
373: my @PossibleFiles = @_;
374: my @ChosenFiles;
375: foreach my $file (@PossibleFiles) {
376: if ( ($file =~ /\.meta$/ && # Ends in meta
377: $file !~ /\.\d+\.[^\.]+\.meta$/ # is not for a prior version
1.67 albertel 378: ) || (-d $File::Find::dir."/".$file )) { # directories are okay
1.55 matthew 379: # but we do not want /. or /..
380: push(@ChosenFiles,$file);
381: }
1.38 www 382: }
1.55 matthew 383: return @ChosenFiles;
1.38 www 384: }
385:
1.55 matthew 386: ##
387: ##
388: ## Debugging routines, use these for 'wanted' in the File::Find call
389: ##
390: sub print_filename {
391: my ($file) = $_;
392: my $fullfilename = $File::Find::name;
1.56 matthew 393: if ($debug) {
394: if (-d $file) {
395: &log(5," Got directory ".$fullfilename);
396: } else {
397: &log(5," Got file ".$fullfilename);
398: }
1.38 www 399: }
1.55 matthew 400: $_=$file;
1.38 www 401: }
1.28 harris41 402:
1.55 matthew 403: sub log_metadata {
404: my ($file) = $_;
405: my $fullfilename = $File::Find::name;
406: return if (-d $fullfilename); # No need to do anything here for directories
1.56 matthew 407: if ($debug) {
408: &log(6,$fullfilename);
1.69 raeburn 409: my $ref = &metadata($fullfilename);
1.56 matthew 410: if (! defined($ref)) {
411: &log(6," No data");
412: return;
413: }
414: while (my($key,$value) = each(%$ref)) {
415: &log(6," ".$key." => ".$value);
416: }
417: &count_copyright($ref->{'copyright'});
1.55 matthew 418: }
419: $_=$file;
1.31 harris41 420: }
1.21 www 421:
1.55 matthew 422: ##
423: ## process_meta_file
424: ## Called by File::Find.
425: ## Only input is the filename in $_.
426: sub process_meta_file {
427: my ($file) = $_;
1.56 matthew 428: my $filename = $File::Find::name; # full filename
1.55 matthew 429: return if (-d $filename); # No need to do anything here for directories
430: #
1.56 matthew 431: &log(3,$filename) if ($debug);
1.55 matthew 432: #
1.69 raeburn 433: my $ref = &metadata($filename);
1.55 matthew 434: #
435: # $url is the original file url, not the metadata file
1.61 matthew 436: my $target = $filename;
437: $target =~ s/\.meta$//;
438: my $url='/res/'.&declutter($target);
1.56 matthew 439: &log(3," ".$url) if ($debug);
1.55 matthew 440: #
441: # Ignore some files based on their metadata
442: if ($ref->{'obsolete'}) {
1.56 matthew 443: &log(3,"obsolete") if ($debug);
1.55 matthew 444: return;
445: }
446: &count_copyright($ref->{'copyright'});
447: if ($ref->{'copyright'} eq 'private') {
1.56 matthew 448: &log(3,"private") if ($debug);
1.55 matthew 449: return;
450: }
451: #
452: # Find the dynamic metadata
453: my %dyn;
454: if ($url=~ m:/default$:) {
455: $url=~ s:/default$:/:;
1.56 matthew 456: &log(3,"Skipping dynamic data") if ($debug);
1.55 matthew 457: } else {
1.56 matthew 458: &log(3,"Retrieving dynamic data") if ($debug);
459: %dyn=&get_dynamic_metadata($url);
1.55 matthew 460: &count_type($url);
461: }
1.75 raeburn 462: &LONCAPA::lonmetadata::getfiledates($ref,$target);
1.55 matthew 463: #
464: my %Data = (
465: %$ref,
466: %dyn,
467: 'url'=>$url,
468: 'version'=>'current');
1.56 matthew 469: if (! $simulate) {
1.69 raeburn 470: my ($count,$err) =
471: &LONCAPA::lonmetadata::store_metadata($dbh,$newnames{'metadata'},
472: 'metadata',\%Data);
1.56 matthew 473: if ($err) {
474: &log(0,"MySQL Error Insert: ".$err);
475: }
476: if ($count < 1) {
477: &log(0,"Unable to insert record into MySQL database for $url");
478: }
1.55 matthew 479: }
480: #
481: # Reset $_ before leaving
482: $_ = $file;
483: }
484:
485: ########################################################
486: ########################################################
487: ### ###
488: ### &metadata($uri) ###
489: ### Retrieve metadata for the given file ###
490: ### ###
491: ########################################################
492: ########################################################
493: sub metadata {
1.69 raeburn 494: my ($uri) = @_;
1.55 matthew 495: my %metacache=();
496: $uri=&declutter($uri);
497: my $filename=$uri;
498: $uri=~s/\.meta$//;
499: $uri='';
500: if ($filename !~ /\.meta$/) {
501: $filename.='.meta';
502: }
1.75 raeburn 503: my $metastring =
504: &LONCAPA::lonmetadata::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$filename);
1.55 matthew 505: return undef if (! defined($metastring));
506: my $parser=HTML::TokeParser->new(\$metastring);
507: my $token;
508: while ($token=$parser->get_token) {
509: if ($token->[0] eq 'S') {
510: my $entry=$token->[1];
511: my $unikey=$entry;
512: if (defined($token->[2]->{'part'})) {
513: $unikey.='_'.$token->[2]->{'part'};
514: }
515: if (defined($token->[2]->{'name'})) {
516: $unikey.='_'.$token->[2]->{'name'};
517: }
518: if ($metacache{$uri.'keys'}) {
519: $metacache{$uri.'keys'}.=','.$unikey;
520: } else {
521: $metacache{$uri.'keys'}=$unikey;
522: }
523: foreach ( @{$token->[3]}) {
524: $metacache{$uri.''.$unikey.'.'.$_}=$token->[2]->{$_};
1.69 raeburn 525: }
1.55 matthew 526: if (! ($metacache{$uri.''.$unikey}=$parser->get_text('/'.$entry))){
527: $metacache{$uri.''.$unikey} =
528: $metacache{$uri.''.$unikey.'.default'};
529: }
530: } # End of ($token->[0] eq 'S')
531: }
532: return \%metacache;
1.31 harris41 533: }
1.28 harris41 534:
1.55 matthew 535: ########################################################
536: ########################################################
537: ### ###
538: ### Dynamic Metadata ###
539: ### ###
540: ########################################################
541: ########################################################
1.56 matthew 542: ##
1.58 www 543: ## Dynamic metadata description (incomplete)
544: ##
545: ## For a full description of all fields,
546: ## see LONCAPA::lonmetadata
1.56 matthew 547: ##
548: ## Field Type
549: ##-----------------------------------------------------------
550: ## count integer
551: ## course integer
1.58 www 552: ## course_list comma separated list of course ids
1.56 matthew 553: ## avetries real
1.58 www 554: ## avetries_list comma separated list of real numbers
1.56 matthew 555: ## stdno real
1.58 www 556: ## stdno_list comma separated list of real numbers
1.56 matthew 557: ## usage integer
1.58 www 558: ## usage_list comma separated list of resources
1.56 matthew 559: ## goto scalar
1.58 www 560: ## goto_list comma separated list of resources
1.56 matthew 561: ## comefrom scalar
1.58 www 562: ## comefrom_list comma separated list of resources
1.56 matthew 563: ## difficulty real
1.58 www 564: ## difficulty_list comma separated list of real numbers
1.56 matthew 565: ## sequsage scalar
1.58 www 566: ## sequsage_list comma separated list of resources
1.56 matthew 567: ## clear real
568: ## technical real
569: ## correct real
570: ## helpful real
571: ## depth real
572: ## comments html of all the comments made
573: ##
574: {
575:
576: my %DynamicData;
577: my %Counts;
578:
579: sub process_dynamic_metadata {
580: my ($user,$dom) = @_;
581: undef(%DynamicData);
582: undef(%Counts);
583: #
584: my $prodir = &propath($dom,$user);
1.55 matthew 585: #
1.56 matthew 586: # Read in the dynamic metadata
1.55 matthew 587: my %evaldata;
588: if (! tie(%evaldata,'GDBM_File',
589: $prodir.'/nohist_resevaldata.db',&GDBM_READER(),0640)) {
1.56 matthew 590: return 0;
1.55 matthew 591: }
1.56 matthew 592: #
1.57 matthew 593: %DynamicData = &LONCAPA::lonmetadata::process_reseval_data(\%evaldata);
1.55 matthew 594: untie(%evaldata);
1.62 matthew 595: $DynamicData{'domain'} = $dom;
1.64 albertel 596: #print('user = '.$user.' domain = '.$dom.$/);
1.56 matthew 597: #
598: # Read in the access count data
599: &log(7,'Reading access count data') if ($debug);
600: my %countdata;
601: if (! tie(%countdata,'GDBM_File',
602: $prodir.'/nohist_accesscount.db',&GDBM_READER(),0640)) {
603: return 0;
604: }
605: while (my ($key,$count) = each(%countdata)) {
606: next if ($key !~ /^$dom/);
607: $key = &unescape($key);
608: &log(8,' Count '.$key.' = '.$count) if ($debug);
609: $Counts{$key}=$count;
610: }
611: untie(%countdata);
612: if ($debug) {
613: &log(7,scalar(keys(%Counts)).
614: " Counts read for ".$user."@".$dom);
615: &log(7,scalar(keys(%DynamicData)).
616: " Dynamic metadata read for ".$user."@".$dom);
617: }
618: #
619: return 1;
620: }
621:
622: sub get_dynamic_metadata {
623: my ($url) = @_;
624: $url =~ s:^/res/::;
1.57 matthew 625: my %data = &LONCAPA::lonmetadata::process_dynamic_metadata($url,
626: \%DynamicData);
1.56 matthew 627: # find the count
628: $data{'count'} = $Counts{$url};
629: #
630: # Log the dynamic metadata
631: if ($debug) {
632: while (my($k,$v)=each(%data)) {
633: &log(8," ".$k." => ".$v);
634: }
1.44 www 635: }
1.56 matthew 636: return %data;
1.30 www 637: }
1.28 harris41 638:
1.56 matthew 639: } # End of %DynamicData and %Counts scope
640:
1.55 matthew 641: ########################################################
642: ########################################################
643: ### ###
644: ### Counts ###
645: ### ###
646: ########################################################
647: ########################################################
648: {
1.1 harris41 649:
1.55 matthew 650: my %countext;
1.15 harris41 651:
1.55 matthew 652: sub count_type {
653: my $file=shift;
654: $file=~/\.(\w+)$/;
655: my $ext=lc($1);
656: $countext{$ext}++;
1.31 harris41 657: }
1.1 harris41 658:
1.55 matthew 659: sub write_type_count {
660: open(RESCOUNT,'>/home/httpd/html/lon-status/rescount.txt');
661: while (my ($extension,$count) = each(%countext)) {
662: print RESCOUNT $extension.'='.$count.'&';
1.47 www 663: }
1.55 matthew 664: print RESCOUNT 'time='.time."\n";
665: close(RESCOUNT);
1.31 harris41 666: }
1.27 www 667:
1.55 matthew 668: } # end of scope for %countext
1.34 matthew 669:
1.55 matthew 670: {
1.34 matthew 671:
1.55 matthew 672: my %copyrights;
1.44 www 673:
1.55 matthew 674: sub count_copyright {
675: $copyrights{@_[0]}++;
1.31 harris41 676: }
1.33 matthew 677:
1.55 matthew 678: sub write_copyright_count {
679: open(COPYCOUNT,'>/home/httpd/html/lon-status/copyrightcount.txt');
680: while (my ($copyright,$count) = each(%copyrights)) {
681: print COPYCOUNT $copyright.'='.$count.'&';
1.31 harris41 682: }
1.55 matthew 683: print COPYCOUNT 'time='.time."\n";
684: close(COPYCOUNT);
1.31 harris41 685: }
1.28 harris41 686:
1.55 matthew 687: } # end of scope for %copyrights
1.28 harris41 688:
1.55 matthew 689: ########################################################
690: ########################################################
691: ### ###
692: ### Miscellanous Utility Routines ###
693: ### ###
694: ########################################################
695: ########################################################
696: ##
697: ## &ishome($username)
698: ## Returns 1 if $username is a LON-CAPA author, 0 otherwise
699: ## (copied from lond, modification of the return value)
1.31 harris41 700: sub ishome {
701: my $author=shift;
1.76 albertel 702: $author=~s{/home/httpd/html/res/([^/]*)/([^/]*).*}{$1/$2};
1.31 harris41 703: my ($udom,$uname)=split(/\//,$author);
704: my $proname=propath($udom,$uname);
705: if (-e $proname) {
706: return 1;
707: } else {
708: return 0;
709: }
710: }
1.28 harris41 711:
1.55 matthew 712: ##
713: ## &declutter($filename)
714: ## Given a filename, returns a url for the filename.
715: sub declutter {
716: my $thisfn=shift;
1.63 matthew 717: $thisfn=~s/^$Apache::lonnet::perlvar{'lonDocRoot'}//;
1.55 matthew 718: $thisfn=~s/^\///;
719: $thisfn=~s/^res\///;
720: return $thisfn;
1.31 harris41 721: }
1.28 harris41 722:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>