ICS invoice spool format and email delivery, #17620
[freeside.git] / FS / FS / upload_target.pm
1 package FS::upload_target;
2
3 use strict;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
6 use FS::Misc qw(send_email);
7 use FS::Conf;
8 use File::Spec;
9 use vars qw($me $DEBUG);
10
11 $DEBUG = 0;
12
13 =head1 NAME
14
15 FS::upload_target - Object methods for upload_target records
16
17 =head1 SYNOPSIS
18
19   use FS::upload_target;
20
21   $record = new FS::upload_target \%hash;
22   $record = new FS::upload_target { 'column' => 'value' };
23
24   $error = $record->insert;
25
26   $error = $new_record->replace($old_record);
27
28   $error = $record->delete;
29
30   $error = $record->check;
31
32 =head1 DESCRIPTION
33
34 An FS::upload_target object represents a destination to deliver files (such 
35 as invoice batches) by FTP, SFTP, or email.  FS::upload_target inherits from
36 FS::Record.
37
38 =over 4
39
40 =item targetnum - primary key
41
42 =item agentnum - L<FS::agent> foreign key; can be null
43
44 =item protocol - 'ftp', 'sftp', or 'email'.
45
46 =item hostname - the DNS name of the FTP site, or the domain name of the 
47 email address.
48
49 =item port - the TCP port number, if it's not standard.
50
51 =item username - username
52
53 =item password - password
54
55 =item path - for FTP/SFTP, the working directory to change to upon connecting.
56
57 =item subject - for email, the Subject: header
58
59 =item handling - a string naming an additional process to apply to
60 the file before sending it.
61
62 =back
63
64 =head1 METHODS
65
66 =over 4
67
68 =cut
69
70 sub table { 'upload_target'; }
71
72 =item new HASHREF
73
74 Creates a new FTP target.  To add it to the database, see L<"insert">.
75
76 =item insert
77
78 Adds this record to the database.  If there is an error, returns the error,
79 otherwise returns false.
80
81 =item delete
82
83 Delete this record from the database.
84
85 =item replace OLD_RECORD
86
87 Replaces the OLD_RECORD with this one in the database.  If there is an error,
88 returns the error, otherwise returns false.
89
90 =item check
91
92 Checks all fields to make sure this is a valid example.  If there is
93 an error, returns the error, otherwise returns false.  Called by the insert
94 and replace methods.
95
96 =cut
97
98 sub check {
99   my $self = shift;
100
101   my $protocol = lc($self->protocol);
102   if ( $protocol eq 'email' ) {
103     $self->set(password => '');
104     $self->set(port => '');
105     $self->set(path => '');
106   } elsif ( $protocol eq 'sftp' ) {
107     $self->set(port => 22) unless $self->get('port');
108     $self->set(subject => '');
109   } elsif ( $protocol eq 'ftp' ) {
110     $self->set('port' => 21) unless $self->get('port');
111     $self->set(subject => '');
112   } else {
113     return "protocol '$protocol' not supported";
114   }
115   $self->set(protocol => $protocol); # lowercase it
116
117   my $error = 
118     $self->ut_numbern('targetnum')
119     || $self->ut_foreign_keyn('agentnum', 'agent', 'agentnum')
120     || $self->ut_text('hostname')
121     || $self->ut_text('username')
122     || $self->ut_textn('password')
123     || $self->ut_numbern('port')
124     || $self->ut_textn('path')
125     || $self->ut_textn('subject')
126     || $self->ut_enum('handling', [ $self->handling_types ])
127   ;
128   return $error if $error;
129
130   $self->SUPER::check;
131 }
132
133 =item put LOCALNAME [ REMOTENAME ]
134
135 Uploads the file named LOCALNAME, optionally changing its name to REMOTENAME
136 on the target.  For FTP/SFTP, this opens a connection, changes to the working
137 directory (C<path>), and PUTs the file.  For email, it composes an empty 
138 message and attaches the file.
139
140 Returns an error message if anything goes wrong.
141
142 =cut
143
144 sub put {
145   my $self = shift;
146   my $localname = shift;
147   my @s = File::Spec->splitpath($localname);
148   my $remotename = shift || $s[-1];
149
150   my $conf = FS::Conf->new;
151   if ( $self->protocol eq 'ftp' or $self->protocol eq 'sftp' ) {
152     # could cache this if we ever want to reuse it
153     local $@;
154     my $connection = eval { $self->connect };
155     return $@ if $@;
156     $connection->put($localname, $remotename) or return $connection->error;
157   } elsif ( $self->protocol eq 'email' ) {
158
159     my $to = join('@', $self->username, $self->hostname);
160     # XXX if we were smarter, this could use a message template for the 
161     # message subject, body, and source address
162     # (maybe use only the raw content, so that we don't have to supply a 
163     # customer for substitutions? ewww.)
164     my %message = (
165       'from'          => $conf->config('invoice_from'),
166       'to'            => $to,
167       'subject'       => $self->subject,
168       'nobody'        => 1,
169       'mimeparts'     => [
170         { Path            => $localname,
171           Type            => 'application/octet-stream',
172           Encoding        => 'base64',
173           Filename        => $remotename,
174           Disposition     => 'attachment',
175         }
176       ],
177     );
178     return send_email(%message);
179
180   } else {
181     return "unknown protocol '".$self->protocol."'";
182   }
183 }
184
185
186
187
188
189
190
191
192 =item connect
193
194 Creates a Net::FTP or Net::SFTP::Foreign object (according to the setting
195 of the 'secure' flag), connects to 'hostname', attempts to log in with 
196 'username' and 'password', and changes the working directory to 'path'.
197 On success, returns the object.  On failure, dies with an error message.
198
199 Always returns an error for email targets.
200
201 =cut
202
203 sub connect {
204   my $self = shift;
205   if ( $self->protocol eq 'sftp' ) {
206     eval "use Net::SFTP::Foreign;";
207     die $@ if $@;
208     my %args = (
209       port      => $self->port,
210       user      => $self->username,
211       password  => $self->password,
212       more      => ($DEBUG ? '-v' : ''),
213       timeout   => 30,
214       autodie   => 1, #we're doing this anyway
215     );
216     my $sftp = Net::SFTP::Foreign->new($self->hostname, %args);
217     $sftp->setcwd($self->path);
218     return $sftp;
219   }
220   elsif ( $self->protocol eq 'ftp') {
221     eval "use Net::FTP;";
222     die $@ if $@;
223     my %args = ( 
224       Debug   => $DEBUG,
225       Port    => $self->port,
226       Passive => 1,# optional?
227     );
228     my $ftp = Net::FTP->new($self->hostname, %args)
229       or die "connect to ".$self->hostname." failed: $@";
230     $ftp->login($self->username, $self->password)
231       or die "login to ".$self->username.'@'.$self->hostname." failed: $@";
232     $ftp->binary; #optional?
233     $ftp->cwd($self->path)
234       or ($self->path eq '/')
235       or die "cwd to ".$self->hostname.'/'.$self->path." failed: $@";
236
237     return $ftp;
238   } else {
239     return "can't connect() to a target of type '".$self->protocol."'";
240   }
241 }
242
243 =item label
244
245 Returns a descriptive label for this target.
246
247 =cut
248
249 sub label {
250   my $self = shift;
251   $self->targetnum . ': ' . $self->username . '@' . $self->hostname;
252 }
253
254 =item handling_types
255
256 Returns a list of values for the "handling" field, corresponding to the 
257 known ways to preprocess a file before uploading.  Currently those are 
258 implemented somewhat crudely in L<FS::Cron::upload>.
259
260 =cut
261
262 sub handling_types {
263   '',
264   #'billco', #not implemented this way yet
265   'bridgestone',
266   'ics',
267 }
268
269 =back
270
271 =head1 BUGS
272
273 Handling methods should be here, but instead are in FS::Cron.
274
275 =head1 SEE ALSO
276
277 L<FS::Record>, schema.html from the base documentation.
278
279 =cut
280
281 1;
282