aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/uuid.ts
blob: 3eb06c773bae1afa77bc3dfaebeaf6e68fa2b475 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import * as short from 'short-uuid'

const translator = short()

function buildUUID () {
  return short.uuid()
}

function uuidToShort (uuid: string) {
  if (!uuid) return uuid

  return translator.fromUUID(uuid)
}

function shortToUUID (shortUUID: string) {
  if (!shortUUID) return shortUUID

  return translator.toUUID(shortUUID)
}

function isShortUUID (value: string) {
  if (!value) return false

  return value.length === translator.maxLength
}

export {
  buildUUID,
  uuidToShort,
  shortToUUID,
  isShortUUID
}