1 package FS::prepay_credit;
5 use FS::Record qw(qsearchs dbh);
12 FS::prepay_credit - Object methods for prepay_credit records
16 use FS::prepay_credit;
18 $record = new FS::prepay_credit \%hash;
19 $record = new FS::prepay_credit {
20 'identifier' => '4198123455512121'
24 $record = new FS::prepay_credit {
25 'identifier' => '4198123455512121'
30 $error = $record->insert;
32 $error = $new_record->replace($old_record);
34 $error = $record->delete;
36 $error = $record->check;
40 An FS::prepay_credit object represents a pre-paid card. FS::prepay_credit
41 inherits from FS::Record. The following
42 fields are currently supported:
46 =item field - description
48 =item identifier - identifier entered by the user to receive the credit
50 =item amount - amount of the credit
52 =item seconds - time amount of credit (see L<FS::svc_acct/seconds>)
54 =item agentnum - optional agent (see L<FS::agent>) for this prepaid card
64 Creates a new pre-paid credit. To add the pre-paid credit to the database, see
67 Note that this stores the hash reference, not a distinct copy of the hash it
68 points to. You can ask the object for a copy with the I<hash> method.
72 sub table { 'prepay_credit'; }
76 Adds this record to the database. If there is an error, returns the error,
77 otherwise returns false.
83 Delete this record from the database.
87 =item replace OLD_RECORD
89 Replaces the OLD_RECORD with this one in the database. If there is an error,
90 returns the error, otherwise returns false.
96 Checks all fields to make sure this is a valid pre-paid credit. If there is
97 an error, returns the error, otherwise returns false. Called by the insert
105 my $identifier = $self->identifier;
106 $identifier =~ s/\W//g; #anything else would just confuse things
107 $self->identifier($identifier);
109 $self->ut_numbern('prepaynum')
110 || $self->ut_alpha('identifier')
111 || $self->ut_money('amount')
112 || $self->ut_numbern('seconds')
113 || $self->ut_numbern('upbytes')
114 || $self->ut_numbern('downbytes')
115 || $self->ut_numbern('totalbytes')
116 || $self->ut_foreign_keyn('agentnum', 'agent', 'agentnum')
117 || $self->SUPER::check
124 Returns the agent (see L<FS::agent>) for this prepaid card, if any.
130 qsearchs('agent', { 'agentnum' => $self->agentnum } );
139 =item generate NUM TYPE LENGTH HASHREF
141 Generates the specified number of prepaid cards. Returns an array reference of
142 the newly generated card identifiers, or a scalar error message.
146 #false laziness w/agent::generate_reg_codes
148 my( $num, $type, $length, $hashref ) = @_;
151 push @codeset, ( 'A'..'Z' ) if $type =~ /alpha/;
152 push @codeset, ( '1'..'9' ) if $type =~ /numeric/;
155 local $SIG{HUP} = 'IGNORE';
156 local $SIG{INT} = 'IGNORE';
157 local $SIG{QUIT} = 'IGNORE';
158 local $SIG{TERM} = 'IGNORE';
159 local $SIG{TSTP} = 'IGNORE';
160 local $SIG{PIPE} = 'IGNORE';
162 my $oldAutoCommit = $FS::UID::AutoCommit;
163 local $FS::UID::AutoCommit = 0;
166 my $condup = 0; #don't retry forever
171 my $identifier = join('', map($codeset[int(rand $#codeset)], (1..$length) ) );
173 redo if qsearchs('prepay_credit',{identifier=>$identifier}) && $condup++<23;
176 my $prepay_credit = new FS::prepay_credit {
177 'identifier' => $identifier,
180 my $error = $prepay_credit->check || $prepay_credit->insert;
182 $dbh->rollback if $oldAutoCommit;
183 return "(inserting prepay_credit) $error";
185 push @cards, $prepay_credit->identifier;
188 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
198 L<FS::svc_acct>, L<FS::Record>, schema.html from the base documentation.