Provides an extensible base from which to build your models. The Socialize package set is built upon this package.
In the spirit of keeping this and all of the packages in the Socialize set alive, I ask that if you find this package useful, please donate to it's development.
$ meteor install socialize:base-model
$ meteor npm install --save simpl-schema
For save/update/delete you will need a collection attached to the Class which has a SimpleSchema attached to it. This is to ensure that you think about securing your models. Properly secured models can execute database operations completely client side without the need to manually define Meteor Methods. If you aren't familiar with Simple Schema, you can find the documentation Here.
Lets get started with a quick example by Modeling a Book.
import BaseModel from 'meteor/socialize:base-model';
import { Mongo } from 'meteor/mongo';
import SimpleSchema from 'simpl-schema';
//We assume that another model of an Author exists so we can import its collection here..
import { AuthorsCollection } from "/models/Author";
const BooksCollection = new Mongo.Collection("books");
const BooksSchema = new SimpleSchema({
"userId":{
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function() {
if(this.isInsert){
return this.userId;
}
}
},
"title":{
type: String
max: 30,
},
"subTitle":{
type: String,
max: 100
},
"authorId":{
type: String,
regEx: SimpleSchema.RegEx.Id
}
});
class BookModel extends BaseModel {
constructor(document) {
super(document); //Must call super passing in the document.
}
owner() {
return Meteor.users.findOne(this.userId);
}
fullTitle() {
return `${this.title}: ${this.subTitle}`;
}
author() {
return AuthorsCollection.findOne(this.authorId);
}
}
//Attach the schema to the collection
BooksCollection.attachSchema(BooksSchema);
//Attach the collection to the model so we can save/update/delete
BookModel.attachCollection(BooksCollection);
BooksCollection.allow({
insert(userId, book) {
/*
book is an instance of the Book class thanks to collection
transforms. This enables us to call it's methods to check
if the user owns it and the author record exists
*/
return book.checkOwnership() && !!book.author();
},
update(userId, book) {
/*
book is an instance of the Book class thanks to collection
transforms. This enables us to call it's methods to check
if the user owns it and the author record exists
*/
return book.checkOwnership() && !!book.author();
},
remove(userId, book) {
/*
book is an instance of the Book class thanks to collection
transforms. This enables us to call it's methods to check
if the user owns it and the author record exists
*/
return book.checkOwnership()
}
});
Let's examine what we have done here.
- Import all the necessary parts.
Mongo
,SimpleSchema
, andBaseModel
. - Instantiate a
Mongo.Collection
and aSimpleSchema
and define the schema for the model - Attach the schema to the collection as our first layer of write security.
- Define a
Book
class that extendsBaseModel
making sure to callsuper(document)
- Attach the collection to the
Book
class enabling instances of the class to execute save/update/remove operations - Specify allow rules for the collection as a final layer of security thus allowing total client side manipulation.
Take note that attaching the collection to the Class will also assign a reference to Meteor
at Meteor["collectionName"]
, so with the above code we would have a reference to BooksCollection
assigned to Meteor.books
.
Now we are all set up to use the new Book
class, and since we've properly secured our database writes through a combination of SimpleSchema and allow rules, we can now do all of our database operations using client side database methods.
Don't believe client side only database is possible? Check the results of Discover Meteor's allow/deny security challenge and take note that it mentions issues with other submissions, but you'll only find Kelly Copley listed under people who got it right. Guess how I secured my solution ;-).
With this in mind, lets insert a book in to the database client side.
//first we get get an Author for the book we want to insert
var author = Meteor.authors.findOne({firstName:"Dave", lastName:"Pilkey"});
var book = new Book({
title: "Captain Underpants",
subTitle: "and The Sensational Saga of Sir-Stinks-A-Lot",
authorId: author._id,
garbageKey: "Stripped By SimpleSchema.clean() when calling save()"
});
book.save(); //This will also clean the data before inserting so no garbage data gets through.
We do this with code (dev tools? :-P ), but you could use a form and template events, OR you could define necessary information on your SimpleSchema
and use aldeed:autoform
or vazco:uniforms
to render a form to input this information.
Now that we have data in the database we can read it out, display it, and use the methods defined on the class as helpers. Assuming we have a template with a helper that returns a cursor from Meteor.books
, we can iterate over the cursor and the context will be an instance of the Book
class and we can call the methods of the class such as fullTitle
, and author
. Awesomely, since we've also returned a instance of the Author
class from the author
method, we can also call it's methods as well such as author.fullName
which could concatenate the authors first and last name and return a single string.
<h1>Book List</h1>
{{#each books}}
<p>Author's Name: {{author.fullName}}<p>
<p>{{fullTitle}}</p>
{{/each}}
This would yield HTML like so..
<h1>Book List</h1>
<p>Author's Name: Dave Pilkey<p>
<p>Captain Underpants: and The Sensational Saga of Sir-Stinks-A-Lot </p>
There could be some things that I guess might not be so obvious. I'll try to list them here as they come up.
- You must publish data for related models.. If
book.author()
returns a model of author that doesn't have data published for it, then it will return undefined. This is just how Meteor works.