datatable.directory codebase https://datatable.directory/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
datatable.directory/app/Http/Controllers/TableController.php

148 lines
4.7 KiB

<?php
namespace App\Http\Controllers;
6 years ago
use App\Models\Revision;
use App\Models\Row;
use App\Models\Table;
6 years ago
use App\Models\User;
use App\Utils\Column;
use Illuminate\Http\Request;
6 years ago
use MightyPork\Exceptions\NotApplicableException;
class TableController extends Controller
{
public function view(User $user, string $table)
{
/** @var Table $tableModel */
$tableModel = $user->tables()->where('name', $table)->first();
$revision = $tableModel->activeRevision;
return view('table.view', [
'table' => $tableModel,
'revision' => $revision,
'columns' => Column::columnsFromJson(json_decode($revision->columns)),
'rows' => $revision->rows,
]);
}
/**
* SHow a form for creating a new table
*
* @return \Illuminate\Http\Response
*/
public function create()
{
$exampleColumns =
"latin,string,Latin Name\n" .
"common,string,Common Name\n" .
6 years ago
"lifespan,int,Lifespan (years)";
$exampleData =
6 years ago
"Mercenaria mercenaria,hard clam,40\n" .
"Magallana gigas,pacific oyster,30\n" .
"Patella vulgata,common limpet,20";
return view('table.create',
compact('exampleColumns', 'exampleData')
);
}
public function storeNew(Request $request)
{
6 years ago
/** @var User $u */
$u = \Auth::user();
$this->validate($request, [
'name' => 'required',
6 years ago
'title' => 'string',
'description' => 'string|nullable',
'license' => 'string|nullable',
6 years ago
'origin' => 'string|nullable',
'columns' => 'required',
'data' => 'string|nullable',
]);
// Check if table name is unique for user
6 years ago
$tabName = $request->get('name');
if ($u->tables()->where('name', $tabName)->exists()) {
return $this->backWithErrors([
6 years ago
'name' => "A table called \"$tabName\" already exists in your account.",
]);
}
// Parse and validate the columns specification
6 years ago
/** @var Column[] $columns */
$columns = [];
$colTable = array_map('str_getcsv', explode("\n", $request->get('columns')));
foreach ($colTable as $col) {
$col = array_map('trim', $col);
if (count($col) < 2) {
return $this->backWithErrors([
'columns' => "All columns must have at least name and type.",
]);
}
6 years ago
try {
$columns[] = new Column([
'name' => $col[0],
'type' => $col[1],
'title' => count($col) >= 3 ? $col[2] : $col[0], // title falls back to =name if not specified,
]);
} catch (\Exception $e) {
return $this->backWithErrors(['columns' => $e->getMessage()]);
}
}
$rowTable = array_map('str_getcsv', explode("\n", $request->get('data')));
// Preparing data to insert into the Rows table
6 years ago
$rowsData = null;
try {
$rowsData = array_map(function ($row) use ($columns) {
if (count($row) != count($columns)) {
throw new NotApplicableException("All rows must have " . count($columns) . " fields.");
6 years ago
}
$parsed = [];
foreach ($row as $i => $val) {
$key = $columns[$i]->name;
$parsed[$key] = $columns[$i]->cast($val);
}
return [
'data' => json_encode($parsed),
'refs' => 1,
];
}, $rowTable);
} catch (\Exception $e) {
6 years ago
return $this->backWithErrors(['columns' => $e->getMessage()]);
}
6 years ago
$revision = Revision::create([
'refs' => 1, // from the new table
'note' => "Initial revision of table $u->name/$tabName",
'columns' => json_encode($columns),
]);
$table = Table::create([
'owner_id' => $u->id,
'revision_id' => $revision->id,
'name' => $tabName,
'title' => $request->get('title'),
'description' => $request->get('description'),
'license' => $request->get('license'),
'origin' => $request->get('origin'),
]);
// Attach the revision to the table, set as current
$table->revisions()->attach($revision);
$table->activeRevision()->associate($revision);
// Spawn the rows, linked to the revision
6 years ago
$revision->rows()->createMany($rowsData);
// Now we create rows, a revision pointing to them, and the table using it.
return "Ok.";
}
}