Members Only! JavaScript Private Chat API w/ Access Control
Good News! We’ve launched an all new Chat Resource Center.
We recommend checking out our new Chat Resource Center, which includes overviews, tutorials, and design patterns for building and deploying mobile and web chat.
We’ve now built out a pretty solid private chat application with chat alert popups and the ability to spawn an infinite amount of private channels for private chat. However, you might have noticed that our channels are pretty predictable. It’s not real private chat unless the rooms only allow appropriate members in.
In this tutorial, we’re going to change that, and we’ll add a layer of security to our private channels with permission-based authentication for private channels with our private
We’ve now covered both building a multiplayer game lobby with a chatroom and the different ways we can use matchmaking to connect two different users. Here’s what we’ve covered so far:
- Part One: Series Overview and Building a Multiplayer Game Lobby
- Part Two: Adding Users and Usernames
- Part Three: Getting a List of Online Users
- Part Four: Random Matchmaking of Users
- Part Five: Skill-based Matchmaking of Users
- Part Six: Matchmaking Algorithm: Enabling Users to Challenge Other Players
- Part Seven: Create Chatrooms and Multiple Channels On Demand Tutorial
- Part Eight: Preparing for Private Chatrooms and Refactoring via Private Channels
- Part Nine: Creating Private Chat Requests with Popup Alerts
- Part Ten: JavaScript Private Chat API with Access Control
This blog post is Part Ten of PubNub Developer Evangelist Ian Jennings‘s series on creating a multiplayer game with JavaScript.
Setting Up Access Manager with Our Private Chat API
In order to grant permissions to our users, we’ll first need a secret key. The demo
and demo
publish and subscribe keys don’t support access to Access Manager.
You’ll first need to sign up for a PubNub account. Once you sign up, you can get your unique PubNub keys in the PubNub Developer Portal.
Publish and Subscribe Keys
Enter your publish and subscribe keys from the PubNub console into the spots where demo
and demo
currently are.
Secret Key
Not just anybody is allowed to grant permissions. To do that, you need asecret_key
. You supply this in the same object as your publish and subscribe keys.
Enabling Access Manager
When Access Manager is turned on, all channels are automatically set to have completely restricted read and write; meaning everything is locked down until you grant permissions out.
You can turn Access Manager on in the PubNub console. While you’re there, you should enable Presence too so our previous demos will continue to work.
Auth_key
Now we know who is allowed to authorize other users, we need a way to identify who is allowed in what channel. For this we auth_key
. auth_key
gives us the ability to filter based on session, permissions levels, etc.
We’re going to plug in the same me.uuid
variable into our setup object as auth_key
.
Granting Permissions
Now we’re all set up to grant people access to channels. All we need to do now is call pubnub.grant()
.
Let’s break it down.
There is the channel:
we want to grant access to. We usechannel + ',' + channel + '-pnpres',
because using a comma lets us grant the same access to two channels at once.
The auth_key
is the same as earlier. This is who we want to grant access to.
The properties read: true
let us subscribe, and write: true
let us publish.
The ttl:
setting is a time for the grant to expire and it is set to 0
so it lasts forever.
There is also callback
but if you don’t know what thats for by now you should go back to tutorial #1!
Grant Before Subscribe
We’re going to wrap our pubnub.subscribe
call in a grant call so we have sufficient permissions before we try to connect.
Because we’re using Presence, we also need to grant ourselves access to the channel + '-pnpres'
channel.
We’ll grant ourselves permissions in channel
, wait for the callback, grant ourselves permission in chanel + '-pnpres'
, wait for the callback, and then finally subscribe.
Now when we run the code, we should connect without errors. This will grant everybody access to the channel and presence channel when they load the page.
If you experience errors, check your auth_key
, channel_name
, and make sure Access Manager is enabled.
Make Private Channels Private
Now we’re going to do the same exact thing for the private user to user channel. When a user opens the modal, they’ll give themselves access to the private chat channel. No other users will have access to that channel besides the two users who start chatting.
Full Private Chat API Demo
See the Pen Memewarz – Private Chat #3 by Ian Jennings (@ianjennings) on CodePen.0
Real Security
How could this possibly be secure if everyone can grant access to themselves? It isn’t. In the next tutorial, we’ll move the Access Manager permissions “server side” in a simulated NodeJS environment. We’ll actually be using another client CodePen client.
Get Started
Sign up for free and use PubNub to power real-time private chat