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

Last change on this file since 22220 was 22220, checked in by kjdon, 14 years ago

in classify, don't readd the document if edit mode is update - all we are doing is storing a list of docs, so don't want to add it again.

  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 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, $edit_mode) = @_;
75
76 my $doc_OID = $doc_obj->get_OID();
77
78 if ($edit_mode eq "delete") {
79 $self->oid_array_delete($doc_OID,'list');
80
81 }
82 elsif ($edit_mode eq "update") {
83 # do nothing. Doc is already in the list. Is the order important??
84 }
85 else {
86 push (@{$self->{'list'}}, $doc_OID);
87 }
88
89 return;
90}
91
92sub get_classify_info {
93 my $self = shift(@_);
94 my ($no_thistype) = @_;
95
96 my %classifyinfo = ('childtype' =>'VList',
97 'Title' =>$self->{'buttonname'},
98 'contains' =>[],
99 'classifyOID' =>"oai");
100 $classifyinfo{'thistype'} = 'Invisible';
101 my @list = @{$self->{'list'}};
102
103 my $seqNo = 0;
104 foreach my $OID (@list) {
105 my $hashref={};
106 $hashref->{'OID'}=$OID;
107
108 my %tempinfo=('childtype'=>'VList',
109 'Title'=>$self->{'buttonname'},
110 'classifyOID' =>"oai.$seqNo",
111 'contains' =>[]);
112
113 push (@{$tempinfo{'contains'}}, $hashref);
114
115 push (@{$classifyinfo{'contains'}}, \%tempinfo);
116 $seqNo ++;
117 }
118
119 return \%classifyinfo;
120}
Note: See TracBrowser for help on using the repository browser.