2018-10-26 06:53:29 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-26 06:53:29 +02:00
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Hashids\Hashids;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class MakesHash
|
|
|
|
* @package App\Utils\Traits
|
|
|
|
*/
|
|
|
|
trait MakesHash
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Creates a simple alphanumeric Hash
|
|
|
|
* @return string - asd89f7as89df6asf78as6fds
|
|
|
|
*/
|
|
|
|
public function createHash() : string
|
|
|
|
{
|
2019-04-24 04:34:39 +02:00
|
|
|
return str_random(config('ninja.key_length'));
|
2018-10-26 06:53:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a simple alphanumeric Hash which is prepended with a encoded database prefix
|
2019-04-18 07:01:40 +02:00
|
|
|
*
|
2018-10-26 06:53:29 +02:00
|
|
|
* @param $db - Full database name
|
|
|
|
* @return string 01-asfas8df76a78f6a78dfsdf
|
|
|
|
*/
|
|
|
|
public function createDbHash($db) : string
|
|
|
|
{
|
2019-04-24 04:34:39 +02:00
|
|
|
return $this->getDbCode($db) . '-' . str_random(config('ninja.key_length'));
|
2018-10-26 06:53:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $db - Full database name
|
|
|
|
* @return string - hashed and encoded int 01,02,03,04
|
|
|
|
*/
|
|
|
|
public function getDbCode($db) : string
|
|
|
|
{
|
2019-09-22 11:30:03 +02:00
|
|
|
$hashids = new Hashids('', 15);
|
2018-10-26 06:53:29 +02:00
|
|
|
|
|
|
|
return $hashids->encode( str_replace( MultiDB::DB_PREFIX, "", $db ) );
|
|
|
|
}
|
2018-11-02 11:54:46 +01:00
|
|
|
|
2018-11-27 08:24:26 +01:00
|
|
|
public function encodePrimaryKey($value) : string
|
2018-11-02 11:54:46 +01:00
|
|
|
{
|
2019-09-22 11:30:03 +02:00
|
|
|
$hashids = new Hashids('', 15);
|
2018-11-02 11:54:46 +01:00
|
|
|
|
|
|
|
return $hashids->encode($value);
|
|
|
|
}
|
|
|
|
|
2018-11-27 08:24:26 +01:00
|
|
|
public function decodePrimaryKey($value) : string
|
2018-11-02 11:54:46 +01:00
|
|
|
{
|
2019-04-03 03:17:21 +02:00
|
|
|
try{
|
2019-09-22 11:30:03 +02:00
|
|
|
$hashids = new Hashids('', 15);
|
2018-11-02 11:54:46 +01:00
|
|
|
|
2019-04-03 03:17:21 +02:00
|
|
|
$decoded_array = $hashids->decode($value);
|
2018-11-02 11:54:46 +01:00
|
|
|
|
2019-04-03 03:17:21 +02:00
|
|
|
return $decoded_array[0];
|
|
|
|
}
|
|
|
|
catch(\Exception $e)
|
|
|
|
{
|
|
|
|
return response()->json(['error'=>'Invalid primary key'],400);
|
|
|
|
}
|
2018-11-02 11:54:46 +01:00
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
|
|
|
|
public function transformKeys($keys)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(is_array($keys))
|
|
|
|
{
|
|
|
|
foreach($keys as &$value)
|
|
|
|
{
|
|
|
|
$value = $this->decodePrimaryKey($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $keys;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return $this->decodePrimaryKey($keys);
|
|
|
|
|
|
|
|
}
|
2018-10-26 06:53:29 +02:00
|
|
|
}
|