Synching with rel_2_2.
[koha.git] / opac / opac-sendbasket.pl
1 #!/usr/bin/perl
2 use strict;
3 require Exporter;
4 use CGI;
5 use Mail::Sendmail;
6 use MIME::QuotedPrint;
7 use MIME::Base64;
8 use C4::Context;
9 use C4::Search;
10 use C4::Biblio;
11 use C4::Auth;
12 use C4::Interface::CGI::Output;
13 use C4::Biblio;
14 use HTML::Template;
15
16 my $query = new CGI;
17
18 my ($template, $borrowernumber, $cookie) 
19     = get_template_and_user({template_name => "opac-sendbasketform.tmpl",
20                              query => $query,
21                              type => "opac",
22                              authnotrequired => 1,
23                              flagsrequired => {borrow => 1},
24                          });
25
26 my $bib_list=$query->param('bib_list');
27 my $email_add=$query->param('email_add');
28 my $email_sender=$query->param('email_sender');
29 my $dbh=C4::Context->dbh;
30 my $sth;
31 $sth=$dbh->prepare("select bibid from marc_biblio where biblionumber=? order by bibid");
32
33
34 if ($email_add) {
35         my $email_from = C4::Context->preference('KohaAdminEmailAddress');
36
37         my %mail = (     To      => $email_add,
38                                                  From    => $email_from);
39
40         my ($template2, $borrowernumber, $cookie) 
41     = get_template_and_user({template_name => "opac-sendbasket.tmpl",
42                              query => $query,
43                              type => "opac",
44                              authnotrequired => 1,
45                              flagsrequired => {borrow => 1},
46                          });
47
48         my @bibs = split(/\//, $bib_list);
49         my @results;
50         my $iso2709;
51         foreach my $biblionumber (@bibs) {
52                 $template2->param(biblionumber => $biblionumber);
53
54                 my $dat = &bibdata($biblionumber);
55                 my ($authorcount, $addauthor) = &addauthor($biblionumber);
56                 my @items                     = &ItemInfo(undef, $biblionumber, 'opac');
57
58                 $dat->{'additional'}=$addauthor->[0]->{'author'};
59                 for (my $i = 1; $i < $authorcount; $i++) {
60                         $dat->{'additional'} .= "|" . $addauthor->[$i]->{'author'};
61                 }
62
63                 $dat->{'biblionumber'} = $biblionumber;
64                 $dat->{ITEM_RESULTS} = \@items;
65                 $sth->execute($biblionumber);
66                 my ($bibid) = $sth->fetchrow;
67                 my $record = MARCgetbiblio($dbh,$bibid);
68                 $iso2709 .= $record->as_usmarc();
69
70                 push (@results, $dat);
71         }
72
73     # Getting template result                                                                                             
74     my $template_res = $template2->output();
75         # Analysing information and getting mail properties
76         if ($template_res =~ /<SUBJECT>\n(.*)\n<END_SUBJECT>/s) { $mail{'subject'} = $1; }
77         else { $mail{'subject'} = "no subject"; }
78
79         my $email_header = "";
80         if ($template_res =~ /<HEADER>\n(.*)\n<END_HEADER>/s) { $email_header = $1; }
81
82         my $email_file = "basket.txt";
83         if ($template_res =~ /<FILENAME>\n(.*)\n<END_FILENAME>/s) { $email_file = $1; }
84
85         if ($template_res =~ /<MESSAGE>\n(.*)\n<END_MESSAGE>/s) { $mail{'body'} = $1; }
86
87         my $boundary = "====" . time() . "====";
88 #       $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
89
90 #       $email_header = encode_qp($email_header);
91
92 #       $boundary = "--".$boundary;
93
94 #       # Writing mail
95 #       $mail{body} =
96         $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
97
98         my $message = encode_qp( "" );
99
100 # $file = $^X; # This is the perl executable
101
102 # open (F, $file) or die "Cannot read $file: $!";
103 # binmode F; undef $/;
104 $mail{body} = encode_base64($iso2709);
105 # close F;
106
107 $boundary = '--'.$boundary;
108 $mail{body} = <<END_OF_BODY;
109 $boundary
110 Content-Type: text/plain; charset="iso-8859-1"
111 Content-Transfer-Encoding: quoted-printable
112
113 $message
114 $boundary
115 Content-Type: application/octet-stream; name="basket"
116 Content-Transfer-Encoding: base64
117 Content-Disposition: attachment; filename="basket"
118
119 $mail{body}
120 $boundary--
121 END_OF_BODY
122
123
124
125          <<END_OF_BODY;
126 $boundary
127 Content-Type: text/plain; charset="iso-8859-1"
128 Content-Transfer-Encoding: quoted-printable
129
130 $email_header
131
132 $mail{'body'}
133
134 $boundary--
135 END_OF_BODY
136
137 $mail{attachment} = $iso2709;
138 #       $mail{body} = <<END_OF_BODY;
139 #$boundary
140 #Content-Type: text/plain; charset="iso-8859-1"
141 #Content-Transfer-Encoding: quoted-printable
142 #
143 #$email_header
144 #
145 #$boundary
146 #Content-Type: text/plain; name="$email_file"
147 #Content-Transfer-Encoding: quoted-printable
148 #Content-Disposition: attachment; filename="$email_file"
149 #
150 #$mail{'body'}
151 #
152 #$boundary--
153 #END_OF_BODY
154
155         # Sending mail
156         if (sendmail %mail) {
157         # do something if it works....
158 #               warn " ".$mail{body};
159 #               warn " ".$mail{PJ};
160                 $template->param(SENT => "1");
161                 $template->param(email_add => $email_add);
162         } else {
163                 # do something if it doesnt work....
164                 warn "Error sending mail: $Mail::Sendmail::error \n";
165         }
166
167     output_html_with_http_headers $query, $cookie, $template->output;
168 }
169 else {
170         $template->param(bib_list => $bib_list);
171         $template->param(url => "/cgi-bin/koha/opac-sendbasket.pl",
172         suggestion => C4::Context->preference("suggestion"),
173         virtualshelves => C4::Context->preference("virtualshelves"),
174         );
175         output_html_with_http_headers $query, $cookie, $template->output;
176 }