Skip to content
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

Using custom db_class alters global state and subsequent uses fail for db_class=None #75

Open
mick-graft opened this issue Jan 10, 2025 · 1 comment

Comments

@mick-graft
Copy link

See comments in the code below:

import casbin_sqlalchemy_adapter
import sqlalchemy
from sqlalchemy import Column, Integer, String

ENGINE = sqlalchemy.create_engine("foo")

CUSTOM_SCHEMA = "custom_schema"


class Base(sqlalchemy.orm.DeclarativeBase):
    pass


class CustomCasbinRule(Base):
    """Class we use instead of casbin_sqlalchemy_adapter.CasbinRule, so we can set the right metadata."""

    __tablename__ = "casbin_rule_abc"

    metadata = sqlalchemy.MetaData(schema=CUSTOM_SCHEMA)

    id = Column(Integer, primary_key=True)
    ptype = Column(String(255))
    v0 = Column(String(255))
    v1 = Column(String(255))
    v2 = Column(String(255))
    v3 = Column(String(255))
    v4 = Column(String(255))
    v5 = Column(String(255))

    def __str__(self):
        arr = [str(self.ptype)]
        for v in (self.v0, self.v1, self.v2, self.v3, self.v4, self.v5):
            if v is None:
                break
            arr.append(str(v))
        return ", ".join(arr)

    def __repr__(self):
        return f'<CustomCasbinRule {self.id}: "{self}">'


casbin_sqlalchemy_adapter.Adapter(ENGINE, db_class=CustomCasbinRule)

# At this point the `casbin_sqlalchemy_adapter.Base.metadata` is altered, and following code will create
# the table in "custom_schema" as well, which is unexpected and can cause issues.

casbin_sqlalchemy_adapter.Adapter(ENGINE)
@hsluoyz
Copy link
Member

hsluoyz commented Jan 11, 2025

@mick-graft can you make a PR to fix it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants