Files
librenms-librenms/app/Models/MplsSap.php

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

52 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use LibreNMS\Interfaces\Models\Keyable;
class MplsSap extends DeviceRelatedModel implements Keyable
{
protected $primaryKey = 'sap_id';
public $timestamps = false;
protected $fillable = [
'svc_id',
'svc_oid',
'sapPortId',
'ifName',
'sapEncapValue',
'device_id',
'sapRowStatus',
'sapType',
'sapDescription',
'sapAdminStatus',
'sapOperStatus',
'sapLastMgmtChange',
'sapLastStatusChange',
];
// ---- Helper Functions ----
/**
* Get a string that can identify a unique instance of this model
2021-09-10 20:09:53 +02:00
*
* @return string
*/
public function getCompositeKey()
{
return $this->svc_oid . '-' . $this->sapPortId . '-' . $this->sapEncapValue;
}
// ---- Define Relationships ----
public function binds(): HasMany
{
return $this->hasMany(\App\Models\MplsSdpBind::class, 'svc_id');
}
public function services(): HasMany
{
return $this->hasMany(\App\Models\MplsService::class, 'svc_id');
}
}