@digitaltpm/cordova-mongodb-storage-tpm
v0.0.2
Published
This plugin provides a mongodb local storage option to Cordova based applications.
Downloads
6
Maintainers
Readme
cordova-mongodb-storage-tpm
This is an update of https://github.com/mikakrooswijk/cordova-mongodb-storage
This is a Cordova plugin that exposes the functionality of MongoDB Mobile to a Cordova Android or iOS app for local storage.
NPM
Install
To install this plugin run cordova plugin add cordova-mongodb-storage-tpm
in your projects root folder.
Android
- Update
defaultMinSdkVersion
in thebuild.gradle
file to21
instead of the standard19
.
iOS
- Run pod install in iOS folder of your project. For more information on cocoapods please look here.
- Be sure to set the
Deployment Target
to at least iOS11.0
in your.xcodeproj
file.
Functionality
This is the functionality the plugin provides right now, it is limited but provides the basic CRUD functionality. More will be added in the future.
initiate(app-id: string
) -> boolean
This function has to be called before doing anything else with the plugin.
app-id
the id of this app.
returns
true if the initiation was successful, false if it failed.
window.plugins.mongodb.initiate("appId")
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
insertOne(database: string
, collection: string
, document: JSONObject
) -> Promise<JSONObject | boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
document
a JSON object that is to be inserted into the database.
returns
A promsie that resolves to a JSONArray containing the inserted document, false if the insert failed.
Example usage:
window.plugins.mongodb.insertOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
insertMany(database: string
, collection: string
, documents: JSONArray
) -> Promise<JSONArray>
database
the database that is to be queried.
collection
the collection that is to be queried
documents
a JSON array that are to be inserted into the database.
returns
A promsie that resolves to a JSONArray containing the inserted documents.
Example usage:
window.plugins.mongodb.insertMany('exampleDatabase', 'exampleCollection', [{"exampleKey": "exampleValue"}, {"exampleKey2": "exampleValue2"}])
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
findOne(database: string
, collection: string
, filter: JSONObject
) -> Promise<JSONObject | boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the query.
returns
A promsie that resolves to a JSONObject containing the first document that was found matching the filter, or false if there was no document found matching the filter.
Example usage:
window.plugins.mongodb.findOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
replaceOne(database: string
, collection: string
, filter: JSONObject
, update: JSONObject
) -> Promise<JSONObject>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the replace.
update
the object that is to be updates or inserted.
returns
A promsie that resolves with the object replaced.
! upsert is set to true for this function.
Example usage:
window.plugins.mongodb.replaceOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"}, {"exampleKey": "newExampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
updateOne(database: string
, collection: string
, filter: JSONObject
, update: JSONObject
) -> Promise<boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the update.
update
the update to be made.
returns
A promsie that resolves to totrue when the update was successful, and to false when it failed.
In the update object be sure to use the Update operators, such as $set
and $rename
Example usage:
window.plugins.mongodb.updateOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"}, {$set: {"exampleKey": "newExampleValue"}})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
updateMany(database: string
, collection: string
, filter: JSONObject
, update: JSONObject
) -> Promise<boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the update.
update
the updates to be made
returns
A promsie that resolves to totrue when the update was successful, and to false when it failed.
In the update object be sure to use the Update operators, such as $set
and $rename
Example usage:
window.plugins.mongodb.updateMany('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"}, {$set: {"exampleKey": "newExampleValue"}})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
findAll(database: string
, collection: string
) -> romise<JSONArray>
Returns all the entries is a given database and collection.
database
the database that is to be queried.
collection
the collection that is to be queried
returns
A promsie that resolves to a JSONArray with all the documents in the specified database and collection.
window.plugins.mongodb.findAll('exampleDatabase', 'exampleCollection')
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
find(database: string
, collection: string
, filter: JSONObject
, order: JSONObject
, skip: int
, limit: int
) -> Promise<JSONArray>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the query.
order
a JSON object that provides the order for the query. (1 -> Ascending, -1 -> Descending) (OPTIONAL)
skip
a int that provides the number of skip. (OPTIONAL)
limit
a int that provides the number of limit. (OPTIONAL)
returns
A promsie that resolves to a JSONArray containing the documents that was found matching the filter.
Example usage:
window.plugins.mongodb.find('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"}, {"exampleKey": 1}, 5, 10)
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
count(database: string
, collection: string
, filter: JSONObject
) -> Promise<long>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
a JSON object that provides the filter for the query.
returns
A promsie that resolves to a long with the number of records.
Example usage:
window.plugins.mongodb.count('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
deleteOne(database: string
, filter: string
, filter: JSONObject
) -> Promise<boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
the filter for the document to be deleted
returns
A promise that resolves to a boolean, true if the document was deleted, false if there was no document found matching the filter.
window.plugins.mongodb.deleteOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
deleteMany(database: string
, filter: string
, filter: JSONObject
) -> Promise<boolean>
database
the database that is to be queried.
collection
the collection that is to be queried
filter
the filter for the documents to be deleted
returns
A promise that resolves to a boolean, true if the documents was deleted, false if there was no documents found matching the filter.
window.plugins.mongodb.deleteOne('exampleDatabase', 'exampleCollection', {"exampleKey": "exampleValue"})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});
deleteAll(database: string
, collection: string
) -> Promise<boolean>
database
the database that is to be queried.
collection
the collection that is to be removed
returns
A promsie that resolves to totrue when the update was successful, and to false when it failed.
window.plugins.mongodb.deleteAll('exampleDatabase', 'exampleCollection')
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error);
});