Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion backend/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from datetime import timedelta

MINIMUM_PASSWORD_LENGTH = 5
MAXIMUM_BLOOM_LENGTH = 280


def login():
Expand Down Expand Up @@ -156,9 +157,20 @@ def send_bloom():
if type_check_error is not None:
return type_check_error

content = request.json["content"]

if len(content) > MAXIMUM_BLOOM_LENGTH:
return make_response(
jsonify({
"success": False,
"message": f"Bloom content exceeds maximum length of {MAXIMUM_BLOOM_LENGTH} characters"
}),
400
)

user = get_current_user()

blooms.add_bloom(sender=user, content=request.json["content"])
blooms.add_bloom(sender=user, content=content)

return jsonify(
{
Expand Down
2 changes: 1 addition & 1 deletion backend/populate.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def main():
writer_access_token = create_user("AS", "neverSt0pTalking")
send_bloom(
writer_access_token,
"In this essay I will convince you that my views are correct in ways you have never imagined. If it doesn't change your life, read it again. Marshmallows are magnificent. They have great squish, tasty good, and you can even toast them over a fire. Toast them just right until they have a tiny bit of crunch when you bite into them, and have just started melting in the middle.",
"In this essay I will convince you that my views are correct in ways you have never imagined. If it doesn't change your life, read it again. Marshmallows are magnificent. They have great squish, tasty good, and you can toast them over a fire.",
)

justsomeguy_access_token = create_user("JustSomeGuy", "mysterious")
Expand Down