OMG badges is an open-source gamification framework for distributing badges to attendees while watching your event's live stream. This app was built for https://dscomg.com and now is open to all communities to utilise in their own meetup/event/etc.
What does OMG badges do?
- Gamification for attendees. It engages attendees as they have more to do than just attending the sessions.
- Give session badges or standalone badges.
- Auto Badges on attending a set number of sessions (5 sessions, 20 sessions)
- Hide easter eggs on your website and provide badges on finding them.
- Be creative and Have fun!
Documentation is hard. I have tried my best to list everything in detail but please feel free to ask any questions in the issues.
- OMG Badges 🎉
NOTE: This application relies on "Google-Sign-In" for authorization. The JWT token granted by Google is exchanged for a native access token which also signs up the user here and gets their identity. The access token is then used as a Bearer token to interact with the application. So, your client must support Google sign-in. It's easy, read on :)
- clone the repo
- Go in the repo and setup virtual environment using
python -m venv env
- Then activate the environment using
- On Windows
source env\Scripts\activate
- On MacOS/Linux
source env/bin/activate
- On Windows
- At the root of your project directory
pip install -r requirements.txt
- create a file
.env
and copy contents of.env_dummy
to.env
in the same directory
SECRET_KEY=
DB_NAME=
DB_USER=
DB_PASSWORD=
DB_HOST=
DB_PORT=
GOOGLE_OAUTH2_KEY=
GOOGLE_OAUTH2_SECRET=
PRODUCTION=
- You can use [https://djecrety.ir/] to generate your secret key
- Set
PRODUCTION=False
during development in.env
file otherwise enter the db details. If you wish to use SQLite3 for production db, in that case also leavePRODUCTION=False
and ignore any other DB_* fields. Keep in mind that the app will run in debug mode ifPRODUCTION=False
. - Get Google Oauth2 client key and Secret key and enter it here. Follow this for the same https://developers.google.com/identity/sign-in/web/sign-in
read more about Google auth here - https://developers.google.com/identity/protocols/oauth2
-
Make sure to not have give spaces between KEY=VALUE
-
After the above setup, run
python manage.py makemigrations
python manage.py migrate
- Create superuser
python manage.py createsuperuser
make sure to enter all the details including email
- Start the backend server (testing server)
python manage.py runserver
Runs the backend server at default port 8000
.
Open http://localhost:8000 to view it in the browser.
- log into http://localhost:8000/admin
- Go to DJANGO OAUTH TOOLKIT > Applications
- click Add Application
- Copy Client ID for later use
- Click search icon next to user and select your superuser
- leave redirect URIs > blank
- select Client Type > public
- select Authorization grant type > Resource owner password-based
- Give whatever name to the application (maybe "Gauth")
- It should look something like this after setup.
- log into http://localhost:8000/admin
- Go to BADGES > Badges
- click Add Badge
- BadgeId - give any id to the badge, a short one word description recommended
- Name - give full name of the badge, It'll be displayed on the app
- Select any image for the badge. Recommended square and small size ~70kb
You can use the badges in 2 ways
- Link badges to session - This can be used as an attendance system, simply send the trackId from client and the app will automatically grant the badge linked to the session based on the current time. This time management is done server side.
- Allot individual badges - You can grant individual badges too when a user performs a task, finds an easter egg, or clicks a link. Use the badgeId to make the call to grant individual badges. This badge may or may not be linked to a session.
- log into http://localhost:8000/admin
- Go to EVENTS > Sessions
- click Add Sessions
- SessionId - give any id to the session, a short one word description recommended
- Name - give full name of the session
- Badge - associate badge to this session
- Track - default 1, change this number for multiple parallel tracks.
- start, end - Set start time and end time for the session. Please be careful while adding these details as badges depends on this
This is used to provide badges when a user attends a set number of sessions. eg- Attended 5 sessions, Attended 20 sessions.
- log into http://localhost:8000/admin
- Go to EVENTS > Session count specials
- click Add Session count specials
- select count
- select associated badge
POST /api/auth/convert-token
Parameter | Type | Value | Description |
---|---|---|---|
grant_type |
string |
convert_token |
as it is |
client_id |
string |
<Django-Oauth-Client-ID> |
Copied previously |
backend |
string |
google-oauth2 |
as it is |
token |
string |
<Google-Auth-Access-Token> |
Obtained when client side signin using Google Oauth2 API |
example:
{
"grant_type": "convert_token",
"client_id": "hse8AgZkiHdVcGGtVRB3sbuW4w4DM46UA78fI50P",
"backend": "google-oauth2",
"token": "ya29.a0AfH6SMDnFAX_ZKMJNzv4CmVbQbWYCp6PLavVdfOzaJEGHjAaoOxN86UUXLyic_a1ZMJRqVJxd1t5IkGjdVPlnZxwWPJUrRF2TujZISkwDV2iFQtzsEfUMYsdcWt0hJ8Pk1wvNugf-QwZs0jUlg8rdgp_PYCcMyI_7R4"
}
Response
{
"access_token": "Jd4hNC3qjljlzTBMSkdf97x0iOy5Fu",
"expires_in": 36000,
"token_type": "Bearer",
"scope": "read write",
"refresh_token": "Fcp6VflwUrrX65gxJ0qKnfxgYa1Q6a"
}
Save the access_token at the client and use the access token in the header for each authorized request. Note You will receive a new access_token EACH TIME you login on the client and send request to this API. Make sure to overwrite the access_token with the fresh one every time. Or use the refresh token to get a new token after expiration. Feel free to send a PR to this documentation explaining that.
POST /api/session
Set this as the header of the request
Authorization: Bearer <access-token>
Parameter | Type | Value | Description |
---|---|---|---|
track |
integer |
<track-value> |
send the track number of session/default 1 |
example:
{
"track": 1
}
Response
{
"user": "kautukkundan@gmail.com",
"success": true,
"badgeEarned": false
}
badgeEarned
parameter will be True/False depending on
- Whether the session has an associated badge or not
- Whether the person already has the same badge or not This parameter can be used to show a popup notification/toast at the frontend.
GET /api/session
Set this as the header of the request
Authorization: Bearer <access-token>
Response
{
"sessions": [
{
"sessionId": "D01S01",
"name": "Keynote on ML",
"start": "2020-07-04T16:44:25+05:30",
"end": "2020-07-05T16:44:26+05:30"
}
],
"uuid": "6179ea9a-363f-4d1f-a597-07715b612c2e"
}
uuid
is returned on every get call session/badges. This UUID can be used to anonymously fetch the public profile of the user.
POST /api/badges
Set this as the header of the request
Authorization: Bearer <access-token>
Parameter | Type | Value | Description |
---|---|---|---|
badge |
string |
<badge-id> |
send badge ID |
example:
{
"badge":"secretBadge1"
}
Response
{
"user": "kautukkundan@gmail.com",
"success": true,
"badgeEarned": false,
"badge": "secretBadge1"
}
This route can be used to grant badges which are not attached to any particular sessions but are present independently.
- Easter Egg
- Special Badges for exclusive users etc
GET /api/session
Set this as the header of the request
Authorization: Bearer <access-token>
Response
{
"badges": [
{
"badgeId": "D01S01badge",
"name": "Watched ML Keynote",
"image": "/media/badge/lAWQtaCV_400x400_pOV3u2h.jpg"
},
{
"badgeId": "D01S02badge",
"name": "ML Overlord!",
"image": "/media/badge/lAWQtaCP_400x400_pOV3u2g.jpg"
}
],
"uuid": "6179ea9a-363f-4d1f-a597-07715b612c2e"
}
uuid
is returned on every get call session/badges. This UUID can be used to anonymously fetch the public profile of the user.
GET /api/session/collection/<uuid>
GET /api/badges/collection/<uuid>
No Auth needed
Response
{
"badges": [
{
"badgeId": "D01S01badge",
"name": "Watched ML Keynote",
"image": "/media/badge/lAWQtaCV_400x400_pOV3u2h.jpg"
},
{
"badgeId": "D01S02badge",
"name": "ML Overlord!",
"image": "/media/badge/lAWQtaCP_400x400_pOV3u2g.jpg"
}
],
"email": "kau*****@gmail.com"
}
email
is returned in an obscured fashion. This link can be shared by the users on social media and people can visit this link to view the user's badges.
This application was deployed on DigitalOcean for use during our event. You can follow this article for setup and deployments, this should work the same for any cloud service.
-
Each time a user logs in a new
access_token
andrefresh_token
is created in the database. They grow to a huge number and takes a lot of space. It's recommended to delete all the tokens from time to time. -
If anyone has any solution to this issue (solution - Automatically delete old tokens when new tokens are created) please feel free to fix it and send a PR here. This app depends on rest-framework-social-oauth2 for oauth2.
-
HAVE LOTS OF FUN WHILE HOSTING YOUR NEXT eMEETUP!! ⭐️ this project if you like it :D
-
Follow me on twitter for more!