MaketRandevu/application/helpers/general_helper.php

86 lines
2.2 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
2015-10-18 20:46:16 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
2015-10-18 20:46:16 +03:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
/**
* Get date in RFC3339
*
2015-10-18 20:46:16 +03:00
* For example used in XML/Atom
*
* @link http://stackoverflow.com/questions/5671433/php-time-to-google-calendar-dates-time-format
*
* @param integer $timestamp
*
2015-10-18 20:46:16 +03:00
* @return string date in RFC3339
*
2015-10-18 20:46:16 +03:00
* @author Boris Korobkov
*/
function date3339($timestamp = 0)
{
if ( ! $timestamp)
{
2015-10-18 20:46:16 +03:00
$timestamp = time();
}
$date = date('Y-m-d\TH:i:s', $timestamp);
$matches = [];
if (preg_match('/^([\-+])(\d{2})(\d{2})$/', date('O', $timestamp), $matches))
{
$date .= $matches[1] . $matches[2] . ':' . $matches[3];
2018-01-23 12:08:37 +03:00
}
else
{
2015-10-18 20:46:16 +03:00
$date .= 'Z';
}
return $date;
}
/**
* Generate a hash of password string.
*
* For user security, all system passwords are stored in hash string into the database. Use this method to produce the
* hashed password.
2015-10-18 20:46:16 +03:00
*
* @param string $salt Salt value for current user. This value is stored on the database and is used when generating
* the password hash.
2015-10-18 20:46:16 +03:00
* @param string $password Given string password.
*
2015-10-18 20:46:16 +03:00
* @return string Returns the hash string of the given password.
*/
function hash_password($salt, $password)
{
2015-10-18 20:46:16 +03:00
$half = (int)(strlen($salt) / 2);
$hash = hash('sha256', substr($salt, 0, $half) . $password . substr($salt, $half));
2015-10-18 20:46:16 +03:00
for ($i = 0; $i < 100000; $i++)
{
2015-10-18 20:46:16 +03:00
$hash = hash('sha256', $hash);
}
return $hash;
}
/**
* Generate a new password salt.
*
* This method will not check if the salt is unique in database. This must be done
* from the calling procedure.
*
* @return string Returns a salt string.
*/
function generate_salt()
{
2015-10-18 20:46:16 +03:00
$max_length = 100;
$salt = hash('sha256', (uniqid(rand(), TRUE)));
2015-10-18 20:46:16 +03:00
return substr($salt, 0, $max_length);
}