source: main/trunk/greenstone2/perllib/classify/AllList.pm@ 31412

Last change on this file since 31412 was 31412, checked in by ak19, 7 years ago

After the recent changes to implement the OAI deletion policy, no longer need to have the fake [oai] classifier and subentries written to index.db. These are no longer consulted, and the new oai-inf.db (in etc) is now consulted instead to obtain oai data.

  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1###########################################################################
2#
3# AllList.pm -- Creates a single list of all documents. Use by the oaiserver.
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 2005 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26package AllList;
27
28use BaseClassifier;
29
30use strict;
31no strict 'refs'; # allow filehandles to be variables and viceversa
32
33sub BEGIN {
34 @AllList::ISA = ('BaseClassifier');
35}
36
37my $arguments =
38 [
39 ];
40
41my $options = { 'name' => "AllList",
42 'desc' => "{AllList.desc}",
43 'abstract' => "yes", # hide from gli
44 'inherits' => "yes" };
45
46sub new {
47 my ($class) = shift (@_);
48 my ($classifierslist,$inputargs,$hashArgOptLists) = @_;
49 push(@$classifierslist, $class);
50
51 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
52 push(@{$hashArgOptLists->{"OptList"}},$options);
53
54 my $self = new BaseClassifier($classifierslist, $inputargs, $hashArgOptLists);
55
56 if ($self->{'info_only'}) {
57 # don't worry about any options etc
58 return bless $self, $class;
59 }
60
61 # Manually set $self parameters.
62 $self->{'list'} = [];
63 $self->{'buttonname'} = "All Documents";
64
65 return bless $self, $class;
66}
67
68sub init {
69 my $self = shift (@_);
70}
71
72sub classify {
73 my $self = shift (@_);
74 my ($doc_obj) = @_;
75
76 my $doc_OID = $doc_obj->get_OID();
77
78 push (@{$self->{'list'}}, $doc_OID);
79
80 return;
81}
82
83# We don't add the fake classifier [oai] entries in index db any more.
84# We have the new oai-inf.db for storing oai info.
85sub get_classify_info {
86 my $self = shift(@_);
87 my ($no_thistype) = @_;
88
89 my %classifyinfo = ();
90 return \%classifyinfo;
91}
92
93
94sub OLD_get_classify_info {
95 my $self = shift(@_);
96 my ($no_thistype) = @_;
97
98 my %classifyinfo = ('childtype' =>'VList',
99 'Title' =>$self->{'buttonname'},
100 'contains' =>[],
101 'classifyOID' =>"oai");
102 $classifyinfo{'thistype'} = 'Invisible';
103 my @list = @{$self->{'list'}};
104
105 my $seqNo = 0;
106 foreach my $OID (@list) {
107 my $hashref={};
108 $hashref->{'OID'}=$OID;
109
110 my %tempinfo=('childtype'=>'VList',
111 'Title'=>$self->{'buttonname'},
112 'classifyOID' =>"oai.$seqNo",
113 'contains' =>[]);
114
115 push (@{$tempinfo{'contains'}}, $hashref);
116
117 push (@{$classifyinfo{'contains'}}, \%tempinfo);
118 $seqNo ++;
119 }
120
121 return \%classifyinfo;
122}
Note: See TracBrowser for help on using the repository browser.