Files
librenms-librenms/app/Models/Port.php
T

128 lines
2.7 KiB
PHP
Raw Normal View History

2018-05-09 08:05:17 -05:00
<?php
namespace App\Models;
class Port extends BaseModel
{
public $timestamps = false;
protected $primaryKey = 'port_id';
// ---- Helper Functions ----
/**
* Returns a human readable label for this port
*
* @return string
*/
public function getLabel()
{
if ($this->ifName) {
return $this->ifName;
}
if ($this->ifDescr) {
return $this->ifDescr;
}
return $this->ifIndex;
}
// ---- Accessors/Mutators ----
public function getIfPhysAddressAttribute($mac)
{
if (!empty($mac)) {
return preg_replace('/(..)(..)(..)(..)(..)(..)/', '\\1:\\2:\\3:\\4:\\5:\\6', $mac);
}
return null;
}
// ---- Query scopes ----
public function scopeIsDeleted($query)
{
return $query->where([
['deleted', 1],
]);
}
public function scopeIsNotDeleted($query)
{
return $query->where([
['deleted', 0],
]);
}
public function scopeIsUp($query)
{
return $query->where([
['deleted', '=', 0],
['ignore', '=', 0],
['ifOperStatus', '=', 'up'],
]);
}
public function scopeIsDown($query)
{
return $query->where([
['deleted', '=', 0],
['ignore', '=', 0],
['ifOperStatus', '=', 'down'],
['ifAdminStatus', '=', 'up'],
]);
}
public function scopeIsIgnored($query)
{
return $query->where([
['deleted', '=', 0],
['ignore', '=', 1],
]);
}
public function scopeIsDisabled($query)
{
return $query->where([
['deleted', '=', 0],
['ignore', '=', 0],
['ifAdminStatus', '=', 'down'],
]);
}
public function scopeHasErrors($query)
{
return $query->where(function ($query) {
$query->where('ifInErrors_delta', '>', 0)
->orWhere('ifOutErrors_delta', '>', 0);
});
}
public function scopeHasAccess($query, User $user)
{
return $this->hasPortAccess($query, $user);
}
// ---- Define Relationships ----
public function device()
{
return $this->belongsTo('App\Models\Device', 'device_id', 'device_id');
}
public function users()
{
// FIXME does not include global read
return $this->belongsToMany('App\Models\User', 'ports_perms', 'port_id', 'user_id');
}
public function ipv4()
{
2018-08-11 23:37:45 +02:00
return $this->hasMany('App\Models\Ipv4Address', 'port_id');
2018-05-09 08:05:17 -05:00
}
public function ipv6()
{
2018-08-11 23:37:45 +02:00
return $this->hasMany('App\Models\Ipv6Address', 'port_id');
2018-05-09 08:05:17 -05:00
}
}