aboutsummaryrefslogtreecommitdiff
path: root/mongodb.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-03-03 09:36:09 +0100
committercedricbonhomme <devnull@localhost>2012-03-03 09:36:09 +0100
commit09ac68a23adcf23bfa4f2997fa3487bbe9b743b3 (patch)
tree1f8f4e75e420062f7ecf86243d11eee6ef9529bf /mongodb.py
parentFirst commit in MongoDB development branch. (diff)
downloadnewspipe-09ac68a23adcf23bfa4f2997fa3487bbe9b743b3.tar.gz
newspipe-09ac68a23adcf23bfa4f2997fa3487bbe9b743b3.tar.bz2
newspipe-09ac68a23adcf23bfa4f2997fa3487bbe9b743b3.zip
Added initial MongoDB functions.
Diffstat (limited to 'mongodb.py')
-rw-r--r--mongodb.py144
1 files changed, 45 insertions, 99 deletions
diff --git a/mongodb.py b/mongodb.py
index 4344b888..851db945 100644
--- a/mongodb.py
+++ b/mongodb.py
@@ -3,38 +3,16 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 0.1 $"
-__date__ = "$Date: 2012/01/06 $"
-__date__ = "$Date: 2012/01/09 $"
-__copyright__ = "Copyright (c) 2012 Public Research Centre Henri Tudor"
-__license__ = ""
-
-# http://127.0.0.1:28017/wisafecar/users
-# http://www.mongodb.org/display/DOCS/Http+Interface#HttpInterface-SimpleRESTInterface
-
-
-# https://github.com/kchodorow/sleepy.mongoose/wiki/
-# Insertion of a message:
-# curl --data 'docs=[{"message":"traffic jam","position":"tampere"}]' 'http://10.13.1.157:27080/wisafecar/messages/_insert'
-#
-# Connecting:
-# https://github.com/kchodorow/sleepy.mongoose/wiki/Connecting
-# Examples:
-# curl --data 'name=wsc' http://localhost:27080/_connect
-# GET http://localhost:27080/wisafecar/users/_find?name=wsc
-# Filtering:
-# If we want to get all results for the client with id=d39fc988-376b-11e1-aa3b-0022680cb7e4:
-# urllib.quote('{"id":"d39fc988-376b-11e1-aa3b-0022680cb7e4"}')
-# http://127.0.0.1:27080/wisafecar/users/_find?criteria=%7B%22id%22%3A%22d39fc988-376b-11e1-aa3b-0022680cb7e4%22%7D
-# (urllib.quote skip special caracters.)
-# If we want to find all the traffic jams:
-# urllib.quote('{"message":"traffic_jam"}')
-# http://127.0.0.1:27080/wisafecar/messages/_find?criteria=%7B%22message%22%3A%22traffic_jam%22%7D
+__date__ = "$Date: 2012/03/03 $"
+__date__ = "$Date: 2012/03/03 $"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
+__license__ = "GPLv3"
import time
from pymongo.connection import Connection
-class MongoWSC(object):
+class Articles(object):
"""
"""
def __init__(self, url='localhost', port=27017):
@@ -42,8 +20,44 @@ class MongoWSC(object):
Instantiates the connection.
"""
self.connection = Connection(url, port)
- self.db = self.connection.wisafecar
+ self.db = self.connection.pyaggr3g470r
+ def add_collection(self, collection):
+ """
+ Creates a new collection for a new feed.
+ """
+ collection = self.db.collection.feed_id
+ collection.insert(collection)
+
+ def add_article(self, article, collection_id):
+ """
+ Add an article in a collection.
+ """
+ collection = self.db.collection_id
+ cursor = collection.find({"article_id":article.article_id})
+ if cursor.count() == 0:
+ collection.insert(user_dic)
+
+ def get_all_articles():
+ """
+ Return all articles from all collections.
+ """
+ articles = []
+ collections = self.db.collection_names
+ for colliection in collections:
+ collection = self.db.collection_id
+ articles.append(collection)
+ return articles
+
+ def get_articles_from_collection():
+ """
+ Return all the articles of a collection.
+ """
+ collection = self.db.collection_id
+ return collection
+
+
+
#
# Collection: users
#
@@ -59,12 +73,6 @@ class MongoWSC(object):
if cursor.count() == 0:
collection.insert(user_dic)
- def get_users(self):
- """
- Return the list of users.
- """
- collection = self.db.users
- return collection
def print_users(self):
"""
@@ -82,74 +90,12 @@ class MongoWSC(object):
collection = self.db.users
collection.count()
- #
- # Collection: messages
- #
- def log_message(self, sender_uuid, message):
- """
- Create a new message in the collection of messages.
- """
- message_dic = {"reporter":sender_uuid, "time":message[0], "lat":message[2].split(",")[1][:-1],
- "long": message[2].split(",")[0][1:], "message":message[3]}
-
- collection = self.db.messages
- collection.insert(message_dic)
-
- def print_messages(self):
- """
- List and print the messages received by all the users.
- """
- collection = self.db.messages
- cursor = collection.find()
- for d in cursor:
- print d
-
- #
- # Collection: positions
- #
- def log_positions(self, sender_uuid, position):
- """
- Log a new position.
- """
- collection_dic = {"uuid":sender_uuid, "time":position[0], "lat":position[2].split(",")[1][:-1],
- "long": position[2].split(",")[0][1:]}
-
- collection = self.db.positions
- collection.insert(collection_dic)
-
- def print_positions(self):
- """
- List and print the position updates of all the users.
- """
- collection = self.db.positions
- cursor = collection.find()
- for d in cursor:
- print d
# Functions on database
def drop_wsc_database(self):
- self.connection.drop_database('wisafecar')
+ self.connection.drop_database('pyaggr3g470r')
+
if __name__ == "__main__":
# Point of entry in execution mode.
- wsc_database = MongoWSC()
- print "Registered users:"
- wsc_database.print_users()
-
- print "\nPosition updates received:"
- wsc_database.print_positions()
-
- print "\nMessage received:"
- wsc_database.print_messages()
-
- print "\nDropping database..."
- wsc_database.drop_wsc_database()
-
-
- wsc_database.register_user("1d91f6fafe85", "Cedric")
-
- wsc_database.log_positions("1d91f6fafe85", [time.time(), "position", "(49.6229,6.18687)"])
- wsc_database.log_positions("1d91f6fafe85", [time.time(), "position", "(49.6228,6.18692)"])
-
- wsc_database.log_message("1d91f6fafe85", [time.time(), "alert", "(49.628,6.176)", "accident"])
- wsc_database.log_message("1d91f6fafe85", [time.time(), "alert", "(49.612,6.18689708)", "traffic_jam"]) \ No newline at end of file
+ articles_database = Articles() \ No newline at end of file
bgstack15