e31a785844
Updated destroy() methods for delete condition If not true then return with the error alert
167 lines
5.7 KiB
PHP
167 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Home;
|
|
use App\Models\IPs;
|
|
use App\Models\Labels;
|
|
use App\Models\Pricing;
|
|
use App\Models\SeedBoxes;
|
|
use App\Models\Shared;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Str;
|
|
|
|
class SeedBoxesController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$seedboxes = SeedBoxes::allSeedboxes();
|
|
return view('seedboxes.index', compact(['seedboxes']));
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
return view('seedboxes.create');
|
|
}
|
|
|
|
public function store(Request $request)
|
|
{
|
|
$request->validate([
|
|
'title' => 'required|string|min:2',
|
|
'hostname' => 'sometimes|nullable|string|min:2',
|
|
'seed_box_type' => 'required|string',
|
|
'provider_id' => 'integer',
|
|
'location_id' => 'integer',
|
|
'price' => 'numeric',
|
|
'payment_term' => 'integer',
|
|
'was_promo' => 'integer',
|
|
'owned_since' => 'sometimes|nullable|date',
|
|
'disk' => 'integer',
|
|
'bandwidth' => 'integer',
|
|
'port_speed' => 'integer',
|
|
'next_due_date' => 'required|date',
|
|
'label1' => 'sometimes|nullable|string',
|
|
'label2' => 'sometimes|nullable|string',
|
|
'label3' => 'sometimes|nullable|string',
|
|
'label4' => 'sometimes|nullable|string',
|
|
]);
|
|
|
|
$seedbox_id = Str::random(8);
|
|
|
|
$pricing = new Pricing();
|
|
$pricing->insertPricing(6, $seedbox_id, $request->currency, $request->price, $request->payment_term, $request->next_due_date);
|
|
|
|
Labels::deleteLabelsAssignedTo($seedbox_id);
|
|
Labels::insertLabelsAssigned([$request->label1, $request->label2, $request->label3, $request->label4], $seedbox_id);
|
|
|
|
SeedBoxes::create([
|
|
'id' => $seedbox_id,
|
|
'title' => $request->title,
|
|
'hostname' => $request->hostname,
|
|
'seed_box_type' => $request->seed_box_type,
|
|
'provider_id' => $request->provider_id,
|
|
'location_id' => $request->location_id,
|
|
'disk' => $request->disk,
|
|
'disk_type' => 'GB',
|
|
'disk_as_gb' => $request->disk,
|
|
'owned_since' => $request->owned_since,
|
|
'bandwidth' => $request->bandwidth,
|
|
'port_speed' => $request->port_speed,
|
|
'was_promo' => $request->was_promo
|
|
]);
|
|
|
|
Cache::forget("all_seedboxes");
|
|
Home::homePageCacheForget();
|
|
|
|
return redirect()->route('seedboxes.index')
|
|
->with('success', 'Seed box created Successfully.');
|
|
|
|
}
|
|
|
|
public function show(SeedBoxes $seedbox)
|
|
{
|
|
$seedbox_data = SeedBoxes::seedbox($seedbox->id);
|
|
return view('seedboxes.show', compact(['seedbox_data']));
|
|
}
|
|
|
|
public function edit(SeedBoxes $seedbox)
|
|
{
|
|
$seedbox_data = SeedBoxes::seedbox($seedbox->id);
|
|
return view('seedboxes.edit', compact(['seedbox_data']));
|
|
}
|
|
|
|
public function update(Request $request, SeedBoxes $seedbox)
|
|
{
|
|
$request->validate([
|
|
'title' => 'required|string|min:2',
|
|
'hostname' => 'sometimes|nullable|string|min:2',
|
|
'seed_box_type' => 'required|string',
|
|
'provider_id' => 'integer',
|
|
'location_id' => 'integer',
|
|
'price' => 'numeric',
|
|
'payment_term' => 'integer',
|
|
'was_promo' => 'integer',
|
|
'owned_since' => 'sometimes|nullable|date',
|
|
'disk' => 'integer',
|
|
'bandwidth' => 'integer',
|
|
'port_speed' => 'integer',
|
|
'next_due_date' => 'required|date',
|
|
'label1' => 'sometimes|nullable|string',
|
|
'label2' => 'sometimes|nullable|string',
|
|
'label3' => 'sometimes|nullable|string',
|
|
'label4' => 'sometimes|nullable|string',
|
|
]);
|
|
|
|
$seedbox->update([
|
|
'title' => $request->title,
|
|
'hostname' => $request->hostname,
|
|
'seed_box_type' => $request->seed_box_type,
|
|
'location_id' => $request->location_id,
|
|
'provider_id' => $request->provider_id,
|
|
'disk' => $request->disk,
|
|
'disk_type' => 'GB',
|
|
'disk_as_gb' => $request->disk,
|
|
'owned_since' => $request->owned_since,
|
|
'bandwidth' => $request->bandwidth,
|
|
'port_speed' => $request->port_speed,
|
|
'was_promo' => $request->was_promo
|
|
]);
|
|
|
|
$pricing = new Pricing();
|
|
$pricing->updatePricing($seedbox->id, $request->currency, $request->price, $request->payment_term, $request->next_due_date);
|
|
|
|
Labels::deleteLabelsAssignedTo($seedbox->id);
|
|
Labels::insertLabelsAssigned([$request->label1, $request->label2, $request->label3, $request->label4], $seedbox->id);
|
|
|
|
Cache::forget("all_seedboxes");
|
|
Cache::forget("seedbox.{$seedbox->id}");
|
|
Cache::forget("labels_for_service.{$seedbox->id}");
|
|
Home::homePageCacheForget();
|
|
|
|
return redirect()->route('seedboxes.index')
|
|
->with('success', 'Seed box updated Successfully.');
|
|
}
|
|
|
|
public function destroy(SeedBoxes $seedbox)
|
|
{
|
|
if ($seedbox->delete()) {
|
|
$p = new Pricing();
|
|
$p->deletePricing($seedbox->id);
|
|
|
|
Labels::deleteLabelsAssignedTo($seedbox->id);
|
|
|
|
Cache::forget("all_seedboxes");
|
|
Cache::forget("seedbox.{$seedbox->id}");
|
|
Home::homePageCacheForget();
|
|
|
|
return redirect()->route('seedboxes.index')
|
|
->with('success', 'Seed box was deleted Successfully.');
|
|
}
|
|
|
|
return redirect()->route('seedboxes.index')
|
|
->with('error', 'Seed box was not deleted.');
|
|
}
|
|
}
|