在Firebase用户表中添加额外详细信息



我正在开发firebase+angularjs应用程序,我使用简单的电子邮件和密码身份验证,它运行正常。

我只是想知道我是否可以在firebase电子邮件+密码验证使用的用户表上添加额外的用户数据,就像我想添加计费信息和其他有关用户的详细信息,而不需要在firebase上创建额外的节点/表来存储这些额外的数据一样。

Firebase将电子邮件/密码用户存储在一个单独的位置,您无法直接访问该位置。您无法在此位置展开数据。

由于许多应用程序开发人员希望访问其应用程序代码中的用户数据,因此通常将所有用户存储在应用程序数据库内部的/users节点下。缺点是你必须自己做。但积极的一面是,如果你愿意,你可以存储任何额外的信息。

有关示例代码,请参阅有关存储用户数据的Firebase指南。从那里:

var ref = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com");
ref.onAuth(function(authData) {
  if (authData && isNewUser) {
    // save the user's profile into Firebase so we can list users,
    // use them in Security and Firebase Rules, and show profiles
    ref.child("users").child(authData.uid).set({
      provider: authData.provider,
      name: getName(authData)
    });
  }
});

注意:只有当您使用Firebase Admin SDK,并且您需要在服务器上有端点来管理自定义令牌时,此方法才有效

Firebase Admin SDK可以选择创建带有额外声明对象的自定义令牌,声明对象可以包含任意数据。这可能有助于存储一些与用户相关的信息,比如用户是否是高级用户。

使用auth对象可以访问其他索赔数据。

示例

var uid = "some-uid"; //this can be existing user UID
var additionalClaims = {
   premiumAccount: true,
   some-user-property: 'some-value'
};
admin.auth().createCustomToken(uid, additionalClaims)
  .then(function(customToken) {
     // Send token back to client
  })
  .catch(function(error) {
     console.log("Error creating custom token:", error);
});

additionalClaims也可在Firebase安全规则中访问。

有关更多信息,请阅读Firebase自定义令牌

Firebase用户在项目的用户数据库中存储了一组固定的基本属性——唯一的ID、主电子邮件地址、名称和照片URL,用户可以更新这些属性(iOS、Android、web)。不能将其他属性直接添加到Firebase User对象中;相反,您可以将附加属性存储在Firebase实时数据库中。

Firebase有一组固定的用户属性,这些属性可以更新,但不能添加到.中

但是,您可以使用JSON.stringify() and JSON.parse() 在序列化和反序列化的帮助下添加少量数据

然后使用任何一个未使用的属性来存储字符串

DisplayName或photoURL属性中。请记住,可以添加的数据必须大小较小,并存储为字符串。

这只能通过使用FIREBASE SDK中的方法实现,而不能使用下面所示的angularfire

var user = firebase.auth().currentUser;
user.updateProfile({
  displayName: "Jane Q. User",
  photoURL: "https://example.com/jane-q-user/profile.jpg"
}).then(function() {
  // Update successful.
}, function(error) {
  // An error happened.
});

您可以在这里以字符串的形式在photoURL或displayYName变量中存储更多类似json的数据。

我的答案与角度无关,但我搜索了一下quiet,想知道如何使用Polymer和Polymerfire,所以我添加这个答案是为了帮助人们比我更快地完成它。

正如Frank van Puffelen提到的那样,我不得不在数据库中添加一个单独的节点。

进口:

<link rel="import" href="../bower_components/polymerfire/firebase-app.html">
<link rel="import" href="../bower_components/polymerfire/firebase-auth.html">
<link rel="import" href="../bower_components/polymerfire/firebase-document.html">

然后在应用程序中的任何位置放置<firebase-app>组件:

<firebase-app
  name="yourAppName"
  api-key= "{{yourApi}}"
  auth-domain= "{{yourAuthDomain}}"
  database-url= "{{yourDbUrl}}"
>
</firebase-app>

之后,您将需要使用CCD_ 6和<firebase-document>:

模板:

<firebase-auth
  id="auth"
  app-name="yourAppName"
  signed-in="{{signedIn}}"
  user="{{user}}">
</firebase-auth>
<firebase-document
  id="document"
  app-name="yourAppName"
  path="{{usersPath}}"  // e.g "/users"
  data="{{userDocument}}">
</firebase-document>

脚本:

this._register = function(){
  var formValid = this.querySelector('#register-form').validate();
  var auth = this.querySelector('#auth');
  if(formValid && this.passWordsIdentic){
  //The actual registration
  auth.createUserWithEmailAndPassword(this.email, this.password).then(function(user){
    console.log('auth user registration succes');
    //Example values
    this.userDocument.uid = user.uid;
    this.userDocument.email = user.email;
    this.userDocument.firstName = this.firstName;
    this.userDocument.lastName = this.lastName;
    this.userDocument.userName = this.userName;
    this.$.document.save(this.usersPath).then(() => {
        console.log("custom user registration succes");
        this.$.document.reset();
      });
     }.bind(this)).catch(function(error) {
       var errorCode = error.code;
       var errorMessage = error.message;
       console.log('error: ', errorCode);
     );
    }
  }

就是这样,你可能想看看这个优秀的谷歌代码实验室,它是一个很好的介绍,可以使用聚合物的firebase。

这是注册代码,在用户表中添加额外字段

  import { AngularFireAuth } from "@angular/fire/auth";
  constructor(private firebaseAuth: AngularFireAuth){}
  registration(data: any, password: any) {
    return this.firebaseAuth.auth.createUserWithEmailAndPassword(data.Email, password)
      .then(res => {
        res.user.updateProfile({
          displayName: `${data.DisplayName}`
        })
    data.UserId = res.user.uid;
    data.PhoneNumbers = [{
      NumberType: '',
      NumberValue: ''
    }];
    data.PhotoUrl = '';
    data.Addresses = [{
      AddressLine1: '',
      AddressLine2: '',
      City: '',
      State: '',
      Country: '',
      PostalCode: '',
      AddressType: ''
    }];
    data.IsDeleted = false;
    this.fireStore.doc(`users/${res.user.uid}`).set(data);
    this.toastr.success('User has been register successfully!', 'Successfull!');
    return true;
  }).catch(err => {
    switch (err.code) {
      case 'auth/email-already-in-use':
        this.toastr.error(`Email address ${data.Email} already in use.`, 'Error!');
        break;
      case 'auth/invalid-email':
        this.toastr.error(`Email address ${data.Email} is invalid.`, 'Error!');
        break;
      case 'auth/operation-not-allowed':
        this.toastr.error('Error during sign up.', 'Error!');
        break;
      case 'auth/weak-password':
        this.toastr.error('Password is not strong enough. Add additional characters including special characters and numbers.', 'Error!');
        break;
      default:
        this.toastr.error(err.message, 'Error!');
        break;
    }
  });

}

这里有一个swift版本。您的用户结构("表")类似

--users:
-------abc,d@email,com:
---------------email:abc.d@email.com
---------------name: userName
etc.

在您通过身份验证FIRAuth.auth()?.createUser之后,您可以将数据库中的用户设置如下:

        let ref = FIRDatabase.database().reference()
        let rootChild = ref.child("users")
        let changedEmailChild = u.email?.lowercased().replacingOccurrences(of: ".", with: ",", options: .literal, range: nil) // Email doesn't support "," firebase doesn't support "."
        let userChild = rootChild.child(changedEmailChild!)
        userChild.child("email").setValue(u.email)
        userChild.child("name").setValue(signup.name)

请注意,方法在v4.0.0中发生了更改。因此,您需要使用以下代码来检索用户配置文件:

afAuth.authState.subscribe((user: firebase.User) => { 
  this.displayName = user.displayName;
  this.email = user.email;
  this.photoURL = user.photoURL;
});

Frank的回答很好,但Angular6/Firebase5/Angularfire5:的情况有点不同

这是我用于登录用户的点击处理程序:

this.afAuth.auth.signInWithPopup(new firebase.auth.GoogleAuthProvider()).then((e) => {
      console.log("Log-In Success" + e.additionalUserInfo.profile.name);
      if (e.additionalUserInfo.isNewUser)
        this.addUserToDatabase(/*...*/);
    }).catch((error) => {
      console.log("Log-In Error: Google Sign-In failed");
    });

相关内容

  • 没有找到相关文章

最新更新