* initial v0 creator * working json api for generic reports * add require login * move report swagger into plugin, and set new default layout of noop * require proper role and also use new util func * start to tidy authn * some work on cleaning up web authn * clean up the authN checks * fix bug * fix the auth for api * fixes to json handling * set swagger sort order * enable most reports for api endpoints * fix doc * add paramters to reports * add missed report * allow api_parameters in reports config * reorganise api * add vlan search * add port search * make sure to enable layout processing * add device search * add v1 to api paths * add Node Search * support api_responses * add device object search; fix spurious ports field in device result class * handle some plugins just returning undef if search fails * errors from api seamlessley * fix error in date range default * more sensible default for prefix * change order of endpoints in swagger-ui * all db row classes can now TO_JSON * add device_port api endpoint * add device ports endpoint * do not expand docs * add swagger ui json tree formatter * add all relations from Device table * add port relations * add nodes retrieve on device or vlan * rename to GetAPIKey * update config for previous commit
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
package App::Netdisco::Web::Device;
 | 
						||
 | 
						||
use Dancer ':syntax';
 | 
						||
use Dancer::Plugin::Ajax;
 | 
						||
use Dancer::Plugin::DBIC;
 | 
						||
use Dancer::Plugin::Auth::Extensible;
 | 
						||
 | 
						||
use URI ();
 | 
						||
use URL::Encode 'url_params_mixed';
 | 
						||
use App::Netdisco::Util::Device 'match_to_setting';
 | 
						||
 | 
						||
# build view settings for port connected nodes and devices
 | 
						||
set('connected_properties' => [
 | 
						||
  sort { $a->{idx} <=> $b->{idx} }
 | 
						||
  map  {{ name => $_, %{ setting('sidebar_defaults')->{'device_ports'}->{$_} } }}
 | 
						||
  grep { $_ =~ m/^n_/ } keys %{ setting('sidebar_defaults')->{'device_ports'} }
 | 
						||
]);
 | 
						||
 | 
						||
hook 'before_template' => sub {
 | 
						||
  my $tokens = shift;
 | 
						||
 | 
						||
  # allow checking of discoverability of remote connected device
 | 
						||
  $tokens->{has_snmp} = sub { not match_to_setting(shift, 'discover_no_type') };
 | 
						||
 | 
						||
  my $defaults = var('sidebar_defaults')->{'device_ports'}
 | 
						||
    or return;
 | 
						||
 | 
						||
  # override ports form defaults with cookie settings
 | 
						||
  # always do this so that embedded links to device ports page have user prefs
 | 
						||
  if (param('reset')) {
 | 
						||
    cookie('nd_ports-form' => '', expires => '-1 day');
 | 
						||
  }
 | 
						||
  elsif (my $cookie = cookie('nd_ports-form')) {
 | 
						||
    my $cdata = url_params_mixed($cookie);
 | 
						||
 | 
						||
    if ($cdata and (ref {} eq ref $cdata)) {
 | 
						||
      foreach my $key (keys %{ $defaults }) {
 | 
						||
        $defaults->{$key} = $cdata->{$key};
 | 
						||
      }
 | 
						||
    }
 | 
						||
  }
 | 
						||
 | 
						||
  # used in the device search sidebar template to set selected items
 | 
						||
  foreach my $opt (qw/hgroup lgroup/) {
 | 
						||
      my $p = (ref [] eq ref param($opt) ? param($opt)
 | 
						||
                                          : (param($opt) ? [param($opt)] : []));
 | 
						||
      $tokens->{"${opt}_lkp"} = { map { $_ => 1 } @$p };
 | 
						||
  }
 | 
						||
 | 
						||
  return if param('reset')
 | 
						||
    or not var('sidebar_key') or (var('sidebar_key') ne 'device_ports');
 | 
						||
 | 
						||
  # update cookie from params we just recieved in form submit
 | 
						||
  my $uri = URI->new();
 | 
						||
  foreach my $key (keys %{ $defaults }) {
 | 
						||
    $uri->query_param($key => param($key));
 | 
						||
  }
 | 
						||
  cookie('nd_ports-form' => $uri->query(), expires => '365 days');
 | 
						||
};
 | 
						||
 | 
						||
get '/device' => require_login sub {
 | 
						||
    my $q = param('q');
 | 
						||
    my $devices = schema('netdisco')->resultset('Device');
 | 
						||
 | 
						||
    # we are passed either dns or ip
 | 
						||
    my $dev = $devices->search({
 | 
						||
        -or => [
 | 
						||
            \[ 'host(me.ip) = ?' => [ bind_value => $q ] ],
 | 
						||
            'me.dns' => $q,
 | 
						||
        ],
 | 
						||
    });
 | 
						||
 | 
						||
    if ($dev->count == 0) {
 | 
						||
        return redirect uri_for('/', {nosuchdevice => 1, device => $q})->path_query;
 | 
						||
    }
 | 
						||
 | 
						||
    # if passed dns, need to check for duplicates
 | 
						||
    # and use only ip for q param, if there are duplicates.
 | 
						||
    my $first = $dev->first;
 | 
						||
    my $others = ($devices->search({dns => $first->dns})->count() - 1);
 | 
						||
 | 
						||
    params->{'tab'} ||= 'details';
 | 
						||
    template 'device', {
 | 
						||
      display_name => ($others ? $first->ip : ($first->dns || $first->ip)),
 | 
						||
      lgroup_list => [ schema('netdisco')->resultset('Device')->get_distinct_col('location') ],
 | 
						||
      hgroup_list => setting('host_group_displaynames'),
 | 
						||
      device => params->{'tab'},
 | 
						||
    }, { layout => 'main' };
 | 
						||
};
 | 
						||
 | 
						||
true;
 |