forked from Ponysearch/Ponysearch
feat(answers): add sha256 and uuid v4 to random answers
This commit is contained in:
parent
0cb55ddfde
commit
bf9e6737de
1 changed files with 21 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
||||||
|
import hashlib
|
||||||
import random
|
import random
|
||||||
import string
|
import string
|
||||||
import sys
|
import sys
|
||||||
|
import uuid
|
||||||
from flask_babel import gettext
|
from flask_babel import gettext
|
||||||
|
|
||||||
# required answerer attribute
|
# required answerer attribute
|
||||||
|
@ -16,9 +18,13 @@ else:
|
||||||
random_string_letters = string.ascii_lowercase + string.digits + string.ascii_uppercase
|
random_string_letters = string.ascii_lowercase + string.digits + string.ascii_uppercase
|
||||||
|
|
||||||
|
|
||||||
|
def random_characters():
|
||||||
|
return [random.choice(random_string_letters)
|
||||||
|
for _ in range(random.randint(8, 32))]
|
||||||
|
|
||||||
|
|
||||||
def random_string():
|
def random_string():
|
||||||
return u''.join(random.choice(random_string_letters)
|
return u''.join(random_characters())
|
||||||
for _ in range(random.randint(8, 32)))
|
|
||||||
|
|
||||||
|
|
||||||
def random_float():
|
def random_float():
|
||||||
|
@ -29,9 +35,21 @@ def random_int():
|
||||||
return unicode(random.randint(-random_int_max, random_int_max))
|
return unicode(random.randint(-random_int_max, random_int_max))
|
||||||
|
|
||||||
|
|
||||||
|
def random_sha256():
|
||||||
|
m = hashlib.sha256()
|
||||||
|
m.update(b''.join(random_characters()))
|
||||||
|
return unicode(m.hexdigest())
|
||||||
|
|
||||||
|
|
||||||
|
def random_uuid():
|
||||||
|
return unicode(uuid.uuid4())
|
||||||
|
|
||||||
|
|
||||||
random_types = {b'string': random_string,
|
random_types = {b'string': random_string,
|
||||||
b'int': random_int,
|
b'int': random_int,
|
||||||
b'float': random_float}
|
b'float': random_float,
|
||||||
|
b'sha256': random_sha256,
|
||||||
|
b'uuid': random_uuid}
|
||||||
|
|
||||||
|
|
||||||
# required answerer function
|
# required answerer function
|
||||||
|
|
Loading…
Reference in a new issue