如何从couchbase服务器同步特定文档?

时间:2015-12-14 14:04:33

标签: swift couchdb couchbase-lite couchbase-sync-gateway

我正在开发一个应用程序。在那个应用程序中,我使用了couchbase Lite移动版。我从couchbase服务器同步数据库中的所有文档。但问题是数据库很大。我不想同步来自couchbase服务器的所有文件。我想只从服务器同步特定的数据/文档。

我的问题是,如何同步与该特定用户相关的特定文档?

1 个答案:

答案 0 :(得分:3)

特定用户的文档访问权限在同步功能中完成。它是一个用JavaScript编写的函数,驻留在Sync Gateway的配置文件中。

同步功能中可用的方法是:

  • channel(channelname):将文档发送到频道。
  • access(username, channelname):授予用户对频道的访问权限(也可以将角色授予频道,因此具有该角色的所有用户都可以访问该频道)。
  • role(username, rolename):为用户分配角色。
  • requireAccess(channelname):如果上下文中的用户尚无权访问该频道,则会引发错误。
  • requireUser(username):如果上下文中的用户不是用户名,则会引发错误。
  • requireRole(rolename):如果上下文中的用户没有角色名称,则抛出错误。
  • throw({forbidden: "error message"}):为自定义验证抛出异常。

以下是带有内联注释的配置文件示例:

{
  "log": ["REST", "CRUD"],
  "users": {
    "foo1": {"password": "letmein", "admin_roles": ["admin"]},
    "foo2": {"password": "letmein"}
  },
  "databases": {
    "quizz": {
      "sync": `function(doc, oldDoc) {
        // The owner field shouldn't change during updates
        if (doc.owner != oldDoc.owner) {
          throw({forbidden: "Can't change the owner field on existing documents"});
        }
        switch(doc.type) {
          case "list":
            // only users with admin role can create/update list documents
            requireRole("admin");
            break;
          case "todo":
           // only the owner of a todo document can create/update it
           require(doc.owner);
           break;
        }
      }`
    }
  }
}

注意:同步功能应该是纯粹的,这意味着给定输入(文档修订版),输出应该保持不变,无论时间如何(例如,您不能发出数据库/ http请求)。此外,无法在同步功能中修改修订版。

有关更多详细信息,请参阅同步功能的docs;有关更深入的示例,请参阅this tutorial