2019-04-22 13:59:04 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-22 13:59:04 +02:00
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
2019-10-03 14:17:48 +02:00
|
|
|
use Carbon\Carbon;
|
2019-08-28 02:58:13 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
2019-04-22 13:59:04 +02:00
|
|
|
/**
|
2019-04-23 00:41:32 +02:00
|
|
|
* Class MakesDates
|
2019-04-22 13:59:04 +02:00
|
|
|
* @package App\Utils\Traits
|
|
|
|
*/
|
2019-04-23 00:41:32 +02:00
|
|
|
trait MakesDates
|
2019-04-22 13:59:04 +02:00
|
|
|
{
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
|
|
|
* Converts from UTC to client timezone
|
|
|
|
* @param datetime object $utc_date
|
|
|
|
* @param string $timezone ie Australia/Sydney
|
|
|
|
* @return Carbon Carbon object
|
|
|
|
*/
|
|
|
|
public function createClientDate($utc_date, $timezone)
|
|
|
|
{
|
|
|
|
if (is_string($utc_date)) {
|
|
|
|
$utc_date = $this->convertToDateObject($utc_date);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $utc_date->setTimezone(new \DateTimeZone($timezone));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts from client timezone to UTC
|
|
|
|
* @param datetime object $utc_date
|
|
|
|
* @param string $timezone ie Australia/Sydney
|
|
|
|
* @return Carbon Carbon object
|
|
|
|
*/
|
|
|
|
public function createUtcDate($client_date)
|
|
|
|
{
|
|
|
|
if (is_string($client_date)) {
|
|
|
|
$client_date = $this->convertToDateObject($client_date);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $client_date->setTimezone(new \DateTimeZone('GMT'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats a date
|
|
|
|
* @param Carbon/String $date Carbon object or date string
|
|
|
|
* @param string $format The date display format
|
|
|
|
* @return string The formatted date
|
|
|
|
*/
|
|
|
|
public function formatDate($date, string $format) :string
|
|
|
|
{
|
|
|
|
if (is_string($date)) {
|
|
|
|
$date = $this->convertToDateObject($date);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $date->format($format);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats a date
|
|
|
|
* @param Carbon/String $date Carbon object or date string
|
|
|
|
* @param string $format The date display format
|
|
|
|
* @return string The formatted date
|
|
|
|
*/
|
|
|
|
public function formatDateTimestamp($timestamp, string $format) :string
|
|
|
|
{
|
|
|
|
return Carbon::createFromTimestamp($timestamp)->format($format);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function convertToDateObject($date)
|
|
|
|
{
|
|
|
|
return new \DateTime($date);
|
|
|
|
}
|
|
|
|
}
|