View | Details | Raw Unified | Return to bug 29439
Collapse All | Expand All

(-)a/catalogue/browse.pl (+113 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
3
# This is a CGI script that handles the browse feature.
4
5
# Copyright 2015 Catalyst IT
6
#
7
# This file is part of Koha.
8
#
9
# Koha is free software; you can redistribute it and/or modify it
10
# under the terms of the GNU General Public License as published by
11
# the Free Software Foundation; either version 3 of the License, or
12
# (at your option) any later version.
13
#
14
# Koha is distributed in the hope that it will be useful, but
15
# WITHOUT ANY WARRANTY; without even the implied warranty of
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
# GNU General Public License for more details.
18
#
19
# You should have received a copy of the GNU General Public License
20
# along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22
use Modern::Perl;
23
use CGI qw ( -utf8 );
24
25
use C4::Auth qw( get_template_and_user );
26
use C4::Context;
27
use C4::Output qw( output_html_with_http_headers );
28
29
use Koha::SearchEngine::Elasticsearch;
30
use Koha::SearchEngine::Elasticsearch::Browse;
31
use Koha::SearchEngine::Elasticsearch::QueryBuilder;
32
use Koha::SearchEngine::Elasticsearch::Search;
33
34
use JSON qw( to_json );
35
use Unicode::Collate;
36
37
my $query = CGI->new;
38
binmode STDOUT, ':encoding(UTF-8)';
39
40
# If calling via JS, 'api' is used to route to correct step in process
41
my $api = $query->param('api');
42
43
if ( !$api ) {
44
    my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
45
        {
46
            template_name   => "catalogue/browse.tt",
47
            query           => $query,
48
            type            => "intranet",
49
            flagsrequired   => { catalogue => 1 },
50
        }
51
    );
52
   $template->param();
53
    output_html_with_http_headers $query, $cookie, $template->output;
54
55
56
}
57
elsif ( $api eq 'GetSuggestions' ) {
58
    my $fuzzie = $query->param('fuzziness');
59
    my $prefix = $query->param('prefix');
60
    my $field  = $query->param('field');
61
62
# Under a persistent environment, we should probably not reinit this every time.
63
    my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } );
64
    my $res = $browser->browse( $prefix, $field, { fuzziness => $fuzzie } );
65
66
    my %seen;
67
    my @sorted =
68
        grep { !$seen{$_->{text}}++ }
69
        sort { lc($a->{text}) cmp lc($b->{text}) } @$res;
70
    print CGI::header(
71
        -type    => 'application/json',
72
        -charset => 'utf-8'
73
    );
74
    print to_json( \@sorted );
75
}
76
elsif ( $api eq 'GetResults' ) {
77
    my $term  = $query->param('term');
78
    my $field = $query->param('field');
79
80
    my $builder  = Koha::SearchEngine::Elasticsearch::QueryBuilder->new( { index => 'biblios' } );
81
    my $searcher = Koha::SearchEngine::Elasticsearch::Search->new(
82
        { index => $Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX } );
83
84
    my $query = { query => { term => { $field.".raw" => $term } } } ;
85
    my $results = $searcher->search( $query, undef, 500 );
86
    my @output = _filter_for_output( $results->{hits}->{hits} );
87
    print CGI::header(
88
        -type    => 'application/json',
89
        -charset => 'utf-8'
90
    );
91
    print to_json( \@output );
92
}
93
94
# This should probably be done with some templatey gizmo
95
# in the future.
96
sub _filter_for_output {
97
    my ($records) = @_;
98
    my @output;
99
    foreach my $rec (@$records) {
100
        my $biblionumber = $rec->{_id};
101
        my $biblio = Koha::Biblios->find( $biblionumber );
102
        next unless $biblio;
103
        push @output,
104
          {
105
            id => $biblionumber,
106
            title    => $biblio->title,
107
            subtitle => $biblio->subtitle,
108
            author  => $biblio->author,
109
          };
110
    };
111
    my @sorted = sort { lc($a->{title}) cmp lc($b->{title}) } @output;
112
    return @sorted;
113
}
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+51 lines)
Lines 4482-4487 input.renew { Link Here
4482
    top: 0;
4482
    top: 0;
4483
}
4483
}
4484
4484
4485
/*browse search*/
4486
4487
#browse-resultswrapper {
4488
    margin-top: 15px;
4489
}
4490
#browse-searchfuzziness {
4491
    padding: 15px 0;
4492
}
4493
4494
#browse-searchresults, #browse-selectionsearch {
4495
    border: 1px solid #E3E3E3;
4496
    border-radius: 4px;
4497
    padding: 0;
4498
    margin-bottom: 2em;
4499
}
4500
4501
#browse-selectionsearch p.subjects {
4502
    font-size: 0.9em;
4503
    margin-bottom: 0;
4504
}
4505
4506
#browse-selectionsearch h4 {
4507
    margin: 0;
4508
}
4509
4510
#browse-suggestionserror {
4511
    margin-top: 1rem;
4512
}
4513
4514
#browse-search {
4515
    .loading {
4516
        text-align: center;
4517
4518
        img {
4519
            margin:0.5em 0;
4520
            position: relative;
4521
            left: -5px;
4522
        }
4523
    }
4524
}
4525
4526
#card_template {
4527
    display: none;
4528
}
4529
4530
.result-title {
4531
    margin-bottom: .4rem;
4532
    margin-left: 1rem;
4533
}
4534
/*end browse search*/
4535
4485
div#makechart ol li {
4536
div#makechart ol li {
4486
    list-style: none;
4537
    list-style: none;
4487
}
4538
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt (-1 / +119 lines)
Line 0 Link Here
0
- 
1
[% USE Koha %]
2
[% USE Asset %]
3
[% USE raw %]
4
[% SET footerjs = 1 %]
5
6
[% INCLUDE 'doc-head-open.inc' %]
7
8
<title>Browse the catalog &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
9
[% INCLUDE 'doc-head-close.inc' %]
10
</head>
11
12
<body id="browse_results" class="catalog">
13
[% INCLUDE 'header.inc' %]
14
[% INCLUDE 'cat-search.inc' %]
15
16
[% IntranetCoce    = Koha.Preference('IntranetCoce') %]
17
[% CoceProviders   = Koha.Preference('CoceProviders') %]
18
[% CoceHost        = Koha.Preference('CoceHost') %]
19
20
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumbs">
21
    <ol class="breadcrumb">
22
        <li class="breadcrumb-item">
23
            <a href="/cgi-bin/koha/opac-main.pl">Home</a>
24
        </li>
25
        <li class="breadcrumb-item active">
26
            <a href="#" aria-current="page">Browse search</a>
27
        </li>
28
    </ol>
29
</nav> <!-- /#breadcrumbs -->
30
31
<div class="main container-fluid">
32
        <div class="row">
33
        <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
34
            [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && Koha.Preference('OpacBrowseSearch') %]
35
                <div id="browse-search" class="maincontent">
36
                    <h1>Browse search</h1>
37
38
                    <form>
39
                        <legend class="sr-only">Browse search</legend>
40
                        <div class="form-row">
41
                            <div class="col">
42
                                <label for="browse-searchterm">Search for:</label>
43
                                <input type="search" id="browse-searchterm" class="form-control" name="searchterm" value="" />
44
                            </div> <!-- /.col-12.col-sm-9 -->
45
                            <div class="col-auto">
46
                                <label for="browse-searchfield">Search type:</label>
47
                                <select id="browse-searchfield" name="searchfield" class="form-control">
48
                                    <option value="author">Author</option>
49
                                    <option value="subject">Subject</option>
50
                                    <option value="title">Title</option>
51
                                </select>
52
                            </div> <!-- /.col-auto -->
53
                        </div> <!-- /.form-row -->
54
                        <div class="form-row">
55
                            <div class="col">
56
                                <div id="browse-searchfuzziness">
57
                                    <div class="form-check form-check-inline">
58
                                        <label for="exact" class="form-check-label">
59
                                            <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="exact" value="0" />Exact
60
                                        </label>
61
                                    </div> <!-- /.form-check.form-check-inline -->
62
                                    <div class="form-check form-check-inline">
63
                                        <label for="fuzzy" class="form-check-label">
64
                                            <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="fuzzy" value="1" checked="checked" /> Fuzzy
65
                                        </label>
66
                                    </div> <!-- /.form-check.form-check-inline -->
67
                                    <div class="form-check form-check-inline">
68
                                        <label for="reallyfuzzy" class="form-check-label">
69
                                            <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="reallyfuzzy" value="2" /> Really fuzzy
70
                                        </label>
71
                                    </div> <!-- /.form-check.form-check-inline -->
72
                                </div> <!-- /#browse-searchfuzziness -->
73
                            </div> <!-- /.col -->
74
                        </div> <!-- /.form-row -->
75
                        <div class="form-row">
76
                            <div class="col">
77
                                <button class="btn btn-primary" type="submit" accesskey="s">Search</button>
78
                            </div>
79
                        </div>
80
                    </form>
81
82
                    <div id="browse-suggestionserror" class="alert alert-warning d-none" role="alert">
83
                        An error occurred, please try again.
84
                    </div>
85
86
                    <div id="browse-resultswrapper" class="d-none">
87
                        <h2>Results</h2>
88
89
                        <div class="loading d-none"><img src="[% interface | html %]/[% theme |html %]/images/loading.gif" alt=""> Loading</div>
90
                        <div class="alert alert-warning no-results d-none" role="alert">Sorry, there are no results. Try a different search term.</div>
91
92
                        <div class="accordion" id="browse-searchresults">
93
                            <div id="card_template" class="card">
94
                                <div class="card-header" id="heading">
95
                                    <a class="expand-result" href="#" data-toggle="collapse" aria-expanded="false" aria-controls="collapse">
96
                                    </a>
97
                                </div> <!-- /#heading.card-header -->
98
                                <div id="collapse" class="collapse" aria-labelledby="heading" data-parent="#browse-searchresults">
99
                                    <div class="card-body">
100
                                    </div>
101
                                </div> <!-- /#collapse.collapse -->
102
                            </div> <!-- /#card_template.card -->
103
                        </div> <!-- /#browse-searchresults.accordion -->
104
                    </div><!-- / #browse-resultswrapper -->
105
                </div><!-- /#browse-search -->
106
            [% ELSE %]
107
                <h1>Browse search</h1>
108
                <div class="alert alert-info">
109
                    This feature is not enabled
110
                </div>
111
            [% END %]
112
113
            </div><!-- / .col/col-10 -->
114
        </div><!-- / .row -->
115
116
[% MACRO jsinclude BLOCK %]
117
    [% Asset.js("js/browse.js") | $raw %]
118
[% END %]
119
[% INCLUDE 'intranet-bottom.inc' %]

Return to bug 29439