119 lines
2.8 KiB
PHP
119 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Line;
|
|
use App\Models\Plant;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ModulePlantLineController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function get_modulePlantLine(Request $request)
|
|
{
|
|
$expectedUser = env('API_AUTH_USER');
|
|
$expectedPw = env('API_AUTH_PW');
|
|
|
|
$header_auth = $request->header('Authorization');
|
|
$expectedToken = $expectedUser . ':' . $expectedPw;
|
|
|
|
if ("Bearer " . $expectedToken != $header_auth)
|
|
{
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => 'Invalid authorization token!'
|
|
], 403);
|
|
}
|
|
|
|
$plantName = $request->header('plant-name');
|
|
|
|
if (empty($plantName))
|
|
{
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "Plant Name can't be empty!"
|
|
], 404);
|
|
}
|
|
|
|
$plant = Plant::where('name', $plantName)->first();
|
|
|
|
if (!$plant) {
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "Plant '{$plantName}' not found!"
|
|
], 404);
|
|
}
|
|
|
|
// // Get line names for the plant
|
|
// $lineNames = Line::where('plant_id', $plant->id)
|
|
// ->orderBy('created_at', 'asc')
|
|
// ->pluck('name')
|
|
// ->prepend('All Lines')
|
|
// ->values();
|
|
|
|
// return response()->json([
|
|
// 'status_code' => 'SUCCESS',
|
|
// 'status_description' => $lineNames,
|
|
// ], 200);
|
|
|
|
$lineNames = Line::where('plant_id', $plant->id)
|
|
->orderBy('created_at', 'asc')
|
|
->pluck('name');
|
|
|
|
if ($lineNames->isEmpty()) {
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "No lines found for plant '{$plantName}'"
|
|
], 404);
|
|
}
|
|
|
|
// Prepend 'All Lines'
|
|
$lineNames->prepend('All Lines')->values();
|
|
|
|
return response()->json([
|
|
'status_code' => 'SUCCESS',
|
|
'status_description' => $lineNames,
|
|
], 200);
|
|
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function show(string $id)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update(Request $request, string $id)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function destroy(string $id)
|
|
{
|
|
//
|
|
}
|
|
}
|