1 package FS::access_right;
6 use FS::Record qw( qsearch qsearchs );
7 use FS::upgrade_journal;
10 @ISA = qw(FS::Record);
14 FS::access_right - Object methods for access_right records
20 $record = new FS::access_right \%hash;
21 $record = new FS::access_right { 'column' => 'value' };
23 $error = $record->insert;
25 $error = $new_record->replace($old_record);
27 $error = $record->delete;
29 $error = $record->check;
33 An FS::access_right object represents a granted access right. FS::access_right
34 inherits from FS::Record. The following fields are currently supported:
38 =item rightnum - primary key
55 Creates a new right. To add the right to the database, see L<"insert">.
57 Note that this stores the hash reference, not a distinct copy of the hash it
58 points to. You can ask the object for a copy with the I<hash> method.
62 # the new method can be inherited from FS::Record, if a table method is defined
64 sub table { 'access_right'; }
68 Adds this record to the database. If there is an error, returns the error,
69 otherwise returns false.
73 # the insert method can be inherited from FS::Record
77 Delete this record from the database.
81 # the delete method can be inherited from FS::Record
83 =item replace OLD_RECORD
85 Replaces the OLD_RECORD with this one in the database. If there is an error,
86 returns the error, otherwise returns false.
90 # the replace method can be inherited from FS::Record
94 Checks all fields to make sure this is a valid right. If there is
95 an error, returns the error, otherwise returns false. Called by the insert
100 # the check method should currently be supplied - FS::Record contains some
101 # data checking routines
107 $self->ut_numbern('rightnum')
108 || $self->ut_text('righttype')
109 || $self->ut_text('rightobjnum')
110 || $self->ut_text('rightname')
112 return $error if $error;
119 # Used by FS::Upgrade to migrate to a new database.
121 sub _upgrade_data { # class method
122 my ($class, %opts) = @_;
124 my @unmigrated = ( qsearch( 'access_right',
125 { 'righttype'=>'FS::access_group',
126 'rightname'=>'Engineering configuration',
129 qsearch( 'access_right',
130 { 'righttype'=>'FS::access_group',
131 'rightname'=>'Engineering global configuration',
135 foreach ( @unmigrated ) {
136 my $rightname = $_->rightname;
137 $rightname =~ s/Engineering/Dialup/;
138 $_->rightname($rightname);
139 my $error = $_->replace;
140 die "Failed to update access right: $error"
142 my $broadband = new FS::access_right { $_->hash };
143 $rightname =~ s/Dialup/Broadband/;
144 $broadband->rightnum('');
145 $broadband->rightname($rightname);
146 $error = $broadband->insert;
147 die "Failed to insert access right: $error"
152 'Post payment' => [ 'Post check payment', 'Post cash payment' ],
153 'Process payment' => [ 'Process credit card payment', 'Process Echeck payment' ],
154 'Post refund' => [ 'Post check refund', 'Post cash refund' ],
155 'Refund payment' => [ 'Refund credit card payment', 'Refund Echeck payment' ],
156 'Regular void' => [ 'Void payments' ],
157 'Unvoid' => [ 'Unvoid payments', 'Unvoid invoices' ],
160 foreach my $oldright (keys %migrate) {
161 my @old = qsearch('access_right', { 'righttype'=>'FS::access_group',
162 'rightname'=>$oldright,
166 foreach my $old ( @old ) {
168 foreach my $newright ( @{ $migrate{$oldright} } ) {
170 'righttype' => 'FS::access_group',
171 'rightobjnum' => $old->rightobjnum,
172 'rightname' => $newright,
174 next if qsearchs('access_right', \%hash);
175 my $access_right = new FS::access_right \%hash;
176 my $error = $access_right->insert;
177 die $error if $error;
180 unless ( $oldright =~ / (payment|refund)$/ ) { #after the WEST stuff is sorted
181 my $error = $old->delete;
182 die $error if $error;
189 my @all_groups = qsearch('access_group', {});
191 #tie my %onetime, 'Tie::IxHash',
193 'List customers' => 'List all customers',
194 'List all customers' => 'Advanced customer search',
195 'List packages' => 'Summarize packages',
196 'Post payment' => 'Backdate payment',
197 'Cancel customer package immediately' => 'Un-cancel customer package',
198 'Suspend customer package' => 'Suspend customer',
199 'Unsuspend customer package' => 'Unsuspend customer',
200 'New prospect' => 'Generate quotation',
201 'Delete invoices' => 'Void invoices',
202 'List invoices' => 'List quotations',
203 'Post credit' => 'Credit line items',
204 #'View customer tax exemptions' => 'Edit customer tax exemptions',
205 'Edit customer' => 'Edit customer tax exemptions',
206 'Edit package definitions' => 'Bulk edit package definitions',
208 'List services' => [ 'Services: Accounts',
210 'Services: Certificates',
211 'Services: Mail forwards',
212 'Services: Virtual hosting services',
213 'Services: Wireless broadband services',
215 'Services: Dish services',
216 'Services: Hardware',
217 'Services: Phone numbers',
220 'Services: Mailing lists',
221 'Services: External services',
224 'Services: Accounts' => 'Services: Accounts: Advanced search',
225 'Services: Wireless broadband services' => 'Services: Wireless broadband services: Advanced search',
226 'Services: Hardware' => 'Services: Hardware: Advanced search',
227 'Services: Phone numbers' => 'Services: Phone numbers: Advanced search',
229 'Services: Accounts' => 'Services: Alarm services',
231 'List rating data' => [ 'Usage: RADIUS sessions',
232 'Usage: Call Detail Records (CDRs)',
233 'Usage: Unrateable CDRs',
235 'Provision customer service' => [ 'Edit password' ],
236 'Financial reports' => [ 'Employees: Commission Report',
237 'Employees: Audit Report',
239 'Change customer package' => 'Detach customer package',
240 'Services: Accounts' => 'Services: Cable Subscribers',
241 'Bulk change customer packages' => 'Bulk move customer services',
242 'Configuration' => 'Edit sales people',
243 'Configuration' => 'Alarm global configuration',
244 'Services: Accounts' => 'Services: Conferencing',
245 'Services: Accounts' => 'Services: Video',
246 'Edit global package definitions' => 'Edit package definition costs',
247 'Add on-the-fly credit reason' => 'Add on-the-fly refund reason',
248 'Configuration' => 'Edit global fee definitions',
249 'Edit package definition costs' => 'View package definition costs',
250 'List prospects' => 'List contacts',
251 'List customers' => 'List contacts',
252 'Backdate payment' => 'Backdate credit',
253 'Generate quotation' => 'Disable quotation',
254 'Void credit' => 'Void credit',
255 'Unvoid credit' => 'Unvoid credit',
256 'Add on-the-fly void credit reason' => 'Add on-the-fly void credit reason',
259 # foreach my $old_acl ( keys %onetime ) {
261 # my @new_acl = ref($onetime{$old_acl})
262 # ? @{ $onetime{$old_acl} }
263 # : ( $onetime{$old_acl} );
267 my( $old_acl, $new_acl ) = splice(@onetime, 0, 2);
268 my @new_acl = ref($new_acl) ? @$new_acl : ( $new_acl );
270 foreach my $new_acl ( @new_acl ) {
272 ( my $journal = 'ACL_'.lc($new_acl) ) =~ s/\W/_/g;
273 next if FS::upgrade_journal->is_done($journal);
275 # grant $new_acl to all groups who have $old_acl
276 for my $group (@all_groups) {
277 next unless $group->access_right($old_acl);
278 next if $group->access_right($new_acl);
279 my $access_right = FS::access_right->new( {
280 'righttype' => 'FS::access_group',
281 'rightobjnum' => $group->groupnum,
282 'rightname' => $new_acl,
284 my $error = $access_right->insert;
285 die $error if $error;
288 FS::upgrade_journal->set_done($journal);
294 ### ACL_download_report_data
295 if ( !FS::upgrade_journal->is_done('ACL_download_report_data') ) {
298 for my $group (@all_groups) {
299 my $access_right = FS::access_right->new( {
300 'righttype' => 'FS::access_group',
301 'rightobjnum' => $group->groupnum,
302 'rightname' => 'Download report data',
304 my $error = $access_right->insert;
305 warn $error if $error;
308 FS::upgrade_journal->set_done('ACL_download_report_data');
321 L<FS::Record>, schema.html from the base documentation.