2016-05-09 21:16:44 +00:00
|
|
|
# angel_mongo
|
2016-06-23 04:58:21 +00:00
|
|
|
|
2017-04-10 02:28:29 +00:00
|
|
|
[![version 1.1.5](https://img.shields.io/badge/pub-1.1.5-brightgreen.svg)](https://pub.dartlang.org/packages/angel_mongo)
|
2017-02-19 12:32:21 +00:00
|
|
|
[![build status](https://travis-ci.org/angel-dart/mongo.svg?branch=master)](https://travis-ci.org/angel-dart/mongo)
|
2016-06-23 04:58:21 +00:00
|
|
|
|
2016-05-09 21:16:44 +00:00
|
|
|
MongoDB-enabled services for the Angel framework.
|
2016-06-23 04:58:21 +00:00
|
|
|
|
|
|
|
# Installation
|
|
|
|
Add the following to your `pubspec.yaml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
2017-02-20 16:00:42 +00:00
|
|
|
angel_mongo: ^1.0.0
|
2016-06-23 04:58:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
2017-02-23 01:00:25 +00:00
|
|
|
This library exposes one main class: `MongoService`.
|
2016-06-23 04:58:21 +00:00
|
|
|
|
|
|
|
## Model
|
2017-02-20 16:00:42 +00:00
|
|
|
`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.
|
2016-06-23 04:58:21 +00:00
|
|
|
|
|
|
|
```dart
|
|
|
|
class User extends Model {
|
|
|
|
String username;
|
|
|
|
String password;
|
|
|
|
}
|
2016-06-23 19:59:10 +00:00
|
|
|
|
2016-09-21 04:26:22 +00:00
|
|
|
main() async {
|
|
|
|
Db db = new Db('mongodb://localhost:27017/local');
|
|
|
|
await db.open();
|
|
|
|
|
2017-02-23 01:00:25 +00:00
|
|
|
app.use('/api/users', new TypedService<User>(new MongoService(db.collection("users"))));
|
2016-09-21 04:26:22 +00:00
|
|
|
|
|
|
|
app.service('api/users').afterCreated.listen((event) {
|
|
|
|
print("New user: ${event.result}");
|
|
|
|
});
|
|
|
|
}
|
2016-06-23 04:58:21 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## MongoService
|
|
|
|
This class interacts with a `DbCollection` (from mongo_dart) and serializing data to and from Maps.
|
|
|
|
|
2016-06-23 19:59:10 +00:00
|
|
|
## Querying
|
|
|
|
You can query these services as follows:
|
|
|
|
|
|
|
|
/path/to/service?foo=bar
|
|
|
|
|
2017-02-13 01:38:24 +00:00
|
|
|
The above will query the database to find records where 'foo' equals 'bar'.
|
2016-06-23 19:59:10 +00:00
|
|
|
|
|
|
|
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`.
|
|
|
|
|
2016-06-23 04:58:21 +00:00
|
|
|
See the tests for more usage examples.
|