3 # Copyright 2013 Rijksmuseum
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use constant KEYLENGTH
=> 10;
23 use constant TEMPLATE_NAME
=> 'opac-shareshelf.tt';
24 use constant SHELVES_URL
=>
25 '/cgi-bin/koha/opac-shelves.pl?display=privateshelves&viewshelf=';
37 use Koha
::Virtualshelves
;
38 use Koha
::Virtualshelfshares
;
41 # if virtualshelves is disabled, leave immediately
42 if ( ! C4
::Context
->preference('virtualshelves') ) {
44 print $query->redirect("/cgi-bin/koha/errors/404.pl");
48 #-------------------------------------------------------------------------------
50 my $pvar = _init
( {} );
51 if ( !$pvar->{errcode
} ) {
52 show_invite
($pvar) if $pvar->{op
} eq 'invite';
53 confirm_invite
($pvar) if $pvar->{op
} eq 'conf_invite';
54 show_accept
($pvar) if $pvar->{op
} eq 'accept';
56 load_template_vars
($pvar);
57 output_html_with_http_headers
$pvar->{query
}, $pvar->{cookie
},
58 $pvar->{template
}->output;
60 #-------------------------------------------------------------------------------
65 $param->{query
} = $query;
66 $param->{shelfnumber
} = $query->param('shelfnumber') || 0;
67 $param->{op
} = $query->param('op') || '';
68 $param->{addrlist
} = $query->param('invite_address') || '';
69 $param->{key
} = $query->param('key') || '';
70 $param->{appr_addr
} = [];
71 $param->{fail_addr
} = [];
72 $param->{errcode
} = check_common_errors
($param);
75 if ( $param->{addrlist
} ) {
76 $param->{addrlist
} =~ s
|^\s
+||;
77 $param->{addrlist
} =~ s
|\s
+$||;
80 #get some list details
82 my $shelfnumber = $param->{shelfnumber
};
83 $shelf = Koha
::Virtualshelves
->find( $shelfnumber ) unless $param->{errcode
};
84 $param->{shelfname
} = $shelf ?
$shelf->shelfname : q
||;
85 $param->{owner
} = $shelf ?
$shelf->owner : -1;
86 $param->{category
} = $shelf ?
$shelf->category : -1;
88 load_template
($param);
92 sub check_common_errors
{
94 if ( $param->{op
} !~ /^(invite|conf_invite|accept)$/ ) {
95 return 1; #no operation specified
97 if ( $param->{shelfnumber
} !~ /^\d+$/ ) {
98 return 2; #invalid shelf number
100 if ( !C4
::Context
->preference('OpacAllowSharingPrivateLists') ) {
101 return 3; #not or no longer allowed?
108 return unless check_owner_category
($param);
113 return unless check_owner_category
($param);
114 process_addrlist
($param);
115 if ( @
{ $param->{appr_addr
} } ) {
116 send_invitekey
($param);
119 $param->{errcode
} = 6; #not one valid address
126 my $shelfnumber = $param->{shelfnumber
};
127 my $shelf = Koha
::Virtualshelves
->find( $shelfnumber );
129 # The key for accepting is checked later in Koha::Virtualshelf->share
130 # You must not be the owner and the list must be private
131 if ( $shelf->category == 2 or $shelf->owner == $param->{loggedinuser
} ) {
135 # We could have used ->find with the share id, but we don't want to change
136 # the url sent to the patron
137 my $shared_shelf = Koha
::Virtualshelfshares
->search(
139 shelfnumber
=> $param->{shelfnumber
},
142 order_by
=> { -desc
=> 'sharedate' },
147 if ( $shared_shelf ) {
148 $shared_shelf = $shared_shelf->next;
149 my $key = keytostring
( stringtokey
( $param->{key
}, 0 ), 1 );
150 my $is_accepted = eval { $shared_shelf->accept( $key, $param->{loggedinuser
} ) };
151 if ( $is_accepted ) {
152 notify_owner
($param);
154 #redirect to view of this shared list
155 print $param->{query
}->redirect(
156 -uri
=> SHELVES_URL
. $param->{shelfnumber
},
157 -cookie
=> $param->{cookie
}
161 $param->{errcode
} = 7; #not accepted (key not found or expired)
163 # This shelf is not shared
170 my $patron = Koha
::Patrons
->find( $param->{owner
} );
171 return unless $patron;
173 my $toaddr = $patron->notice_email_address or return;
176 my $letter = C4
::Letters
::GetPreparedLetter
(
178 letter_code
=> 'SHARE_ACCEPT',
179 branchcode
=> C4
::Context
->userenv->{"branch"},
180 lang
=> $patron->lang,
181 tables
=> { borrowers
=> $param->{loggedinuser
}, },
182 substitute
=> { listname
=> $param->{shelfname
}, },
185 #send letter to queue
186 C4
::Letters
::EnqueueLetter
(
189 message_transport_type
=> 'email',
190 from_address
=> C4
::Context
->preference('KohaAdminEmailAddress'),
191 to_address
=> $toaddr,
196 sub process_addrlist
{
198 my @temp = split /[,:;]/, $param->{addrlist
};
201 foreach my $a (@temp) {
204 if ( IsEmailAddress
($a) ) {
211 $param->{appr_addr
} = \
@appr_addr;
212 $param->{fail_addr
} = \
@fail_addr;
217 my $fromaddr = C4
::Context
->preference('KohaAdminEmailAddress');
219 C4
::Context
->preference('OPACBaseURL')
220 . "/cgi-bin/koha/opac-shareshelf.pl?shelfnumber="
221 . $param->{shelfnumber
}
224 #TODO Waiting for the right http or https solution (BZ 8952 a.o.)
226 my @ok; #the addresses that were processed well
227 foreach my $a ( @
{ $param->{appr_addr
} } ) {
228 my @newkey = randomlist
( KEYLENGTH
, 64 ); #generate a new key
230 #add a preliminary share record
231 my $shelf = Koha
::Virtualshelves
->find( $param->{shelfnumber
} );
232 my $key = keytostring
( \
@newkey, 1 );
233 my $is_shared = eval { $shelf->share( $key ); };
234 # TODO Better error handling, catch the exceptions
235 if ( $@
or not $is_shared ) {
236 push @
{ $param->{fail_addr
} }, $a;
242 my $letter = C4
::Letters
::GetPreparedLetter
(
244 letter_code
=> 'SHARE_INVITE',
245 branchcode
=> C4
::Context
->userenv->{"branch"},
246 lang
=> 'default', # Not sure how we could use something more useful else here
247 tables
=> { borrowers
=> $param->{loggedinuser
}, },
249 listname
=> $param->{shelfname
},
250 shareurl
=> $url . keytostring
( \
@newkey, 0 ),
254 #send letter to queue
255 C4
::Letters
::EnqueueLetter
(
258 message_transport_type
=> 'email',
259 from_address
=> $fromaddr,
264 $param->{appr_addr
} = \
@ok;
267 sub check_owner_category
{
270 #sharing user should be the owner
271 #list should be private
272 $param->{errcode
} = 4 if $param->{owner
} != $param->{loggedinuser
};
273 $param->{errcode
} = 5 if !$param->{errcode
} && $param->{category
} != 1;
274 return !defined $param->{errcode
};
279 ( $param->{template
}, $param->{loggedinuser
}, $param->{cookie
} ) =
280 get_template_and_user
(
282 template_name
=> TEMPLATE_NAME
,
283 query
=> $param->{query
},
285 authnotrequired
=> 0, #should be a user
290 sub load_template_vars
{
292 my $template = $param->{template
};
293 my $appr = join '; ', @
{ $param->{appr_addr
} };
294 my $fail = join '; ', @
{ $param->{fail_addr
} };
296 errcode
=> $param->{errcode
},
298 shelfnumber
=> $param->{shelfnumber
},
299 shelfname
=> $param->{shelfname
},
300 approvedaddress
=> $appr,
301 failaddress
=> $fail,
307 #TODO candidate for a module?
308 return Email
::Valid
->address( $_[0] ) ?
1 : 0;
313 #uses rand, safe enough for this application but not for more sensitive data
314 my ( $length, $base ) = @_;
315 return map { int( rand($base) ); } 1 .. $length;
319 my ( $keyref, $flgBase64 ) = @_;
321 my $alphabet = [ 'A' .. 'Z', 'a' .. 'z', 0 .. 9, '+', '/' ];
322 return join '', map { alphabet_char
( $_, $alphabet ); } @
$keyref;
324 return join '', map { sprintf( "%02d", $_ ); } @
$keyref;
328 my ( $str, $flgBase64 ) = @_;
329 my @temp = split '', $str || '';
331 my $alphabet = [ 'A' .. 'Z', 'a' .. 'z', 0 .. 9, '+', '/' ];
332 return [ map { alphabet_ordinal
( $_, $alphabet ); } @temp ];
334 return [] if $str !~ /^\d+$/;
336 for ( my $i = 0 ; $i < @temp - 1 ; $i += 2 ) {
337 push @retval, $temp[$i] * 10 + $temp[ $i + 1 ];
342 sub alphabet_ordinal
{
343 my ( $char, $alphabet ) = @_;
344 for my $ord ( 0 .. $#$alphabet ) {
345 return $ord if $char eq $alphabet->[$ord];
347 return ''; #ignore missing chars
352 #reverse operation for ordinal; ignore invalid numbers
353 my ( $num, $alphabet ) = @_;
354 return $num =~ /^\d+$/ && $num <= $#$alphabet ? $alphabet->[$num] : '';