]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm
Add PhoneList.pm.
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / PhoneList.pm
1 # ---------------------------------------------------------------
2 # Copyright (C) 2011 Merrimack Valley Library Consortium
3 # Jason Stephenson <jstephenson@mvlc.org>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 # ---------------------------------------------------------------
15
16 package OpenILS::WWW::PhoneList;
17 use strict;
18 use warnings;
19 use bytes;
20
21 use Apache2::Log;
22 use Apache2::Const -compile => qw(OK FORBIDDEN HTTP_NO_CONTENT :log);
23 use APR::Const    -compile => qw(:error SUCCESS);
24 use APR::Table;
25
26 use Apache2::RequestRec ();
27 use Apache2::RequestIO ();
28 use Apache2::RequestUtil;
29 use CGI;
30
31 use OpenSRF::System;
32 use OpenSRF::Utils::SettingsClient;
33 use OpenSRF::Utils::Logger qw/$logger/;
34 use OpenILS::Utils::Fieldmapper;
35 use OpenILS::Application::AppUtils;
36
37 use Text::CSV; # Still only support CSV output.
38
39 # Our submodules.
40 use OpenILS::WWW::PhoneList::Holds;
41 use OpenILS::WWW::PhoneList::Overdues;
42
43 my $U = 'OpenILS::Application::AppUtils';
44
45 my $bootstrap;
46
47 sub import {
48     my $self = shift;
49     $bootstrap = shift;
50 }
51
52 sub child_init {
53     OpenSRF::System->bootstrap_client(config_file => $bootstrap);
54     my $idl = OpenSRF::Utils::SettingsClient->new->config_value("IDL");
55     Fieldmapper->import(IDL => $idl);
56     OpenILS::Utils::CStoreEditor->init;
57 }
58
59 sub handler {
60     my $r = shift;
61     my $cgi = new CGI;
62     my $authid = $cgi->cookie('ses') || $cgi->param('ses');
63     my $user = $U->simplereq('open-ils.auth', 'open-ils.auth.session.retrieve', $authid);
64     if (!$user || (ref($user) eq 'HASH' && $user->{ilsevent} == 1001)) {
65         return Apache2::Const::FORBIDDEN;
66     }
67
68     my $ou_id = $cgi->cookie("ws_ou") || $cgi->param("ws_ou") || $user->home_ou;
69
70     # Look for optional addcount parameter. If it is present add a
71     # count column to the end of the csv ouput with a count of the
72     # patron's hold items.
73     my $addcount = defined($cgi->param('addcount'));
74
75     # Member staff asked for the option to ignore a patron's
76     # preference to receive both a phone and email notice, and skip
77     # them if it looks like they will get an email notice, too.
78     # So we made it an option on the query string.
79     my $skipemail = defined($cgi->param('skipemail'));
80
81     # Build the args hashref to initialize our functional submodule:
82     my $args = {
83                 'authtoken' => $authid,
84                 'user' => $user->id,
85                 'work_ou' => $ou_id,
86                };
87
88     # Default module to load is Holds.
89     my $module = 'OpenILS::WWW::PhoneList::Holds';
90
91     # If the overdue parameter is specified, we us the Overdues module
92     # and get the number of days from the due date. If no number of
93     # days is given, or if the argument to overdue is not a number,
94     # then we use a default of 14.
95     if (defined($cgi->param('overdue'))) {
96         $module = 'OpenILS::WWW::PhoneList::Overdues';
97         $args->{'days'} =
98             ($cgi->param('overdue') =~ /^[0-9]+$/) ? $cgi->param('overdue')
99                 : 14;
100         $args->{'skipemail'} = $skipemail;
101     } else {
102         $args->{'addcount'} = $addcount;
103         $args->{'skipemail'} = $skipemail;
104     }
105
106     # Load the module.
107     my $source = $module->new($args);
108
109     # check for user permissions:
110     return Apache2::Const::FORBIDDEN unless($source->checkperms);
111
112     # Tell the source to run its query.
113     if ($source->query()) {
114         my $csv = Text::CSV->new();
115         $r->headers_out->set("Content-Disposition" => "attachment; filename=phone.csv");
116         $r->content_type("text/plain");
117         # Print the columns
118         if ($csv->combine(@{$source->columns})) {
119             $r->print($csv->string . "\n");
120         }
121         # Print the results
122         $r->print($csv->string . "\n") while ($csv->combine(@{$source->next}));
123     }
124     else {
125         # Query failed, so we'll return no content error.
126         return Apache2::Const::HTTP_NO_CONTENT;
127     }
128
129     return Apache2::Const::OK;
130 }
131
132 1;