1
0
Fork 0
mirror of synced 2024-06-13 16:05:06 +12:00
budibase/packages/auth/src/db/utils.js

45 lines
1 KiB
JavaScript
Raw Normal View History

2021-04-07 22:33:16 +12:00
exports.StaticDatabases = {
USER: {
name: "user-db",
},
}
const DocumentTypes = {
USER: "us",
APP: "app",
2021-04-07 22:33:16 +12:00
}
exports.DocumentTypes = DocumentTypes
2021-04-07 22:33:16 +12:00
const UNICODE_MAX = "\ufff0"
const SEPARATOR = "_"
exports.SEPARATOR = SEPARATOR
2021-04-07 22:33:16 +12:00
/**
* Generates a new user ID based on the passed in email.
* @param {string} email The email which the ID is going to be built up of.
* @returns {string} The new user ID which the user doc can be stored under.
*/
exports.generateUserID = email => {
return `${DocumentTypes.USER}${SEPARATOR}${email}`
}
exports.getEmailFromUserID = userId => {
return userId.split(`${DocumentTypes.USER}${SEPARATOR}`)[1]
}
2021-04-07 22:33:16 +12:00
/**
* Gets parameters for retrieving users, this is a utility function for the getDocParams function.
*/
exports.getUserParams = (email = "", otherProps = {}) => {
if (!email) {
email = ""
}
2021-04-07 22:33:16 +12:00
return {
...otherProps,
startkey: `${DocumentTypes.USER}${SEPARATOR}${email}`,
endkey: `${DocumentTypes.USER}${SEPARATOR}${email}${UNICODE_MAX}`,
}
}