I'm new to couchdb/couchapp. I'm wondering if it's possible to access _session information from couchdb views. For example:

function(doc) {
  if (doc.username == session.userCtx.name) {
    emit(doc.username, doc);
  }
}; 
link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

Great question! The answer is no and it's important to understand why.

The policy about which users may see what data is done at the database level, not the document or view level. It sounds odd however it makes sense in the long-run.

The function that does have access to the session is filter functions. You can use those to create private databases per-user with all the documents they may read.

I wrote more answers about read permissions in a question about _all_docs, and also about CouchDB read permissions.

link|improve this answer
Thank you @jhs It makes sense. I think I'll aim to provision new database per user. Cheers! – Michal Kuklis Mar 3 '11 at 4:06
feedback

Your Answer

 
or
required, but never shown

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