Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PouchDB authentication: Create new CouchDB users

I use the PouchDB-authentication plugin and I love it.

However, I'm a little confused about the signup process and maybe I don't use it the right way. I use it to create new users in my CouchDB database but I don't understand why it is associated with a specific database? Since I create CouchDB user before his specific database, I have to use a dummy database to create the new user:

// Create or get a database on the CouchDB server to further create a new user
var remoteDB = new PouchDB('http://169.254.197.198:5984/dummy');

// Signup to this db in order to create new user in the CouchDB server
remoteDB.signUp(document.register.username.value,
  document.register.password1.value).then(function (reponse){
}).then(function (reponse) {
  // handle response
}).catch(function (error) {
  // handle error
});

Question: Is there a way to create a new users independently of a database?

like image 436
hhh Avatar asked May 04 '15 11:05

hhh


Video Answer


1 Answers

It's a design flaw in pouchdb-authentication. Technically, your users are defined globally relative to the entire CouchDB server, but pouchdb-authentication tries to make things simpler by attaching itself to a PouchDB object linked to a single CouchDB database.

The easiest thing, if you want to continue using pouchdb-authentication, is yeah, to use a dummy database. Sorry about that; I couldn't come up with a better system. :/

like image 177
nlawson Avatar answered Sep 20 '22 03:09

nlawson