respect part_svc labels in svc_hardware & svc_cable short service labels, RT#73405
[freeside.git] / FS / FS / svc_hardware.pm
1 package FS::svc_hardware;
2
3 use strict;
4 use base qw( FS::svc_Common );
5 use vars qw( $conf );
6 use FS::Record qw( qsearch qsearchs );
7 use FS::hardware_type;
8 use FS::hardware_status;
9 use FS::Conf;
10
11 FS::UID->install_callback(sub { $conf = FS::Conf->new; });
12
13 =head1 NAME
14
15 FS::svc_hardware - Object methods for svc_hardware records
16
17 =head1 SYNOPSIS
18
19   use FS::svc_hardware;
20
21   $record = new FS::svc_hardware \%hash;
22   $record = new FS::svc_hardware { '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::svc_hardware object represents an equipment installation, such as 
35 a wireless broadband receiver, satellite antenna, or DVR.  FS::svc_hardware 
36 inherits from FS::svc_Common.
37
38 The following fields are currently supported:
39
40 =over 4
41
42 =item svcnum - Primary key
43
44 =item typenum - Device type number (see L<FS::hardware_type>)
45
46 =item ip_addr - IP address
47
48 =item hw_addr - Hardware address
49
50 =item serial - Serial number
51
52 =item smartcard - Smartcard number, for devices that use a smartcard
53
54 =item statusnum - Service status (see L<FS::hardware_status>)
55
56 =item note - Installation notes: location on property, physical access, etc.
57
58 =back
59
60 =head1 METHODS
61
62 =over 4
63
64 =item new HASHREF
65
66 Creates a new svc_hardware object.
67
68 =cut
69
70 sub table { 'svc_hardware'; }
71
72 sub table_info {
73   my %opts = ( 'type' => 'text', 'disable_select' => 1 );
74   {
75     'name'           => 'Hardware', #?
76     'name_plural'    => 'Hardware',
77     'display_weight' => 59,
78     'cancel_weight'  => 86,
79     'manual_require' => 1,
80     'fields' => {
81       'svcnum'    => { label => 'Service' },
82       'typenum'   => { label => 'Device type',
83                        type  => 'select-hardware',
84                        disable_select    => 1,
85                        disable_fixed     => 1,
86                        disable_default   => 1,
87                        disable_inventory => 1,
88                        required => 1,
89                      },
90       'serial'    => { label => 'Serial number', %opts },
91       'hw_addr'   => { label => 'Hardware address', %opts },
92       'ip_addr'   => { label => 'IP address', %opts },
93       'smartcard' => { label => 'Smartcard #', %opts },
94       'statusnum' => { label => 'Service status', 
95                        type  => 'select',
96                        select_table => 'hardware_status',
97                        select_key   => 'statusnum',
98                        select_label => 'label',
99                        disable_inventory => 1,
100                      },
101       'note'      => { label => 'Installation notes', %opts },
102     }
103   }
104 }
105
106 sub search_sql {
107   my ($class, $string) = @_;
108   my @where = ();
109
110   if ( $string =~ /^[\d\.:]+$/ ) {
111     # if the string isn't an IP address, this will waste several seconds
112     # attempting a DNS lookup.  so try to filter those out.
113     my $ip = NetAddr::IP->new($string);
114     if ( $ip ) {
115       push @where, $class->search_sql_field('ip_addr', $ip->addr);
116     }
117   }
118   
119   if ( $string =~ /^(\w+)$/ ) {
120     push @where, 'LOWER(svc_hardware.serial) LIKE \'%'.lc($string).'%\'';
121   }
122
123   if ( $string =~ /^([0-9A-Fa-f]|\W)+$/ ) {
124     my $hex = uc($string);
125     $hex =~ s/\W//g;
126     push @where, 'svc_hardware.hw_addr LIKE \'%'.$hex.'%\'';
127   }
128
129   if ( @where ) {
130     '(' . join(' OR ', @where) . ')';
131   } else {
132     '1 = 0'; #false
133   }
134 }
135
136 sub label {
137   my $self = shift;
138   my $part_svc = $self->cust_svc->part_svc;
139   my @label = ();
140   if (my $type = $self->hardware_type) {
141     push @label, ($part_svc->part_svc_column('typenum') || 'Type:').
142                  $type->description;
143   }
144   if (my $ser = $self->serial) {
145     push @label, ($part_svc->part_svc_column('serial') || 'Serial#'). $ser;
146   }
147   if (my $mac = $self->display_hw_addr) {
148     push @label, ($part_svc->part_svc_column('hw_addr') || 'MAC:'). $mac;
149   }
150   return join(', ', @label);
151 }
152
153 =item insert
154
155 Adds this record to the database.  If there is an error, returns the error,
156 otherwise returns false.
157
158 =item delete
159
160 Delete this record from the database.
161
162 =item replace OLD_RECORD
163
164 Replaces the OLD_RECORD with this one in the database.  If there is an error,
165 returns the error, otherwise returns false.
166
167 # the replace method can be inherited from FS::Record
168
169 =item check
170
171 Checks all fields to make sure this is a valid service.  If there is
172 an error, returns the error, otherwise returns false.  Called by the insert
173 and replace methods.
174
175 =cut
176
177 sub check {
178   my $self = shift;
179   my $conf = FS::Conf->new;
180
181   my $x = $self->setfixed;
182   return $x unless ref $x;
183
184   my $hw_addr = $self->getfield('hw_addr');
185   $hw_addr = join('', split(/[_\W]/, $hw_addr));
186   if ( $conf->exists('svc_hardware-check_mac_addr') ) {
187     $hw_addr = uc($hw_addr);
188     $hw_addr =~ /^[0-9A-F]{12}$/ 
189       or return "Illegal (MAC address) '".$self->getfield('hw_addr')."'";
190   }
191   $self->setfield('hw_addr', $hw_addr);
192
193   my $error = 
194     $self->ut_numbern('svcnum')
195     || $self->ut_foreign_key('typenum', 'hardware_type', 'typenum')
196     || $self->ut_ip46n('ip_addr')
197     || $self->ut_alphan('hw_addr')
198     || $self->ut_alphan('serial')
199     || $self->ut_alphan('smartcard')
200     || $self->ut_foreign_keyn('statusnum', 'hardware_status', 'statusnum')
201     || $self->ut_anything('note')
202   ;
203   return $error if $error;
204
205   if ( !length($self->getfield('hw_addr')) 
206         and !length($self->getfield('serial')) ) {
207     return 'Serial number or hardware address required';
208   }
209  
210   $self->SUPER::check;
211 }
212
213 =item hardware_type
214
215 Returns the L<FS::hardware_type> object associated with this installation.
216
217 =cut
218
219 sub hardware_type {
220   my $self = shift;
221   return qsearchs('hardware_type', { 'typenum' => $self->typenum });
222 }
223
224 =item status_label
225
226 Returns the 'label' field of the L<FS::hardware_status> object associated 
227 with this installation.
228
229 =cut
230
231 sub status_label {
232   my $self = shift;
233   my $status = qsearchs('hardware_status', { 'statusnum' => $self->statusnum })
234     or return '';
235   $status->label;
236 }
237
238 =item display_hw_addr
239
240 Returns the 'hw_addr' field, formatted as a MAC address if the
241 'svc_hardware-check_mac_addr' option is enabled.
242
243 =cut
244
245 sub display_hw_addr {
246   my $self = shift;
247   ($conf->exists('svc_hardware-check_mac_addr') ? 
248     join(':', $self->hw_addr =~ /../g) : $self->hw_addr)
249 }
250
251 =back
252
253 =head1 SEE ALSO
254
255 L<FS::Record>, L<FS::svc_Common>, schema.html from the base documentation.
256
257 =cut
258
259 1;
260