2022-08-19 15:08:03 +02:00
|
|
|
import {
|
2022-08-11 14:50:05 +02:00
|
|
|
ViewName,
|
2022-07-25 19:57:10 +02:00
|
|
|
getUsersByAppParams,
|
|
|
|
getProdAppID,
|
|
|
|
generateAppUserID,
|
2022-08-19 15:08:03 +02:00
|
|
|
} from "./db/utils"
|
2022-07-18 22:11:52 +02:00
|
|
|
import { queryGlobalView } from "./db/views"
|
|
|
|
import { UNICODE_MAX } from "./db/constants"
|
|
|
|
import { User } from "@budibase/types"
|
2022-04-08 02:28:22 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given an email address this will use a view to search through
|
|
|
|
* all the users to find one with this email address.
|
|
|
|
* @param {string} email the email to lookup the user by.
|
|
|
|
*/
|
2022-09-06 13:25:57 +02:00
|
|
|
export const getGlobalUserByEmail = async (
|
|
|
|
email: String
|
|
|
|
): Promise<User | undefined> => {
|
2022-04-08 02:28:22 +02:00
|
|
|
if (email == null) {
|
|
|
|
throw "Must supply an email address to view"
|
|
|
|
}
|
|
|
|
|
2022-08-19 15:08:03 +02:00
|
|
|
const response = await queryGlobalView<User>(ViewName.USER_BY_EMAIL, {
|
2022-04-08 02:28:22 +02:00
|
|
|
key: email.toLowerCase(),
|
|
|
|
include_docs: true,
|
|
|
|
})
|
2022-04-12 13:34:36 +02:00
|
|
|
|
2022-07-18 22:11:52 +02:00
|
|
|
if (Array.isArray(response)) {
|
|
|
|
// shouldn't be able to happen, but need to handle just in case
|
|
|
|
throw new Error(`Multiple users found with email address: ${email}`)
|
|
|
|
}
|
|
|
|
|
2022-04-12 13:34:36 +02:00
|
|
|
return response
|
2022-04-08 02:28:22 +02:00
|
|
|
}
|
2022-06-30 16:39:26 +02:00
|
|
|
|
2022-08-19 15:08:03 +02:00
|
|
|
export const searchGlobalUsersByApp = async (appId: any, opts: any) => {
|
2022-07-06 17:09:05 +02:00
|
|
|
if (typeof appId !== "string") {
|
|
|
|
throw new Error("Must provide a string based app ID")
|
|
|
|
}
|
|
|
|
const params = getUsersByAppParams(appId, {
|
|
|
|
include_docs: true,
|
|
|
|
})
|
|
|
|
params.startkey = opts && opts.startkey ? opts.startkey : params.startkey
|
2022-08-11 14:50:05 +02:00
|
|
|
let response = await queryGlobalView(ViewName.USER_BY_APP, params)
|
2022-07-06 17:09:05 +02:00
|
|
|
if (!response) {
|
|
|
|
response = []
|
|
|
|
}
|
|
|
|
return Array.isArray(response) ? response : [response]
|
|
|
|
}
|
|
|
|
|
2022-08-19 15:08:03 +02:00
|
|
|
export const getGlobalUserByAppPage = (appId: string, user: User) => {
|
2022-07-06 17:09:05 +02:00
|
|
|
if (!user) {
|
|
|
|
return
|
|
|
|
}
|
2022-08-19 15:08:03 +02:00
|
|
|
return generateAppUserID(getProdAppID(appId), user._id!)
|
2022-04-08 02:28:22 +02:00
|
|
|
}
|
2022-06-30 16:39:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a starts with search on the global email view.
|
|
|
|
*/
|
2022-07-18 22:11:52 +02:00
|
|
|
export const searchGlobalUsersByEmail = async (email: string, opts: any) => {
|
2022-06-30 16:39:26 +02:00
|
|
|
if (typeof email !== "string") {
|
|
|
|
throw new Error("Must provide a string to search by")
|
|
|
|
}
|
|
|
|
const lcEmail = email.toLowerCase()
|
|
|
|
// handle if passing up startkey for pagination
|
|
|
|
const startkey = opts && opts.startkey ? opts.startkey : lcEmail
|
2022-08-19 15:08:03 +02:00
|
|
|
let response = await queryGlobalView<User>(ViewName.USER_BY_EMAIL, {
|
2022-06-30 16:39:26 +02:00
|
|
|
...opts,
|
|
|
|
startkey,
|
|
|
|
endkey: `${lcEmail}${UNICODE_MAX}`,
|
|
|
|
})
|
|
|
|
if (!response) {
|
|
|
|
response = []
|
|
|
|
}
|
|
|
|
return Array.isArray(response) ? response : [response]
|
|
|
|
}
|