mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
280 lines
6.5 KiB
PHP
Executable File
280 lines
6.5 KiB
PHP
Executable File
<?php
|
|
|
|
class Utils
|
|
{
|
|
public static function fatalError($error)
|
|
{
|
|
Log::error($error);
|
|
return View::make('error')->with('error', $error);
|
|
}
|
|
|
|
public static function formatPhoneNumber($phoneNumber)
|
|
{
|
|
$phoneNumber = preg_replace('/[^0-9]/','',$phoneNumber);
|
|
|
|
if (!$phoneNumber) {
|
|
return '';
|
|
}
|
|
|
|
if(strlen($phoneNumber) > 10) {
|
|
$countryCode = substr($phoneNumber, 0, strlen($phoneNumber)-10);
|
|
$areaCode = substr($phoneNumber, -10, 3);
|
|
$nextThree = substr($phoneNumber, -7, 3);
|
|
$lastFour = substr($phoneNumber, -4, 4);
|
|
|
|
$phoneNumber = '+'.$countryCode.' ('.$areaCode.') '.$nextThree.'-'.$lastFour;
|
|
}
|
|
else if(strlen($phoneNumber) == 10) {
|
|
$areaCode = substr($phoneNumber, 0, 3);
|
|
$nextThree = substr($phoneNumber, 3, 3);
|
|
$lastFour = substr($phoneNumber, 6, 4);
|
|
|
|
$phoneNumber = '('.$areaCode.') '.$nextThree.'-'.$lastFour;
|
|
}
|
|
else if(strlen($phoneNumber) == 7) {
|
|
$nextThree = substr($phoneNumber, 0, 3);
|
|
$lastFour = substr($phoneNumber, 3, 4);
|
|
|
|
$phoneNumber = $nextThree.'-'.$lastFour;
|
|
}
|
|
|
|
return $phoneNumber;
|
|
}
|
|
|
|
public static function formatMoney($value, $currencyId)
|
|
{
|
|
$currency = Currency::find($currencyId);
|
|
if (!$currency) {
|
|
$currency = Currency::find(1);
|
|
}
|
|
return $currency->symbol . number_format($value, $currency->precision, $currency->decimal_separator, $currency->thousand_separator);
|
|
}
|
|
|
|
public static function pluralize($string, $count)
|
|
{
|
|
$string = str_replace('?', $count, $string);
|
|
return $count == 1 ? $string : $string . 's';
|
|
}
|
|
|
|
public static function toArray($data)
|
|
{
|
|
return json_decode(json_encode((array) $data), true);
|
|
}
|
|
|
|
public static function toSpaceCase($camelStr)
|
|
{
|
|
return preg_replace('/([a-z])([A-Z])/s','$1 $2', $camelStr);
|
|
}
|
|
|
|
public static function timestampToDateTimeString($timestamp) {
|
|
$timezone = Session::get(SESSION_TIMEZONE, DEFAULT_TIMEZONE);
|
|
$format = Session::get(SESSION_DATETIME_FORMAT, DEFAULT_DATETIME_FORMAT);
|
|
return Utils::timestampToString($timestamp, $timezone, $format);
|
|
}
|
|
|
|
public static function timestampToDateString($timestamp) {
|
|
$timezone = Session::get(SESSION_TIMEZONE, DEFAULT_TIMEZONE);
|
|
$format = Session::get(SESSION_DATE_FORMAT, DEFAULT_DATE_FORMAT);
|
|
return Utils::timestampToString($timestamp, $timezone, $format);
|
|
}
|
|
|
|
public static function dateToString($date) {
|
|
$dateTime = new DateTime($date);
|
|
$timestamp = $dateTime->getTimestamp();
|
|
$format = Session::get(SESSION_DATE_FORMAT, DEFAULT_DATE_FORMAT);
|
|
return Utils::timestampToString($timestamp, false, $format);
|
|
}
|
|
|
|
public static function timestampToString($timestamp, $timezone = false, $format)
|
|
{
|
|
if (!$timestamp) {
|
|
return '';
|
|
}
|
|
$date = Carbon::createFromTimeStamp($timestamp);
|
|
if ($timezone) {
|
|
$date->tz = $timezone;
|
|
}
|
|
if ($date->year < 1900) {
|
|
return '';
|
|
}
|
|
return $date->format($format);
|
|
}
|
|
|
|
public static function toSqlDate($date)
|
|
{
|
|
if (!$date)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
$timezone = Session::get(SESSION_TIMEZONE);
|
|
$format = Session::get(SESSION_DATE_FORMAT);
|
|
|
|
return DateTime::createFromFormat($format, $date, new DateTimeZone($timezone));
|
|
}
|
|
|
|
public static function fromSqlDate($date)
|
|
{
|
|
if (!$date || $date == '0000-00-00')
|
|
{
|
|
return '';
|
|
}
|
|
|
|
$timezone = Session::get(SESSION_TIMEZONE);
|
|
$format = Session::get(SESSION_DATE_FORMAT);
|
|
|
|
return DateTime::createFromFormat('Y-m-d', $date, new DateTimeZone($timezone))->format($format);
|
|
}
|
|
|
|
public static function today($formatResult = true)
|
|
{
|
|
$timezone = Session::get(SESSION_TIMEZONE);
|
|
$format = Session::get(SESSION_DATE_FORMAT);
|
|
$date = date_create(null, new DateTimeZone($timezone));
|
|
|
|
if ($formatResult)
|
|
{
|
|
return $date->format($format);
|
|
}
|
|
else
|
|
{
|
|
return $date;
|
|
}
|
|
}
|
|
|
|
public static function trackViewed($name, $type, $url = false)
|
|
{
|
|
if (!$url)
|
|
{
|
|
$url = Request::url();
|
|
}
|
|
|
|
$viewed = Session::get(RECENTLY_VIEWED);
|
|
|
|
if (!$viewed)
|
|
{
|
|
$viewed = [];
|
|
}
|
|
|
|
$object = new stdClass;
|
|
$object->url = $url;
|
|
$object->name = ucwords($type) . ': ' . $name;
|
|
|
|
for ($i=0; $i<count($viewed); $i++)
|
|
{
|
|
$item = $viewed[$i];
|
|
|
|
if ($object->url == $item->url)
|
|
{
|
|
array_splice($viewed, $i, 1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
array_unshift($viewed, $object);
|
|
|
|
if (count($viewed) > RECENTLY_VIEWED_LIMIT)
|
|
{
|
|
array_pop($viewed);
|
|
}
|
|
|
|
Session::put(RECENTLY_VIEWED, $viewed);
|
|
}
|
|
|
|
public static function processVariables($str)
|
|
{
|
|
if (!$str) {
|
|
return '';
|
|
}
|
|
|
|
$variables = ['MONTH', 'QUARTER', 'YEAR'];
|
|
for ($i=0; $i<count($variables); $i++)
|
|
{
|
|
$variable = $variables[$i];
|
|
$regExp = '/:' . $variable . '[+-]?[\d]*/';
|
|
preg_match_all($regExp, $str, $matches);
|
|
$matches = $matches[0];
|
|
if (count($matches) == 0) {
|
|
continue;
|
|
}
|
|
foreach ($matches as $match) {
|
|
$offset = 0;
|
|
$addArray = explode('+', $match);
|
|
$minArray = explode('-', $match);
|
|
if (count($addArray) > 1) {
|
|
$offset = intval($addArray[1]);
|
|
} else if (count($minArray) > 1) {
|
|
$offset = intval($minArray[1]) * -1;
|
|
}
|
|
|
|
$val = Utils::getDatePart($variable, $offset);
|
|
$str = str_replace($match, $val, $str);
|
|
}
|
|
}
|
|
|
|
return $str;
|
|
}
|
|
|
|
private static function getDatePart($part, $offset)
|
|
{
|
|
$offset = intval($offset);
|
|
if ($part == 'MONTH') {
|
|
return Utils::getMonth($offset);
|
|
} else if ($part == 'QUARTER') {
|
|
return Utils::getQuarter($offset);
|
|
} else if ($part == 'YEAR') {
|
|
return Utils::getYear($offset);
|
|
}
|
|
}
|
|
|
|
private static function getMonth($offset)
|
|
{
|
|
$months = [ "January", "February", "March", "April", "May", "June",
|
|
"July", "August", "September", "October", "November", "December" ];
|
|
|
|
$month = intval(date('n')) - 1;
|
|
$month += $offset;
|
|
$month = $month % 12;
|
|
return $months[$month];
|
|
}
|
|
|
|
private static function getQuarter($offset)
|
|
{
|
|
$month = intval(date('n')) - 1;
|
|
$quarter = floor(($month + 3) / 3);
|
|
$quarter += $offset;
|
|
$quarter = $quarter % 4;
|
|
if ($quarter == 0) {
|
|
$quarter = 4;
|
|
}
|
|
return 'Q' . $quarter;
|
|
}
|
|
|
|
private static function getYear($offset)
|
|
{
|
|
$year = intval(date('Y'));
|
|
return $year + $offset;
|
|
}
|
|
|
|
public static function getEntityName($entityType)
|
|
{
|
|
return ucwords(str_replace('_', ' ', $entityType));
|
|
}
|
|
|
|
public static function getClientDisplayName($model)
|
|
{
|
|
if ($model->client_name)
|
|
{
|
|
return $model->client_name;
|
|
}
|
|
else if ($model->first_name || $model->last_name)
|
|
{
|
|
return $model->first_name . ' ' . $model->last_name;
|
|
}
|
|
else
|
|
{
|
|
return $model->email;
|
|
}
|
|
}
|
|
|
|
} |