3 # Copyright 2013 BibLibre SARL
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 C4
::Auth
qw(:DEFAULT get_session);
29 use C4
::Search
::History
;
32 use POSIX
qw(strftime);
37 # Getting the template and auth
38 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
40 template_name
=> "opac-search-history.tt",
44 flagsrequired
=> {borrowers
=> 1},
49 my $type = $cgi->param('type');
50 my $action = $cgi->param('action') || q{};
51 my $previous = $cgi->param('previous');
53 # If the user is not logged in, we deal with the session
54 unless ( $loggedinuser ) {
55 # Deleting search history
56 if ( $action eq 'delete') {
57 # Deleting session's search history
58 my @id = $cgi->param('id');
59 my $all = not scalar( @id );
61 my $type = $cgi->param('type');
64 @searches = C4
::Search
::History
::get_from_session
({ cgi
=> $cgi });
66 @searches = map { $_->{type
} ne $type ?
$_ : () } @searches;
69 @searches = map { my $search = $_; ( grep {/^$search->{id}$/} @id ) ?
() : $_ } @searches;
72 C4
::Search
::History
::set_to_session
({ cgi
=> $cgi, search_history
=> \
@searches });
74 # Redirecting to this same url so the user won't see the search history link in the header
75 print $cgi->redirect(-uri
=> '/cgi-bin/koha/opac-search-history.pl');
76 # Showing search history
78 # Getting the searches from session
79 my @current_searches = C4
::Search
::History
::get_from_session
({
83 my @current_biblio_searches = map {
84 $_->{type
} eq 'biblio' ?
$_ : ()
87 my @current_authority_searches = map {
88 $_->{type
} eq 'authority' ?
$_ : ()
92 current_biblio_searches
=> \
@current_biblio_searches,
93 current_authority_searches
=> \
@current_authority_searches,
97 # And if the user is logged in, we deal with the database
98 my $dbh = C4
::Context
->dbh;
100 # Deleting search history
101 if ( $action eq 'delete' ) {
102 my @id = $cgi->param('id');
104 C4
::Search
::History
::delete(
106 id
=> [ $cgi->param('id') ],
110 C4
::Search
::History
::delete(
112 userid
=> $loggedinuser,
116 # Redirecting to this same url so the user won't see the search history link in the header
117 print $cgi->redirect(-uri
=> '/cgi-bin/koha/opac-search-history.pl');
119 # Showing search history
121 my $current_searches = C4
::Search
::History
::get
({
122 userid
=> $loggedinuser,
123 sessionid
=> $cgi->cookie("CGISESSID")
125 my @current_biblio_searches = map {
126 $_->{type
} eq 'biblio' ?
$_ : ()
127 } @
$current_searches;
129 my @current_authority_searches = map {
130 $_->{type
} eq 'authority' ?
$_ : ()
131 } @
$current_searches;
133 my $previous_searches = C4
::Search
::History
::get
({
134 userid
=> $loggedinuser,
135 sessionid
=> $cgi->cookie("CGISESSID"),
139 my @previous_biblio_searches = map {
140 $_->{type
} eq 'biblio' ?
$_ : ()
141 } @
$previous_searches;
143 my @previous_authority_searches = map {
144 $_->{type
} eq 'authority' ?
$_ : ()
145 } @
$previous_searches;
148 current_biblio_searches
=> \
@current_biblio_searches,
149 current_authority_searches
=> \
@current_authority_searches,
150 previous_biblio_searches
=> \
@previous_biblio_searches,
151 previous_authority_searches
=> \
@previous_authority_searches,
157 $template->param(searchhistoryview
=> 1);
159 output_html_with_http_headers
$cgi, $cookie, $template->output, undef, { force_no_caching
=> 1 };