Replies: 5 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)) |
Beta Was this translation helpful? Give feedback.
-
Thank you for answer. But what if I don't need a |
Beta Was this translation helpful? Give feedback.
-
@Akkarine The main problem is that |
Beta Was this translation helpful? Give feedback.
-
Thank you, @sinisaos , I had similar ideas, but thought, maybe this (customizable |
Beta Was this translation helpful? Give feedback.
-
@Akkarine if u are interested in combining session auth + custom user model, u can try smth like this: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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!
Beta Was this translation helpful? Give feedback.
All reactions