1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
# This code is part of Perl distribution User-Identity version 4.00.
# The POD got stripped from this file by OODoc version 3.05.
# For contributors see file ChangeLog.
# This software is copyright (c) 2003-2025 by Mark Overmeer.
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
# SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
package User::Identity::System;{
our $VERSION = '4.00';
}
use parent 'User::Identity::Item';
use strict;
use warnings;
use Log::Report 'user-identity';
use User::Identity ();
use Scalar::Util qw/weaken/;
#--------------------
sub type { 'network' }
sub init($)
{ my ($self, $args) = @_;
$self->SUPER::init($args);
exists $args->{$_} && ($self->{'UIS_'.$_} = delete $args->{$_})
for qw/hostname location os password username/;
$self->{UIS_hostname} ||= 'localhost';
$self;
}
#--------------------
sub hostname() { $_[0]->{UIS_hostname} }
sub username() { $_[0]->{UIS_username} }
sub os() { $_[0]->{UIS_os} }
sub password() { $_[0]->{UIS_password} }
sub location()
{ my $self = shift;
my $location = $self->{MI_location} or return;
unless(ref $location)
{ my $user = $self->user or return;
$location = $user->find(location => $location);
}
$location;
}
1;
|