108 lines
2.6 KiB
PHP
108 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Line;
|
|
use App\Models\Plant;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ModuleProductionFGLineController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function get_moduleFGFilterList(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');
|
|
$FGName = $request->header('fg-lines');
|
|
|
|
if (empty($plantName)) {
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "Plant name can't be empty!"
|
|
], 404);
|
|
}
|
|
|
|
if (empty($FGName)) {
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "FG line 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);
|
|
}
|
|
|
|
$fgLines = Line::where('plant_id', $plant->id)
|
|
->where('type', $FGName)
|
|
->pluck('name'); // Only get line names
|
|
|
|
if ($fgLines->isEmpty()) {
|
|
return response()->json([
|
|
'status_code' => 'ERROR',
|
|
'status_description' => "No FG lines found for the selected plant and line!"
|
|
], 404);
|
|
}
|
|
|
|
return response()->json([
|
|
'status_code' => 'SUCCESS',
|
|
'status_description' => $fgLines,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 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)
|
|
{
|
|
//
|
|
}
|
|
}
|