I deployed my application via Couchapp, which means that the whole application is being served out of the database. I don't want the data in the Couchdb database to publicly available, so I specified a reader role that a user must have before I server him data. When I go to the application, however, all I can get is:

{"error":"unauthorized","reason":"You are not authorized to access this db."}

Because it can't even serve up the login page that uses jquery.couch.js.

Any ideas on how to provide an in-app login (ie, login not using Futon for a user that needs data read access)?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

At this time, the solution requires a little bit of work. (There is pressure in the community to improve this, but I will explain the present answer instead of describing proposals or vaporware.)

Make a "welcome mat" database, with the following features:

  • Has an admin user ("jtsnake"): _security.admins = {"names":["jtsnake"], "roles":[]}
  • Publicly-readable: _security.readers = {"names":[], "roles":[]}}
  • Has a design document with a .validate_doc_update function. Allow no changes except by the admin:

    function(newDoc, oldDoc, userCtx, secObj) {
        // _design/welcome_mat .validate_doc_update
    
        if(! userCtx.name)
          throw {"unauthorized": "Please log in to change the welcome mat"};
        if(userCtx.roles.indexOf("_admin") === -1)
          throw {"forbidden": "Only the admin can change the welcome mat"};
        log("Allowing welcome mat update by: " + userCtx.name);
    }
    
  • Finally, place your public content such as the welcome screen, login screen, etc. in this database. Private data can go in the private database once a user has logged in.

link|improve this answer
1  
For reference, you can find detailed information at COUCHDB-1175 and reading this thread. If you have some really good idea to improve it, please help. Otherwise Jason's solution is the best you can do right now. – Marcello Nuccio Sep 13 '11 at 8:42
feedback

Your Answer

 
or
required, but never shown

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