2021-06-24 19:17:26 +02:00
|
|
|
import {
|
|
|
|
Integration,
|
2022-08-11 14:50:05 +02:00
|
|
|
DatasourceFieldType,
|
|
|
|
QueryType,
|
2022-08-11 12:48:58 +02:00
|
|
|
IntegrationBase,
|
|
|
|
} from "@budibase/types"
|
2022-05-16 10:50:47 +02:00
|
|
|
import {
|
|
|
|
MongoClient,
|
|
|
|
ObjectID,
|
|
|
|
FilterQuery,
|
|
|
|
UpdateQuery,
|
|
|
|
FindOneAndUpdateOption,
|
|
|
|
UpdateOneOptions,
|
|
|
|
UpdateManyOptions,
|
|
|
|
CommonOptions,
|
|
|
|
} from "mongodb"
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
interface MongoDBConfig {
|
|
|
|
connectionString: string
|
|
|
|
db: string
|
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
const SCHEMA: Integration = {
|
|
|
|
docs: "https://github.com/mongodb/node-mongodb-native",
|
|
|
|
friendlyName: "MongoDB",
|
|
|
|
type: "Non-relational",
|
|
|
|
description:
|
|
|
|
"MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.",
|
|
|
|
datasource: {
|
|
|
|
connectionString: {
|
|
|
|
type: DatasourceFieldType.STRING,
|
|
|
|
required: true,
|
|
|
|
default: "mongodb://localhost:27017",
|
2021-06-24 19:16:48 +02:00
|
|
|
},
|
2022-08-12 18:03:06 +02:00
|
|
|
db: {
|
|
|
|
type: DatasourceFieldType.STRING,
|
|
|
|
required: true,
|
2021-06-24 19:16:48 +02:00
|
|
|
},
|
2022-08-12 18:03:06 +02:00
|
|
|
},
|
|
|
|
query: {
|
|
|
|
create: {
|
|
|
|
type: QueryType.JSON,
|
|
|
|
},
|
|
|
|
read: {
|
|
|
|
type: QueryType.JSON,
|
|
|
|
},
|
|
|
|
update: {
|
|
|
|
type: QueryType.JSON,
|
|
|
|
},
|
|
|
|
delete: {
|
|
|
|
type: QueryType.JSON,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
extra: {
|
|
|
|
collection: {
|
|
|
|
displayName: "Collection",
|
|
|
|
type: DatasourceFieldType.STRING,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
actionTypes: {
|
|
|
|
displayName: "Action Types",
|
|
|
|
type: DatasourceFieldType.LIST,
|
|
|
|
required: true,
|
|
|
|
data: {
|
|
|
|
read: ["find", "findOne", "findOneAndUpdate", "count", "distinct"],
|
|
|
|
create: ["insertOne", "insertMany"],
|
|
|
|
update: ["updateOne", "updateMany"],
|
|
|
|
delete: ["deleteOne", "deleteMany"],
|
2021-07-29 11:11:52 +02:00
|
|
|
},
|
|
|
|
},
|
2022-08-12 18:03:06 +02:00
|
|
|
},
|
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
class MongoIntegration implements IntegrationBase {
|
|
|
|
private config: MongoDBConfig
|
|
|
|
private client: any
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
constructor(config: MongoDBConfig) {
|
|
|
|
this.config = config
|
|
|
|
this.client = new MongoClient(config.connectionString)
|
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
async connect() {
|
|
|
|
return this.client.connect()
|
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
createObjectIds(json: any): object {
|
|
|
|
const self = this
|
|
|
|
function interpolateObjectIds(json: any) {
|
|
|
|
for (let field of Object.keys(json)) {
|
|
|
|
if (json[field] instanceof Object) {
|
|
|
|
json[field] = self.createObjectIds(json[field])
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
(field === "_id" || field?.startsWith("$")) &&
|
|
|
|
typeof json[field] === "string"
|
|
|
|
) {
|
|
|
|
const id = json[field].match(/(?<=objectid\(['"]).*(?=['"]\))/gi)?.[0]
|
|
|
|
if (id) {
|
|
|
|
json[field] = ObjectID.createFromHexString(id)
|
2022-05-13 14:49:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
return json
|
|
|
|
}
|
2022-05-13 14:49:26 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
if (Array.isArray(json)) {
|
|
|
|
for (let i = 0; i < json.length; i++) {
|
|
|
|
json[i] = interpolateObjectIds(json[i])
|
2022-05-13 14:49:26 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
return json
|
2022-05-13 14:49:26 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
return interpolateObjectIds(json)
|
|
|
|
}
|
2022-05-13 14:49:26 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
parseQueryParams(params: string, mode: string) {
|
|
|
|
let queryParams = []
|
|
|
|
let openCount = 0
|
|
|
|
let inQuotes = false
|
|
|
|
let i = 0
|
|
|
|
let startIndex = 0
|
|
|
|
for (let c of params) {
|
|
|
|
if (c === '"' && i > 0 && params[i - 1] !== "\\") {
|
|
|
|
inQuotes = !inQuotes
|
2022-08-08 22:56:55 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
if (c === "{" && !inQuotes) {
|
|
|
|
openCount++
|
|
|
|
if (openCount === 1) {
|
|
|
|
startIndex = i
|
|
|
|
}
|
|
|
|
} else if (c === "}" && !inQuotes) {
|
|
|
|
if (openCount === 1) {
|
|
|
|
queryParams.push(JSON.parse(params.substring(startIndex, i + 1)))
|
2022-05-16 23:44:38 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
openCount--
|
2022-05-16 23:44:38 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
let group1 = queryParams[0] ?? {}
|
|
|
|
let group2 = queryParams[1] ?? {}
|
|
|
|
let group3 = queryParams[2] ?? {}
|
|
|
|
if (mode === "update") {
|
2022-05-16 23:44:38 +02:00
|
|
|
return {
|
|
|
|
filter: group1,
|
2022-08-12 18:03:06 +02:00
|
|
|
update: group2,
|
|
|
|
options: group3,
|
2022-05-16 23:44:38 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
return {
|
|
|
|
filter: group1,
|
|
|
|
options: group2,
|
|
|
|
}
|
|
|
|
}
|
2022-05-16 23:44:38 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
async create(query: { json: object; extra: { [key: string]: string } }) {
|
|
|
|
try {
|
|
|
|
await this.connect()
|
|
|
|
const db = this.client.db(this.config.db)
|
|
|
|
const collection = db.collection(query.extra.collection)
|
|
|
|
let json = this.createObjectIds(query.json)
|
2021-07-08 14:38:49 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
// For mongodb we add an extra actionType to specify
|
|
|
|
// which method we want to call on the collection
|
|
|
|
switch (query.extra.actionTypes) {
|
|
|
|
case "insertOne": {
|
|
|
|
return await collection.insertOne(json)
|
|
|
|
}
|
|
|
|
case "insertMany": {
|
|
|
|
return await collection.insertMany(json)
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
throw new Error(
|
|
|
|
`actionType ${query.extra.actionTypes} does not exist on DB for create`
|
|
|
|
)
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error("Error writing to mongodb", err)
|
|
|
|
throw err
|
|
|
|
} finally {
|
|
|
|
await this.client.close()
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
async read(query: { json: object; extra: { [key: string]: string } }) {
|
|
|
|
try {
|
|
|
|
await this.connect()
|
|
|
|
const db = this.client.db(this.config.db)
|
|
|
|
const collection = db.collection(query.extra.collection)
|
|
|
|
let json = this.createObjectIds(query.json)
|
2021-07-08 14:38:49 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
switch (query.extra.actionTypes) {
|
|
|
|
case "find": {
|
|
|
|
return await collection.find(json).toArray()
|
|
|
|
}
|
|
|
|
case "findOne": {
|
|
|
|
return await collection.findOne(json)
|
|
|
|
}
|
|
|
|
case "findOneAndUpdate": {
|
|
|
|
if (typeof query.json === "string") {
|
|
|
|
json = this.parseQueryParams(query.json, "update")
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
let findAndUpdateJson = this.createObjectIds(json) as {
|
|
|
|
filter: FilterQuery<any>
|
|
|
|
update: UpdateQuery<any>
|
|
|
|
options: FindOneAndUpdateOption<any>
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
return await collection.findOneAndUpdate(
|
|
|
|
findAndUpdateJson.filter,
|
|
|
|
findAndUpdateJson.update,
|
|
|
|
findAndUpdateJson.options
|
|
|
|
)
|
|
|
|
}
|
|
|
|
case "count": {
|
|
|
|
return await collection.countDocuments(json)
|
|
|
|
}
|
|
|
|
case "distinct": {
|
|
|
|
return await collection.distinct(json)
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
throw new Error(
|
|
|
|
`actionType ${query.extra.actionTypes} does not exist on DB for read`
|
|
|
|
)
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error("Error querying mongodb", err)
|
|
|
|
throw err
|
|
|
|
} finally {
|
|
|
|
await this.client.close()
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async update(query: { json: object; extra: { [key: string]: string } }) {
|
|
|
|
try {
|
|
|
|
await this.connect()
|
|
|
|
const db = this.client.db(this.config.db)
|
|
|
|
const collection = db.collection(query.extra.collection)
|
|
|
|
let queryJson = query.json
|
|
|
|
if (typeof queryJson === "string") {
|
|
|
|
queryJson = this.parseQueryParams(queryJson, "update")
|
|
|
|
}
|
|
|
|
let json = this.createObjectIds(queryJson) as {
|
|
|
|
filter: FilterQuery<any>
|
|
|
|
update: UpdateQuery<any>
|
|
|
|
options: object
|
|
|
|
}
|
2021-07-08 14:38:49 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
switch (query.extra.actionTypes) {
|
|
|
|
case "updateOne": {
|
|
|
|
return await collection.updateOne(
|
|
|
|
json.filter,
|
|
|
|
json.update,
|
|
|
|
json.options as UpdateOneOptions
|
|
|
|
)
|
2022-05-16 23:44:38 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
case "updateMany": {
|
|
|
|
return await collection.updateMany(
|
|
|
|
json.filter,
|
|
|
|
json.update,
|
|
|
|
json.options as UpdateManyOptions
|
|
|
|
)
|
2022-05-16 10:50:47 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
default: {
|
|
|
|
throw new Error(
|
|
|
|
`actionType ${query.extra.actionTypes} does not exist on DB for update`
|
|
|
|
)
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error("Error writing to mongodb", err)
|
|
|
|
throw err
|
|
|
|
} finally {
|
|
|
|
await this.client.close()
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
}
|
2021-07-08 14:38:49 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
async delete(query: { json: object; extra: { [key: string]: string } }) {
|
|
|
|
try {
|
|
|
|
await this.connect()
|
|
|
|
const db = this.client.db(this.config.db)
|
|
|
|
const collection = db.collection(query.extra.collection)
|
|
|
|
let queryJson = query.json
|
|
|
|
if (typeof queryJson === "string") {
|
|
|
|
queryJson = this.parseQueryParams(queryJson, "delete")
|
|
|
|
}
|
|
|
|
let json = this.createObjectIds(queryJson) as {
|
|
|
|
filter: FilterQuery<any>
|
|
|
|
options: CommonOptions
|
|
|
|
}
|
|
|
|
if (!json.options) {
|
|
|
|
json = {
|
|
|
|
filter: json,
|
|
|
|
options: {},
|
2022-05-16 23:44:38 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (query.extra.actionTypes) {
|
|
|
|
case "deleteOne": {
|
|
|
|
return await collection.deleteOne(json.filter, json.options)
|
2022-05-16 10:50:47 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
case "deleteMany": {
|
|
|
|
return await collection.deleteMany(json.filter, json.options)
|
2022-06-17 17:54:23 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
default: {
|
|
|
|
throw new Error(
|
|
|
|
`actionType ${query.extra.actionTypes} does not exist on DB for delete`
|
|
|
|
)
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error("Error writing to mongodb", err)
|
|
|
|
throw err
|
|
|
|
} finally {
|
|
|
|
await this.client.close()
|
2021-07-08 14:38:49 +02:00
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|
2022-08-12 18:03:06 +02:00
|
|
|
}
|
2021-06-24 19:16:48 +02:00
|
|
|
|
2022-08-12 18:03:06 +02:00
|
|
|
export default {
|
|
|
|
schema: SCHEMA,
|
|
|
|
integration: MongoIntegration,
|
2021-06-24 19:16:48 +02:00
|
|
|
}
|