1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Utils/Traits/MakesHash.php

92 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Utils\Traits;
use App\Libraries\MultiDB;
use Hashids\Hashids;
2020-10-28 11:10:49 +01:00
use Illuminate\Support\Str;
/**
* Class MakesHash.
*/
trait MakesHash
{
/**
* Creates a simple alphanumeric Hash.
* @return string - asd89f7as89df6asf78as6fds
*/
public function createHash() : string
{
2020-10-28 11:10:49 +01:00
return Str::random(config('ninja.key_length'));
}
/**
* Creates a simple alphanumeric Hash which is prepended with a encoded database prefix.
*
* @param $db - Full database name
* @return string 01-asfas8df76a78f6a78dfsdf
*/
public function createDbHash($db) : string
{
2020-10-28 11:10:49 +01:00
return $this->getDbCode($db).'-'. Str::random(config('ninja.key_length'));
}
/**
* @param $db - Full database name
* @return string - hashed and encoded int 01,02,03,04
*/
public function getDbCode($db) : string
{
$hashids = new Hashids(config('ninja.hash_salt'), 10);
return $hashids->encode(str_replace(MultiDB::DB_PREFIX, '', $db));
}
public function encodePrimaryKey($value) : string
{
$hashids = new Hashids(config('ninja.hash_salt'), 10);
return $hashids->encode($value);
}
public function decodePrimaryKey($value) : string
{
try {
$hashids = new Hashids(config('ninja.hash_salt'), 10);
$decoded_array = $hashids->decode($value);
if (! is_array($decoded_array)) {
throw new \Exception("Invalid Primary Key");
2020-10-28 11:10:49 +01:00
//response()->json(['error'=>'Invalid primary key'], 400);
}
2019-04-03 03:17:21 +02:00
return $decoded_array[0];
} catch (\Exception $e) {
return response()->json(['error'=>'Invalid primary key'], 400);
2019-04-03 03:17:21 +02: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);
2019-06-12 06:22:05 +02:00
}
return $keys;
} else {
2019-06-12 06:22:05 +02:00
return $this->decodePrimaryKey($keys);
}
2019-06-12 06:22:05 +02:00
}
}