SQLAlchemy plugin for Spotlight.
Spotlight SQLAlchemy can be installed via pip:
pip install spotlight-sqlalchemy
from spotlight_sqlalchemy.plugin import SQLAlchemyPlugin
from spotlight.validator import Validator
from spotlight_sqlalchemy.plugin import SQLAlchemyPlugin
rules = {
"id": "exists:user,id",
"email": "unique:user,email"
}
data = {
"id": 1,
"email": "john.doe@example.com"
}
validator = Validator([SQLAlchemyPlugin(session)])
errors = validator.validate(data, rules)
Warning: You should never pass any user controlled input into the database rules. Otherwise, your application will be vulnerable to an SQL injection attack.
The field under validation must be unique in a given database table. The last 4 fields (ignore column, ignore value, where column, where value) are optional.
unique:table,column
unique:table,column,ignoreColumn,ignoreValue
unique:table,column,ignoreColumn,ignoreValue,whereColumn,whereValue
unique:table,column,null,null,whereColumn,whereValue
The field under validation must exist on a given database table. The last 2 fields (where column, where value) are optional.
exists:table,column
exists:table,column,whereColumn,whereValue