1 package FS::access_user;
4 use base qw( FS::m2m_Common FS::option_Common );
5 use vars qw( $DEBUG $me $conf $htpasswd_file );
8 use FS::Record qw( qsearch qsearchs dbh );
9 use FS::access_user_pref;
10 use FS::access_usergroup;
17 $me = '[FS::access_user]';
19 #kludge htpasswd for now (i hope this bootstraps okay)
20 FS::UID->install_callback( sub {
22 $htpasswd_file = $conf->base_dir. '/htpasswd';
27 FS::access_user - Object methods for access_user records
33 $record = new FS::access_user \%hash;
34 $record = new FS::access_user { 'column' => 'value' };
36 $error = $record->insert;
38 $error = $new_record->replace($old_record);
40 $error = $record->delete;
42 $error = $record->check;
46 An FS::access_user object represents an internal access user. FS::access_user
47 inherits from FS::Record. The following fields are currently supported:
51 =item usernum - primary key
61 =item disabled - empty or 'Y'
71 Creates a new internal access user. To add the user to the database, see L<"insert">.
73 Note that this stores the hash reference, not a distinct copy of the hash it
74 points to. You can ask the object for a copy with the I<hash> method.
78 # the new method can be inherited from FS::Record, if a table method is defined
80 sub table { 'access_user'; }
82 sub _option_table { 'access_user_pref'; }
83 sub _option_namecol { 'prefname'; }
84 sub _option_valuecol { 'prefvalue'; }
88 Adds this record to the database. If there is an error, returns the error,
89 otherwise returns false.
96 my $error = $self->check;
97 return $error if $error;
99 local $SIG{HUP} = 'IGNORE';
100 local $SIG{INT} = 'IGNORE';
101 local $SIG{QUIT} = 'IGNORE';
102 local $SIG{TERM} = 'IGNORE';
103 local $SIG{TSTP} = 'IGNORE';
104 local $SIG{PIPE} = 'IGNORE';
106 my $oldAutoCommit = $FS::UID::AutoCommit;
107 local $FS::UID::AutoCommit = 0;
110 $error = $self->htpasswd_kludge();
112 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
116 $error = $self->SUPER::insert(@_);
119 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
121 #make sure it isn't a dup username? or you could nuke people's passwords
122 #blah. really just should do our own login w/cookies
123 #and auth out of the db in the first place
124 #my $hterror = $self->htpasswd_kludge('-D');
125 #$error .= " - additionally received error cleaning up htpasswd file: $hterror"
129 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
135 sub htpasswd_kludge {
138 return '' if $self->is_system_user;
140 unshift @_, '-c' unless -e $htpasswd_file;
142 system('htpasswd', '-b', @_,
151 return 'htpasswd exited unsucessfully';
157 Delete this record from the database.
164 local $SIG{HUP} = 'IGNORE';
165 local $SIG{INT} = 'IGNORE';
166 local $SIG{QUIT} = 'IGNORE';
167 local $SIG{TERM} = 'IGNORE';
168 local $SIG{TSTP} = 'IGNORE';
169 local $SIG{PIPE} = 'IGNORE';
171 my $oldAutoCommit = $FS::UID::AutoCommit;
172 local $FS::UID::AutoCommit = 0;
176 $self->SUPER::delete(@_)
177 || $self->htpasswd_kludge('-D')
181 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
184 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
190 =item replace OLD_RECORD
192 Replaces the OLD_RECORD with this one in the database. If there is an error,
193 returns the error, otherwise returns false.
200 my $old = ( ref($_[0]) eq ref($new) )
204 local $SIG{HUP} = 'IGNORE';
205 local $SIG{INT} = 'IGNORE';
206 local $SIG{QUIT} = 'IGNORE';
207 local $SIG{TERM} = 'IGNORE';
208 local $SIG{TSTP} = 'IGNORE';
209 local $SIG{PIPE} = 'IGNORE';
211 my $oldAutoCommit = $FS::UID::AutoCommit;
212 local $FS::UID::AutoCommit = 0;
215 if ( $new->_password ne $old->_password ) {
216 my $error = $new->htpasswd_kludge();
218 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
221 } elsif ( $old->disabled && !$new->disabled
222 && $new->_password =~ /changeme/i ) {
223 return "Must change password when enabling this account";
226 my $error = $new->SUPER::replace($old, @_);
229 $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
232 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
240 Checks all fields to make sure this is a valid internal access user. If there is
241 an error, returns the error, otherwise returns false. Called by the insert
246 # the check method should currently be supplied - FS::Record contains some
247 # data checking routines
253 $self->ut_numbern('usernum')
254 || $self->ut_alpha_lower('username')
255 || $self->ut_text('_password')
256 || $self->ut_text('last')
257 || $self->ut_text('first')
258 || $self->ut_foreign_keyn('user_custnum', 'cust_main', 'custnum')
259 || $self->ut_foreign_keyn('report_salesnum', 'sales', 'salesnum')
260 || $self->ut_enum('disabled', [ '', 'Y' ] )
262 return $error if $error;
269 Returns a name string for this user: "Last, First".
275 return $self->username
276 if $self->get('last') eq 'Lastname' && $self->first eq 'Firstname';
277 return $self->get('last'). ', '. $self->first;
282 Returns the FS::cust_main object (see L<FS::cust_main>), if any, for this
289 qsearchs( 'cust_main', { 'custnum' => $self->user_custnum } );
294 Returns the FS::sales object (see L<FS::sales>), if any, for this
301 qsearchs( 'sales', { 'salesnum' => $self->report_salesnum } );
304 =item access_usergroup
306 Returns links to the the groups this user is a part of, as FS::access_usergroup
307 objects (see L<FS::access_usergroup>).
311 sub access_usergroup {
313 qsearch( 'access_usergroup', { 'usernum' => $self->usernum } );
324 #=item access_groupnames
328 #sub access_groupnames {
334 Returns a list of agentnums this user can view (via group membership).
340 my $sth = dbh->prepare(
341 "SELECT DISTINCT agentnum FROM access_usergroup
342 JOIN access_groupagent USING ( groupnum )
344 ) or die dbh->errstr;
345 $sth->execute($self->usernum) or die $sth->errstr;
346 map { $_->[0] } @{ $sth->fetchall_arrayref };
351 Returns a hashref of agentnums this user can view.
357 scalar( { map { $_ => 1 } $self->agentnums } );
360 =item agentnums_sql [ HASHREF | OPTION => VALUE ... ]
362 Returns an sql fragement to select only agentnums this user can view.
364 Options are passed as a hashref or a list. Available options are:
370 The frament will also allow the selection of null agentnums.
374 The fragment will also allow the selection of null agentnums if the current
375 user has the provided access right
379 Optional table name in which agentnum is being checked. Sometimes required to
380 resolve 'column reference "agentnum" is ambiguous' errors.
384 All agents will be viewable if the current user has the provided access right.
385 Defaults to 'View customers of all agents'.
393 my %opt = ref($_[0]) ? %{$_[0]} : @_;
395 my $agentnum = $opt{'table'} ? $opt{'table'}.'.agentnum' : 'agentnum';
399 my $viewall_right = $opt{'viewall_right'} || 'View customers of all agents';
400 if ( $self->access_right($viewall_right) ) {
401 push @or, "$agentnum IS NOT NULL";
403 push @or, "$agentnum IN (". join(',', $self->agentnums). ')';
406 push @or, "$agentnum IS NULL"
408 || ( $opt{'null_right'} && $self->access_right($opt{'null_right'}) );
410 return ' 1 = 0 ' unless scalar(@or);
411 '( '. join( ' OR ', @or ). ' )';
417 Returns true if the user can view the specified agent.
422 my( $self, $agentnum ) = @_;
423 my $sth = dbh->prepare(
424 "SELECT COUNT(*) FROM access_usergroup
425 JOIN access_groupagent USING ( groupnum )
426 WHERE usernum = ? AND agentnum = ?"
427 ) or die dbh->errstr;
428 $sth->execute($self->usernum, $agentnum) or die $sth->errstr;
429 $sth->fetchrow_arrayref->[0];
432 =item agents [ HASHREF | OPTION => VALUE ... ]
434 Returns the list of agents this user can view (via group membership), as
435 FS::agent objects. Accepts the same options as the agentnums_sql method.
443 'hashref' => { disabled=>'' },
444 'extra_sql' => ' AND '. $self->agentnums_sql(@_),
445 'order_by' => 'ORDER BY agent',
449 =item access_right RIGHTNAME | LISTREF
451 Given a right name or a list reference of right names, returns true if this
452 user has this right, or, for a list, one of the rights (currently via group
453 membership, eventually also via user overrides).
458 my( $self, $rightname ) = @_;
460 $rightname = [ $rightname ] unless ref($rightname);
462 warn "$me access_right called on ". join(', ', @$rightname). "\n"
465 #some caching of ACL requests for low-hanging fruit perf improvement
466 #since we get a new $CurrentUser object each page view there shouldn't be any
467 #issues with stickiness
468 if ( $self->{_ACLcache} ) {
470 unless ( grep !exists($self->{_ACLcache}{$_}), @$rightname ) {
471 warn "$me ACL cache hit for ". join(', ', @$rightname). "\n"
473 return scalar( grep $self->{_ACLcache}{$_}, @$rightname );
476 warn "$me ACL cache miss for ". join(', ', @$rightname). "\n"
481 warn "initializing ACL cache\n"
483 $self->{_ACLcache} = {};
487 my $has_right = ' rightname IN ('. join(',', map '?', @$rightname ). ') ';
489 my $sth = dbh->prepare("
490 SELECT groupnum FROM access_usergroup
491 LEFT JOIN access_group USING ( groupnum )
492 LEFT JOIN access_right
493 ON ( access_group.groupnum = access_right.rightobjnum )
495 AND righttype = 'FS::access_group'
498 ") or die dbh->errstr;
499 $sth->execute($self->usernum, @$rightname) or die $sth->errstr;
500 my $row = $sth->fetchrow_arrayref;
502 my $return = $row ? $row->[0] : '';
504 #just caching the single-rightname hits should be enough of a win for now
505 if ( scalar(@$rightname) == 1 ) {
506 $self->{_ACLcache}{${$rightname}[0]} = $return;
513 =item default_customer_view
515 Returns the default customer view for this user, from the
516 "default_customer_view" user preference, the "cust_main-default_view" config,
517 or the hardcoded default, "basics" (formerly "jumbo" prior to 3.0).
521 sub default_customer_view {
524 $self->option('default_customer_view')
525 || $conf->config('cust_main-default_view')
526 || 'basics'; #s/jumbo/basics/ starting with 3.0
530 =item spreadsheet_format [ OVERRIDE ]
532 Returns a hashref of this user's Excel spreadsheet download settings:
533 'extension' (xls or xlsx), 'class' (Spreadsheet::WriteExcel or
534 Excel::Writer::XLSX), and 'mime_type'. If OVERRIDE is 'XLS' or 'XLSX',
535 use that instead of the user's setting.
539 # is there a better place to put this?
543 class => 'Spreadsheet::WriteExcel',
544 mime_type => 'application/vnd.ms-excel',
547 extension => '.xlsx',
548 class => 'Excel::Writer::XLSX',
549 mime_type => # it's on wikipedia, it must be true
550 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
554 sub spreadsheet_format {
556 my $override = shift;
559 || $self->option('spreadsheet_format')
560 || $conf->config('spreadsheet_format')
568 Returns true if this user has the name of a known system account. These
569 users will not appear in the htpasswd file and can't have passwords set.
575 return grep { $_ eq $self->username } ( qw(
588 qsearch( 'sched_item', { 'usernum' => $self->usernum } );
597 L<FS::Record>, schema.html from the base documentation.