import torrus 1.0.9
[freeside.git] / FS / FS / cdr / broadsoft.pm
1 package FS::cdr::broadsoft;
2
3 use strict;
4 use base qw( FS::cdr );
5 use vars qw( %info );
6 use FS::cdr qw( _cdr_date_parser_maker _cdr_min_parser_maker );
7
8 %info = (
9   'name'          => 'Broadsoft',
10   'weight'        => 500,
11   'header'        => 1,     #0 default, set to 1 to ignore the first line, or
12                             # to higher numbers to ignore that number of lines
13   'type'          => 'csv', #csv (default), fixedlength or xls
14   'sep_char'      => ',',   #for csv, defaults to ,
15   'disabled'      => 0,     #0 default, set to 1 to disable
16
17   #listref of what to do with each field from the CDR, in order
18   'import_fields' => [
19     
20     skip(2),
21     sub { my($cdr, $data, $conf, $param) = @_;
22           $param->{skiprow} = 1 if lc($data) ne 'normal';
23           '' },                                   #  3: type
24             
25     trim('accountcode'),                          #  4: userNumber
26     skip(2),
27     trim('src'),                                  #  7: callingNumber
28     skip(1),
29     trim('dst'),                                  #  9: calledNumber
30
31     _cdr_date_parser_maker('startdate'),          # 10: startTime
32     skip(1),
33     sub { my($cdr, $data) = @_;
34           $cdr->disposition(
35             lc($data) eq 'yes' ? 
36             'ANSWERED' : 'NO ANSWER') },          # 12: answerIndicator
37     _cdr_date_parser_maker('answerdate'),         # 13: answerTime
38     _cdr_date_parser_maker('enddate'),            # 14: releaseTime
39     
40   ],
41
42 );
43
44 sub trim {
45   my $fieldname = shift;
46   return sub {
47     my($cdr, $data) = @_;
48     $data =~ s/^\+1//;
49     $cdr->$fieldname($data);
50     ''
51   }
52 }
53
54 sub skip {
55   map { undef } (1..$_[0]);
56 }
57
58 1;
59
60 __END__
61
62 list of freeside CDR fields, useful ones marked with *
63
64            acctid - primary key
65     *[1]   calldate - Call timestamp (SQL timestamp)
66            clid - Caller*ID with text
67 7   *      src - Caller*ID number / Source number
68 9   *      dst - Destination extension
69            dcontext - Destination context
70            channel - Channel used
71            dstchannel - Destination channel if appropriate
72            lastapp - Last application if appropriate
73            lastdata - Last application data
74 10  *      startdate - Start of call (UNIX-style integer timestamp)
75 13         answerdate - Answer time of call (UNIX-style integer timestamp)
76 14  *      enddate - End time of call (UNIX-style integer timestamp)
77     *      duration - Total time in system, in seconds
78     *      billsec - Total time call is up, in seconds
79 12  *[2]   disposition - What happened to the call: ANSWERED, NO ANSWER, BUSY
80            amaflags - What flags to use: BILL, IGNORE etc, specified on a per
81            channel basis like accountcode.
82 4   *[3]   accountcode - CDR account number to use: account
83            uniqueid - Unique channel identifier
84            userfield - CDR user-defined field
85            cdr_type - CDR type - see FS::cdr_type (Usage = 1, S&E = 7, OC&C = 8)
86     *[4]   charged_party - Service number to be billed
87            upstream_currency - Wholesale currency from upstream
88     *[5]   upstream_price - Wholesale price from upstream
89            upstream_rateplanid - Upstream rate plan ID
90            rated_price - Rated (or re-rated) price
91            distance - km (need units field?)
92            islocal - Local - 1, Non Local = 0
93     *[6]   calltypenum - Type of call - see FS::cdr_calltype
94            description - Description (cdr_type 7&8 only) (used for
95            cust_bill_pkg.itemdesc)
96            quantity - Number of items (cdr_type 7&8 only)
97            carrierid - Upstream Carrier ID (see FS::cdr_carrier)
98            upstream_rateid - Upstream Rate ID
99            svcnum - Link to customer service (see FS::cust_svc)
100            freesidestatus - NULL, done (or something)
101
102 [1] Auto-populated from startdate if not present
103 [2] Package options available to ignore calls without a specific disposition
104 [3] When using 'cdr-charged_party-accountcode' config
105 [4] Auto-populated from src (normal calls) or dst (toll free calls) if not present
106 [5] When using 'upstream_simple' rating method.
107 [6] Set to usage class classnum when using pre-rated CDRs and usage class-based
108     taxation (local/intrastate/interstate/international)