clrghouz/app/Http/Controllers/DomainController.php

104 lines
2.4 KiB
PHP
Raw Normal View History

2021-05-13 12:40:21 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Collection;
2021-05-13 12:40:21 +00:00
use Illuminate\Http\Request;
use App\Http\Requests\DomainRequest;
use App\Models\{Address,Domain,Zone};
2021-05-13 12:40:21 +00:00
class DomainController extends Controller
{
// http://ftsc.org/docs/frl-1002.001
public const NUMBER_MAX = 0x7fff;
2021-05-13 12:40:21 +00:00
/**
* Add or edit a domain
2021-05-13 12:40:21 +00:00
*/
public function add_edit(DomainRequest $request,Domain $o)
2021-05-13 12:40:21 +00:00
{
if ($request->post()) {
foreach (['name','dnsdomain','active','public','homepage','notes','flatten'] as $key)
2021-05-13 12:40:21 +00:00
$o->{$key} = $request->post($key);
$o->save();
return redirect()->action([self::class,'home']);
}
return view('domain.addedit')
->with('o',$o);
}
/**
* Get all the hosts for a zone of a particular region (or not)
*
* @param Zone $o
* @param int $region
* @return Collection
*/
public function api_hosts(Zone $o,int $region): Collection
{
$oo = Address::where('role',Address::NODE_NC)
->where('zone_id',$o->id)
2022-02-03 06:35:52 +00:00
->when($region,function($query,$region) { return $query->where('region_id',$region); })
2021-07-02 13:19:50 +00:00
->when((! $region),function($query) use ($region) { return $query->where('region_id',0); })
->where('point_id',0)
->FTNorder()
->with(['system'])
->get();
return $oo->map(function($item) {
2021-06-26 01:48:55 +00:00
return ['id'=>$item->host_id,'value'=>sprintf('%s %s',$item->ftn_3d,$item->system->name)];
});
}
/**
* Find all the hubs for a host
*
* @param Zone $o
* @param int $host
* @return Collection
*/
public function api_hubs(Zone $o,int $host): Collection
{
2022-02-03 06:35:52 +00:00
$oo = Address::where('role',Address::NODE_HC)
->where('zone_id',$o->id)
->when($host,function($query,$host) { return $query->where('host_id',$host)->where('node_id','<>',0); })
->with(['system'])
->get();
return $oo->map(function($item) {
2021-06-26 01:48:55 +00:00
return ['id'=>$item->id,'value'=>sprintf('%s %s',$item->ftn_3d,$item->system->name)];
});
}
/**
* Get all the regions for a zone
*
* @param Zone $o
* @return Collection
*/
public function api_regions(Zone $o): Collection
{
$oo = Address::where('role',Address::NODE_RC)
->where('zone_id',$o->id)
->where('node_id',0)
->where('point_id',0)
->orderBy('region_id')
2023-07-29 03:17:36 +00:00
->active()
->with(['system'])
->get();
return $oo->map(function($item) {
2021-06-26 01:48:55 +00:00
return ['id'=>$item->region_id,'value'=>sprintf('%s %s',$item->ftn_3d,$item->system->location)];
});
}
2021-05-13 12:40:21 +00:00
public function home()
{
return view('domain.home');
}
}