bug 3222: new module to handle messaging preferences form
[koha.git] / members / messaging.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 LibLime
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 use CGI;
23 use C4::Context;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Members;
27 use C4::Members::Messaging;
28 use C4::Dates;
29 use C4::Reserves;
30 use C4::Circulation;
31 use C4::Koha;
32 use C4::Letters;
33 use C4::Biblio;
34 use C4::Reserves;
35 use C4::Branch; # GetBranchName
36 use C4::Form::MessagingPreferences;
37
38 use Data::Dumper;
39
40 use vars qw($debug);
41
42 BEGIN {
43         $debug = $ENV{DEBUG} || 0;
44 }
45
46 my $dbh = C4::Context->dbh;
47
48 my $query = CGI->new();
49
50 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
51     {
52         template_name   => 'members/messaging.tmpl',
53         query           => $query,
54         type            => "intranet",
55         authnotrequired => 0,
56         flagsrequired   => { borrowers => 1 },
57         debug           => 1,
58     }
59 );
60 my $borrowernumber = $query->param('borrowernumber');
61 my $borrower       = GetMember( $borrowernumber ,'borrowernumber');
62 my $branch         = C4::Context->userenv->{'branch'};
63
64 $template->param( $borrower );
65
66 my $borrower = GetMemberDetails( $borrowernumber );
67
68 if ( defined $query->param('modify') && $query->param('modify') eq 'yes' ) {
69
70     # If they've modified the SMS number, record it.
71     if ( ( defined $query->param('SMSnumber') ) && ( $query->param('SMSnumber') ne $borrower->{'mobile'} ) ) {
72         ModMember( borrowernumber => $borrowernumber,
73                    smsalertnumber => $query->param('SMSnumber') );
74         $borrower = GetMemberDetails( $borrowernumber );
75     }
76     C4::Form::MessagingPreferences::handle_form_action($query, { borrowernumber => $borrowernumber }, $template);
77
78
79 C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
80
81     if ( $borrower->{'category_type'} eq 'C') {
82         my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
83         my $cnt = scalar(@$catcodes);
84         $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
85         $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
86     }
87         
88 my ($picture, $dberror) = GetPatronImage($borrower->{'cardnumber'});
89 $template->param( picture => 1 ) if $picture;
90
91 # get some recent messages sent to this borrower for display:
92 my $message_queue = C4::Letters::GetQueuedMessages( { borrowernumber => $query->param('borrowernumber') } );
93
94 $template->param( messagingview               => 1,
95                   message_queue               => $message_queue,
96                   DHTMLcalendar_dateformat    => C4::Dates->DHTMLcalendar(), 
97                   borrowernumber              => $borrowernumber,
98                   branchcode                  => $borrower->{'branchcode'},
99                   branchname                  => GetBranchName($borrower->{'branchcode'}),
100                   dateformat                  => C4::Context->preference("dateformat"),
101                   categoryname                => $borrower->{'description'},
102                   $borrower->{'categorycode'} => 1,
103                   SMSSendDriver                =>  C4::Context->preference("SMSSendDriver")
104 );
105
106 #$messaging_preferences->{'SMSnumber'}{'value'} = defined $borrower->{'smsalertnumber'}
107 #  ? $borrower->{'smsalertnumber'} : $borrower->{'mobile'};
108
109 $template->param( BORROWER_INFO         => [ $borrower ],
110                   messagingview         => 1,
111                                   is_child        => ($borrower->{'category_type'} eq 'C'),
112                   SMSnumber             => defined $borrower->{'smsalertnumber'} ? $borrower->{'smsalertnumber'} : $borrower->{'mobile'} );
113
114 output_html_with_http_headers $query, $cookie, $template->output;