Skip to main content

Advanced authentication with OTP and phone number verification

Project description

Moses

Moses is the Django app that provides OTP authentication and phone number email verification by 6-digit verification codes.

Quick start

  1. Add "moses" to your INSTALLED_APPS setting like this::
    INSTALLED_APPS = [
        ...
        'moses',
        'django.contrib.admin',
        ...
        'social_django',
    ]
  1. Set moses's CustomUser model as AUTH_USER_MODEL::
    AUTH_USER_MODEL = 'moses.CustomUser'
  1. Allow OTP header in django-cors-headers config::
    CORS_ALLOW_HEADERS = (
        *default_headers,
        "otp",
   )
  1. Add MFAModelBackend as Authentication backend to process OTP on authentication::
    AUTHENTICATION_BACKENDS = [
        'social_core.backends.google.GoogleOAuth2',
        'moses.authentication.MFAModelBackend',
        ...
    ]
  1. Add JWTAuthentication to REST_FRAMEWORK's DEFAULT_AUTHENTICATION_CLASSES::
    REST_FRAMEWORK = {
        ...
        'DEFAULT_AUTHENTICATION_CLASSES': [
            'moses.authentication.JWTAuthentication',
        ]
    }
  1. Specify Moses's serializers for Djoser::
    MOSES = {
        "DEFAULT_LANGUAGE": 'en',
        "SEND_SMS_HANDLER": "project.common.sms.send",
        "SENDER_EMAIL": "noreply@example.com",
        "PHONE_NUMBER_VALIDATOR": "project.common.sms.validate_phone_number",
        "DOMAIN": DOMAIN,
        "URL_PREFIX": "http://localhost:8000", # without trailing slash
        "IP_HEADER": "HTTP_CF_CONNECTING_IP" if DEBUG else None,
        "LANGUAGE_CHOICES": (
            ('en', _("English")),
        ),
    }
  1. Add to your root urls.py::
    from moses.admin import OTPAdminAuthenticationForm
    from moses import urls as moses_urls

    admin.site.site_header = _('Admin Panel')
    admin.site.index_title = 'Welcome'
    admin.site.login_form = OTPAdminAuthenticationForm
    urlpatterns = [
        ...
        path('moses/', include(moses_urls, namespace='moses')),
    ]
  1. Run python manage.py migrate to create the accounts models.

  2. Add middleware:

MIDDLEWARE = [
    ...
    'social_django.middleware.SocialAuthExceptionMiddleware',
]
  1. Add context processors:
TEMPLATES[0]['OPTIONS']['context_processors'] += [
    'social_django.context_processors.backends',
    'social_django.context_processors.login_redirect',
]

Google Sign-In

Moses supports authentication via Google OAuth2. To enable it:

  1. Create a Google OAuth2 Client ID in the Google Cloud Console.

  2. Add the client ID to your MOSES settings:

    MOSES = {
        ...
        "GOOGLE_OAUTH2_CLIENT_ID": "your-google-client-id.apps.googleusercontent.com",
    }
  1. The following endpoints will be available:
  • POST /moses/token/google/ — Step 1: Send the Google id_token and domain. If the user exists, returns JWT tokens. If the user is new, returns a temporary google_auth_token for completing registration.

    Request body:

    {"id_token": "<google-id-token>", "domain": "example.com"}
    
  • POST /moses/token/google/complete/ — Step 2 (new users only): Send the google_auth_token, phone_number, and domain to create the account and receive JWT tokens.

    Request body:

    {"google_auth_token": "<temp-token>", "phone_number": "+1234567890", "domain": "example.com"}
    

Telegram Sign-In

Moses supports authentication via the Telegram Login Widget — the method officially recommended by Telegram.

Setup

  1. Create a Telegram bot via @BotFather.

  2. In BotFather, go to Bot Settings → Domain → Add your website domain to allow login from your site.

  3. Add the bot token to your MOSES settings:

    MOSES = {
        ...
        "TELEGRAM_BOT_TOKEN": "123456789:ABCdefGhIJKlmNoPQRsTUVwxyZ",
    }
  1. Optional settings:
    MOSES = {
        ...
        "TELEGRAM_AUTH_TEMP_TOKEN_EXPIRY_MINUTES": 5,   # temp token lifetime for new user registration (default: 5)
        "TELEGRAM_AUTH_DATA_MAX_AGE_SECONDS": 300,        # max age of Telegram auth data to prevent replay attacks (default: 300 = 5min)
    }
  1. Add the Telegram Login Widget to your frontend. The widget will return auth data containing: id, first_name, last_name, username, photo_url, auth_date, and hash.

API Endpoints

  • POST /moses/token/telegram/ — Step 1: Send the Telegram auth data and domain. If the user exists (by telegram_id), returns JWT tokens. If the user is new, returns a temporary telegram_auth_token for completing registration.

    Request body:

    {
      "auth_data": {
        "id": 123456789,
        "first_name": "John",
        "last_name": "Doe",
        "username": "johndoe",
        "photo_url": "https://t.me/i/userpic/...",
        "auth_date": 1234567890,
        "hash": "abc123..."
      },
      "domain": "example.com"
    }
    

    Response (existing user):

    {"status": "authenticated", "refresh": "<jwt>", "access": "<jwt>"}
    

    Response (new user):

    {
      "status": "phone_required",
      "telegram_auth_token": "<temp-token>",
      "first_name": "John",
      "last_name": "Doe",
      "username": "johndoe"
    }
    
  • POST /moses/token/telegram/complete/ — Step 2 (new users only): Send the telegram_auth_token, phone_number, optional email, and domain to create the account and receive JWT tokens.

    Request body:

    {
      "telegram_auth_token": "<temp-token>",
      "phone_number": "+1234567890",
      "email": "john@example.com",
      "domain": "example.com"
    }
    

    Response:

    {"status": "authenticated", "refresh": "<jwt>", "access": "<jwt>"}
    

How Verification Works

Moses verifies Telegram auth data using the algorithm specified by Telegram:

  1. A SHA-256 hash of the bot token is used as the HMAC secret key.
  2. All auth data fields (except hash) are sorted alphabetically and joined as key=value\n.
  3. An HMAC-SHA-256 signature is computed and compared against the received hash.
  4. The auth_date is checked to prevent replay attacks.

Signals

Moses emits Django signals during credential confirmation workflows. You can listen to these signals in your application to perform custom actions.

Available Signals

phone_number_confirmed

Emitted when a user successfully confirms their phone number.

Parameters:

  • sender: The User model class
  • user: The user instance whose phone was confirmed
  • phone_number: The confirmed phone number (str)
  • is_initial_confirmation: True if this is the first confirmation, False if updating phone number

Example usage:

from django.dispatch import receiver
from moses.signals import phone_number_confirmed
from moses.models import CustomUser

@receiver(phone_number_confirmed, sender=CustomUser)
def handle_phone_confirmed(sender, user, phone_number, is_initial_confirmation, **kwargs):
    if is_initial_confirmation:
        print(f"User {user.id} confirmed their phone: {phone_number}")
    else:
        print(f"User {user.id} changed their phone to: {phone_number}")

email_confirmed

Emitted when a user successfully confirms their email address.

Parameters:

  • sender: The User model class
  • user: The user instance whose email was confirmed
  • email: The confirmed email address (str)
  • is_initial_confirmation: True if this is the first confirmation, False if updating email

Example usage:

from django.dispatch import receiver
from moses.signals import email_confirmed
from moses.models import CustomUser

@receiver(email_confirmed, sender=CustomUser)
def handle_email_confirmed(sender, user, email, is_initial_confirmation, **kwargs):
    if is_initial_confirmation:
        print(f"User {user.id} confirmed their email: {email}")
    else:
        print(f"User {user.id} changed their email to: {email}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_moses-0.16.0.tar.gz (34.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_moses-0.16.0-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

File details

Details for the file django_moses-0.16.0.tar.gz.

File metadata

  • Download URL: django_moses-0.16.0.tar.gz
  • Upload date:
  • Size: 34.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.13.8 Darwin/25.3.0

File hashes

Hashes for django_moses-0.16.0.tar.gz
Algorithm Hash digest
SHA256 dcee2e1420b4b748e70712df8a3b0d52341ad2618568fa98138e287d801600af
MD5 831300541d08edf349a53719b406a48f
BLAKE2b-256 2ad4099c1eb9fecb7afebab3f8a936033ccacd27535c9508fc602cb30cce18f1

See more details on using hashes here.

File details

Details for the file django_moses-0.16.0-py3-none-any.whl.

File metadata

  • Download URL: django_moses-0.16.0-py3-none-any.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.13.8 Darwin/25.3.0

File hashes

Hashes for django_moses-0.16.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b4c10cdc9e989fe3b300fe42a30dcaa0e4aea4aec344cbdf7a5d236b0bc39c53
MD5 879f2b8a582331cf69b2ad9dfeb3ca1e
BLAKE2b-256 7c614f21eb2be5ba31ab7604f5e93a84949f3cb2555bcb75181bd82a9d53c1ce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page