I don't want just all of my users being able to insert/destroy data.
|
[UPDATE] There is now an official and documented Auth Package which provides different solutions to secure a collection. On a CRUD level :
And there is also source : Getting Started with Auth (thanks to @dan-dascalescu) [OLD ANSWER] Apparently there are working on Auth Package(?) that should avoid any users taking full control on the db as it is now. There is also someone suggesting that there is an existing solution (workaround) by defining your own mutations (methods) and make them failed if they attempts to perform an unauthorized action. I didn't get it much better but I think this will often be necessary since I doubt the Auth Package will let you implement the usual auth logic on a row level but probably only on the CRUD methods. Will have to see what the devs have to say. [EDIT] Found something that seems to confirm my thoughts :
Sources of this answer : Accessing to DB at client side as in server side with meteor |
|||||||||||||
|
|
While there is no documented way to do this yet, here's some code that should do what you want:
This will disable the default insert/update/remove methods. Clients can try to insert into the database, but the server will do nothing, and the client will notice and remove the locally created item when the server responds. insert/update/remove will still work on the server. You'll need to make methods with Meteor.methods that run on the server to accomplish any database writes. All of this will change when the authentication branch lands. Once that happens, you'll be able to provide validators to inspect and authorize database writes on the server. Here's a little more detail: http://news.ycombinator.com/item?id=3825063 |
|||||||||||
|
|
A more succinct way:
or to make it more idiomatic: extend meteor:
Calls are simpler:
|
||||
|
|
I am new to Meteor, but what I have come across so far are these two points
In view of number 2, you need to use |
|||
|
|