mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 01:11:37 -06:00
49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Date.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Import\Converter;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use InvalidArgumentException;
|
|
use Log;
|
|
|
|
/**
|
|
* Class Date
|
|
*
|
|
* @package FireflyIII\Import\Converter
|
|
*/
|
|
class Date extends BasicConverter implements ConverterInterface
|
|
{
|
|
|
|
/**
|
|
* @param $value
|
|
*
|
|
* @return Carbon
|
|
* @throws FireflyException
|
|
*/
|
|
public function convert($value): Carbon
|
|
{
|
|
Log::debug('Going to convert date', ['value' => $value]);
|
|
Log::debug('Format: ', ['format' => $this->config['date-format']]);
|
|
try {
|
|
$date = Carbon::createFromFormat($this->config['date-format'], $value);
|
|
} catch (InvalidArgumentException $e) {
|
|
Log::notice($e->getMessage());
|
|
Log::notice('Cannot convert this string using the given format.', ['value' => $value, 'format' => $this->config['date-format']]);
|
|
$this->setCertainty(0);
|
|
return new Carbon;
|
|
}
|
|
Log::debug('Converted date', ['converted' => $date->toAtomString()]);
|
|
$this->setCertainty(100);
|
|
return $date;
|
|
}
|
|
} |