From 9d94a01b631676b54f680c2571ae4dbba9ccd037 Mon Sep 17 00:00:00 2001 From: jantuomi Date: Tue, 19 Jul 2016 14:50:22 +0300 Subject: Restructure project --- project/jsonfactory.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 project/jsonfactory.py (limited to 'project/jsonfactory.py') diff --git a/project/jsonfactory.py b/project/jsonfactory.py new file mode 100644 index 0000000..c57b430 --- /dev/null +++ b/project/jsonfactory.py @@ -0,0 +1,27 @@ +import json + + +class JSONFactory(object): + """Factory class to create JSON messages to be sent to the shoutbox API""" + running_id = 1 + + @staticmethod + def make_object(text, user, timestamp, ip): + """ + Create a JSON object from the passed parameters and + add a running id + """ + message = json.dumps({ + "id": JSONFactory.running_id, + "text": text, + "user": user, + "timestamp": timestamp, + "ip": ip + }) + JSONFactory.running_id += 1 + return message + + @staticmethod + def make_array(object_list): + """Create a JSON array from a list of JSON objects""" + return "[\n" + ",\n".join(object_list) + "\n]" -- cgit v1.3