2015-12-13 22:22:16 -05:00
|
|
|
<?php
|
2016-01-19 19:10:39 -05:00
|
|
|
/**
|
2016-01-20 16:05:16 -05:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 17:57:08 -05:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-01-19 19:10:39 -05:00
|
|
|
*
|
2017-09-25 21:43:01 -05:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-01-19 19:10:39 -05:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-06-13 23:25:37 -05:00
|
|
|
namespace Pterodactyl\Services\Components;
|
2015-12-13 22:22:16 -05:00
|
|
|
|
|
|
|
use DB;
|
|
|
|
use Uuid;
|
|
|
|
|
|
|
|
class UuidService
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Generate a unique UUID validating against specified table and column.
|
2016-12-07 22:46:38 +00:00
|
|
|
* Defaults to `users.uuid`.
|
2015-12-13 22:22:16 -05:00
|
|
|
*
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param string $table
|
|
|
|
* @param string $field
|
|
|
|
* @param int $type
|
2015-12-13 22:22:16 -05:00
|
|
|
* @return string
|
2017-07-19 20:49:41 -05:00
|
|
|
* @deprecated
|
2015-12-13 22:22:16 -05:00
|
|
|
*/
|
2015-12-15 15:08:41 -05:00
|
|
|
public function generate($table = 'users', $field = 'uuid', $type = 4)
|
2015-12-13 22:22:16 -05:00
|
|
|
{
|
|
|
|
$return = false;
|
|
|
|
do {
|
2015-12-15 15:08:41 -05:00
|
|
|
$uuid = Uuid::generate($type);
|
2016-12-07 22:46:38 +00:00
|
|
|
if (! DB::table($table)->where($field, $uuid)->exists()) {
|
2015-12-13 22:22:16 -05:00
|
|
|
$return = $uuid;
|
|
|
|
}
|
2016-12-07 22:46:38 +00:00
|
|
|
} while (! $return);
|
2015-12-13 22:22:16 -05:00
|
|
|
|
2016-09-05 12:00:56 -04:00
|
|
|
return (string) $return;
|
2015-12-13 22:22:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a ShortUUID code which is 8 characters long and is used for identifying servers in the system.
|
|
|
|
*
|
2017-08-21 22:10:48 -05:00
|
|
|
* @param string $table
|
|
|
|
* @param string $field
|
|
|
|
* @param null|string $attachedUuid
|
2015-12-13 22:22:16 -05:00
|
|
|
* @return string
|
2017-07-19 20:49:41 -05:00
|
|
|
* @deprecated
|
2015-12-13 22:22:16 -05:00
|
|
|
*/
|
2015-12-15 15:08:41 -05:00
|
|
|
public function generateShort($table = 'servers', $field = 'uuidShort', $attachedUuid = null)
|
2015-12-13 22:22:16 -05:00
|
|
|
{
|
|
|
|
$return = false;
|
|
|
|
do {
|
2015-12-15 15:08:41 -05:00
|
|
|
$short = (is_null($attachedUuid)) ? substr(Uuid::generate(4), 0, 8) : substr($attachedUuid, 0, 8);
|
|
|
|
$attachedUuid = null;
|
|
|
|
|
2016-12-07 22:46:38 +00:00
|
|
|
if (! DB::table($table)->where($field, $short)->exists()) {
|
2015-12-13 22:22:16 -05:00
|
|
|
$return = $short;
|
|
|
|
}
|
2016-12-07 22:46:38 +00:00
|
|
|
} while (! $return);
|
2015-12-13 22:22:16 -05:00
|
|
|
|
2016-09-05 12:00:56 -04:00
|
|
|
return (string) $return;
|
2015-12-13 22:22:16 -05:00
|
|
|
}
|
|
|
|
}
|