Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Update: As of October 17th, 2012: Meteor 0.5.0 and up include a full client/server authentication system. See Meteor 0.5.0: authentication, user accounts, new screencast for more.

From the Meteor API Documentation:

Currently the client is given full write access to the collection. They can execute arbitrary Mongo update commands. Once we build authentication, you will be able to limit the client's direct access to insert, update, and remove. We are also considering validators and other ORM-like functionality.

What is the time-frame for adding authentication and data validation to Meteor? This validation/authentication is vital for Meteor to be taken seriously for anything other than toy projects. Full write permissions for every client is obviously unacceptable for most (if not all) applications.

share|improve this question
4  
Surely this would be better asked of the developers? – sevenseacat Apr 11 '12 at 6:17
33  
Well, yes... I trust the developers read this. They encourage asking questions here from meteor.com. – Jordan P Apr 11 '12 at 6:26

7 Answers

UPDATE: Auth has been released in Meteor 0.5.0:

http://meteor.com/blog/2012/10/17/meteor-050-authentication-user-accounts-new-screencast

share|improve this answer
36  
I am dying to see this security layer in place. the point about restricting db access the backend is separation of concerns. Since meteor exposes this api in the frontend, I am curious to see how you are going to restrict the client... – Olivier Refalo Apr 11 '12 at 12:34
3  
You can see the code they have written on github: github.com/meteor/meteor/tree/livedata-auth – jonathanKingston Apr 16 '12 at 11:19
Any good news here @debergalis? I've heard some chatter about seeing "liveauth" appearing, but nothing very significant as of yet. Would very much like to use this in a more practical scenario that has accounts. – ylluminate Jun 18 '12 at 19:08
3  
NOW: github.com/meteor/meteor/wiki/Getting-started-with-Auth (Sorry, just found out the answer from @avital @debergalis.) – ylluminate Jun 18 '12 at 20:59
answer is they have announced the full auth: stackoverflow.com/a/12947046/167827 – lukemh Oct 18 '12 at 6:49

The correct answer turned out to be October 17th, 2012. Meteor 0.5.0 includes a full client/server authentication system.

See http://docs.meteor.com/#allow and http://docs.meteor.com/#deny for the base API that enforces rules on what data clients are allowed to change.

You can imagine a variety of higher-level validation APIs on top of this. We'll look for patterns that emerge in production apps as a guide for how to proceed further.

share|improve this answer

Meteor has data validation already, though not user authentication.

The model is that the server chooses what data to expose for reading, and the server also performs the real writes against the database. The client only simulates the mutations. You can define your own mutations ("methods"), and have them simulated on the client or not. If access checks pass on the client, they still might fail on the server. The server can run additional or different code, and you can hide this code from the client by putting it in the "server" directory. If the method results in different side-effects on the server than on the client, the differences are synced down to the client -- exactly what you'd want.

However, in new projects, to make things easier for first-time Meteor developers, we auto-publish all server data. To turn this off, type "meteor remove autopublish". That is, auto-publishing is the default for new projects but not the default for meteor overall.

share|improve this answer
For example, I just tried if (Meteor.is_client) { Todos.update(this._id, {$addToSet:{tags:'ooo'}});} within the Todo demo and it still persists to database, this doesn't follow with what you are saying (or am I missing something?), if I just try it for the server side it doesn't seem to persist at all – Rick Apr 12 '12 at 21:17
@dgreensp: Can we see a coding example of how this might be done? I've also heard that I can execute a database transaction on the client and somehow protect it on the server with Meteor.is_client or Meteor.is_server, but I don't quite understand how. – Samo Apr 18 '12 at 20:07

Good news, something on the official side here: github.com/meteor/meteor/wiki/Getting-started-with-Auth (https://github.com/meteor/meteor/tree/auth))

share|improve this answer
Ass mentioned on the Meteor FAQ, meteor.com/faq/does-meteor-have-an-authentication-system – Dan Dascalescu Aug 30 '12 at 7:54
In the meantime, meteor has release an auth package. Maybe delete this answer? Thanks :) – Dan Dascalescu Apr 13 at 9:48

A recent email update from them gave some additional information. I think I am beginning to understand now how to use security, here is what they said:

  • Use Meteor.publish() and Meteor.subscribe() to control what clients can see (remove the 'autopublish' package first). Actually you may not need to do this for a blog.

  • Use Meteor.methods() and Meteor.call() to define secure server functions and call them from the client. Then lock down your app by disabling the "training wheel" methods that let any client do any write.

Also, they have indicated that this application uses security: https://github.com/meteor/madewith (I will be looking at the code more myself as I a building an app now that I want to make use of some security)

Basically, there are 2 points here, I think.. with the Meteor.publish() / Meteor.subscribe() issue I think they are referring to the fact that if you have a mongo collection that holds data for more than one user, if you use autopublish you are conceivably giving them access to all the data, not just the data that they are authorized to view. I think by determining when to publish updates, within your code, you can control which information gets pushed out to them.

Secondly, the Meteor.methods() and Meteor.call() are something I have started using. Its a way to essentially do something along the lines of a remote procedure call, to me it feels a bit like using reflection in Java as you call the method using a string name of the method, what you can do then, however is call a method directly that exists on the server but you can also define the same method on the client. I believe the method on the client is called first, so the user sees the results immediately, however it then runs on the server. So, if you put in authentication in the server method, and it fails, you can then publish the change back to the client and they will see the data as it actually exists on the server.

share|improve this answer

I've decided I couldn't wait for the auth branch, as I needed authentication sooner rather than later for an app I'm working on.

https://github.com/matb33/meteor-userauth

You'll need a version of Meteor greater than 0.3.5. As of this writing, that means the devel branch.

share|improve this answer

And now, alongside the allow/deny methods, we have client input validation! :)

Add new check package for ensuring that a value matches a required type and structure. This is used to validate untrusted input from the client. See http://docs.meteor.com/#match for details.

https://groups.google.com/forum/?fromgroups=#!topic/meteor-core/MynZS2atZNA

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.