Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8744625
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:52:15+00:00 2026-06-13T11:52:15+00:00

Right now i’m working on a site which uses the SQLAlchemyAuthenticatorPlugin. You need username

  • 0

Right now i’m working on a site which uses the SQLAlchemyAuthenticatorPlugin. You need username and password to login.
I would like to add a login with email and password. So in the end it should be possible to use email/password or username/password to login.
Right now it looks like this:

sqlauth = SQLAlchemyAuthenticatorPlugin(model.User, model.meta.Session)
sqlauth.translations['user_name'] = 'email'
sql_user_md = SQLAlchemyUserMDPlugin(model.User, model.meta.Session)
sql_user_md.translations['user_name'] = 'email'

With sqlauth.translations i’m now able to successfully login with email/password. But of course username/password isn’t working anymore.
Any ideas on how to make both options work at the same time?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T11:52:16+00:00Added an answer on June 13, 2026 at 11:52 am

    The SQLAlchemy plugins are fairly simple; you can either monkey-patch them or implement your own version of the plugins, like

    from sqlalchemy.orm.exc import NoResultFound, MultipleResultsFound
    import repoze.who.plugins.sa
    class _EmailBaseSQLAlchemyPlugin(object)
        default_translations = {'user_name': "user_name", 'email': 'email',
                                'validate_password': 'validate_password'}
    
        def get_user(self, login):
            login_type = 'email' if '@' in login else 'user_name'
            login_attr = getattr(self.user_class, self.translations[login_type])
            query = self.dbsession.query(self.user_class)
            query = query.filter(login_attr == login)
    
            try:
                return query.one()
            except (NoResultFound, MultipleResultsFound):
                # As recommended in the docs for repoze.who, it's important to
                # verify that there's only _one_ matching userid.
                return None
    
    class EmailSQLAlchemyAuthenticatorPlugin(_EmailBaseSQLAlchemyPlugin,
              repoze.who.plugins.sa.SQLAlchemyAuthenticatorPlugin):
        pass
    class EmailSQLAlchemyUserMDPlugin(_EmailBaseSQLAlchemyPlugin,
              repoze.who.plugins.sa.SQLAlchemyUserMDPlugin):
        pass
    
    sqlauth = EmailSQLAlchemyAuthenticatorPlugin(model.User, model.meta.Session)
    sql_user_md = SQLAlchemyUserMDPlugin(model.User, model.meta.Session)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now I have a username being stored in NSUserDefaults and the password in
Right now, I have a script which uses PHP's tokenizer to look for certain
Right now, I have: RewriteRule ^([^/\.]+)?$ index.php?id=$1 [L] to match any username at the
Right now, I've just some code which fetches the picture from the URL directly.
Right now I'm working on an archive browsing application that lets users navigate through
right now I'm working on my website where the ajax should check if the
Right now what it does is allows me to select files but I need
Right now I am trying to instantiate the Circle class (which is a subclass
Right now based on the site name in the URL parameter, we decide the
Right now, I use subprocess to invocate find which does the job fine, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.