1

我们正在尝试使用 customToken 向 Firebase 进行身份验证 - 在我们迁移到 EmberCLI 之前,这一直有效,因为我们在应用运行时的后期启动了这些 Firebase 特定的适配器。

现在尝试在适配器的较早阶段启动 authCustomToken,流程如下:

  • 启动适配器
  • 挂钩“init”并从后端请求令牌
  • 收到令牌时 - authWithCustomToken

代码看起来很像这样:

import DS from 'ember-data';

/**
 * CartAdapter
 * @class adapters.Cart
 * @extends DS.FirebaseAdapter
 */
export default DS.FirebaseAdapter.extend(ajax, {
    firebase: new Firebase('https://firebasehost.com'),
    pathForType: function() {
        return 'carts/' + this.get('sessionService').get('userId');
    },
    initAdapter: function() {
        this.ajaxRequest('backendhost/firebase/').then(function(data) {
            var ref = new Firebase('https://firebasehost.com');
            ref.authWithCustomToken(data.token);
        });
    }.on('init')
});

解决这个问题的最佳方法是什么?

4

1 回答 1

0

错误是 EmberFire 似乎还不支持验证子规则。很可能是因为它试图在插入商品之前更新购物车。

这适用于 Ember 1.7 和之前版本的 EmberFire。

下面的规则块确实有效,没有注释的部分无效:

"rules": {
    // All data is accessible
    ".read": true,
    ".write": true,
    "cartItem": {
        "$userid": {
            // A list of users carts.
            "$cartitemid": {
                // Only the user can read and write their own entries into this list.
                ".write": "auth != null && $userid ==auth.uid",
                ".read": "auth != null && $userid ==auth.uid",
                "cart": {
                    // The following relation should only contain an actual id from the "cart" list.
                    "$cartid": {
                        ".validate": "root.child('carts').hasChild($cartid)"
                    }
                }
            }
        }
    },
    "carts": {
        "$userid": {
            "$cartid": {
                // The user is allowed to read and write everything in their cart.
                ".read": "auth != null && $userid ==auth.uid",
                ".write": "auth != null && $userid ==auth.uid"
                /*"items": {
                    // The following list should only contain actual ids from the "cartItems" list.
                    "$itemid": {
                        ".validate": "root.child('cartItem/' + $userid).hasChild($itemid)"
                    }
                }*/
            }
        }
    }
}
于 2014-11-26T08:35:05.037 回答