Compare commits
2 commits
38756119c4
...
559063ed90
Author | SHA1 | Date | |
---|---|---|---|
559063ed90 | |||
46321559ab |
8 changed files with 11 additions and 51 deletions
|
@ -11,6 +11,7 @@ py3-mypy-extensions
|
||||||
py3-otp
|
py3-otp
|
||||||
py3-psutil
|
py3-psutil
|
||||||
py3-pygments
|
py3-pygments
|
||||||
|
py3-pyzbar
|
||||||
py3-qrcode
|
py3-qrcode
|
||||||
py3-redis
|
py3-redis
|
||||||
py3-requests
|
py3-requests
|
||||||
|
|
|
@ -10,6 +10,7 @@ python-pip
|
||||||
python-psutil
|
python-psutil
|
||||||
python-pygments
|
python-pygments
|
||||||
python-pyotp
|
python-pyotp
|
||||||
|
python-pyzbar
|
||||||
python-qrcode
|
python-qrcode
|
||||||
python-redis
|
python-redis
|
||||||
python-requests
|
python-requests
|
||||||
|
|
|
@ -12,6 +12,7 @@ python3-mypy-extensions
|
||||||
python3-psutil
|
python3-psutil
|
||||||
python3-pygments
|
python3-pygments
|
||||||
python3-pyotp
|
python3-pyotp
|
||||||
|
python3-pyzbar
|
||||||
python3-qrcode
|
python3-qrcode
|
||||||
python3-redis
|
python3-redis
|
||||||
python3-requests
|
python3-requests
|
||||||
|
|
|
@ -12,6 +12,7 @@ python-mypy_extensions
|
||||||
python-psutil
|
python-psutil
|
||||||
python-pygments
|
python-pygments
|
||||||
python-pyotp
|
python-pyotp
|
||||||
|
python-pyzbar
|
||||||
python-qrcode
|
python-qrcode
|
||||||
python-redis
|
python-redis
|
||||||
python-requests
|
python-requests
|
||||||
|
|
|
@ -80,7 +80,7 @@ class OtpPlugin(Plugin):
|
||||||
|
|
||||||
:return: The new secret token.
|
:return: The new secret token.
|
||||||
"""
|
"""
|
||||||
return pyotp.random_base32()
|
return str(pyotp.random_base32())
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def refresh_secret(self, secret_path: Optional[str] = None) -> str:
|
def refresh_secret(self, secret_path: Optional[str] = None) -> str:
|
||||||
|
|
|
@ -1,24 +1,8 @@
|
||||||
{
|
{
|
||||||
"manifest": {
|
"manifest": {
|
||||||
"events": {},
|
"events": {},
|
||||||
"install": {
|
"install": {},
|
||||||
"apk": [
|
|
||||||
"py3-otp"
|
|
||||||
],
|
|
||||||
"apt": [
|
|
||||||
"python3-pyotp"
|
|
||||||
],
|
|
||||||
"dnf": [
|
|
||||||
"python-pyotp"
|
|
||||||
],
|
|
||||||
"pacman": [
|
|
||||||
"python-pyotp"
|
|
||||||
],
|
|
||||||
"pip": [
|
|
||||||
"pyotp"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"package": "platypush.plugins.otp",
|
"package": "platypush.plugins.otp",
|
||||||
"type": "plugin"
|
"type": "plugin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,38 +3,8 @@
|
||||||
"events": [
|
"events": [
|
||||||
"platypush.message.event.qrcode.QrcodeScannedEvent"
|
"platypush.message.event.qrcode.QrcodeScannedEvent"
|
||||||
],
|
],
|
||||||
"install": {
|
"install": {},
|
||||||
"apk": [
|
|
||||||
"py3-numpy",
|
|
||||||
"py3-pillow",
|
|
||||||
"py3-qrcode",
|
|
||||||
"py3-pyzbar"
|
|
||||||
],
|
|
||||||
"apt": [
|
|
||||||
"python3-numpy",
|
|
||||||
"python3-pillow",
|
|
||||||
"python3-pyzbar",
|
|
||||||
"python3-qrcode"
|
|
||||||
],
|
|
||||||
"dnf": [
|
|
||||||
"python-numpy",
|
|
||||||
"python-pillow",
|
|
||||||
"python-qrcode",
|
|
||||||
"python-zbar"
|
|
||||||
],
|
|
||||||
"pacman": [
|
|
||||||
"python-numpy",
|
|
||||||
"python-pillow",
|
|
||||||
"python-qrcode"
|
|
||||||
],
|
|
||||||
"pip": [
|
|
||||||
"numpy",
|
|
||||||
"qrcode",
|
|
||||||
"pyzbar",
|
|
||||||
"Pillow"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"package": "platypush.plugins.qrcode",
|
"package": "platypush.plugins.qrcode",
|
||||||
"type": "plugin"
|
"type": "plugin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,11 +7,13 @@ croniter
|
||||||
docutils
|
docutils
|
||||||
flask
|
flask
|
||||||
marshmallow
|
marshmallow
|
||||||
|
Pillow
|
||||||
python-dateutil
|
python-dateutil
|
||||||
python-magic
|
python-magic
|
||||||
pygments
|
pygments
|
||||||
pyotp
|
pyotp
|
||||||
pyyaml
|
pyyaml
|
||||||
|
pyzbar
|
||||||
qrcode
|
qrcode
|
||||||
redis
|
redis
|
||||||
requests
|
requests
|
||||||
|
|
Loading…
Reference in a new issue