mirror of https://gitlab.com/bashrc2/epicyon
Create a qrcode for handles during person creation
parent
e3eec98b4d
commit
c1a2f82e80
|
@ -493,7 +493,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
if 'HttpOnly;' not in cookieStr:
|
||||
if self.server.httpPrefix == 'https':
|
||||
cookieStr += '; Secure'
|
||||
cookieStr += '; HttpOnly; SameSite=Strict'
|
||||
cookieStr += '; HttpOnly; SameSite=Strict'
|
||||
self.send_header('Cookie', cookieStr)
|
||||
self.send_header('Host', callingDomain)
|
||||
self.send_header('InstanceID', self.server.instanceId)
|
||||
|
|
20
person.py
20
person.py
|
@ -10,6 +10,7 @@ import time
|
|||
import os
|
||||
import subprocess
|
||||
import shutil
|
||||
import pyqrcode
|
||||
from random import randint
|
||||
from pathlib import Path
|
||||
try:
|
||||
|
@ -380,6 +381,24 @@ def createGroup(baseDir: str, nickname: str, domain: str, port: int,
|
|||
return privateKeyPem, publicKeyPem, newPerson, webfingerEndpoint
|
||||
|
||||
|
||||
def savePersonQrcode(baseDir: str,
|
||||
nickname: str, domain: str, port: int,
|
||||
scale=6) -> None:
|
||||
"""Saves a qrcode image for the handle of the person
|
||||
This helps to transfer onion or i2p handles to a mobile device
|
||||
"""
|
||||
qrcodeFilename = baseDir + '/accounts/' + \
|
||||
nickname + '@' + domain + '/qrcode.png'
|
||||
if os.path.isfile(qrcodeFilename):
|
||||
return
|
||||
handle = '@' + nickname + '@' + domain
|
||||
if port:
|
||||
if port != 80 and port != 443:
|
||||
handle = handle + ':' + str(port)
|
||||
url = pyqrcode.create(handle)
|
||||
url.png(qrcodeFilename, scale)
|
||||
|
||||
|
||||
def createPerson(baseDir: str, nickname: str, domain: str, port: int,
|
||||
httpPrefix: str, saveToFile: bool,
|
||||
password=None) -> (str, str, {}, {}):
|
||||
|
@ -436,6 +455,7 @@ def createPerson(baseDir: str, nickname: str, domain: str, port: int,
|
|||
registrationsRemaining -= 1
|
||||
setConfigParam(baseDir, 'registrationsRemaining',
|
||||
str(registrationsRemaining))
|
||||
savePersonQrcode(baseDir, nickname, domain, port)
|
||||
return privateKeyPem, publicKeyPem, newPerson, webfingerEndpoint
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue