-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How one can use custom user
model with Session Auth
app?
#165
Comments
Thanks for the kind words. I think you need to override the login method. For example: from piccolo.apps.user.tables import BaseUser
class User(BaseUser, tablename='piccolo_user'):
@classmethod
async def login(cls, username: str, password: str) -> t.Optional[int]:
# authenticate the user via the blockchain
if check_my_blockchain_service(username, password):
user = await cls.objects().get(cls.username == username)
if not user:
user = cls.create_user(
username=username,
password=password,
active=True,
admin=True, # only if you want to give them access to Piccolo admin
superuser=True # only if you want to have super user privileges in Piccolo admin
)
return user.id
else:
return None
# Pass this BaseUser subclass into any session auth middleware or endpoints, for example:
from piccolo_api.session_auth.endpoints import session_login
from fastapi import FastAPI
app = FastAPI()
app.mount('/login/', session_login(auth_table=User)) |
Thank you for answer. But what if I don't need a |
@Akkarine The main problem is that |
Thank you, @sinisaos , I had similar ideas, but thought, maybe this (customizable |
@Akkarine if u are interested in combining session auth + custom user model, u can try smth like this: |
I want to create blockchain backend app, based on piccolo. So I need custom
User
model (generally, without password field). As suggested in docs, I must implement custom user app. But I also want to use session mechanism. How can I achieve that case?BTW, Great project! I've struggled with fastapi-sqlalchemy stack and it's back and forth model transitions. I've looked other ORMs, compatible with pydantic and FastAPI (Tortoise, SQLModel, Databases, GINO), but those projects looks too young or unmaintained. And only piccolo had my heart from first look). Thank you and keep doing your great work!
The text was updated successfully, but these errors were encountered: