phpvms/app/Services/DatabaseService.php

82 lines
1.7 KiB
PHP
Raw Normal View History

2017-06-25 00:09:27 +08:00
<?php
namespace App\Services;
use App\Interfaces\Service;
use App\Support\Database;
use Carbon\Carbon;
2018-02-21 12:33:09 +08:00
use Webpatser\Uuid\Uuid;
/**
* Class DatabaseService
*/
class DatabaseService extends Service
2017-06-25 02:20:24 +08:00
{
2017-06-25 02:30:13 +08:00
protected $time_fields = [
2017-06-25 02:23:30 +08:00
'created_at',
2018-08-27 00:40:04 +08:00
'updated_at',
2017-06-25 02:23:30 +08:00
];
2017-06-25 02:30:13 +08:00
protected $uuid_tables = [
2017-12-31 04:13:47 +08:00
'acars',
2017-06-25 02:20:24 +08:00
'flights',
2017-06-25 02:20:39 +08:00
'pireps',
2017-06-25 02:20:24 +08:00
];
2017-06-25 00:09:27 +08:00
/**
* @return string
*/
protected function time(): string
{
return Carbon::now('UTC'); //->format('Y-m-d H:i:s');
}
/**
* @param $yaml_file
* @param bool $ignore_errors
2018-08-27 00:40:04 +08:00
*
* @throws \Exception
2018-08-27 00:40:04 +08:00
*
* @return array
*/
public function seed_from_yaml_file($yaml_file, $ignore_errors = false): array
{
return Database::seed_from_yaml_file($yaml_file, $ignore_errors);
2017-06-25 02:20:24 +08:00
}
/**
* @param $yml
* @param bool $ignore_errors
2018-08-27 00:40:04 +08:00
*
* @throws \Exception
2018-08-27 00:40:04 +08:00
*
* @return array
*/
public function seed_from_yaml($yml, $ignore_errors = false): array
2017-06-25 02:20:24 +08:00
{
return Database::seed_from_yaml($yml, $ignore_errors);
}
/**
2018-08-27 00:40:04 +08:00
* @param $table
* @param $row
*
* @throws \Exception
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
2018-08-27 00:40:04 +08:00
public function insert_row($table, $row)
{
// see if this table uses a UUID as the PK
// if no ID is specified
if (\in_array($table, $this->uuid_tables, true)) {
2018-08-27 02:51:47 +08:00
/* @noinspection NestedPositiveIfStatementsInspection */
if (!array_key_exists('id', $row)) {
$row['id'] = Uuid::generate()->string;
}
}
return Database::insert_row($table, $row);
}
2017-06-25 00:09:27 +08:00
}