librenms/app/Models/IsisAdjacency.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
* IsisAdjacency.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @link http://librenms.org
2021-09-10 18:09:53 +00:00
*
* @copyright 2021 Otto Reinikainen
* @author Otto Reinikainen <otto@ottorei.fi>
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use LibreNMS\Interfaces\Models\Keyable;
class IsisAdjacency extends PortRelatedModel implements Keyable
{
use HasFactory;
//public $primaryKey = 'id';
public $timestamps = false;
protected $fillable = [
'device_id',
'index',
'port_id',
'ifIndex',
'isisCircAdminState',
'isisISAdjState',
'isisISAdjNeighSysType',
'isisISAdjNeighSysID',
'isisISAdjNeighPriority',
'isisISAdjLastUpTime',
'isisISAdjAreaAddress',
'isisISAdjIPAddrType',
'isisISAdjIPAddrAddress',
];
// ---- Define Relationships ----
public function device()
{
return $this->belongsTo(\App\Models\Port::class, 'device_id');
}
public function getCompositeKey()
{
return $this->ifIndex . $this->index;
}
}