非公開フラグ、センシティブフラグのCSV入力対応
This commit is contained in:
parent
27e9a86be8
commit
915b575e6e
62
app/Rules/FuzzyBoolean.php
Normal file
62
app/Rules/FuzzyBoolean.php
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Rules;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\Validation\Rule;
|
||||||
|
|
||||||
|
class FuzzyBoolean implements Rule
|
||||||
|
{
|
||||||
|
public static function isTruthy($value): bool
|
||||||
|
{
|
||||||
|
if ($value === 1 || $value === '1') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$lower = strtolower((string)$value);
|
||||||
|
|
||||||
|
return $lower === 'true';
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function isFalsy($value): bool
|
||||||
|
{
|
||||||
|
if ($value === null || $value === '' || $value === 0 || $value === '0') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$lower = strtolower((string)$value);
|
||||||
|
|
||||||
|
return $lower === 'false';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new rule instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if the validation rule passes.
|
||||||
|
*
|
||||||
|
* @param string $attribute
|
||||||
|
* @param mixed $value
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function passes($attribute, $value)
|
||||||
|
{
|
||||||
|
return self::isTruthy($value) || self::isFalsy($value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the validation error message.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function message()
|
||||||
|
{
|
||||||
|
return __('validation.boolean');
|
||||||
|
}
|
||||||
|
}
|
@ -6,6 +6,7 @@ namespace App\Services;
|
|||||||
use App\Ejaculation;
|
use App\Ejaculation;
|
||||||
use App\Exceptions\CsvImportException;
|
use App\Exceptions\CsvImportException;
|
||||||
use App\Rules\CsvDateTime;
|
use App\Rules\CsvDateTime;
|
||||||
|
use App\Rules\FuzzyBoolean;
|
||||||
use App\Tag;
|
use App\Tag;
|
||||||
use App\User;
|
use App\User;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
@ -75,6 +76,8 @@ class CheckinCsvImporter
|
|||||||
'日時' => ['required', new CsvDateTime()],
|
'日時' => ['required', new CsvDateTime()],
|
||||||
'ノート' => 'nullable|string|max:500',
|
'ノート' => 'nullable|string|max:500',
|
||||||
'オカズリンク' => 'nullable|url|max:2000',
|
'オカズリンク' => 'nullable|url|max:2000',
|
||||||
|
'非公開' => ['nullable', new FuzzyBoolean()],
|
||||||
|
'センシティブ' => ['nullable', new FuzzyBoolean()],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if ($validator->fails()) {
|
if ($validator->fails()) {
|
||||||
@ -88,6 +91,12 @@ class CheckinCsvImporter
|
|||||||
$ejaculation->note = str_replace(["\r\n", "\r"], "\n", $record['ノート'] ?? '');
|
$ejaculation->note = str_replace(["\r\n", "\r"], "\n", $record['ノート'] ?? '');
|
||||||
$ejaculation->link = $record['オカズリンク'] ?? '';
|
$ejaculation->link = $record['オカズリンク'] ?? '';
|
||||||
$ejaculation->source = Ejaculation::SOURCE_CSV;
|
$ejaculation->source = Ejaculation::SOURCE_CSV;
|
||||||
|
if (isset($record['非公開'])) {
|
||||||
|
$ejaculation->is_private = FuzzyBoolean::isTruthy($record['非公開']);
|
||||||
|
}
|
||||||
|
if (isset($record['センシティブ'])) {
|
||||||
|
$ejaculation->is_too_sensitive = FuzzyBoolean::isTruthy($record['センシティブ']);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$tags = $this->parseTags($line, $record);
|
$tags = $this->parseTags($line, $record);
|
||||||
|
Loading…
Reference in New Issue
Block a user