I want to use Firebase to setup a 2 person chat. The users will be able to chat when they 'liked' each other. I'm handling the 'liking' on my own SQL server but I want to use Firebase for the chat.
This is dummy data, it wil look like this eventually.
{
"admins": {
"chat1": {
"user_id_1": {
"active": true
},
"user_id_2": {
"active": true
}
}
},
"chats": {
"chat1": {
"messages": {
"random_id": {
"message": "first message",
"sender": "user_id_1"
}
}
}
}
}
These are my rules:
{
"rules": {
"admins": {
"$chatAdmin": {
}
},
"chats": {
"$chat": {
".read": "root.child('admins').child($chat).hasChild(auth.uid)",
".write": "root.child('admins').child($chat).hasChild(auth.uid)"
}
}
}
}
So what I want is that every time two users are a 'match', so they 'liked' each other. I want to create their chat in /chats/{sha1(uid1 + uid2)}
and give only those 2 users access to it, read and write.
thank me later, hack >
a long as firebase doesn change uid format
also see
https://gist.github.com/katowulf/4741111