Files
lucent-laravel/src/Http/Controller/RecordController.php
T

413 lines
13 KiB
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
namespace Lucent\Http\Controller;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Lucent\Account\AccountService;
use Lucent\Account\AuthService;
use Lucent\Channel\ChannelService;
use Lucent\LucentException;
use Lucent\Query\Operator;
use Lucent\Query\Query;
use Lucent\Record\Manager;
use Lucent\Record\QueryRecord;
use Lucent\Record\RecordService;
2023-10-04 13:32:30 +03:00
use Lucent\Schema\System;
2023-10-02 23:10:49 +03:00
use Lucent\Schema\Validator\ValidatorException;
use Lucent\Svelte\Svelte;
use function Lucent\Response\fail;
use function Lucent\Response\ok;
class RecordController extends Controller
{
public function __construct(
private readonly RecordService $recordService,
private readonly AccountService $accountService,
private readonly AuthService $authService,
private readonly ChannelService $channelService,
private readonly Svelte $svelte,
private readonly Query $query,
private readonly Manager $recordManager
)
{
}
public function index(Request $request)
{
$schemaName = $request->route("schemaName");
2023-10-17 22:57:25 +03:00
if(!in_array($schemaName,$this->accountService->currentReadableSchemas())){
return $this->svelte->render(
layout: "channel",
view: "recordNotFound",
title: "Schema Not Found",
);
}
2023-10-02 23:10:49 +03:00
$users = $this->accountService->all();
2023-10-04 13:32:30 +03:00
$schema = $this->channelService->getSchema($schemaName)->get();
2023-10-02 23:10:49 +03:00
$urlParams = $request->all();
$sort = data_get($urlParams, "sort") ?? "-_sys.updatedAt";
$filter = data_get($urlParams, "filter") ?? [];
2023-10-17 22:57:25 +03:00
2023-10-02 23:10:49 +03:00
$arguments = array_merge([
2023-10-04 13:32:30 +03:00
"schema" => $schema->name,
"status_in" => "draft,published",
2023-10-02 23:10:49 +03:00
], $filter);
$skip = data_get($urlParams, "skip") ?? 0;
$limit = 15;
$records = [];
$graphArray = null;
2023-10-04 13:32:30 +03:00
$graph = $this->query
->filter($arguments)
->limit($limit)
->status(explode(",", $arguments["status_in"]))
->skip($skip)
->sort($sort)
->childrenDepth(1)
->parentsDepth(0)
->runWithCount();
2023-10-15 23:40:34 +03:00
2023-10-04 13:32:30 +03:00
$records = $graph->getRootRecords()->toArray();
2023-10-02 23:10:49 +03:00
$data = [
"schemas" => $this->channelService->channel->schemas,
"schema" => $schema,
"users" => $users,
"records" => $records,
2023-10-04 13:32:30 +03:00
"graph" => toArray($graph),
2023-10-02 23:10:49 +03:00
"systemFields" => array_values(System::list()),
"operators" => array_values(Operator::list()),
"sort" => $sort,
"limit" => $limit,
"skip" => $skip,
2023-10-04 13:32:30 +03:00
"total" => $graph->total ?? 0,
2023-10-02 23:10:49 +03:00
"filter" => $request->input("filter") ?? [],
"inModal" => true,
2023-10-17 22:57:25 +03:00
"isWritable" => in_array($schemaName,$this->accountService->currentWritableSchemas())
2023-10-02 23:10:49 +03:00
];
if ($request->ajax()) {
$data["modalUrl"] = $request->fullUrl();
2023-10-16 16:12:21 +03:00
if (str_starts_with(config("lucent.url"), "https")) {
$data["modalUrl"] = str_replace("http://", "https://", $request->fullUrl());
}
2023-10-02 23:10:49 +03:00
return $data;
}
$data["inModal"] = false;
return $this->svelte->render(
layout: "channel",
view: "contentIndex",
title: "Records",
data: $data
);
}
public function exportCSV(Request $request)
{
$schemaName = $request->route("schemaName");
$schema = $this->channelService->channel->schemas->where("name", $schemaName)->first();
$urlParams = $request->all();
$sort = data_get($urlParams, "sort") ?? "-_sys.updatedAt";
$filter = data_get($urlParams, "filter") ?? [];
$arguments = array_merge([
2023-10-08 02:12:02 +03:00
"schema" => $schema->name,
"status_in" => "draft,published",
2023-10-02 23:10:49 +03:00
], $filter);
2023-10-08 02:12:02 +03:00
$records = $this->query
->filter($arguments)
->limit(-1)
->status(explode(",", $arguments["status_in"]))
// ->skip($skip)
->sort($sort)
->run()
->records;
2023-10-02 23:10:49 +03:00
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename="' . $schemaName . '.csv";');
$handle = fopen('php://output', 'w');
$csvRow = ["id", ...array_keys($records[0]->data->toArray())];
fputcsv($handle, $csvRow, ',');
foreach ($records as $record) {
$csvRow = [$record->id, ...$record->data->toArray()];
$csvRow = array_values($csvRow);
fputcsv($handle, $csvRow, ',');
}
fclose($handle);
echo $handle;
exit;
}
public function new(Request $request)
{
2023-10-17 22:57:25 +03:00
if(!in_array($request->input("schema"),$this->accountService->currentWritableSchemas())){
return $this->svelte->render(
layout: "channel",
view: "recordNotFound",
title: "Schema Not Found",
);
}
2023-10-02 23:10:49 +03:00
$schema = $this->channelService->channel->schemas->where("name", $request->input("schema"))->first();
$recordHistory = $this->recordManager->fromSession($request->session())->getRecords();
$record = $this->recordService->createEmpty($schema, $this->authService->currentUserId());
$queryRecord = QueryRecord::fromRecord($record);
return $this->svelte->render(
layout: "channel",
view: "recordEdit",
title: "New Record",
data: [
"schema" => $schema,
"record" => $queryRecord,
"recordHistory" => $recordHistory,
"isCreateMode" => true,
]
);
}
2023-10-07 21:18:18 +03:00
public function newInline(Request $request)
{
2023-10-17 22:57:25 +03:00
if(!in_array($request->input("schema"),$this->accountService->currentWritableSchemas())){
return $this->svelte->render(
layout: "channel",
view: "recordNotFound",
title: "Schema Not Found",
);
}
2023-10-13 21:06:23 +03:00
$schema = $this->channelService->getSchema($request->input("schema"))->get();
2023-10-07 21:18:18 +03:00
$record = $this->recordService->createEmpty($schema);
$queryRecord = QueryRecord::fromRecord($record);
return [
"schema" => $schema,
"record" => $queryRecord,
"isCreateMode" => true,
];
}
2023-10-02 23:10:49 +03:00
public function edit(Request $request)
{
$rid = $request->route("rid");
2023-10-04 13:32:30 +03:00
$graph = $this->query
2023-10-02 23:10:49 +03:00
->filter(["id" => $rid])
->limit(1)
->skip(0)
->childrenDepth(2)
->childrenLimit(100)
->parentsDepth(1)
->parentsLimit(100)
->run();
2023-10-04 13:32:30 +03:00
if ($graph->records->isEmpty()) {
2023-10-02 23:10:49 +03:00
return $this->svelte->render(
layout: "channel",
view: "recordNotFound",
title: "Record Not Found",
);
}
2023-10-04 13:32:30 +03:00
$record = $graph->records->first();
2023-10-17 22:57:25 +03:00
if(!in_array($record->schema,$this->accountService->currentReadableSchemas())){
return $this->svelte->render(
layout: "channel",
view: "recordNotFound",
title: "Schema Not Found",
);
}
2023-10-04 13:32:30 +03:00
$schema = $this->channelService->getSchema($record->schema)->get();
2023-10-02 23:10:49 +03:00
$recordHistory = $this->recordManager->fromSession($request->session())->push($rid)->getRecords($rid);
return $this->svelte->render(
layout: "channel",
view: "recordEdit",
title: "Edit Record",
data: [
"schema" => $schema,
2023-10-04 13:32:30 +03:00
"graph" => toArray($graph),
"record" => toArray($record),
2023-10-17 22:57:25 +03:00
"users" => $this->accountService->all(),
2023-10-02 23:10:49 +03:00
"recordHistory" => $recordHistory,
2023-10-17 22:57:25 +03:00
"isWritable" => in_array($record->schema,$this->accountService->currentWritableSchemas())
2023-10-02 23:10:49 +03:00
]
);
}
2023-10-17 22:57:25 +03:00
// public function editInline(Request $request)
// {
// $rid = $request->route("rid");
//
// $graph = $this->query
// ->filter(["id" => $rid])
// ->limit(1)
// ->childrenDepth(2)
// ->parentsDepth(1)
// ->run();
//
// $record = $graph->records->first();
//
// if(!in_array($record->schema,$this->accountService->currentReadableSchemas())){
// return $this->svelte->render(
// layout: "channel",
// view: "recordNotFound",
// title: "Schema Not Found",
// );
// }
//
// return ok(
// [
// "graph" => toArray($graph),
// "record" => toArray($record)
// ]
// );
// }
2023-10-07 21:18:18 +03:00
public function suggestions(Request $request)
{
$arguments = [
"schema" => $request->input("schema"),
];
if ($request->input("value")) {
if (in_array($request->input("ui"), ["text", "date"])) {
2023-10-08 02:12:02 +03:00
$arguments["data." . $request->input("field") . "_regex"] = $request->input("value");
2023-10-07 21:18:18 +03:00
} elseif ($request->input("ui") == "number") {
2023-10-08 02:12:02 +03:00
$arguments["data." . $request->input("field") . "_eqnum"] = floatval($request->input("value"));
2023-10-07 21:18:18 +03:00
} elseif ($request->input("ui") == "date") {
}
}
$records = $this->query
->filter($arguments)
->limit(10)
->tree();
if ($records->isEmpty()) {
return ok([]);
}
return ok($records->toArray());
}
2023-10-02 23:10:49 +03:00
public function save(Request $request)
{
2023-10-07 21:18:18 +03:00
$recordId = $request->input("record.id");
2023-10-02 23:10:49 +03:00
try {
if ($request->input("isCreateMode")) {
2023-10-07 21:18:18 +03:00
$recordId = $this->recordService->create(
2023-10-04 13:32:30 +03:00
schemaName: $request->input("record.schema"),
2023-10-02 23:10:49 +03:00
data: $request->input("record.data"),
2023-10-08 02:12:02 +03:00
id: $recordId ?? "",
2023-10-02 23:10:49 +03:00
file: $request->input("record._file") ?? [],
2023-10-07 21:18:18 +03:00
edges: $request->input("edges") ?? [],
2023-10-04 13:32:30 +03:00
status: $request->input("record.status"),
2023-10-02 23:10:49 +03:00
uploadFromUrl: ""
);
} else {
$this->recordService->update(
id: $request->input("record.id"),
data: $request->input("record.data"),
2023-10-04 13:32:30 +03:00
status: $request->input("record.status"),
2023-10-02 23:10:49 +03:00
edges: $request->input("edges"),
updateEdges: true,
);
}
2023-10-04 13:32:30 +03:00
$newGraph = $this->query
2023-10-07 21:18:18 +03:00
->filter(["id" => $recordId])
2023-10-02 23:10:49 +03:00
->limit(10)
2023-10-13 21:06:23 +03:00
->childrenDepth(1)
2023-10-02 23:10:49 +03:00
->parentsDepth(1)
->run();
2023-10-04 13:32:30 +03:00
2023-10-02 23:10:49 +03:00
} catch (ValidatorException $th) {
return fail($th->getValidatorErrors());
} catch (LucentException $th) {
return fail($th);
}
2023-10-04 13:32:30 +03:00
return ok(toArray($newGraph));
2023-10-02 23:10:49 +03:00
}
public function clone(Request $request)
{
try {
$newRecordId = $this->recordService->clone(
recordId: $request->route("rid"),
);
} catch (LucentException $th) {
return fail($th);
} catch (ValidatorException $e) {
return fail($e);
}
return ok(["id" => $newRecordId]);
}
public function status(Request $request)
{
$ids = array_map(fn($rec) => $rec["id"], $request->input("records"));
$this->recordService->changeStatusBulk(
status: $request->route("status"),
recordsIds: $ids,
);
return ok();
}
2023-10-06 18:47:50 +03:00
2023-10-16 16:12:21 +03:00
public function emptyTrash(Request $request)
{
2023-10-15 23:40:34 +03:00
$this->recordService->emptyTrash($request->route("schemaName"));
2023-10-16 16:12:21 +03:00
return redirect($this->channelService->channel->lucentUrl . "/content/" . $request->route("schemaName"));
2023-10-15 23:40:34 +03:00
}
2023-10-06 18:47:50 +03:00
public function delete(Request $request)
{
$ids = $request->input("ids");
try {
$this->recordService->deleteMany($ids);
} catch (Throwable $th) {
return fail($th);
}
return ok();
}
2023-10-15 19:14:07 +03:00
public function rollback(Request $request)
{
try {
$this->recordService->rollback(
recordId: $request->route("rid"),
version: (int)$request->route("version")
);
} catch (ValidatorException $th) {
return fail($th->getFirstValidatorError());
} catch (LucentException|Throwable $th) {
return fail($th);
}
return ok();
}
2023-10-02 23:10:49 +03:00
}