1

我正在尝试为使用 EAK 将身份验证合并到应用程序中获得快速而肮脏的基础。验证功能按预期工作:它查找匹配的电子邮件并在找到时解析承诺。

出于某种原因,restore 方法永远不会在页面重新加载时被调用......或者根本不会被调用。我不知道这是否是 EAK、ESA 或其他我做错的问题。

var customAuthenticator =  Ember.SimpleAuth.Authenticators.Base.extend({
    resourceName: 'user',
    identifierField: 'email',
    restore: function (data) {
        console.log('Attempt to restore -> ', data);
        return new Ember.RSVP.Promise(function (resolve, reject) {
            resolve(data);
        });
    },
    authenticate: function (credentials) {
        var self = this;
        return new Ember.RSVP.Promise(function (resolve, reject) {
            var idObject = {};
            idObject[self.identifierField] = credentials.identification;

            self.get('store').find(self.resourceName, idObject).then(function (user) {
                var dataId;
                if(user.get('content').length) {
                    dataId = user.get('content').objectAt(0).get('data').id;
                    resolve({userId: dataId});
                } else {
                    reject();
                }
            });
        });
    },
    invalidate: function () {
        console.log('Attempt to invalidate');
        return new Ember.RSVP.Promise(function (resolve, reject) {
            resolve();
        });
    }
});

export default {
    name: 'authentication',
    initialize: function (container, application) {
        Ember.SimpleAuth.Session.reopen({
            user: function() {
                if (!Ember.isEmpty(this.get('userId'))) {
                    return container.lookup('store:main').find('user', +this.get('userId'));
                }
            }.property('userId')
        });
        container.register('authenticator:custom', customAuthenticator);
        container.injection('authenticator:custom', 'store', 'store:main');
        Ember.SimpleAuth.setup(container, application);
    }
};

任何见解将不胜感激!

编辑:

以下是初始认证后本地存储的内容:

在此处输入图像描述

编辑:断点后局部范围的镜头

在此处输入图像描述

编辑:在恢复方法中添加了一些调试行

restore: function() {
    var _this = this;
    return new Ember.RSVP.Promise(function(resolve, reject) {
      var restoredContent      = _this.store.restore();
      var authenticatorFactory = restoredContent.authenticatorFactory;
      if (!!authenticatorFactory) {
        console.log('Log 1');
        delete restoredContent.authenticatorFactory;
        console.log('Log 2');
        _this.container.lookup(authenticatorFactory).restore(restoredContent).then(function(content) {
          console.log('Log 3');
          _this.setup(authenticatorFactory, content);
          resolve();
        }, function() {
          _this.store.clear();
          reject();
        });
      } else {
        _this.store.clear();
        reject();
      }
    });
  },

永远不会到达“日志 3”行。我还尝试手动执行此操作,_this.container.lookup('authenticator:custom')这似乎导致无法到达超出它的任何行。所以看起来查找有问题。

编辑:从初始化程序中删除该行时container.injection('authenticator:custom', 'store', 'store:main'),将调用 restore 方法。显然,如果没有商店,验证器就不是很有用,因此可能需要一种不同的处理方法。

还有更多:似乎对身份验证器的任何注入都会导致此问题,而不仅仅是商店的注入。

4

2 回答 2

1

问题是我在调用Ember.SimpleAuth.setup(container, application). 这是有效的初始化程序代码:

export default {
name: 'authentication',
initialize: function (container, application) {
    Ember.SimpleAuth.Session.reopen({
        user: function() {
            if (!Ember.isEmpty(this.get('userId'))) {
                return container.lookup('store:main').find('user', +this.get('userId'));
            }
        }.property('userId')
    });
    container.register('authenticator:custom', customAuthenticator);
    Ember.SimpleAuth.setup(container, application);
    container.injection('authenticator:custom', 'store', 'store:main');
    }
};
于 2014-06-11T19:08:42.443 回答
0

您需要做的就是在simple-auth之前注册您的自定义身份验证器。

基本上,在您导出的对象中添加before: 'simple-auth'

于 2014-11-23T10:25:20.547 回答