clrghouz/app/Http/Controllers/DomainController.php

119 lines
2.7 KiB
PHP
Raw Normal View History

2021-05-13 12:40:21 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
2023-10-05 11:59:59 +00:00
use Illuminate\Support\Facades\Gate;
2021-05-13 12:40:21 +00:00
use App\Http\Requests\DomainRequest;
use App\Models\{Address,Domain,Zone};
2021-05-13 12:40:21 +00:00
class DomainController extends Controller
{
/**
* Daily stats as shown on the about page
*
* @param Domain $o
* @return Collection
*/
public function api_daily_stats(Request $request): Collection
{
$do = Domain::where('name',$request->name)->firstOrFail();
return $do->daily_area_stats();
}
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()->to('domain');
2021-05-13 12:40:21 +00:00
}
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)];
});
}
2023-10-05 11:59:59 +00:00
public function view(Domain $o)
{
if (! $o->public && ! Gate::check('admin',$o))
abort(404);
$o->load(['zones.system','zones.domain']);
return view('domain.view')
->with('o',$o);
}
}