2021-06-18 11:10:38 +00:00
|
|
|
# angel3_mongo
|
|
|
|
[![version](https://img.shields.io/badge/pub-v3.0.0-brightgreen)](https://pub.dartlang.org/packages/angel3_mongo)
|
|
|
|
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
|
|
|
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
2020-02-15 23:43:58 +00:00
|
|
|
|
2021-06-18 11:10:38 +00:00
|
|
|
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/angel3/packages/mongo/LICENSE)
|
2020-02-15 23:43:58 +00:00
|
|
|
|
2021-06-18 11:10:38 +00:00
|
|
|
MongoDB-enabled services for the Angel3 framework.
|
2020-02-15 23:43:58 +00:00
|
|
|
|
|
|
|
# Installation
|
|
|
|
Add the following to your `pubspec.yaml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
2021-06-18 11:10:38 +00:00
|
|
|
angel3_mongo: ^3.0.0
|
2020-02-15 23:43:58 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
This library exposes one main class: `MongoService`.
|
|
|
|
|
|
|
|
## Model
|
|
|
|
`Model` is class with no real functionality; however, it represents a basic document, and your services should host inherited classes.
|
|
|
|
Other Angel service providers host `Model` as well, so you will easily be able to modify your application if you ever switch databases.
|
|
|
|
|
|
|
|
```dart
|
|
|
|
class User extends Model {
|
|
|
|
String username;
|
|
|
|
String password;
|
|
|
|
}
|
|
|
|
|
2021-06-18 11:10:38 +00:00
|
|
|
void main() async {
|
|
|
|
var db = Db('mongodb://localhost:27017/local');
|
2020-02-15 23:43:58 +00:00
|
|
|
await db.open();
|
|
|
|
|
2021-06-18 11:10:38 +00:00
|
|
|
var service = app.use('/api/users', MongoService(db.collection("users")));
|
2020-02-15 23:43:58 +00:00
|
|
|
|
|
|
|
service.afterCreated.listen((event) {
|
|
|
|
print("New user: ${event.result}");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## MongoService
|
|
|
|
This class interacts with a `DbCollection` (from mongo_dart) and serializing data to and from Maps.
|
|
|
|
|
|
|
|
## Querying
|
|
|
|
You can query these services as follows:
|
|
|
|
|
|
|
|
/path/to/service?foo=bar
|
|
|
|
|
|
|
|
The above will query the database to find records where 'foo' equals 'bar'.
|
|
|
|
|
|
|
|
The former will sort result in ascending order of creation, and so will the latter.
|
|
|
|
|
|
|
|
List queried = await MyService.index({r"$query": where.id(new ObjectId.fromHexString("some hex string"})));
|
|
|
|
|
|
|
|
And, of course, you can use mongo_dart queries. Just pass it as `query` within `params`.
|
|
|
|
|
|
|
|
See the tests for more usage examples.
|