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