* allow port name to be changed on pseudo devices, was once added in commit 1f020e07ee
* also allow this for location and contact
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
package App::Netdisco::Worker::Plugin::Location;
 | 
						|
 | 
						|
use Dancer ':syntax';
 | 
						|
use App::Netdisco::Worker::Plugin;
 | 
						|
use aliased 'App::Netdisco::Worker::Status';
 | 
						|
 | 
						|
use App::Netdisco::Transport::SNMP;
 | 
						|
 | 
						|
register_worker({ phase => 'check' }, sub {
 | 
						|
  return Status->error('Missing device (-d).')
 | 
						|
    unless defined shift->device;
 | 
						|
  return Status->done('Location is able to run');
 | 
						|
});
 | 
						|
 | 
						|
register_worker({ phase => 'main', driver => 'snmp' }, sub {
 | 
						|
  my ($job, $workerconf) = @_;
 | 
						|
  my ($device, $data) = map {$job->$_} qw/device extra/;
 | 
						|
 | 
						|
  # update pseudo devices directly in database
 | 
						|
  unless ($device->is_pseudo()) {
 | 
						|
    # snmp connect using rw community
 | 
						|
    my $snmp = App::Netdisco::Transport::SNMP->writer_for($device)
 | 
						|
      or return Status->defer("failed to connect to $device to update location");
 | 
						|
 | 
						|
    my $rv = $snmp->set_location($data);
 | 
						|
 | 
						|
    if (!defined $rv) {
 | 
						|
      return Status->error(
 | 
						|
        "failed to set location on $device: ". ($snmp->error || ''));
 | 
						|
    }
 | 
						|
 | 
						|
    # confirm the set happened
 | 
						|
    $snmp->clear_cache;
 | 
						|
    my $new_data = ($snmp->location || '');
 | 
						|
    if ($new_data ne $data) {
 | 
						|
      return Status->error("verify of location failed on $device: $new_data");
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  # update netdisco DB
 | 
						|
  $device->update({location => $data});
 | 
						|
 | 
						|
  return Status->done("Updated location on $device to [$data]");
 | 
						|
});
 | 
						|
 | 
						|
true;
 |