anomaly / anomaly/lab-python-server

Building Custom Comparator for SQLAlchemy for the password property

オープン
#51 コメント 2 件 リアクション 0 件 担当者 1 名 @devraj が担当を希望しています GitHub で見る
主要言語
Python
スター
16
フォーク
4
PR マージ指標
30日以内にマージされた PR はありません

説明

Extending from the pattern that allows developers to simply set the `password` property and a setter hashes it on the way in. The `User` model class has substantial documentation on this. The general approach is to declare the property as:

```python
_password = Column("password",
String,
nullable=True)
```

followed by exposing the `password` property as:

```python
@property
def password(self):
return self._password
```

and finally overriding the setter to `hash` the password on the way in:
```python
@password.setter
def password(self, password):
self._password = hash_password(password)
```

The [Building Custom Comparator](https://docs.sqlalchemy.org/en/14/orm/extensions/hybrid.html#building-custom-comparators) guide outlines how we can override the comparator of `hybrid_property` in `SQLAlchemy`, if we adopt this paradigm then we can achieve comparing password as:

```python
user.password == password
```

as opposed using `check_password` method

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。